blob: 99c5edf3000884e8c51a3a2f59d16e7135525fe5 [file] [log] [blame]
Norman James3e5c8592015-10-22 14:33:01 -05001## 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
Norman James362a80f2015-09-14 14:04:39 -05005SYSTEM_STATES = [
Norman Jamesa9966b32015-10-28 06:55:58 -05006 'BASE_APPS',
Norman James3e5c8592015-10-22 14:33:01 -05007 'BMC_STARTING',
Norman James8ea118d2015-11-17 08:58:04 -06008 'BMC_STARTING2',
Norman James3e5c8592015-10-22 14:33:01 -05009 'BMC_READY',
10 'HOST_POWERING_ON',
11 'HOST_POWERED_ON',
Brad Bishop2c0e6142016-06-06 00:02:24 -040012 'INVENTORY_UPLOADED',
Norman James3e5c8592015-10-22 14:33:01 -050013 'HOST_BOOTING',
Norman James2656f332015-10-26 06:42:41 -050014 'HOST_BOOTED',
Norman James3cb0f982015-12-03 01:07:16 -060015 'HOST_POWERED_OFF',
Norman James362a80f2015-09-14 14:04:39 -050016]
17
Norman James3e5c8592015-10-22 14:33:01 -050018EXIT_STATE_DEPEND = {
Norman Jamesa9966b32015-10-28 06:55:58 -050019 'BASE_APPS' : {
Norman James76abea32015-10-29 06:17:54 -050020 '/org/openbmc/sensors': 0,
Norman Jamesa9966b32015-10-28 06:55:58 -050021 },
Norman James3e5c8592015-10-22 14:33:01 -050022 'BMC_STARTING' : {
Norman James3e5c8592015-10-22 14:33:01 -050023 '/org/openbmc/control/power0' : 0,
Norman Jamesb38ea5a2015-10-28 12:44:56 -050024 '/org/openbmc/control/host0' : 0,
Norman James2943cc62015-10-28 18:59:53 -050025 '/org/openbmc/control/flash/bios' : 0,
Norman James8ea118d2015-11-17 08:58:04 -060026 },
27 'BMC_STARTING2' : {
Kenfb444c52015-12-18 17:56:30 -060028 '/org/openbmc/control/fans' : 0,
Norman Jamesf5d2e5c2015-11-20 09:18:00 -060029 '/org/openbmc/control/chassis0': 0,
Norman James8ea118d2015-11-17 08:58:04 -060030 },
Norman James3e5c8592015-10-22 14:33:01 -050031}
32
Norman James88872672015-09-21 16:51:35 -050033FRU_INSTANCES = {
Norman James7427e582015-12-03 17:54:54 -060034 '<inventory_root>/system' : { 'fru_type' : 'SYSTEM','is_fru' : True, 'present' : "True" },
Norman James3bb97d92015-12-18 14:57:22 -060035 '<inventory_root>/system/bios' : { 'fru_type' : 'SYSTEM','is_fru' : True, 'present' : "True" },
36 '<inventory_root>/system/misc' : { 'fru_type' : 'SYSTEM','is_fru' : False, },
Norman James19e45912015-10-04 20:19:41 -050037
Norman James7427e582015-12-03 17:54:54 -060038 '<inventory_root>/system/chassis' : { 'fru_type' : 'SYSTEM','is_fru' : True, 'present' : "True" },
Norman James3e5c8592015-10-22 14:33:01 -050039
40 '<inventory_root>/system/chassis/motherboard' : { 'fru_type' : 'MAIN_PLANAR','is_fru' : True, },
41 '<inventory_root>/system/chassis/io_board' : { 'fru_type' : 'DAUGHTER_CARD','is_fru' : True, },
Norman James2abcddb2016-01-19 14:05:00 -060042 '<inventory_root>/system/chassis/sas_expander' : { 'fru_type' : 'DAUGHTER_CARD','is_fru' : True, },
43 '<inventory_root>/system/chassis/hdd_backplane' : { 'fru_type' : 'DAUGHTER_CARD','is_fru' : True, },
Norman James3e5c8592015-10-22 14:33:01 -050044
Norman James7427e582015-12-03 17:54:54 -060045 '<inventory_root>/system/systemevent' : { 'fru_type' : 'SYSTEM_EVENT', 'is_fru' : False, },
46 '<inventory_root>/system/chassis/motherboard/refclock' : { 'fru_type' : 'MAIN_PLANAR', 'is_fru' : False, },
47 '<inventory_root>/system/chassis/motherboard/pcieclock': { 'fru_type' : 'MAIN_PLANAR', 'is_fru' : False, },
48 '<inventory_root>/system/chassis/motherboard/todclock' : { 'fru_type' : 'MAIN_PLANAR', 'is_fru' : False, },
49 '<inventory_root>/system/chassis/motherboard/apss' : { 'fru_type' : 'MAIN_PLANAR', 'is_fru' : False, },
Norman James3e5c8592015-10-22 14:33:01 -050050
51 '<inventory_root>/system/chassis/fan0' : { 'fru_type' : 'FAN','is_fru' : True, },
52 '<inventory_root>/system/chassis/fan1' : { 'fru_type' : 'FAN','is_fru' : True, },
53 '<inventory_root>/system/chassis/fan2' : { 'fru_type' : 'FAN','is_fru' : True, },
54 '<inventory_root>/system/chassis/fan3' : { 'fru_type' : 'FAN','is_fru' : True, },
55 '<inventory_root>/system/chassis/fan4' : { 'fru_type' : 'FAN','is_fru' : True, },
Norman James2abcddb2016-01-19 14:05:00 -060056 '<inventory_root>/system/chassis/fan5' : { 'fru_type' : 'FAN','is_fru' : True, },
Norman James3e5c8592015-10-22 14:33:01 -050057
58 '<inventory_root>/system/chassis/motherboard/bmc' : { 'fru_type' : 'BMC','is_fru' : False, 'manufacturer' : 'ASPEED' },
59
60 '<inventory_root>/system/chassis/motherboard/cpu0' : { 'fru_type' : 'CPU', 'is_fru' : True, },
61 '<inventory_root>/system/chassis/motherboard/cpu1' : { 'fru_type' : 'CPU', 'is_fru' : True, },
62
63 '<inventory_root>/system/chassis/motherboard/cpu0/core0' : { 'fru_type' : 'CORE', 'is_fru' : False, },
64 '<inventory_root>/system/chassis/motherboard/cpu0/core1' : { 'fru_type' : 'CORE', 'is_fru' : False, },
65 '<inventory_root>/system/chassis/motherboard/cpu0/core2' : { 'fru_type' : 'CORE', 'is_fru' : False, },
66 '<inventory_root>/system/chassis/motherboard/cpu0/core3' : { 'fru_type' : 'CORE', 'is_fru' : False, },
67 '<inventory_root>/system/chassis/motherboard/cpu0/core4' : { 'fru_type' : 'CORE', 'is_fru' : False, },
68 '<inventory_root>/system/chassis/motherboard/cpu0/core5' : { 'fru_type' : 'CORE', 'is_fru' : False, },
69 '<inventory_root>/system/chassis/motherboard/cpu0/core6' : { 'fru_type' : 'CORE', 'is_fru' : False, },
70 '<inventory_root>/system/chassis/motherboard/cpu0/core7' : { 'fru_type' : 'CORE', 'is_fru' : False, },
71 '<inventory_root>/system/chassis/motherboard/cpu0/core8' : { 'fru_type' : 'CORE', 'is_fru' : False, },
72 '<inventory_root>/system/chassis/motherboard/cpu0/core9' : { 'fru_type' : 'CORE', 'is_fru' : False, },
73 '<inventory_root>/system/chassis/motherboard/cpu0/core10': { 'fru_type' : 'CORE', 'is_fru' : False, },
74 '<inventory_root>/system/chassis/motherboard/cpu0/core11': { 'fru_type' : 'CORE', 'is_fru' : False, },
75
76 '<inventory_root>/system/chassis/motherboard/cpu1/core0' : { 'fru_type' : 'CORE', 'is_fru' : False, },
77 '<inventory_root>/system/chassis/motherboard/cpu1/core1' : { 'fru_type' : 'CORE', 'is_fru' : False, },
78 '<inventory_root>/system/chassis/motherboard/cpu1/core2' : { 'fru_type' : 'CORE', 'is_fru' : False, },
79 '<inventory_root>/system/chassis/motherboard/cpu1/core3' : { 'fru_type' : 'CORE', 'is_fru' : False, },
80 '<inventory_root>/system/chassis/motherboard/cpu1/core4' : { 'fru_type' : 'CORE', 'is_fru' : False, },
81 '<inventory_root>/system/chassis/motherboard/cpu1/core5' : { 'fru_type' : 'CORE', 'is_fru' : False, },
82 '<inventory_root>/system/chassis/motherboard/cpu1/core6' : { 'fru_type' : 'CORE', 'is_fru' : False, },
83 '<inventory_root>/system/chassis/motherboard/cpu1/core7' : { 'fru_type' : 'CORE', 'is_fru' : False, },
84 '<inventory_root>/system/chassis/motherboard/cpu1/core8' : { 'fru_type' : 'CORE', 'is_fru' : False, },
85 '<inventory_root>/system/chassis/motherboard/cpu1/core9' : { 'fru_type' : 'CORE', 'is_fru' : False, },
86 '<inventory_root>/system/chassis/motherboard/cpu1/core10' : { 'fru_type' : 'CORE', 'is_fru' : False, },
Norman James7427e582015-12-03 17:54:54 -060087 '<inventory_root>/system/chassis/motherboard/cpu1/core11' : { 'fru_type' : 'CORE', 'is_fru' : False, },
Kenfb444c52015-12-18 17:56:30 -060088
Norman James3bb97d92015-12-18 14:57:22 -060089 '<inventory_root>/system/chassis/motherboard/membuf0' : { 'fru_type' : 'MEMORY_BUFFER', 'is_fru' : False, },
90 '<inventory_root>/system/chassis/motherboard/membuf1' : { 'fru_type' : 'MEMORY_BUFFER', 'is_fru' : False, },
91 '<inventory_root>/system/chassis/motherboard/membuf2' : { 'fru_type' : 'MEMORY_BUFFER', 'is_fru' : False, },
92 '<inventory_root>/system/chassis/motherboard/membuf3' : { 'fru_type' : 'MEMORY_BUFFER', 'is_fru' : False, },
93 '<inventory_root>/system/chassis/motherboard/membuf4' : { 'fru_type' : 'MEMORY_BUFFER', 'is_fru' : False, },
94 '<inventory_root>/system/chassis/motherboard/membuf5' : { 'fru_type' : 'MEMORY_BUFFER', 'is_fru' : False, },
95 '<inventory_root>/system/chassis/motherboard/membuf6' : { 'fru_type' : 'MEMORY_BUFFER', 'is_fru' : False, },
96 '<inventory_root>/system/chassis/motherboard/membuf7' : { 'fru_type' : 'MEMORY_BUFFER', 'is_fru' : False, },
Norman James3e5c8592015-10-22 14:33:01 -050097
98 '<inventory_root>/system/chassis/motherboard/dimm0' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
99 '<inventory_root>/system/chassis/motherboard/dimm1' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
100 '<inventory_root>/system/chassis/motherboard/dimm2' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
101 '<inventory_root>/system/chassis/motherboard/dimm3' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
102 '<inventory_root>/system/chassis/motherboard/dimm4' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
103 '<inventory_root>/system/chassis/motherboard/dimm5' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
104 '<inventory_root>/system/chassis/motherboard/dimm6' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
105 '<inventory_root>/system/chassis/motherboard/dimm7' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
106 '<inventory_root>/system/chassis/motherboard/dimm8' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
107 '<inventory_root>/system/chassis/motherboard/dimm9' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
108 '<inventory_root>/system/chassis/motherboard/dimm10' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
109 '<inventory_root>/system/chassis/motherboard/dimm11' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
110 '<inventory_root>/system/chassis/motherboard/dimm12' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
111 '<inventory_root>/system/chassis/motherboard/dimm13' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
112 '<inventory_root>/system/chassis/motherboard/dimm14' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
113 '<inventory_root>/system/chassis/motherboard/dimm15' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
114 '<inventory_root>/system/chassis/motherboard/dimm16' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
115 '<inventory_root>/system/chassis/motherboard/dimm17' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
116 '<inventory_root>/system/chassis/motherboard/dimm18' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
117 '<inventory_root>/system/chassis/motherboard/dimm19' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
118 '<inventory_root>/system/chassis/motherboard/dimm20' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
119 '<inventory_root>/system/chassis/motherboard/dimm21' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
120 '<inventory_root>/system/chassis/motherboard/dimm22' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
121 '<inventory_root>/system/chassis/motherboard/dimm23' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
122 '<inventory_root>/system/chassis/motherboard/dimm24' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
123 '<inventory_root>/system/chassis/motherboard/dimm25' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
124 '<inventory_root>/system/chassis/motherboard/dimm26' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
125 '<inventory_root>/system/chassis/motherboard/dimm27' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
126 '<inventory_root>/system/chassis/motherboard/dimm28' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
127 '<inventory_root>/system/chassis/motherboard/dimm29' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
128 '<inventory_root>/system/chassis/motherboard/dimm30' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
129 '<inventory_root>/system/chassis/motherboard/dimm31' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
130
131 '<inventory_root>/system/chassis/io_board/pcie_slot0_riser' : { 'fru_type' : 'PCIE_RISER', 'is_fru' : True,},
132 '<inventory_root>/system/chassis/io_board/pcie_slot1_riser' : { 'fru_type' : 'PCIE_RISER', 'is_fru' : True,},
Norman James7427e582015-12-03 17:54:54 -0600133 '<inventory_root>/system/chassis/io_board/pcie_slot2_riser' : { 'fru_type' : 'PCIE_RISER', 'is_fru' : True,},
Norman James3e5c8592015-10-22 14:33:01 -0500134 '<inventory_root>/system/chassis/io_board/pcie_slot0' : { 'fru_type' : 'PCIE_CARD', 'is_fru' : True,},
135 '<inventory_root>/system/chassis/io_board/pcie_slot1' : { 'fru_type' : 'PCIE_CARD', 'is_fru' : True,},
Norman James8ea118d2015-11-17 08:58:04 -0600136 '<inventory_root>/system/chassis/io_board/pcie_slot2' : { 'fru_type' : 'PCIE_CARD', 'is_fru' : True,},
Norman James3e5c8592015-10-22 14:33:01 -0500137 '<inventory_root>/system/chassis/io_board/pcie_mezz0' : { 'fru_type' : 'PCIE_CARD', 'is_fru' : True,},
138 '<inventory_root>/system/chassis/io_board/pcie_mezz1' : { 'fru_type' : 'PCIE_CARD', 'is_fru' : True,},
Norman James88872672015-09-21 16:51:35 -0500139}
Norman James362a80f2015-09-14 14:04:39 -0500140
Norman James19e45912015-10-04 20:19:41 -0500141ID_LOOKUP = {
142 'FRU' : {
Kend6affe62015-11-05 14:44:01 +0800143 0x03 : '<inventory_root>/system/chassis/motherboard',
Norman James4f4bb6e2015-11-09 10:53:23 -0600144 0x40 : '<inventory_root>/system/chassis/io_board',
Norman James3e5c8592015-10-22 14:33:01 -0500145 0x01 : '<inventory_root>/system/chassis/motherboard/cpu0',
Kend6affe62015-11-05 14:44:01 +0800146 0x02 : '<inventory_root>/system/chassis/motherboard/cpu1',
Norman James3bb97d92015-12-18 14:57:22 -0600147 0x04 : '<inventory_root>/system/chassis/motherboard/membuf0',
148 0x05 : '<inventory_root>/system/chassis/motherboard/membuf1',
149 0x06 : '<inventory_root>/system/chassis/motherboard/membuf2',
150 0x07 : '<inventory_root>/system/chassis/motherboard/membuf3',
151 0x08 : '<inventory_root>/system/chassis/motherboard/membuf4',
152 0x09 : '<inventory_root>/system/chassis/motherboard/membuf5',
153 0x0a : '<inventory_root>/system/chassis/motherboard/membuf6',
154 0x0b : '<inventory_root>/system/chassis/motherboard/membuf7',
Kend6affe62015-11-05 14:44:01 +0800155 0x0c : '<inventory_root>/system/chassis/motherboard/dimm0',
156 0x0d : '<inventory_root>/system/chassis/motherboard/dimm1',
157 0x0e : '<inventory_root>/system/chassis/motherboard/dimm2',
158 0x0f : '<inventory_root>/system/chassis/motherboard/dimm3',
159 0x10 : '<inventory_root>/system/chassis/motherboard/dimm4',
160 0x11 : '<inventory_root>/system/chassis/motherboard/dimm5',
161 0x12 : '<inventory_root>/system/chassis/motherboard/dimm6',
162 0x13 : '<inventory_root>/system/chassis/motherboard/dimm7',
163 0x14 : '<inventory_root>/system/chassis/motherboard/dimm8',
164 0x15 : '<inventory_root>/system/chassis/motherboard/dimm9',
165 0x16 : '<inventory_root>/system/chassis/motherboard/dimm10',
166 0x17 : '<inventory_root>/system/chassis/motherboard/dimm11',
167 0x18 : '<inventory_root>/system/chassis/motherboard/dimm12',
168 0x19 : '<inventory_root>/system/chassis/motherboard/dimm13',
169 0x1a : '<inventory_root>/system/chassis/motherboard/dimm14',
170 0x1b : '<inventory_root>/system/chassis/motherboard/dimm15',
171 0x1c : '<inventory_root>/system/chassis/motherboard/dimm16',
172 0x1d : '<inventory_root>/system/chassis/motherboard/dimm17',
173 0x1e : '<inventory_root>/system/chassis/motherboard/dimm18',
174 0x1f : '<inventory_root>/system/chassis/motherboard/dimm19',
175 0x20 : '<inventory_root>/system/chassis/motherboard/dimm20',
176 0x21 : '<inventory_root>/system/chassis/motherboard/dimm21',
177 0x22 : '<inventory_root>/system/chassis/motherboard/dimm22',
178 0x23 : '<inventory_root>/system/chassis/motherboard/dimm23',
179 0x24 : '<inventory_root>/system/chassis/motherboard/dimm24',
180 0x25 : '<inventory_root>/system/chassis/motherboard/dimm25',
181 0x26 : '<inventory_root>/system/chassis/motherboard/dimm26',
182 0x27 : '<inventory_root>/system/chassis/motherboard/dimm27',
183 0x28 : '<inventory_root>/system/chassis/motherboard/dimm28',
184 0x29 : '<inventory_root>/system/chassis/motherboard/dimm29',
185 0x2a : '<inventory_root>/system/chassis/motherboard/dimm30',
186 0x2b : '<inventory_root>/system/chassis/motherboard/dimm31',
187 0x33 : '<inventory_root>/system',
Norman James3e5c8592015-10-22 14:33:01 -0500188 },
189 'FRU_STR' : {
Norman James3bb97d92015-12-18 14:57:22 -0600190 'PRODUCT_0' : '<inventory_root>/system/bios',
191 'BOARD_3' : '<inventory_root>/system/misc',
192 'PRODUCT_51' : '<inventory_root>/system/misc',
Norman James13162102015-11-23 21:04:06 -0600193 'BOARD_100' : '<inventory_root>/system/chassis/io_board',
Norman James2abcddb2016-01-19 14:05:00 -0600194 'BOARD_101' : '<inventory_root>/system/chassis/sas_expander',
195 'BOARD_102' : '<inventory_root>/system/chassis/hdd_backplane',
Norman James7427e582015-12-03 17:54:54 -0600196 'CHASSIS_3' : '<inventory_root>/system/chassis/motherboard',
Norman James4f4bb6e2015-11-09 10:53:23 -0600197 'BOARD_1' : '<inventory_root>/system/chassis/motherboard/cpu0',
198 'BOARD_2' : '<inventory_root>/system/chassis/motherboard/cpu1',
Norman James3bb97d92015-12-18 14:57:22 -0600199 'BOARD_4' : '<inventory_root>/system/chassis/motherboard/membuf0',
200 'BOARD_5' : '<inventory_root>/system/chassis/motherboard/membuf1',
201 'BOARD_6' : '<inventory_root>/system/chassis/motherboard/membuf2',
202 'BOARD_7' : '<inventory_root>/system/chassis/motherboard/membuf3',
203 'BOARD_8' : '<inventory_root>/system/chassis/motherboard/membuf4',
204 'BOARD_9' : '<inventory_root>/system/chassis/motherboard/membuf5',
205 'BOARD_10' : '<inventory_root>/system/chassis/motherboard/membuf6',
206 'BOARD_11' : '<inventory_root>/system/chassis/motherboard/membuf7',
Norman James4f4bb6e2015-11-09 10:53:23 -0600207 'PRODUCT_12' : '<inventory_root>/system/chassis/motherboard/dimm0',
208 'PRODUCT_13' : '<inventory_root>/system/chassis/motherboard/dimm1',
209 'PRODUCT_14' : '<inventory_root>/system/chassis/motherboard/dimm2',
210 'PRODUCT_15' : '<inventory_root>/system/chassis/motherboard/dimm3',
211 'PRODUCT_16' : '<inventory_root>/system/chassis/motherboard/dimm4',
212 'PRODUCT_17' : '<inventory_root>/system/chassis/motherboard/dimm5',
213 'PRODUCT_18' : '<inventory_root>/system/chassis/motherboard/dimm6',
214 'PRODUCT_19' : '<inventory_root>/system/chassis/motherboard/dimm7',
215 'PRODUCT_20' : '<inventory_root>/system/chassis/motherboard/dimm8',
216 'PRODUCT_21' : '<inventory_root>/system/chassis/motherboard/dimm9',
217 'PRODUCT_22' : '<inventory_root>/system/chassis/motherboard/dimm10',
218 'PRODUCT_23' : '<inventory_root>/system/chassis/motherboard/dimm11',
219 'PRODUCT_24' : '<inventory_root>/system/chassis/motherboard/dimm12',
220 'PRODUCT_25' : '<inventory_root>/system/chassis/motherboard/dimm13',
221 'PRODUCT_26' : '<inventory_root>/system/chassis/motherboard/dimm14',
222 'PRODUCT_27' : '<inventory_root>/system/chassis/motherboard/dimm15',
223 'PRODUCT_28' : '<inventory_root>/system/chassis/motherboard/dimm16',
224 'PRODUCT_29' : '<inventory_root>/system/chassis/motherboard/dimm17',
225 'PRODUCT_30' : '<inventory_root>/system/chassis/motherboard/dimm18',
226 'PRODUCT_31' : '<inventory_root>/system/chassis/motherboard/dimm19',
227 'PRODUCT_32' : '<inventory_root>/system/chassis/motherboard/dimm20',
228 'PRODUCT_33' : '<inventory_root>/system/chassis/motherboard/dimm21',
229 'PRODUCT_34' : '<inventory_root>/system/chassis/motherboard/dimm22',
230 'PRODUCT_35' : '<inventory_root>/system/chassis/motherboard/dimm23',
231 'PRODUCT_36' : '<inventory_root>/system/chassis/motherboard/dimm24',
232 'PRODUCT_37' : '<inventory_root>/system/chassis/motherboard/dimm25',
233 'PRODUCT_38' : '<inventory_root>/system/chassis/motherboard/dimm26',
234 'PRODUCT_39' : '<inventory_root>/system/chassis/motherboard/dimm27',
235 'PRODUCT_40' : '<inventory_root>/system/chassis/motherboard/dimm28',
236 'PRODUCT_41' : '<inventory_root>/system/chassis/motherboard/dimm29',
237 'PRODUCT_42' : '<inventory_root>/system/chassis/motherboard/dimm30',
238 'PRODUCT_43' : '<inventory_root>/system/chassis/motherboard/dimm31',
Norman James19e45912015-10-04 20:19:41 -0500239 },
240 'SENSOR' : {
Norman James7427e582015-12-03 17:54:54 -0600241 0x35 : '<inventory_root>/system/systemevent',
242 0x36 : '<inventory_root>/system/powerlimit',
Kend6affe62015-11-05 14:44:01 +0800243 0x34 : '<inventory_root>/system/chassis/motherboard',
Norman James7427e582015-12-03 17:54:54 -0600244 0x31 : '<inventory_root>/system/chassis/motherboard/pcielink',
245 0x37 : '<inventory_root>/system/chassis/motherboard/refclock',
246 0x38 : '<inventory_root>/system/chassis/motherboard/pcieclock',
247 0x39 : '<inventory_root>/system/chassis/motherboard/todclock',
Kenfb444c52015-12-18 17:56:30 -0600248 0x3A : '<inventory_root>/system/chassis/motherboard/apss',
Kend6affe62015-11-05 14:44:01 +0800249 0x0c : '<inventory_root>/system/chassis/motherboard/cpu0',
250 0x0e : '<inventory_root>/system/chassis/motherboard/cpu1',
251 0xc8 : '<inventory_root>/system/chassis/motherboard/cpu0/core0',
252 0xc9 : '<inventory_root>/system/chassis/motherboard/cpu0/core1',
253 0xca : '<inventory_root>/system/chassis/motherboard/cpu0/core2',
254 0xcb : '<inventory_root>/system/chassis/motherboard/cpu0/core3',
255 0xcc : '<inventory_root>/system/chassis/motherboard/cpu0/core4',
256 0xcd : '<inventory_root>/system/chassis/motherboard/cpu0/core5',
257 0xce : '<inventory_root>/system/chassis/motherboard/cpu0/core6',
258 0xcf : '<inventory_root>/system/chassis/motherboard/cpu0/core7',
259 0xd0 : '<inventory_root>/system/chassis/motherboard/cpu0/core8',
260 0xd1 : '<inventory_root>/system/chassis/motherboard/cpu0/core9',
261 0xd2 : '<inventory_root>/system/chassis/motherboard/cpu0/core10',
262 0xd3 : '<inventory_root>/system/chassis/motherboard/cpu0/core11',
Norman James7427e582015-12-03 17:54:54 -0600263 0xd4 : '<inventory_root>/system/chassis/motherboard/cpu1/core0',
264 0xd5 : '<inventory_root>/system/chassis/motherboard/cpu1/core1',
265 0xd6 : '<inventory_root>/system/chassis/motherboard/cpu1/core2',
266 0xd7 : '<inventory_root>/system/chassis/motherboard/cpu1/core3',
267 0xd8 : '<inventory_root>/system/chassis/motherboard/cpu1/core4',
268 0xd9 : '<inventory_root>/system/chassis/motherboard/cpu1/core5',
269 0xda : '<inventory_root>/system/chassis/motherboard/cpu1/core6',
270 0xdb : '<inventory_root>/system/chassis/motherboard/cpu1/core7',
271 0xdc : '<inventory_root>/system/chassis/motherboard/cpu1/core8',
272 0xdd : '<inventory_root>/system/chassis/motherboard/cpu1/core9',
273 0xde : '<inventory_root>/system/chassis/motherboard/cpu1/core10',
274 0xdf : '<inventory_root>/system/chassis/motherboard/cpu1/core11',
Norman James3bb97d92015-12-18 14:57:22 -0600275 0x40 : '<inventory_root>/system/chassis/motherboard/membuf0',
276 0x41 : '<inventory_root>/system/chassis/motherboard/membuf1',
277 0x42 : '<inventory_root>/system/chassis/motherboard/membuf2',
278 0x43 : '<inventory_root>/system/chassis/motherboard/membuf3',
279 0x44 : '<inventory_root>/system/chassis/motherboard/membuf4',
280 0x45 : '<inventory_root>/system/chassis/motherboard/membuf5',
281 0x46 : '<inventory_root>/system/chassis/motherboard/membuf6',
282 0x47 : '<inventory_root>/system/chassis/motherboard/membuf7',
Kend6affe62015-11-05 14:44:01 +0800283 0x10 : '<inventory_root>/system/chassis/motherboard/dimm0',
284 0x11 : '<inventory_root>/system/chassis/motherboard/dimm1',
285 0x12 : '<inventory_root>/system/chassis/motherboard/dimm2',
286 0x13 : '<inventory_root>/system/chassis/motherboard/dimm3',
287 0x14 : '<inventory_root>/system/chassis/motherboard/dimm4',
288 0x15 : '<inventory_root>/system/chassis/motherboard/dimm5',
289 0x16 : '<inventory_root>/system/chassis/motherboard/dimm6',
290 0x17 : '<inventory_root>/system/chassis/motherboard/dimm7',
291 0x18 : '<inventory_root>/system/chassis/motherboard/dimm8',
292 0x19 : '<inventory_root>/system/chassis/motherboard/dimm9',
293 0x1a : '<inventory_root>/system/chassis/motherboard/dimm10',
294 0x1b : '<inventory_root>/system/chassis/motherboard/dimm11',
295 0x1c : '<inventory_root>/system/chassis/motherboard/dimm12',
296 0x1d : '<inventory_root>/system/chassis/motherboard/dimm13',
297 0x1e : '<inventory_root>/system/chassis/motherboard/dimm14',
298 0x1f : '<inventory_root>/system/chassis/motherboard/dimm15',
299 0x20 : '<inventory_root>/system/chassis/motherboard/dimm16',
300 0x21 : '<inventory_root>/system/chassis/motherboard/dimm17',
301 0x22 : '<inventory_root>/system/chassis/motherboard/dimm18',
302 0x23 : '<inventory_root>/system/chassis/motherboard/dimm19',
303 0x24 : '<inventory_root>/system/chassis/motherboard/dimm20',
304 0x25 : '<inventory_root>/system/chassis/motherboard/dimm21',
305 0x26 : '<inventory_root>/system/chassis/motherboard/dimm22',
306 0x27 : '<inventory_root>/system/chassis/motherboard/dimm23',
307 0x28 : '<inventory_root>/system/chassis/motherboard/dimm24',
308 0x29 : '<inventory_root>/system/chassis/motherboard/dimm25',
309 0x2a : '<inventory_root>/system/chassis/motherboard/dimm26',
310 0x2b : '<inventory_root>/system/chassis/motherboard/dimm27',
311 0x2c : '<inventory_root>/system/chassis/motherboard/dimm28',
312 0x2d : '<inventory_root>/system/chassis/motherboard/dimm29',
313 0x2e : '<inventory_root>/system/chassis/motherboard/dimm30',
Kenfb444c52015-12-18 17:56:30 -0600314 0x2f : '<inventory_root>/system/chassis/motherboard/dimm31',
Chris Austen4c9ea5d2015-12-09 23:26:08 -0600315 0x09 : '/org/openbmc/sensors/host/BootCount',
316 0x05 : '/org/openbmc/sensors/host/BootProgress',
317 0x04 : '/org/openbmc/sensors/host/HostStatus',
Chris Austen4c9ea5d2015-12-09 23:26:08 -0600318 0x32 : '/org/openbmc/sensors/host/OperatingSystemStatus',
Norman James19e45912015-10-04 20:19:41 -0500319 },
320 'GPIO_PRESENT' : {
Kenfb444c52015-12-18 17:56:30 -0600321 'SLOT0_RISER_PRESENT' : '<inventory_root>/system/chassis/io_board/pcie_slot0_riser',
322 'SLOT1_RISER_PRESENT' : '<inventory_root>/system/chassis/io_board/pcie_slot1_riser',
323 'SLOT2_RISER_PRESENT' : '<inventory_root>/system/chassis/io_board/pcie_slot2_riser',
324 'SLOT0_PRESENT' : '<inventory_root>/system/chassis/io_board/pcie_slot0',
325 'SLOT1_PRESENT' : '<inventory_root>/system/chassis/io_board/pcie_slot1',
326 'SLOT2_PRESENT' : '<inventory_root>/system/chassis/io_board/pcie_slot2',
327 'MEZZ0_PRESENT' : '<inventory_root>/system/chassis/io_board/pcie_mezz0',
328 'MEZZ1_PRESENT' : '<inventory_root>/system/chassis/io_board/pcie_mezz1',
Norman James19e45912015-10-04 20:19:41 -0500329 }
330}
Norman James362a80f2015-09-14 14:04:39 -0500331
Norman Jamesce46e3e2015-08-30 22:25:55 -0500332GPIO_CONFIG = {}
Norman Jamesb38ea5a2015-10-28 12:44:56 -0500333GPIO_CONFIG['FSI_CLK'] = { 'gpio_pin': 'A4', 'direction': 'out' }
334GPIO_CONFIG['FSI_DATA'] = { 'gpio_pin': 'A5', 'direction': 'out' }
335GPIO_CONFIG['FSI_ENABLE'] = { 'gpio_pin': 'D0', 'direction': 'out' }
336GPIO_CONFIG['POWER_PIN'] = { 'gpio_pin': 'E1', 'direction': 'out' }
337GPIO_CONFIG['CRONUS_SEL'] = { 'gpio_pin': 'A6', 'direction': 'out' }
338GPIO_CONFIG['PGOOD'] = { 'gpio_pin': 'C7', 'direction': 'in' }
Norman James2943cc62015-10-28 18:59:53 -0500339GPIO_CONFIG['POWER_BUTTON'] = { 'gpio_pin': 'E0', 'direction': 'both' }
Norman Jamese62f4452015-10-31 17:33:10 -0500340GPIO_CONFIG['PCIE_RESET'] = { 'gpio_pin': 'B5', 'direction': 'out' }
341GPIO_CONFIG['USB_RESET'] = { 'gpio_pin': 'B6', 'direction': 'out' }
Kenfb444c52015-12-18 17:56:30 -0600342
Ken584747e2016-05-18 15:18:05 +0800343GPIO_CONFIG['IDBTN'] = { 'gpio_pin': 'Q7', 'direction': 'out' }
Kenfb444c52015-12-18 17:56:30 -0600344GPIO_CONFIG['BMC_THROTTLE'] = { 'gpio_pin': 'J3', 'direction': 'out' }
345GPIO_CONFIG['RESET_BUTTON'] = { 'gpio_pin': 'E2', 'direction': 'both' }
346GPIO_CONFIG['CPLD_TCK'] = { 'gpio_pin': 'P0', 'direction': 'out' }
347GPIO_CONFIG['CPLD_TDO'] = { 'gpio_pin': 'P1', 'direction': 'out' }
348GPIO_CONFIG['CPLD_TDI'] = { 'gpio_pin': 'P2', 'direction': 'out' }
349GPIO_CONFIG['CPLD_TMS'] = { 'gpio_pin': 'P3', 'direction': 'out' }
Adriana Kobylak341c8c22016-06-16 09:20:55 -0500350GPIO_CONFIG['CHECKSTOP'] = { 'gpio_pin': 'P5', 'direction': 'falling' }
Kenfb444c52015-12-18 17:56:30 -0600351
Norman Jamesb38ea5a2015-10-28 12:44:56 -0500352GPIO_CONFIG['SLOT0_RISER_PRESENT'] = { 'gpio_pin': 'N0', 'direction': 'in' }
353GPIO_CONFIG['SLOT1_RISER_PRESENT'] = { 'gpio_pin': 'N1', 'direction': 'in' }
354GPIO_CONFIG['SLOT2_RISER_PRESENT'] = { 'gpio_pin': 'N2', 'direction': 'in' }
355GPIO_CONFIG['SLOT0_PRESENT'] = { 'gpio_pin': 'N3', 'direction': 'in' }
356GPIO_CONFIG['SLOT1_PRESENT'] = { 'gpio_pin': 'N4', 'direction': 'in' }
357GPIO_CONFIG['SLOT2_PRESENT'] = { 'gpio_pin': 'N5', 'direction': 'in' }
358GPIO_CONFIG['MEZZ0_PRESENT'] = { 'gpio_pin': 'O0', 'direction': 'in' }
359GPIO_CONFIG['MEZZ1_PRESENT'] = { 'gpio_pin': 'O1', 'direction': 'in' }
Norman Jamesa9966b32015-10-28 06:55:58 -0500360
Lei YU75a18a22016-11-22 01:47:47 +0800361GPIO_CONFIGS = {
362 'power_config' : {
363 'power_good_in' : 'PGOOD',
364 'power_up_outs' : [
365 ('POWER_PIN', False),
366 ],
367 'reset_outs' : [
368 ('USB_RESET', False),
369 ],
370 'pci_reset_outs': [
371 # net name, polarity, reset hold
372 ('PCIE_RESET', False, False),
373 ],
374 },
375 'hostctl_config' : {
376 'fsi_data' : 'FSI_DATA',
377 'fsi_clk' : 'FSI_CLK',
378 'fsi_enable' : 'FSI_ENABLE',
379 'cronus_sel' : 'CRONUS_SEL',
380 'optionals' : [
381 ('BMC_THROTTLE', True),
382 ('IDBTN', False),
383 ],
384 },
Xo Wang4088ec32016-09-22 13:00:58 -0700385}
386
Yi Li54decc82016-05-05 17:42:56 +0800387# Miscellaneous non-poll sensor with system specific properties.
388# The sensor id is the same as those defined in ID_LOOKUP['SENSOR'].
389MISC_SENSORS = {
390 0x09 : { 'class' : 'BootCountSensor' },
391 0x05 : { 'class' : 'BootProgressSensor' },
Yi Li54decc82016-05-05 17:42:56 +0800392 0x32 : { 'class' : 'OperatingSystemStatusSensor' },
Yi Li54decc82016-05-05 17:42:56 +0800393}
Brad Bishop53066752016-09-21 08:48:04 -0400394
395# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4