blob: 4c23068fb0f795b284009979e2be3dd63316b99b [file] [log] [blame]
Norman Jamesc9239a32015-10-06 16:54:31 -05001#! /usr/bin/python
2
Norman Jamesc9239a32015-10-06 16:54:31 -05003HOME_PATH = './'
Norman James2943cc62015-10-28 18:59:53 -05004CACHE_PATH = '/var/cache/obmc/'
Norman James25d80dd2015-10-08 07:02:25 -05005FLASH_DOWNLOAD_PATH = "/tmp"
Norman Jamesa9966b32015-10-28 06:55:58 -05006GPIO_BASE = 320
Norman James969227c2015-10-08 15:10:47 -05007SYSTEM_NAME = "Palmetto"
Norman Jamesc9239a32015-10-06 16:54:31 -05008
Norman Jamesa3e47c42015-10-18 14:43:10 -05009
10## System states
11## state can change to next state in 2 ways:
12## - a process emits a GotoSystemState signal with state name to goto
13## - objects specified in EXIT_STATE_DEPEND have started
Norman Jamesc9239a32015-10-06 16:54:31 -050014SYSTEM_STATES = [
Norman Jamesb714eb22015-10-26 17:12:57 -050015 'BASE_APPS',
Norman Jamesa3e47c42015-10-18 14:43:10 -050016 'BMC_STARTING',
17 'BMC_READY',
18 'HOST_POWERING_ON',
19 'HOST_POWERED_ON',
20 'HOST_BOOTING',
Norman James2656f332015-10-26 06:42:41 -050021 'HOST_BOOTED',
Adriana Kobylakc5a16052016-03-01 14:29:47 -060022 'HOST_POWERED_OFF',
Norman Jamesc9239a32015-10-06 16:54:31 -050023]
24
Norman Jamesa3e47c42015-10-18 14:43:10 -050025EXIT_STATE_DEPEND = {
Norman Jamesb714eb22015-10-26 17:12:57 -050026 'BASE_APPS' : {
Norman James76abea32015-10-29 06:17:54 -050027 '/org/openbmc/sensors': 0,
Norman Jamesb714eb22015-10-26 17:12:57 -050028 },
Norman Jamesa3e47c42015-10-18 14:43:10 -050029 'BMC_STARTING' : {
30 '/org/openbmc/control/chassis0': 0,
31 '/org/openbmc/control/power0' : 0,
Adriana Kobylak9c751042016-02-09 13:44:32 -060032 '/org/openbmc/control/led/identify' : 0,
Norman Jamesb38ea5a2015-10-28 12:44:56 -050033 '/org/openbmc/control/host0' : 0,
Norman James2943cc62015-10-28 18:59:53 -050034 '/org/openbmc/control/flash/bios' : 0,
Norman Jamesa3e47c42015-10-18 14:43:10 -050035 }
36}
37
38## method will be called when state is entered
Norman Jamesc9239a32015-10-06 16:54:31 -050039ENTER_STATE_CALLBACK = {
Norman James2943cc62015-10-28 18:59:53 -050040 'HOST_POWERED_ON' : {
41 'boot' : {
42 'bus_name' : 'org.openbmc.control.Host',
43 'obj_name' : '/org/openbmc/control/host0',
44 'interface_name' : 'org.openbmc.control.Host',
45 }
Norman Jamesa3e47c42015-10-18 14:43:10 -050046 },
47 'BMC_READY' : {
Norman James2943cc62015-10-28 18:59:53 -050048 'setOn' : {
49 'bus_name' : 'org.openbmc.control.led',
Adriana Kobylak9c751042016-02-09 13:44:32 -060050 'obj_name' : '/org/openbmc/control/led/identify',
Norman James2943cc62015-10-28 18:59:53 -050051 'interface_name' : 'org.openbmc.Led',
52 },
53 'init' : {
54 'bus_name' : 'org.openbmc.control.Flash',
55 'obj_name' : '/org/openbmc/control/flash/bios',
56 'interface_name' : 'org.openbmc.Flash',
57 },
Norman Jamesc9239a32015-10-06 16:54:31 -050058 }
59}
60
Norman Jamesb38ea5a2015-10-28 12:44:56 -050061APPS = {
Norman Jamesb728e652015-11-01 07:38:46 -060062 'startup_hacks' : {
63 'system_state' : 'BASE_APPS',
64 'start_process' : True,
65 'monitor_process' : False,
66 'process_name' : 'startup_hacks.sh',
67 },
Norman Jamesb38ea5a2015-10-28 12:44:56 -050068 'inventory' : {
69 'system_state' : 'BMC_STARTING',
70 'start_process' : True,
Norman James0ee61922015-10-14 09:39:11 -050071 'monitor_process' : True,
Norman Jamesb38ea5a2015-10-28 12:44:56 -050072 'process_name' : 'inventory_items.py',
73 'args' : [ SYSTEM_NAME ]
74 },
75 'pcie_present' : {
76 'system_state' : 'HOST_POWERED_ON',
Norman Jamesd98932a2015-11-09 10:59:22 -060077 'start_process' : False,
Norman Jamesb38ea5a2015-10-28 12:44:56 -050078 'monitor_process' : False,
79 'process_name' : 'pcie_slot_present.exe',
80 },
81 'virtual_sensors' : {
82 'system_state' : 'BMC_STARTING',
83 'start_process' : True,
Norman Jamesc9239a32015-10-06 16:54:31 -050084 'monitor_process' : True,
Chris Austen3ac12272015-12-10 12:24:56 -060085 'process_name' : 'hwmon.py',
86 'args' : [ SYSTEM_NAME ]
Norman Jamesb38ea5a2015-10-28 12:44:56 -050087 },
88 'sensor_manager' : {
Norman James76abea32015-10-29 06:17:54 -050089 'system_state' : 'BASE_APPS',
Norman Jamesb38ea5a2015-10-28 12:44:56 -050090 'start_process' : True,
Norman Jamesc9239a32015-10-06 16:54:31 -050091 'monitor_process' : True,
Chris Austen4c9ea5d2015-12-09 23:26:08 -060092 'process_name' : 'sensor_manager2.py',
Norman Jamesb38ea5a2015-10-28 12:44:56 -050093 'args' : [ SYSTEM_NAME ]
94 },
95 'host_watchdog' : {
96 'system_state' : 'BMC_STARTING',
97 'start_process' : True,
98 'monitor_process' : True,
99 'process_name' : 'host_watchdog.exe',
100 },
101 'power_control' : {
102 'system_state' : 'BMC_STARTING',
103 'start_process' : True,
Norman Jamesc9239a32015-10-06 16:54:31 -0500104 'monitor_process' : True,
105 'process_name' : 'power_control.exe',
Norman Jamesb38ea5a2015-10-28 12:44:56 -0500106 'args' : [ '3000', '10' ]
107 },
108 'power_button' : {
109 'system_state' : 'BMC_STARTING',
Norman James2943cc62015-10-28 18:59:53 -0500110 'start_process' : False,
111 'monitor_process' : False,
Norman Jamesb38ea5a2015-10-28 12:44:56 -0500112 'process_name' : 'button_power.exe',
113 },
114 'led_control' : {
115 'system_state' : 'BMC_STARTING',
116 'start_process' : True,
Norman Jamesc9239a32015-10-06 16:54:31 -0500117 'monitor_process' : True,
Norman Jamesb38ea5a2015-10-28 12:44:56 -0500118 'process_name' : 'led_controller.exe',
119 },
120 'flash_control' : {
121 'system_state' : 'BMC_STARTING',
122 'start_process' : True,
Norman Jamesc9239a32015-10-06 16:54:31 -0500123 'monitor_process' : True,
Norman Jamesb38ea5a2015-10-28 12:44:56 -0500124 'process_name' : 'flash_bios.exe',
125 },
126 'download_manager' : {
127 'system_state' : 'BMC_STARTING',
128 'start_process' : True,
Norman Jamesc9239a32015-10-06 16:54:31 -0500129 'monitor_process' : True,
Norman Jamesb38ea5a2015-10-28 12:44:56 -0500130 'process_name' : 'download_manager.py',
131 'args' : [ SYSTEM_NAME ]
132 },
133 'host_control' : {
134 'system_state' : 'BMC_STARTING',
135 'start_process' : True,
Norman Jamesc9239a32015-10-06 16:54:31 -0500136 'monitor_process' : True,
Norman Jamesb38ea5a2015-10-28 12:44:56 -0500137 'process_name' : 'control_host.exe',
138 },
139 'chassis_control' : {
140 'system_state' : 'BMC_STARTING',
141 'start_process' : True,
Norman Jamesc9239a32015-10-06 16:54:31 -0500142 'monitor_process' : True,
Norman Jamesb38ea5a2015-10-28 12:44:56 -0500143 'process_name' : 'chassis_control.py',
144 },
Williamf784d752016-01-19 12:28:49 +0800145 'bmc_control' : {
146 'system_state' : 'BMC_STARTING',
147 'start_process' : True,
148 'monitor_process' : True,
149 'process_name' : 'control_bmc.exe',
Manjunath A Kumatagi5a1f1762016-02-02 17:34:36 +0530150 }
Norman Jamesb38ea5a2015-10-28 12:44:56 -0500151}
Norman Jamesc9239a32015-10-06 16:54:31 -0500152
Norman James2656f332015-10-26 06:42:41 -0500153CACHED_INTERFACES = {
154 "org.openbmc.InventoryItem" : True,
155 "org.openbmc.control.Chassis" : True,
156 }
Norman Jamesa3e47c42015-10-18 14:43:10 -0500157INVENTORY_ROOT = '/org/openbmc/inventory'
Norman Jamesc9239a32015-10-06 16:54:31 -0500158
159FRU_INSTANCES = {
Norman Jamesb38ea5a2015-10-28 12:44:56 -0500160 '<inventory_root>/system' : { 'fru_type' : 'SYSTEM','is_fru' : True, },
161 '<inventory_root>/system/chassis' : { 'fru_type' : 'SYSTEM','is_fru' : True, },
162 '<inventory_root>/system/chassis/motherboard' : { 'fru_type' : 'MAIN_PLANAR','is_fru' : True, },
Norman Jamesc9239a32015-10-06 16:54:31 -0500163
Norman Jamesb38ea5a2015-10-28 12:44:56 -0500164 '<inventory_root>/system/chassis/fan0' : { 'fru_type' : 'FAN','is_fru' : True, },
165 '<inventory_root>/system/chassis/fan1' : { 'fru_type' : 'FAN','is_fru' : True, },
166 '<inventory_root>/system/chassis/fan2' : { 'fru_type' : 'FAN','is_fru' : True, },
167 '<inventory_root>/system/chassis/fan3' : { 'fru_type' : 'FAN','is_fru' : True, },
168 '<inventory_root>/system/chassis/fan4' : { 'fru_type' : 'FAN','is_fru' : True, },
Norman Jamesa42446a2015-10-19 11:12:45 -0500169
Norman Jamesb38ea5a2015-10-28 12:44:56 -0500170 '<inventory_root>/system/chassis/motherboard/bmc' : { 'fru_type' : 'BMC','is_fru' : False,
Norman Jamesa42446a2015-10-19 11:12:45 -0500171 'manufacturer' : 'ASPEED' },
Norman Jamesb38ea5a2015-10-28 12:44:56 -0500172 '<inventory_root>/system/chassis/motherboard/cpu0' : { 'fru_type' : 'CPU', 'is_fru' : True, },
173 '<inventory_root>/system/chassis/motherboard/cpu0/core0' : { 'fru_type' : 'CORE', 'is_fru' : False, },
174 '<inventory_root>/system/chassis/motherboard/cpu0/core1' : { 'fru_type' : 'CORE', 'is_fru' : False, },
175 '<inventory_root>/system/chassis/motherboard/cpu0/core2' : { 'fru_type' : 'CORE', 'is_fru' : False, },
176 '<inventory_root>/system/chassis/motherboard/cpu0/core3' : { 'fru_type' : 'CORE', 'is_fru' : False, },
177 '<inventory_root>/system/chassis/motherboard/cpu0/core4' : { 'fru_type' : 'CORE', 'is_fru' : False, },
178 '<inventory_root>/system/chassis/motherboard/cpu0/core5' : { 'fru_type' : 'CORE', 'is_fru' : False, },
179 '<inventory_root>/system/chassis/motherboard/cpu0/core6' : { 'fru_type' : 'CORE', 'is_fru' : False, },
180 '<inventory_root>/system/chassis/motherboard/cpu0/core7' : { 'fru_type' : 'CORE', 'is_fru' : False, },
181 '<inventory_root>/system/chassis/motherboard/cpu0/core8' : { 'fru_type' : 'CORE', 'is_fru' : False, },
182 '<inventory_root>/system/chassis/motherboard/cpu0/core9' : { 'fru_type' : 'CORE', 'is_fru' : False, },
183 '<inventory_root>/system/chassis/motherboard/cpu0/core10' : { 'fru_type' : 'CORE', 'is_fru' : False, },
184 '<inventory_root>/system/chassis/motherboard/cpu0/core11' : { 'fru_type' : 'CORE', 'is_fru' : False, },
Norman Jamesa42446a2015-10-19 11:12:45 -0500185
Norman Jamesa42446a2015-10-19 11:12:45 -0500186
Norman Jamesb38ea5a2015-10-28 12:44:56 -0500187 '<inventory_root>/system/chassis/motherboard/centaur0' : { 'fru_type' : 'MEMORY_BUFFER', 'is_fru' : False, },
Norman Jamesa42446a2015-10-19 11:12:45 -0500188
Norman Jamesb38ea5a2015-10-28 12:44:56 -0500189 '<inventory_root>/system/chassis/motherboard/dimm0' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
190 '<inventory_root>/system/chassis/motherboard/dimm1' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
191 '<inventory_root>/system/chassis/motherboard/dimm2' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
192 '<inventory_root>/system/chassis/motherboard/dimm3' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
Norman Jamesa42446a2015-10-19 11:12:45 -0500193
Norman Jamesb38ea5a2015-10-28 12:44:56 -0500194 '<inventory_root>/system/chassis/io_board/pcie_slot0' : { 'fru_type' : 'PCIE_CARD', 'is_fru' : True,},
195 '<inventory_root>/system/chassis/io_board/pcie_slot1' : { 'fru_type' : 'PCIE_CARD', 'is_fru' : True,},
Norman Jamesa42446a2015-10-19 11:12:45 -0500196
Chris Austen4c9ea5d2015-12-09 23:26:08 -0600197 '<inventory_root>/system/systemevent' : { 'fru_type' : 'SYSTEM_EVENT', 'is_fru' : False, },
198 '<inventory_root>/system/chassis/motherboard/refclock' : { 'fru_type' : 'MAIN_PLANAR', 'is_fru' : False, },
199 '<inventory_root>/system/chassis/motherboard/pcieclock': { 'fru_type' : 'MAIN_PLANAR', 'is_fru' : False, },
200 '<inventory_root>/system/chassis/motherboard/todclock' : { 'fru_type' : 'MAIN_PLANAR', 'is_fru' : False, },
201 '<inventory_root>/system/chassis/motherboard/apss' : { 'fru_type' : 'MAIN_PLANAR', 'is_fru' : False, },
Norman Jamesc9239a32015-10-06 16:54:31 -0500202}
203
204ID_LOOKUP = {
205 'FRU' : {
Norman Jamesa42446a2015-10-19 11:12:45 -0500206 0x0d : '<inventory_root>/system/chassis',
207 0x34 : '<inventory_root>/system/chassis/motherboard',
208 0x01 : '<inventory_root>/system/chassis/motherboard/cpu0',
209 0x02 : '<inventory_root>/system/chassis/motherboard/centaur0',
210 0x03 : '<inventory_root>/system/chassis/motherboard/dimm0',
211 0x04 : '<inventory_root>/system/chassis/motherboard/dimm1',
212 0x05 : '<inventory_root>/system/chassis/motherboard/dimm2',
213 0x06 : '<inventory_root>/system/chassis/motherboard/dimm3',
Norman James2656f332015-10-26 06:42:41 -0500214 0x35 : '<inventory_root>/system',
Norman Jamesc9239a32015-10-06 16:54:31 -0500215 },
Norman Jamesa42446a2015-10-19 11:12:45 -0500216 'FRU_STR' : {
Norman Jamesfe635e82015-10-20 07:47:22 -0500217 'PRODUCT_15' : '<inventory_root>/system',
218 'CHASSIS_2' : '<inventory_root>/system/chassis',
219 'BOARD_1' : '<inventory_root>/system/chassis/motherboard/cpu0',
220 'BOARD_2' : '<inventory_root>/system/chassis/motherboard/centaur0',
Chris Austen4c9ea5d2015-12-09 23:26:08 -0600221 'BOARD_14' : '<inventory_root>/system/chassis/motherboard',
Norman Jamesfe635e82015-10-20 07:47:22 -0500222 'PRODUCT_3' : '<inventory_root>/system/chassis/motherboard/dimm0',
223 'PRODUCT_4' : '<inventory_root>/system/chassis/motherboard/dimm1',
224 'PRODUCT_5' : '<inventory_root>/system/chassis/motherboard/dimm2',
225 'PRODUCT_6' : '<inventory_root>/system/chassis/motherboard/dimm3',
Norman Jamesa42446a2015-10-19 11:12:45 -0500226 },
Norman Jamesc9239a32015-10-06 16:54:31 -0500227 'SENSOR' : {
Chris Austen4c9ea5d2015-12-09 23:26:08 -0600228 0x34 : '<inventory_root>/system/chassis/motherboard',
229 0x35 : '<inventory_root>/system/systemevent',
230 0x37 : '<inventory_root>/system/chassis/motherboard/refclock',
231 0x38 : '<inventory_root>/system/chassis/motherboard/pcieclock',
232 0x39 : '<inventory_root>/system/chassis/motherboard/todclock',
233 0x3A : '<inventory_root>/system/chassis/motherboard/apss',
Norman Jamesa42446a2015-10-19 11:12:45 -0500234 0x2f : '<inventory_root>/system/chassis/motherboard/cpu0',
235 0x22 : '<inventory_root>/system/chassis/motherboard/cpu0/core0',
236 0x23 : '<inventory_root>/system/chassis/motherboard/cpu0/core1',
237 0x24 : '<inventory_root>/system/chassis/motherboard/cpu0/core2',
238 0x25 : '<inventory_root>/system/chassis/motherboard/cpu0/core3',
239 0x26 : '<inventory_root>/system/chassis/motherboard/cpu0/core4',
240 0x27 : '<inventory_root>/system/chassis/motherboard/cpu0/core5',
241 0x28 : '<inventory_root>/system/chassis/motherboard/cpu0/core6',
242 0x29 : '<inventory_root>/system/chassis/motherboard/cpu0/core7',
243 0x2a : '<inventory_root>/system/chassis/motherboard/cpu0/core8',
244 0x2b : '<inventory_root>/system/chassis/motherboard/cpu0/core9',
245 0x2c : '<inventory_root>/system/chassis/motherboard/cpu0/core10',
246 0x2d : '<inventory_root>/system/chassis/motherboard/cpu0/core11',
247 0x2e : '<inventory_root>/system/chassis/motherboard/centaur0',
248 0x1e : '<inventory_root>/system/chassis/motherboard/dimm0',
249 0x1f : '<inventory_root>/system/chassis/motherboard/dimm1',
250 0x20 : '<inventory_root>/system/chassis/motherboard/dimm2',
251 0x21 : '<inventory_root>/system/chassis/motherboard/dimm3',
Chris Austen4c9ea5d2015-12-09 23:26:08 -0600252 0x09 : '/org/openbmc/sensors/host/BootCount',
253 0x05 : '/org/openbmc/sensors/host/BootProgress',
Norman James86f2a072016-01-30 22:48:54 -0600254 0x08 : '/org/openbmc/sensors/host/cpu0/OccStatus',
Chris Austen4c9ea5d2015-12-09 23:26:08 -0600255 0x32 : '/org/openbmc/sensors/host/OperatingSystemStatus',
256 0x33 : '/org/openbmc/sensors/host/PowerCap',
Norman Jamesc9239a32015-10-06 16:54:31 -0500257 },
258 'GPIO_PRESENT' : {
Chris Austen4c9ea5d2015-12-09 23:26:08 -0600259 'SLOT0_PRESENT' : '<inventory_root>/system/chassis/io_board/pcie_slot0',
260 'SLOT1_PRESENT' : '<inventory_root>/system/chassis/io_board/pcie_slot1',
Norman Jamesc9239a32015-10-06 16:54:31 -0500261 }
262}
263
264GPIO_CONFIG = {}
Norman Jamesb38ea5a2015-10-28 12:44:56 -0500265GPIO_CONFIG['FSI_CLK'] = { 'gpio_pin': 'A4', 'direction': 'out' }
266GPIO_CONFIG['FSI_DATA'] = { 'gpio_pin': 'A5', 'direction': 'out' }
267GPIO_CONFIG['FSI_ENABLE'] = { 'gpio_pin': 'D0', 'direction': 'out' }
268GPIO_CONFIG['POWER_PIN'] = { 'gpio_pin': 'E1', 'direction': 'out' }
269GPIO_CONFIG['CRONUS_SEL'] = { 'gpio_pin': 'A6', 'direction': 'out' }
270GPIO_CONFIG['PGOOD'] = { 'gpio_pin': 'C7', 'direction': 'in' }
Norman James7b8811e2016-01-12 12:51:29 -0600271GPIO_CONFIG['BMC_THROTTLE'] = { 'gpio_pin': 'J3', 'direction': 'out' }
Norman James2943cc62015-10-28 18:59:53 -0500272GPIO_CONFIG['POWER_BUTTON'] = { 'gpio_pin': 'E0', 'direction': 'both' }
Norman Jamese62f4452015-10-31 17:33:10 -0500273GPIO_CONFIG['PCIE_RESET'] = { 'gpio_pin': 'B5', 'direction': 'out' }
274GPIO_CONFIG['USB_RESET'] = { 'gpio_pin': 'B6', 'direction': 'out' }
Norman Jamesb38ea5a2015-10-28 12:44:56 -0500275GPIO_CONFIG['SLOT0_RISER_PRESENT'] = { 'gpio_pin': 'N0', 'direction': 'in' }
276GPIO_CONFIG['SLOT1_RISER_PRESENT'] = { 'gpio_pin': 'N1', 'direction': 'in' }
277GPIO_CONFIG['SLOT2_RISER_PRESENT'] = { 'gpio_pin': 'N2', 'direction': 'in' }
278GPIO_CONFIG['SLOT0_PRESENT'] = { 'gpio_pin': 'N3', 'direction': 'in' }
279GPIO_CONFIG['SLOT1_PRESENT'] = { 'gpio_pin': 'N4', 'direction': 'in' }
280GPIO_CONFIG['SLOT2_PRESENT'] = { 'gpio_pin': 'N5', 'direction': 'in' }
281GPIO_CONFIG['MEZZ0_PRESENT'] = { 'gpio_pin': 'O0', 'direction': 'in' }
282GPIO_CONFIG['MEZZ1_PRESENT'] = { 'gpio_pin': 'O1', 'direction': 'in' }
Norman Jamesc9239a32015-10-06 16:54:31 -0500283
Norman James6bbe0b52015-10-27 09:18:05 -0500284def convertGpio(name):
285 name = name.upper()
286 c = name[0:1]
Norman Jamesa9966b32015-10-28 06:55:58 -0500287 offset = int(name[1:])
Norman James6bbe0b52015-10-27 09:18:05 -0500288 a = ord(c)-65
Norman Jamesa9966b32015-10-28 06:55:58 -0500289 base = a*8+GPIO_BASE
Norman James7b8811e2016-01-12 12:51:29 -0600290 return base+offset
291
292HWMON_CONFIG = {
293 '2-004c' : {
294 'names' : {
295 'temp1_input' : { 'object_path' : 'temperature/ambient','poll_interval' : 5000,'scale' : 1000,'units' : 'C' },
296 }
Yi Li155f93f2016-01-30 15:30:14 +0800297 },
298 '3-0050' : {
299 'names' : {
300 'caps_curr_powercap' : { 'object_path' : 'powercap/curr_cap','poll_interval' : 10000,'scale' : 1,'units' : 'W' },
301 'caps_curr_powerreading' : { 'object_path' : 'powercap/system_power','poll_interval' : 10000,'scale' : 1,'units' : 'W' },
302 'caps_max_powercap' : { 'object_path' : 'powercap/max_cap','poll_interval' : 10000,'scale' : 1,'units' : 'W' },
303 'caps_min_powercap' : { 'object_path' : 'powercap/min_cap','poll_interval' : 10000,'scale' : 1,'units' : 'W' },
304 'caps_norm_powercap' : { 'object_path' : 'powercap/n_cap','poll_interval' : 10000,'scale' : 1,'units' : 'W' },
305 'caps_user_powerlimit' : { 'object_path' : 'powercap/user_cap','poll_interval' : 10000,'scale' : 1,'units' : 'W' },
306 }
Norman James7b8811e2016-01-12 12:51:29 -0600307 }
308}
Yi Li54decc82016-05-05 17:42:56 +0800309
310# Miscellaneous non-poll sensor with system specific properties.
311# The sensor id is the same as those defined in ID_LOOKUP['SENSOR'].
312MISC_SENSORS = {
313 0x09 : { 'class' : 'BootCountSensor' },
314 0x05 : { 'class' : 'BootProgressSensor' },
315 0x08 : { 'class' : 'OccStatusSensor',
316 'os_path' : '/sys/class/i2c-adapter/i2c-3/3-0050/online' },
317 0x32 : { 'class' : 'OperatingSystemStatusSensor' },
318 0x33 : { 'class' : 'PowerCap',
319 'os_path' : '/sys/class/hwmon/hwmon1/user_powercap' },
320}