blob: b02709ec2f489b0af02c1bd472e6fed4b3d51c5e [file] [log] [blame]
John Wangaf0bc6e2018-11-29 11:22:01 +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": "AB3",
19 "direction": "in"
20 },
21 {
22 "name": "POWER_BUTTON",
23 "pin": "E2",
24 "direction": "both"
25 },
26 {
27 "name": "POWER_UP_PIN",
28 "pin": "E3",
29 "direction": "out"
30 },
31 {
32 "name": "RESET_BUTTON",
33 "pin": "E0",
34 "direction": "both"
35 },
36 {
37 "name": "RESET_OUT",
38 "pin": "E1",
39 "direction": "out"
40 },
41 {
42 "name": "ID_BUTTON",
43 "pin": "S6",
44 "direction": "both"
45 }
46 ]
47}