xref: /openbmc/skeleton/configs/Palmetto.py (revision fa06665f)
1#! /usr/bin/python
2
3HOME_PATH = './'
4CACHE_PATH = '/var/cache/obmc/'
5GPIO_BASE = 320
6SYSTEM_NAME = "Palmetto"
7
8
9## System states
10##   state can change to next state in 2 ways:
11##   - a process emits a GotoSystemState signal with state name to goto
12##   - objects specified in EXIT_STATE_DEPEND have started
13SYSTEM_STATES = [
14	'BASE_APPS',
15	'BMC_STARTING',
16	'BMC_READY',
17	'HOST_POWERING_ON',
18	'HOST_POWERED_ON',
19	'HOST_BOOTING',
20	'HOST_BOOTED',
21	'HOST_POWERED_OFF',
22]
23
24EXIT_STATE_DEPEND = {
25	'BASE_APPS' : {
26		'/org/openbmc/sensors': 0,
27	},
28	'BMC_STARTING' : {
29		'/org/openbmc/control/chassis0': 0,
30		'/org/openbmc/control/power0' : 0,
31		'/org/openbmc/control/led/identify' : 0,
32		'/org/openbmc/control/host0' : 0,
33		'/org/openbmc/control/flash/bios' : 0,
34	}
35}
36
37## method will be called when state is entered
38ENTER_STATE_CALLBACK = {
39	'HOST_POWERED_ON' : {
40		'boot' : {
41			'bus_name'    : 'org.openbmc.control.Host',
42			'obj_name'    : '/org/openbmc/control/host0',
43			'interface_name' : 'org.openbmc.control.Host',
44		}
45	},
46	'BMC_READY' : {
47		'setOn' : {
48			'bus_name'   : 'org.openbmc.control.led',
49			'obj_name'   : '/org/openbmc/control/led/identify',
50			'interface_name' : 'org.openbmc.Led',
51		},
52		'init' : {
53			'bus_name'   : 'org.openbmc.control.Flash',
54			'obj_name'   : '/org/openbmc/control/flash/bios',
55			'interface_name' : 'org.openbmc.Flash',
56		},
57	}
58}
59
60APPS = {
61	'startup_hacks' : {
62		'system_state'    : 'BASE_APPS',
63		'start_process'   : True,
64		'monitor_process' : False,
65		'process_name'    : 'startup_hacks.sh',
66	},
67	'inventory' : {
68		'system_state'    : 'BMC_STARTING',
69		'start_process'   : True,
70		'monitor_process' : True,
71		'process_name'    : 'inventory_items.py',
72		'args'            : [ SYSTEM_NAME ]
73	},
74	'pcie_present' : {
75		'system_state'    : 'HOST_POWERED_ON',
76		'start_process'   : False,
77		'monitor_process' : False,
78		'process_name'    : 'pcie_slot_present.exe',
79	},
80	'virtual_sensors' : {
81		'system_state'    : 'BMC_STARTING',
82		'start_process'   : True,
83		'monitor_process' : True,
84		'process_name'    : 'hwmon.py',
85		'args'            : [ SYSTEM_NAME ]
86	},
87	'sensor_manager' : {
88		'system_state'    : 'BASE_APPS',
89		'start_process'   : True,
90		'monitor_process' : True,
91		'process_name'    : 'sensor_manager2.py',
92		'args'            : [ SYSTEM_NAME ]
93	},
94	'host_watchdog' : {
95		'system_state'    : 'BMC_STARTING',
96		'start_process'   : True,
97		'monitor_process' : True,
98		'process_name'    : 'host_watchdog.exe',
99	},
100	'power_control' : {
101		'system_state'    : 'BMC_STARTING',
102		'start_process'   : True,
103		'monitor_process' : True,
104		'process_name' : 'power_control.exe',
105		'args' : [ '3000', '10' ]
106	},
107	'power_button' : {
108		'system_state'    : 'BMC_STARTING',
109		'start_process'   : False,
110		'monitor_process' : False,
111		'process_name'    : 'button_power.exe',
112	},
113	'host_checkstop' : {
114		'system_state'    : 'BMC_STARTING',
115		'start_process'   : False,
116		'monitor_process' : False,
117		'process_name'    : 'host_checkstop.exe',
118	},
119	'led_control' : {
120		'system_state'    : 'BMC_STARTING',
121		'start_process'   : True,
122		'monitor_process' : True,
123		'process_name'    : 'led_controller.exe',
124	},
125	'flash_control' : {
126		'system_state'    : 'BMC_STARTING',
127		'start_process'   : True,
128		'monitor_process' : True,
129		'process_name'    : 'flash_bios.exe',
130	},
131	'bmc_flash_control' : {
132		'system_state'    : 'BMC_STARTING',
133		'start_process'   : True,
134		'monitor_process' : True,
135		'process_name'    : 'bmc_update.py',
136	},
137	'download_manager' : {
138		'system_state'    : 'BMC_STARTING',
139		'start_process'   : True,
140		'monitor_process' : True,
141		'process_name'    : 'download_manager.py',
142		'args'            : [ SYSTEM_NAME ]
143	},
144	'host_control' : {
145		'system_state'    : 'BMC_STARTING',
146		'start_process'   : True,
147		'monitor_process' : True,
148		'process_name'    : 'control_host.exe',
149	},
150	'chassis_control' : {
151		'system_state'    : 'BMC_STARTING',
152		'start_process'   : True,
153		'monitor_process' : True,
154		'process_name'    : 'chassis_control.py',
155	},
156	'restore' : {
157		'system_state'    : 'BMC_READY',
158		'start_process'   : True,
159		'monitor_process' : False,
160		'process_name'    : 'discover_system_state.py',
161	},
162	'bmc_control' : {
163		'system_state'    : 'BMC_STARTING',
164		'start_process'   : True,
165		'monitor_process' : True,
166		'process_name'    : 'control_bmc.exe',
167	}
168}
169
170CACHED_INTERFACES = {
171		"org.openbmc.InventoryItem" : True,
172		"org.openbmc.control.Chassis" : True,
173	}
174INVENTORY_ROOT = '/org/openbmc/inventory'
175
176FRU_INSTANCES = {
177	'<inventory_root>/system' : { 'fru_type' : 'SYSTEM','is_fru' : True, },
178	'<inventory_root>/system/chassis' : { 'fru_type' : 'SYSTEM','is_fru' : True, },
179	'<inventory_root>/system/chassis/motherboard' : { 'fru_type' : 'MAIN_PLANAR','is_fru' : True, },
180
181	'<inventory_root>/system/chassis/fan0' : { 'fru_type' : 'FAN','is_fru' : True, },
182	'<inventory_root>/system/chassis/fan1' : { 'fru_type' : 'FAN','is_fru' : True, },
183	'<inventory_root>/system/chassis/fan2' : { 'fru_type' : 'FAN','is_fru' : True, },
184	'<inventory_root>/system/chassis/fan3' : { 'fru_type' : 'FAN','is_fru' : True, },
185	'<inventory_root>/system/chassis/fan4' : { 'fru_type' : 'FAN','is_fru' : True, },
186
187	'<inventory_root>/system/chassis/motherboard/bmc' : { 'fru_type' : 'BMC','is_fru' : False,
188			'manufacturer' : 'ASPEED' },
189	'<inventory_root>/system/chassis/motherboard/cpu0' : { 'fru_type' : 'CPU', 'is_fru' : True, },
190	'<inventory_root>/system/chassis/motherboard/cpu0/core0' : { 'fru_type' : 'CORE', 'is_fru' : False, },
191	'<inventory_root>/system/chassis/motherboard/cpu0/core1' : { 'fru_type' : 'CORE', 'is_fru' : False, },
192	'<inventory_root>/system/chassis/motherboard/cpu0/core2' : { 'fru_type' : 'CORE', 'is_fru' : False, },
193	'<inventory_root>/system/chassis/motherboard/cpu0/core3' : { 'fru_type' : 'CORE', 'is_fru' : False, },
194	'<inventory_root>/system/chassis/motherboard/cpu0/core4' : { 'fru_type' : 'CORE', 'is_fru' : False, },
195	'<inventory_root>/system/chassis/motherboard/cpu0/core5' : { 'fru_type' : 'CORE', 'is_fru' : False, },
196	'<inventory_root>/system/chassis/motherboard/cpu0/core6' : { 'fru_type' : 'CORE', 'is_fru' : False, },
197	'<inventory_root>/system/chassis/motherboard/cpu0/core7' : { 'fru_type' : 'CORE', 'is_fru' : False, },
198	'<inventory_root>/system/chassis/motherboard/cpu0/core8' : { 'fru_type' : 'CORE', 'is_fru' : False, },
199	'<inventory_root>/system/chassis/motherboard/cpu0/core9' : { 'fru_type' : 'CORE', 'is_fru' : False, },
200	'<inventory_root>/system/chassis/motherboard/cpu0/core10' : { 'fru_type' : 'CORE', 'is_fru' : False, },
201	'<inventory_root>/system/chassis/motherboard/cpu0/core11' : { 'fru_type' : 'CORE', 'is_fru' : False, },
202
203
204	'<inventory_root>/system/chassis/motherboard/membuf0' : { 'fru_type' : 'MEMORY_BUFFER', 'is_fru' : False, },
205
206	'<inventory_root>/system/chassis/motherboard/dimm0' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
207	'<inventory_root>/system/chassis/motherboard/dimm1' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
208	'<inventory_root>/system/chassis/motherboard/dimm2' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
209	'<inventory_root>/system/chassis/motherboard/dimm3' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
210
211	'<inventory_root>/system/chassis/io_board/pcie_slot0' : { 'fru_type' : 'PCIE_CARD', 'is_fru' : True,},
212	'<inventory_root>/system/chassis/io_board/pcie_slot1' : { 'fru_type' : 'PCIE_CARD', 'is_fru' : True,},
213
214	'<inventory_root>/system/systemevent'                  : { 'fru_type' : 'SYSTEM_EVENT', 'is_fru' : False, },
215	'<inventory_root>/system/chassis/motherboard/refclock' : { 'fru_type' : 'MAIN_PLANAR', 'is_fru' : False, },
216	'<inventory_root>/system/chassis/motherboard/pcieclock': { 'fru_type' : 'MAIN_PLANAR', 'is_fru' : False, },
217	'<inventory_root>/system/chassis/motherboard/todclock' : { 'fru_type' : 'MAIN_PLANAR', 'is_fru' : False, },
218	'<inventory_root>/system/chassis/motherboard/apss'     : { 'fru_type' : 'MAIN_PLANAR', 'is_fru' : False, },
219}
220
221ID_LOOKUP = {
222	'FRU' : {
223		0x0d : '<inventory_root>/system/chassis',
224		0x34 : '<inventory_root>/system/chassis/motherboard',
225		0x01 : '<inventory_root>/system/chassis/motherboard/cpu0',
226		0x02 : '<inventory_root>/system/chassis/motherboard/membuf0',
227		0x03 : '<inventory_root>/system/chassis/motherboard/dimm0',
228		0x04 : '<inventory_root>/system/chassis/motherboard/dimm1',
229		0x05 : '<inventory_root>/system/chassis/motherboard/dimm2',
230		0x06 : '<inventory_root>/system/chassis/motherboard/dimm3',
231		0x35 : '<inventory_root>/system',
232	},
233	'FRU_STR' : {
234		'PRODUCT_15' : '<inventory_root>/system',
235		'CHASSIS_2' : '<inventory_root>/system/chassis',
236		'BOARD_1'   : '<inventory_root>/system/chassis/motherboard/cpu0',
237		'BOARD_2'   : '<inventory_root>/system/chassis/motherboard/membuf0',
238		'BOARD_14'   : '<inventory_root>/system/chassis/motherboard',
239		'PRODUCT_3'   : '<inventory_root>/system/chassis/motherboard/dimm0',
240		'PRODUCT_4'   : '<inventory_root>/system/chassis/motherboard/dimm1',
241		'PRODUCT_5'   : '<inventory_root>/system/chassis/motherboard/dimm2',
242		'PRODUCT_6'   : '<inventory_root>/system/chassis/motherboard/dimm3',
243	},
244	'SENSOR' : {
245		0x34 : '<inventory_root>/system/chassis/motherboard',
246		0x35 : '<inventory_root>/system/systemevent',
247		0x37 : '<inventory_root>/system/chassis/motherboard/refclock',
248		0x38 : '<inventory_root>/system/chassis/motherboard/pcieclock',
249		0x39 : '<inventory_root>/system/chassis/motherboard/todclock',
250		0x3A : '<inventory_root>/system/chassis/motherboard/apss',
251		0x2f : '<inventory_root>/system/chassis/motherboard/cpu0',
252		0x22 : '<inventory_root>/system/chassis/motherboard/cpu0/core0',
253		0x23 : '<inventory_root>/system/chassis/motherboard/cpu0/core1',
254		0x24 : '<inventory_root>/system/chassis/motherboard/cpu0/core2',
255		0x25 : '<inventory_root>/system/chassis/motherboard/cpu0/core3',
256		0x26 : '<inventory_root>/system/chassis/motherboard/cpu0/core4',
257		0x27 : '<inventory_root>/system/chassis/motherboard/cpu0/core5',
258		0x28 : '<inventory_root>/system/chassis/motherboard/cpu0/core6',
259		0x29 : '<inventory_root>/system/chassis/motherboard/cpu0/core7',
260		0x2a : '<inventory_root>/system/chassis/motherboard/cpu0/core8',
261		0x2b : '<inventory_root>/system/chassis/motherboard/cpu0/core9',
262		0x2c : '<inventory_root>/system/chassis/motherboard/cpu0/core10',
263		0x2d : '<inventory_root>/system/chassis/motherboard/cpu0/core11',
264		0x2e : '<inventory_root>/system/chassis/motherboard/membuf0',
265		0x1e : '<inventory_root>/system/chassis/motherboard/dimm0',
266		0x1f : '<inventory_root>/system/chassis/motherboard/dimm1',
267		0x20 : '<inventory_root>/system/chassis/motherboard/dimm2',
268		0x21 : '<inventory_root>/system/chassis/motherboard/dimm3',
269		0x09 : '/org/openbmc/sensors/host/BootCount',
270		0x05 : '/org/openbmc/sensors/host/BootProgress',
271		0x08 : '/org/openbmc/sensors/host/cpu0/OccStatus',
272		0x32 : '/org/openbmc/sensors/host/OperatingSystemStatus',
273		0x33 : '/org/openbmc/sensors/host/PowerCap',
274	},
275	'GPIO_PRESENT' : {
276		'SLOT0_PRESENT' : '<inventory_root>/system/chassis/io_board/pcie_slot0',
277		'SLOT1_PRESENT' : '<inventory_root>/system/chassis/io_board/pcie_slot1',
278	}
279}
280
281GPIO_CONFIG = {}
282GPIO_CONFIG['FSI_CLK']    =   { 'gpio_pin': 'A4', 'direction': 'out' }
283GPIO_CONFIG['FSI_DATA']   =   { 'gpio_pin': 'A5', 'direction': 'out' }
284GPIO_CONFIG['FSI_ENABLE'] =   { 'gpio_pin': 'D0', 'direction': 'out' }
285GPIO_CONFIG['POWER_PIN']  =   { 'gpio_pin': 'E1', 'direction': 'out'  }
286GPIO_CONFIG['CRONUS_SEL'] =   { 'gpio_pin': 'A6', 'direction': 'out'  }
287GPIO_CONFIG['PGOOD']      =   { 'gpio_pin': 'C7', 'direction': 'in'  }
288GPIO_CONFIG['BMC_THROTTLE'] = { 'gpio_pin': 'J3', 'direction': 'out' }
289GPIO_CONFIG['IDBTN']       = { 'gpio_pin': 'Q7', 'direction': 'out' }
290GPIO_CONFIG['POWER_BUTTON'] = { 'gpio_pin': 'E0', 'direction': 'both' }
291GPIO_CONFIG['PCIE_RESET']   = { 'gpio_pin': 'B5', 'direction': 'out' }
292GPIO_CONFIG['USB_RESET']    = { 'gpio_pin': 'B6', 'direction': 'out' }
293GPIO_CONFIG['SLOT0_RISER_PRESENT'] =   { 'gpio_pin': 'N0', 'direction': 'in' }
294GPIO_CONFIG['SLOT1_RISER_PRESENT'] =   { 'gpio_pin': 'N1', 'direction': 'in' }
295GPIO_CONFIG['SLOT2_RISER_PRESENT'] =   { 'gpio_pin': 'N2', 'direction': 'in' }
296GPIO_CONFIG['SLOT0_PRESENT'] =         { 'gpio_pin': 'N3', 'direction': 'in' }
297GPIO_CONFIG['SLOT1_PRESENT'] =         { 'gpio_pin': 'N4', 'direction': 'in' }
298GPIO_CONFIG['SLOT2_PRESENT'] =         { 'gpio_pin': 'N5', 'direction': 'in' }
299GPIO_CONFIG['MEZZ0_PRESENT'] =         { 'gpio_pin': 'O0', 'direction': 'in' }
300GPIO_CONFIG['MEZZ1_PRESENT'] =         { 'gpio_pin': 'O1', 'direction': 'in' }
301GPIO_CONFIG['CHECKSTOP']      =   { 'gpio_pin': 'P5', 'direction': 'falling' }
302
303def convertGpio(name):
304	name = name.upper()
305	c = name[0:1]
306	offset = int(name[1:])
307	a = ord(c)-65
308	base = a*8+GPIO_BASE
309	return base+offset
310
311HWMON_CONFIG = {
312	'2-004c' :  {
313		'names' : {
314			'temp1_input' : { 'object_path' : 'temperature/ambient','poll_interval' : 5000,'scale' : 1000,'units' : 'C' },
315		}
316	},
317	'3-0050' : {
318		'names' : {
319			'caps_curr_powercap' : { 'object_path' : 'powercap/curr_cap','poll_interval' : 10000,'scale' : 1,'units' : 'W' },
320			'caps_curr_powerreading' : { 'object_path' : 'powercap/system_power','poll_interval' : 10000,'scale' : 1,'units' : 'W' },
321			'caps_max_powercap' : { 'object_path' : 'powercap/max_cap','poll_interval' : 10000,'scale' : 1,'units' : 'W' },
322			'caps_min_powercap' : { 'object_path' : 'powercap/min_cap','poll_interval' : 10000,'scale' : 1,'units' : 'W' },
323			'caps_norm_powercap' : { 'object_path' : 'powercap/n_cap','poll_interval' : 10000,'scale' : 1,'units' : 'W' },
324			'caps_user_powerlimit' : { 'object_path' : 'powercap/user_cap','poll_interval' : 10000,'scale' : 1,'units' : 'W' },
325		}
326	}
327}
328
329# Miscellaneous non-poll sensor with system specific properties.
330# The sensor id is the same as those defined in ID_LOOKUP['SENSOR'].
331MISC_SENSORS = {
332	0x09 : { 'class' : 'BootCountSensor' },
333	0x05 : { 'class' : 'BootProgressSensor' },
334	0x08 : { 'class' : 'OccStatusSensor',
335		'os_path' : '/sys/class/i2c-adapter/i2c-3/3-0050/online' },
336	0x32 : { 'class' : 'OperatingSystemStatusSensor' },
337	0x33 : { 'class' : 'PowerCap',
338		'os_path' : '/sys/class/hwmon/hwmon1/user_powercap' },
339}
340