blob: 4c63eef926e551c18d9e331379b1a80be9051a0a [file] [log] [blame]
Yi Lie5fe5222016-06-16 13:02:52 -04001## System states
2## state can change to next state in 2 ways:
3## - a process emits a GotoSystemState signal with state name to goto
4## - objects specified in EXIT_STATE_DEPEND have started
5SYSTEM_STATES = [
6 'BASE_APPS',
7 'BMC_STARTING',
8 'BMC_READY',
9 'HOST_POWERING_ON',
10 'HOST_POWERED_ON',
11 'HOST_BOOTING',
12 'HOST_BOOTED',
13 'HOST_POWERED_OFF',
14]
15
16EXIT_STATE_DEPEND = {
17 'BASE_APPS' : {
18 '/org/openbmc/sensors': 0,
19 },
20 'BMC_STARTING' : {
21 '/org/openbmc/control/chassis0': 0,
22 '/org/openbmc/control/power0' : 0,
Yi Lie5fe5222016-06-16 13:02:52 -040023 '/org/openbmc/control/flash/bios' : 0,
24 },
25}
26
Yi Lie5fe5222016-06-16 13:02:52 -040027FRU_INSTANCES = {
28 '<inventory_root>/system' : { 'fru_type' : 'SYSTEM','is_fru' : True, 'present' : "True" },
29 '<inventory_root>/system/bios' : { 'fru_type' : 'SYSTEM','is_fru' : True, 'present' : "True" },
30 '<inventory_root>/system/misc' : { 'fru_type' : 'SYSTEM','is_fru' : False, },
31
32 '<inventory_root>/system/chassis' : { 'fru_type' : 'SYSTEM','is_fru' : True, 'present' : "True" },
33
34 '<inventory_root>/system/chassis/motherboard' : { 'fru_type' : 'MAIN_PLANAR','is_fru' : True, },
35
36 '<inventory_root>/system/systemevent' : { 'fru_type' : 'SYSTEM_EVENT', 'is_fru' : False, },
37 '<inventory_root>/system/chassis/motherboard/refclock' : { 'fru_type' : 'MAIN_PLANAR', 'is_fru' : False, },
38 '<inventory_root>/system/chassis/motherboard/pcieclock': { 'fru_type' : 'MAIN_PLANAR', 'is_fru' : False, },
39 '<inventory_root>/system/chassis/motherboard/todclock' : { 'fru_type' : 'MAIN_PLANAR', 'is_fru' : False, },
40 '<inventory_root>/system/chassis/motherboard/apss' : { 'fru_type' : 'MAIN_PLANAR', 'is_fru' : False, },
41
42 '<inventory_root>/system/chassis/fan0' : { 'fru_type' : 'FAN','is_fru' : True, },
43 '<inventory_root>/system/chassis/fan1' : { 'fru_type' : 'FAN','is_fru' : True, },
44 '<inventory_root>/system/chassis/fan2' : { 'fru_type' : 'FAN','is_fru' : True, },
45 '<inventory_root>/system/chassis/fan3' : { 'fru_type' : 'FAN','is_fru' : True, },
46
47 '<inventory_root>/system/chassis/motherboard/bmc' : { 'fru_type' : 'BMC','is_fru' : False, 'manufacturer' : 'ASPEED' },
48
49 '<inventory_root>/system/chassis/motherboard/cpu0' : { 'fru_type' : 'CPU', 'is_fru' : True, },
50 '<inventory_root>/system/chassis/motherboard/cpu1' : { 'fru_type' : 'CPU', 'is_fru' : True, },
51
52 '<inventory_root>/system/chassis/motherboard/cpu0/core0' : { 'fru_type' : 'CORE', 'is_fru' : False, },
53 '<inventory_root>/system/chassis/motherboard/cpu0/core1' : { 'fru_type' : 'CORE', 'is_fru' : False, },
54 '<inventory_root>/system/chassis/motherboard/cpu0/core2' : { 'fru_type' : 'CORE', 'is_fru' : False, },
55 '<inventory_root>/system/chassis/motherboard/cpu0/core3' : { 'fru_type' : 'CORE', 'is_fru' : False, },
56 '<inventory_root>/system/chassis/motherboard/cpu0/core4' : { 'fru_type' : 'CORE', 'is_fru' : False, },
57 '<inventory_root>/system/chassis/motherboard/cpu0/core5' : { 'fru_type' : 'CORE', 'is_fru' : False, },
58 '<inventory_root>/system/chassis/motherboard/cpu0/core6' : { 'fru_type' : 'CORE', 'is_fru' : False, },
59 '<inventory_root>/system/chassis/motherboard/cpu0/core7' : { 'fru_type' : 'CORE', 'is_fru' : False, },
60 '<inventory_root>/system/chassis/motherboard/cpu0/core8' : { 'fru_type' : 'CORE', 'is_fru' : False, },
61 '<inventory_root>/system/chassis/motherboard/cpu0/core9' : { 'fru_type' : 'CORE', 'is_fru' : False, },
62 '<inventory_root>/system/chassis/motherboard/cpu0/core10': { 'fru_type' : 'CORE', 'is_fru' : False, },
63 '<inventory_root>/system/chassis/motherboard/cpu0/core11': { 'fru_type' : 'CORE', 'is_fru' : False, },
64
65 '<inventory_root>/system/chassis/motherboard/cpu1/core0' : { 'fru_type' : 'CORE', 'is_fru' : False, },
66 '<inventory_root>/system/chassis/motherboard/cpu1/core1' : { 'fru_type' : 'CORE', 'is_fru' : False, },
67 '<inventory_root>/system/chassis/motherboard/cpu1/core2' : { 'fru_type' : 'CORE', 'is_fru' : False, },
68 '<inventory_root>/system/chassis/motherboard/cpu1/core3' : { 'fru_type' : 'CORE', 'is_fru' : False, },
69 '<inventory_root>/system/chassis/motherboard/cpu1/core4' : { 'fru_type' : 'CORE', 'is_fru' : False, },
70 '<inventory_root>/system/chassis/motherboard/cpu1/core5' : { 'fru_type' : 'CORE', 'is_fru' : False, },
71 '<inventory_root>/system/chassis/motherboard/cpu1/core6' : { 'fru_type' : 'CORE', 'is_fru' : False, },
72 '<inventory_root>/system/chassis/motherboard/cpu1/core7' : { 'fru_type' : 'CORE', 'is_fru' : False, },
73 '<inventory_root>/system/chassis/motherboard/cpu1/core8' : { 'fru_type' : 'CORE', 'is_fru' : False, },
74 '<inventory_root>/system/chassis/motherboard/cpu1/core9' : { 'fru_type' : 'CORE', 'is_fru' : False, },
75 '<inventory_root>/system/chassis/motherboard/cpu1/core10' : { 'fru_type' : 'CORE', 'is_fru' : False, },
76 '<inventory_root>/system/chassis/motherboard/cpu1/core11' : { 'fru_type' : 'CORE', 'is_fru' : False, },
77
78 '<inventory_root>/system/chassis/motherboard/membuf0' : { 'fru_type' : 'MEMORY_BUFFER', 'is_fru' : False, },
79 '<inventory_root>/system/chassis/motherboard/membuf1' : { 'fru_type' : 'MEMORY_BUFFER', 'is_fru' : False, },
80 '<inventory_root>/system/chassis/motherboard/membuf2' : { 'fru_type' : 'MEMORY_BUFFER', 'is_fru' : False, },
81 '<inventory_root>/system/chassis/motherboard/membuf3' : { 'fru_type' : 'MEMORY_BUFFER', 'is_fru' : False, },
82 '<inventory_root>/system/chassis/motherboard/membuf4' : { 'fru_type' : 'MEMORY_BUFFER', 'is_fru' : False, },
83 '<inventory_root>/system/chassis/motherboard/membuf5' : { 'fru_type' : 'MEMORY_BUFFER', 'is_fru' : False, },
84 '<inventory_root>/system/chassis/motherboard/membuf6' : { 'fru_type' : 'MEMORY_BUFFER', 'is_fru' : False, },
85 '<inventory_root>/system/chassis/motherboard/membuf7' : { 'fru_type' : 'MEMORY_BUFFER', 'is_fru' : False, },
86
87 '<inventory_root>/system/chassis/motherboard/dimm0' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
88 '<inventory_root>/system/chassis/motherboard/dimm1' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
89 '<inventory_root>/system/chassis/motherboard/dimm2' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
90 '<inventory_root>/system/chassis/motherboard/dimm3' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
91 '<inventory_root>/system/chassis/motherboard/dimm4' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
92 '<inventory_root>/system/chassis/motherboard/dimm5' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
93 '<inventory_root>/system/chassis/motherboard/dimm6' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
94 '<inventory_root>/system/chassis/motherboard/dimm7' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
95 '<inventory_root>/system/chassis/motherboard/dimm8' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
96 '<inventory_root>/system/chassis/motherboard/dimm9' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
97 '<inventory_root>/system/chassis/motherboard/dimm10' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
98 '<inventory_root>/system/chassis/motherboard/dimm11' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
99 '<inventory_root>/system/chassis/motherboard/dimm12' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
100 '<inventory_root>/system/chassis/motherboard/dimm13' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
101 '<inventory_root>/system/chassis/motherboard/dimm14' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
102 '<inventory_root>/system/chassis/motherboard/dimm15' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
103 '<inventory_root>/system/chassis/motherboard/dimm16' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
104 '<inventory_root>/system/chassis/motherboard/dimm17' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
105 '<inventory_root>/system/chassis/motherboard/dimm18' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
106 '<inventory_root>/system/chassis/motherboard/dimm19' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
107 '<inventory_root>/system/chassis/motherboard/dimm20' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
108 '<inventory_root>/system/chassis/motherboard/dimm21' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
109 '<inventory_root>/system/chassis/motherboard/dimm22' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
110 '<inventory_root>/system/chassis/motherboard/dimm23' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
111 '<inventory_root>/system/chassis/motherboard/dimm24' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
112 '<inventory_root>/system/chassis/motherboard/dimm25' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
113 '<inventory_root>/system/chassis/motherboard/dimm26' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
114 '<inventory_root>/system/chassis/motherboard/dimm27' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
115 '<inventory_root>/system/chassis/motherboard/dimm28' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
116 '<inventory_root>/system/chassis/motherboard/dimm29' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
117 '<inventory_root>/system/chassis/motherboard/dimm30' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
118 '<inventory_root>/system/chassis/motherboard/dimm31' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
119}
120
121ID_LOOKUP = {
122 'FRU' : {
123 0x01 : '<inventory_root>/system/chassis/motherboard/cpu0',
124 0x02 : '<inventory_root>/system/chassis/motherboard/cpu1',
125 0x03 : '<inventory_root>/system/chassis/motherboard',
126 0x04 : '<inventory_root>/system/chassis/motherboard/membuf0',
127 0x05 : '<inventory_root>/system/chassis/motherboard/membuf1',
128 0x06 : '<inventory_root>/system/chassis/motherboard/membuf2',
129 0x07 : '<inventory_root>/system/chassis/motherboard/membuf3',
130 0x08 : '<inventory_root>/system/chassis/motherboard/membuf4',
131 0x09 : '<inventory_root>/system/chassis/motherboard/membuf5',
132 0x0c : '<inventory_root>/system/chassis/motherboard/dimm0',
133 0x0d : '<inventory_root>/system/chassis/motherboard/dimm1',
134 0x0e : '<inventory_root>/system/chassis/motherboard/dimm2',
135 0x0f : '<inventory_root>/system/chassis/motherboard/dimm3',
136 0x10 : '<inventory_root>/system/chassis/motherboard/dimm4',
137 0x11 : '<inventory_root>/system/chassis/motherboard/dimm5',
138 0x12 : '<inventory_root>/system/chassis/motherboard/dimm6',
139 0x13 : '<inventory_root>/system/chassis/motherboard/dimm7',
140 0x14 : '<inventory_root>/system/chassis/motherboard/dimm8',
141 0x15 : '<inventory_root>/system/chassis/motherboard/dimm9',
142 0x16 : '<inventory_root>/system/chassis/motherboard/dimm10',
143 0x17 : '<inventory_root>/system/chassis/motherboard/dimm11',
144 0x18 : '<inventory_root>/system/chassis/motherboard/dimm12',
145 0x19 : '<inventory_root>/system/chassis/motherboard/dimm13',
146 0x1a : '<inventory_root>/system/chassis/motherboard/dimm14',
147 0x1b : '<inventory_root>/system/chassis/motherboard/dimm15',
148 0x1c : '<inventory_root>/system/chassis/motherboard/dimm16',
149 0x1d : '<inventory_root>/system/chassis/motherboard/dimm17',
150 0x1e : '<inventory_root>/system/chassis/motherboard/dimm18',
151 0x1f : '<inventory_root>/system/chassis/motherboard/dimm19',
152 0x20 : '<inventory_root>/system/chassis/motherboard/dimm20',
153 0x21 : '<inventory_root>/system/chassis/motherboard/dimm21',
154 0x22 : '<inventory_root>/system/chassis/motherboard/dimm22',
155 0x23 : '<inventory_root>/system/chassis/motherboard/dimm23',
156 0x24 : '<inventory_root>/system/chassis/motherboard/dimm24',
157 0x25 : '<inventory_root>/system/chassis/motherboard/dimm25',
158 0x26 : '<inventory_root>/system/chassis/motherboard/dimm26',
159 0x27 : '<inventory_root>/system/chassis/motherboard/dimm27',
160 0x28 : '<inventory_root>/system/chassis/motherboard/dimm28',
161 0x29 : '<inventory_root>/system/chassis/motherboard/dimm29',
162 0x2a : '<inventory_root>/system/chassis/motherboard/dimm30',
163 0x2b : '<inventory_root>/system/chassis/motherboard/dimm31',
164 },
165 'FRU_STR' : {
166 'PRODUCT_0' : '<inventory_root>/system/bios',
167 'BOARD_1' : '<inventory_root>/system/chassis/motherboard/cpu0',
168 'BOARD_2' : '<inventory_root>/system/chassis/motherboard/cpu1',
169 'CHASSIS_3' : '<inventory_root>/system/chassis/motherboard',
170 'BOARD_3' : '<inventory_root>/system/misc',
171 'BOARD_4' : '<inventory_root>/system/chassis/motherboard/membuf0',
172 'BOARD_5' : '<inventory_root>/system/chassis/motherboard/membuf1',
173 'BOARD_6' : '<inventory_root>/system/chassis/motherboard/membuf2',
174 'BOARD_7' : '<inventory_root>/system/chassis/motherboard/membuf3',
175 'BOARD_8' : '<inventory_root>/system/chassis/motherboard/membuf4',
176 'BOARD_9' : '<inventory_root>/system/chassis/motherboard/membuf5',
177 'BOARD_10' : '<inventory_root>/system/chassis/motherboard/membuf6',
178 'BOARD_11' : '<inventory_root>/system/chassis/motherboard/membuf7',
179 'PRODUCT_12' : '<inventory_root>/system/chassis/motherboard/dimm0',
180 'PRODUCT_13' : '<inventory_root>/system/chassis/motherboard/dimm1',
181 'PRODUCT_14' : '<inventory_root>/system/chassis/motherboard/dimm2',
182 'PRODUCT_15' : '<inventory_root>/system/chassis/motherboard/dimm3',
183 'PRODUCT_16' : '<inventory_root>/system/chassis/motherboard/dimm4',
184 'PRODUCT_17' : '<inventory_root>/system/chassis/motherboard/dimm5',
185 'PRODUCT_18' : '<inventory_root>/system/chassis/motherboard/dimm6',
186 'PRODUCT_19' : '<inventory_root>/system/chassis/motherboard/dimm7',
187 'PRODUCT_20' : '<inventory_root>/system/chassis/motherboard/dimm8',
188 'PRODUCT_21' : '<inventory_root>/system/chassis/motherboard/dimm9',
189 'PRODUCT_22' : '<inventory_root>/system/chassis/motherboard/dimm10',
190 'PRODUCT_23' : '<inventory_root>/system/chassis/motherboard/dimm11',
191 'PRODUCT_24' : '<inventory_root>/system/chassis/motherboard/dimm12',
192 'PRODUCT_25' : '<inventory_root>/system/chassis/motherboard/dimm13',
193 'PRODUCT_26' : '<inventory_root>/system/chassis/motherboard/dimm14',
194 'PRODUCT_27' : '<inventory_root>/system/chassis/motherboard/dimm15',
195 'PRODUCT_28' : '<inventory_root>/system/chassis/motherboard/dimm16',
196 'PRODUCT_29' : '<inventory_root>/system/chassis/motherboard/dimm17',
197 'PRODUCT_30' : '<inventory_root>/system/chassis/motherboard/dimm18',
198 'PRODUCT_31' : '<inventory_root>/system/chassis/motherboard/dimm19',
199 'PRODUCT_32' : '<inventory_root>/system/chassis/motherboard/dimm20',
200 'PRODUCT_33' : '<inventory_root>/system/chassis/motherboard/dimm21',
201 'PRODUCT_34' : '<inventory_root>/system/chassis/motherboard/dimm22',
202 'PRODUCT_35' : '<inventory_root>/system/chassis/motherboard/dimm23',
203 'PRODUCT_36' : '<inventory_root>/system/chassis/motherboard/dimm24',
204 'PRODUCT_37' : '<inventory_root>/system/chassis/motherboard/dimm25',
205 'PRODUCT_38' : '<inventory_root>/system/chassis/motherboard/dimm26',
206 'PRODUCT_39' : '<inventory_root>/system/chassis/motherboard/dimm27',
207 'PRODUCT_40' : '<inventory_root>/system/chassis/motherboard/dimm28',
208 'PRODUCT_41' : '<inventory_root>/system/chassis/motherboard/dimm29',
209 'PRODUCT_42' : '<inventory_root>/system/chassis/motherboard/dimm30',
210 'PRODUCT_43' : '<inventory_root>/system/chassis/motherboard/dimm31',
211 'PRODUCT_47' : '<inventory_root>/system/misc',
212 },
213 'SENSOR' : {
Matt Spinler43352402017-02-20 13:08:40 -0600214 0x02 : '/org/openbmc/sensors/host/HostStatus',
215 0x03 : '/org/openbmc/sensors/host/BootProgress',
Matt Spinler43352402017-02-20 13:08:40 -0600216 0x5a : '<inventory_root>/system/chassis/motherboard/cpu0',
217 0xa4 : '<inventory_root>/system/chassis/motherboard/cpu1',
Yi Lie5fe5222016-06-16 13:02:52 -0400218 0x1e : '<inventory_root>/system/chassis/motherboard/dimm3',
219 0x1f : '<inventory_root>/system/chassis/motherboard/dimm2',
220 0x20 : '<inventory_root>/system/chassis/motherboard/dimm1',
221 0x21 : '<inventory_root>/system/chassis/motherboard/dimm0',
222 0x22 : '<inventory_root>/system/chassis/motherboard/dimm7',
223 0x23 : '<inventory_root>/system/chassis/motherboard/dimm6',
224 0x24 : '<inventory_root>/system/chassis/motherboard/dimm5',
225 0x25 : '<inventory_root>/system/chassis/motherboard/dimm4',
226 0x26 : '<inventory_root>/system/chassis/motherboard/dimm11',
227 0x27 : '<inventory_root>/system/chassis/motherboard/dimm10',
228 0x28 : '<inventory_root>/system/chassis/motherboard/dimm9',
229 0x29 : '<inventory_root>/system/chassis/motherboard/dimm8',
230 0x2a : '<inventory_root>/system/chassis/motherboard/dimm15',
231 0x2b : '<inventory_root>/system/chassis/motherboard/dimm14',
232 0x2c : '<inventory_root>/system/chassis/motherboard/dimm13',
233 0x2d : '<inventory_root>/system/chassis/motherboard/dimm12',
234 0x2e : '<inventory_root>/system/chassis/motherboard/dimm19',
235 0x2f : '<inventory_root>/system/chassis/motherboard/dimm18',
236 0x30 : '<inventory_root>/system/chassis/motherboard/dimm17',
237 0x31 : '<inventory_root>/system/chassis/motherboard/dimm16',
238 0x32 : '<inventory_root>/system/chassis/motherboard/dimm23',
239 0x33 : '<inventory_root>/system/chassis/motherboard/dimm22',
240 0x34 : '<inventory_root>/system/chassis/motherboard/dimm21',
241 0x35 : '<inventory_root>/system/chassis/motherboard/dimm20',
242 0x36 : '<inventory_root>/system/chassis/motherboard/dimm27',
243 0x37 : '<inventory_root>/system/chassis/motherboard/dimm26',
244 0x38 : '<inventory_root>/system/chassis/motherboard/dimm25',
245 0x39 : '<inventory_root>/system/chassis/motherboard/dimm24',
246 0x3a : '<inventory_root>/system/chassis/motherboard/dimm31',
247 0x3b : '<inventory_root>/system/chassis/motherboard/dimm30',
248 0x3c : '<inventory_root>/system/chassis/motherboard/dimm29',
249 0x3d : '<inventory_root>/system/chassis/motherboard/dimm28',
250 0x3e : '<inventory_root>/system/chassis/motherboard/cpu0/core0',
251 0x3f : '<inventory_root>/system/chassis/motherboard/cpu0/core1',
252 0x40 : '<inventory_root>/system/chassis/motherboard/cpu0/core2',
253 0x41 : '<inventory_root>/system/chassis/motherboard/cpu0/core3',
254 0x42 : '<inventory_root>/system/chassis/motherboard/cpu0/core4',
255 0x43 : '<inventory_root>/system/chassis/motherboard/cpu0/core5',
256 0x44 : '<inventory_root>/system/chassis/motherboard/cpu0/core6',
257 0x45 : '<inventory_root>/system/chassis/motherboard/cpu0/core7',
258 0x46 : '<inventory_root>/system/chassis/motherboard/cpu0/core8',
259 0x47 : '<inventory_root>/system/chassis/motherboard/cpu0/core9',
260 0x48 : '<inventory_root>/system/chassis/motherboard/cpu0/core10',
261 0x49 : '<inventory_root>/system/chassis/motherboard/cpu0/core11',
262 0x4a : '<inventory_root>/system/chassis/motherboard/cpu1/core0',
263 0x4b : '<inventory_root>/system/chassis/motherboard/cpu1/core1',
264 0x4c : '<inventory_root>/system/chassis/motherboard/cpu1/core2',
265 0x4d : '<inventory_root>/system/chassis/motherboard/cpu1/core3',
266 0x4e : '<inventory_root>/system/chassis/motherboard/cpu1/core4',
267 0x4f : '<inventory_root>/system/chassis/motherboard/cpu1/core5',
268 0x50 : '<inventory_root>/system/chassis/motherboard/cpu1/core6',
269 0x51 : '<inventory_root>/system/chassis/motherboard/cpu1/core7',
270 0x52 : '<inventory_root>/system/chassis/motherboard/cpu1/core8',
271 0x53 : '<inventory_root>/system/chassis/motherboard/cpu1/core9',
272 0x54 : '<inventory_root>/system/chassis/motherboard/cpu1/core10',
273 0x55 : '<inventory_root>/system/chassis/motherboard/cpu1/core11',
274 0x56 : '<inventory_root>/system/chassis/motherboard/membuf0',
275 0x57 : '<inventory_root>/system/chassis/motherboard/membuf1',
276 0x58 : '<inventory_root>/system/chassis/motherboard/membuf2',
277 0x59 : '<inventory_root>/system/chassis/motherboard/membuf3',
278 0x5a : '<inventory_root>/system/chassis/motherboard/membuf4',
279 0x5b : '<inventory_root>/system/chassis/motherboard/membuf5',
280 0x5c : '<inventory_root>/system/chassis/motherboard/membuf6',
281 0x5d : '<inventory_root>/system/chassis/motherboard/membuf7',
Matt Spinler43352402017-02-20 13:08:40 -0600282 0x07 : '/org/openbmc/sensors/host/BootCount',
283 0x0c : '<inventory_root>/system/chassis/motherboard',
284 0x01 : '<inventory_root>/system/systemevent',
285 0x08 : '<inventory_root>/system/powerlimit',
286 0x0d : '<inventory_root>/system/chassis/motherboard/refclock',
287 0x0e : '<inventory_root>/system/chassis/motherboard/pcieclock',
288 0x0f : '<inventory_root>/system/chassis/motherboard/todclock',
289 0x10 : '<inventory_root>/system/chassis/motherboard/apss',
Matt Spinler43352402017-02-20 13:08:40 -0600290 0x02 : '/org/openbmc/sensors/host/OperatingSystemStatus',
291 0x04 : '<inventory_root>/system/chassis/motherboard/pcielink',
Dhruvaraj Sc2ef4fc2017-03-21 02:08:56 -0500292 0xD8 : '/org/openbmc/sensors/host/PowerSupplyRedundancy',
Jayanth Othayoth3a3ac922017-03-22 05:46:44 -0500293 0xda : '/org/openbmc/sensors/host/TurboAllowed',
Jayanth Othayothe688d942017-03-27 08:31:22 -0500294 0xb4 : '/org/openbmc/sensors/host/PowerSupplyDerating',
Yi Lie5fe5222016-06-16 13:02:52 -0400295 },
296 'GPIO_PRESENT' : {}
297}
298
299GPIO_CONFIG = {}
300GPIO_CONFIG['BMC_POWER_UP'] = \
301 {'gpio_pin': 'D1', 'direction': 'out'}
Yi Li12a26d22016-11-03 17:34:50 +0800302GPIO_CONFIG['SOFTWARE_PGOOD'] = \
303 {'gpio_pin': 'R1', 'direction': 'out'}
Yi Lie5fe5222016-06-16 13:02:52 -0400304GPIO_CONFIG['SYS_PWROK_BUFF'] = \
305 {'gpio_pin': 'D2', 'direction': 'in'}
Yi Li12a26d22016-11-03 17:34:50 +0800306
307# PV_CP_MD_JTAG_ATTENTION_N
Adriana Kobylakb4140b82016-07-05 12:57:00 -0500308GPIO_CONFIG['CHECKSTOP'] = \
309 {'gpio_pin': 'J2', 'direction': 'falling'}
Yi Lie5fe5222016-06-16 13:02:52 -0400310
Yi Lie5fe5222016-06-16 13:02:52 -0400311GPIO_CONFIG['BMC_CP0_RESET_N'] = \
312 {'gpio_pin': 'A1', 'direction': 'out'}
Yi Li12a26d22016-11-03 17:34:50 +0800313# pcie switch reset
Yi Lie5fe5222016-06-16 13:02:52 -0400314GPIO_CONFIG['BMC_VS1_PERST_N'] = \
315 {'gpio_pin': 'B7', 'direction': 'out'}
Yi Li12a26d22016-11-03 17:34:50 +0800316# pcie slots reset - not connected?
Yi Lie5fe5222016-06-16 13:02:52 -0400317GPIO_CONFIG['BMC_CP0_PERST_ENABLE_R'] = \
318 {'gpio_pin': 'A3', 'direction': 'out'}
319
Yi Li12a26d22016-11-03 17:34:50 +0800320# SOFT_FSI_DAT
Yi Lie5fe5222016-06-16 13:02:52 -0400321GPIO_CONFIG['FSI_DATA'] = \
322 {'gpio_pin': 'E0', 'direction': 'out'}
Yi Li12a26d22016-11-03 17:34:50 +0800323# SOFT_FSI_CLK
Yi Lie5fe5222016-06-16 13:02:52 -0400324GPIO_CONFIG['FSI_CLK'] = \
325 {'gpio_pin': 'AA0', 'direction': 'out'}
Yi Li12a26d22016-11-03 17:34:50 +0800326# BMC_FSI_IN_ENA
Yi Lie5fe5222016-06-16 13:02:52 -0400327GPIO_CONFIG['FSI_ENABLE'] = \
328 {'gpio_pin': 'D0', 'direction': 'out'}
Yi Li12a26d22016-11-03 17:34:50 +0800329# FSI_JMFG0_PRSNT_N
Yi Lie5fe5222016-06-16 13:02:52 -0400330GPIO_CONFIG['CRONUS_SEL'] = \
331 {'gpio_pin': 'A6', 'direction': 'out'}
332
Yi Li12a26d22016-11-03 17:34:50 +0800333# FP_PWR_BTN_N
Yi Lie5fe5222016-06-16 13:02:52 -0400334GPIO_CONFIG['POWER_BUTTON'] = \
335 {'gpio_pin': 'I3', 'direction': 'both'}
Yi Li12a26d22016-11-03 17:34:50 +0800336# BMC_NMIBTN_IN_N
Yi Lie5fe5222016-06-16 13:02:52 -0400337GPIO_CONFIG['RESET_BUTTON'] = \
338 {'gpio_pin': 'J1', 'direction': 'both'}
339
Yi Li12a26d22016-11-03 17:34:50 +0800340# FIXME: needed for Witherspoon?
341# Tracked by openbmc/openbmc#814
342# FP_ID_BTN_N
343GPIO_CONFIG['IDBTN'] = \
344 {'gpio_pin': 'Q7', 'direction': 'out'}
Yi Lie5fe5222016-06-16 13:02:52 -0400345
Lei YU75a18a22016-11-22 01:47:47 +0800346GPIO_CONFIGS = {
347 'power_config' : {
348 'power_good_in' : 'SYS_PWROK_BUFF',
349 'power_up_outs' : [
350 ('SOFTWARE_PGOOD', True),
351 ('BMC_POWER_UP', True),
352 ],
353 'reset_outs' : [
354 ('BMC_CP0_RESET_N', False),
355 ],
356 'pci_reset_outs': [
357 # net name, polarity, reset hold
358 ('BMC_VS1_PERST_N', False, False),
359 ('BMC_CP0_PERST_ENABLE_R', False, False),
360 ],
361 },
362 'hostctl_config' : {
363 'fsi_data' : 'FSI_DATA',
364 'fsi_clk' : 'FSI_CLK',
365 'fsi_enable' : 'FSI_ENABLE',
366 'cronus_sel' : 'CRONUS_SEL',
367 'optionals' : [
368 ],
369 },
Xo Wang4088ec32016-09-22 13:00:58 -0700370}
371
372
Yi Lie5fe5222016-06-16 13:02:52 -0400373# Miscellaneous non-poll sensor with system specific properties.
374# The sensor id is the same as those defined in ID_LOOKUP['SENSOR'].
375MISC_SENSORS = {
Matt Spinler43352402017-02-20 13:08:40 -0600376 0x07 : { 'class' : 'BootCountSensor' },
377 0x03 : { 'class' : 'BootProgressSensor' },
Matt Spinler43352402017-02-20 13:08:40 -0600378 0x02 : { 'class' : 'OperatingSystemStatusSensor' },
Jayanth Othayothe688d942017-03-27 08:31:22 -0500379 # Garrison value is used, Not in P9 XML yet.
Dhruvaraj Sc2ef4fc2017-03-21 02:08:56 -0500380 0xD8 : { 'class' : 'PowerSupplyRedundancySensor'},
Jayanth Othayoth3a3ac922017-03-22 05:46:44 -0500381 0xda : { 'class' : 'TurboAllowedSensor' },
Jayanth Othayothe688d942017-03-27 08:31:22 -0500382 0xb4 : { 'class' : 'PowerSupplyDeratingSensor' },
Yi Lie5fe5222016-06-16 13:02:52 -0400383}
Brad Bishop53066752016-09-21 08:48:04 -0400384
385# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4