1{
2    "gpio_configs": {
3
4        "power_config": {
5            "power_good_in": "PGOOD",
6            "power_up_outs": [
7               {"name": "OCP_MAIN_PWREN", "polarity": true},
8               {"name": "BMC_SYS_PSON_L", "polarity": false}
9            ],
10            "reset_outs": [
11               {"name": "BMC_S0_SYSRESET_L", "polarity": false},
12               {"name": "BMC_S1_SYSRESET_L", "polarity": false}
13            ]
14        }
15    },
16
17    "gpio_definitions": [
18        {
19            "name": "PGOOD",
20            "pin": "F4",
21            "direction": "in"
22        },
23        {
24            "name": "BMC_SYS_PSON_L",
25            "pin": "F2",
26            "direction": "out"
27        },
28        {
29            "name": "OCP_MAIN_PWREN",
30            "pin": "R4",
31            "direction": "out"
32        },
33        {
34            "name": "BMC_S0_SYSRESET_L",
35            "pin": "L3",
36            "direction": "out"
37        },
38        {
39            "name": "BMC_S1_SYSRESET_L",
40            "pin": "L4",
41            "direction": "out"
42        },
43        {
44            "name": "POWER_BUTTON",
45            "pin": "B4",
46            "direction": "both"
47        },
48        {
49            "name": "RESET_BUTTON",
50            "pin": "R5",
51            "direction": "both"
52        }
53    ]
54}
55