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        }
11    },
12
13    "gpio_definitions": [
14        {
15            "name": "PGOOD",
16            "pin": "H3",
17            "direction": "in"
18        },
19        {
20            "name": "BMC_SYS_PSON_L",
21            "pin": "F2",
22            "direction": "out"
23        },
24        {
25            "name": "POWER_BUTTON",
26            "pin": "I6",
27            "direction": "both"
28        },
29        {
30            "name": "RESET_BUTTON",
31            "pin": "Z0",
32            "direction": "both"
33        },
34        {
35            "name": "OCP_MAIN_PWREN",
36            "pin": "W1",
37            "direction": "out"
38        },
39        {
40            "name": "ID_BTN",
41            "pin": "S2",
42            "direction": "both"
43        }
44    ]
45}
46