summaryrefslogtreecommitdiffstats
path: root/libopenbmc_intf
diff options
context:
space:
mode:
authorMatt Spinler <spinler@us.ibm.com>2018-08-07 13:56:16 -0500
committerMatt Spinler <spinler@us.ibm.com>2018-08-14 15:42:00 -0500
commit24cbe78d4caef56ee3adf6fe83206a3e1e55f3b3 (patch)
tree495b2747891a972e9b1597b8c8f8f5030536c8be /libopenbmc_intf
parentea3d8a4169894cbc3fddcac05c8a14ffffabc602 (diff)
downloadtalos-skeleton-24cbe78d4caef56ee3adf6fe83206a3e1e55f3b3.tar.gz
talos-skeleton-24cbe78d4caef56ee3adf6fe83206a3e1e55f3b3.zip
Add documentation on GPIO JSON
Document the JSON format for the GPIO configuration. Change-Id: I74f9300f480724615ff031a7c75973224c86a760 Signed-off-by: Matt Spinler <spinler@us.ibm.com>
Diffstat (limited to 'libopenbmc_intf')
-rw-r--r--libopenbmc_intf/GPIOS.md69
1 files changed, 69 insertions, 0 deletions
diff --git a/libopenbmc_intf/GPIOS.md b/libopenbmc_intf/GPIOS.md
new file mode 100644
index 0000000..3071648
--- /dev/null
+++ b/libopenbmc_intf/GPIOS.md
@@ -0,0 +1,69 @@
+# GPIO JSON format
+
+GPIO definitions are stored in '/etc/default/obmc/gpio/gpio_defs.json' on the
+BMC. That file has 2 sections - 'gpio_configs' and 'gpio_definitions'.
+
+## gpio_configs
+
+This section contains the GPIOs used in power control.
+
+It looks like:
+```
+"gpio_configs": {
+ "power_config": {
+
+ #See code in op-pwrctl for details
+
+ #Required
+ "power_good_in": "...",
+
+ #Required
+ "power_up_outs": [
+ {"name": "...", "polarity": true/false},
+ {"name": "...", "polarity": true/false}
+ ],
+
+ #Optional
+ "reset_outs": [
+ {"name": "...", "polarity": true/false}
+ ],
+
+ #Optional
+ "latch_out": "...",
+
+ #Optional
+ "pci_reset_outs": [
+ {"name": "...", "polarity": true/false, "hold": true/false}
+ ]
+ }
+}
+```
+
+## gpio_definitions
+
+This section contains The GPIO pins and directions.
+
+It looks like:
+```
+ "gpio_definitions": [
+ {
+
+ #The name to look up this entry.
+ "name": "SOFTWARE_PGOOD",
+
+ #The GPIO pin.
+ "pin": "R1",
+
+ #Alternatively to the pin, can use 'num' which is the
+ #raw number the GPIO would be accessed with.
+ "num": 7,
+
+ #The GPIO direction - in, out, rising, falling, or both
+ "direction": "out"
+ },
+ {
+ ...
+ }
+ ]
+```
+
OpenPOWER on IntegriCloud