blob: de7352bcfe3237c265a925fe6ec1901f880220a4 [file] [log] [blame]
Ryan Sie826a1f72021-10-14 09:49:20 +08001{
2 "gpio_configs": {
3
4 "power_config": {
5 "power_good_in": "PGOOD",
6 "power_up_outs": [
7 {"name": "POWER_UP_PIN", "polarity": true}
8 ],
9 "reset_outs": [
10 {"name": "RESET_OUT", "polarity": false}
11 ]
12 }
13 },
14
15 "gpio_definitions": [
16 {
17 "name": "PGOOD",
18 "pin": "AA0",
19 "direction": "in"
20 },
21 {
22 "name": "POWER_BUTTON",
23 "pin": "AA1",
24 "direction": "both"
25 },
26 {
27 "name": "POWER_UP_PIN",
28 "pin": "E2",
29 "direction": "out"
30 },
31 {
32 "name": "RESET_OUT",
33 "pin": "E3",
34 "direction": "out"
35 },
36 {
37 "name": "ID_BUTTON",
38 "pin": "AA5",
39 "direction": "both"
40 }
41 ]
42}