1{
2    "gpio_configs": {
3
4        "power_config": {
5            "power_good_in": "SYS_PWROK_BUFF",
6            "power_up_outs": [
7                {"name": "SOFTWARE_PGOOD", "polarity": true},
8                {"name": "BMC_POWER_UP", "polarity": true}
9            ]
10        }
11    },
12
13    "gpio_definitions": [
14        {
15            "name": "BMC_POWER_UP",
16            "pin": "R1",
17            "direction": "out"
18        },
19        {
20            "name": "SOFTWARE_PGOOD",
21            "pin": "F1",
22            "direction": "out"
23        },
24        {
25            "name": "SYS_PWROK_BUFF",
26            "pin": "R2",
27            "direction": "in"
28        },
29        {
30            "name": "POWER_BUTTON",
31            "pin": "P3",
32            "direction": "both"
33        }
34    ]
35}
36