blob: 99a8e231c4759fc636abae252e7ff41c391f4059 [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 Jamesa9966b32015-10-28 06:55:58 -05005GPIO_BASE = 320
Norman James969227c2015-10-08 15:10:47 -05006SYSTEM_NAME = "Palmetto"
Norman Jamesc9239a32015-10-06 16:54:31 -05007
Norman Jamesa3e47c42015-10-18 14:43:10 -05008
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
Norman Jamesc9239a32015-10-06 16:54:31 -050013SYSTEM_STATES = [
Norman Jamesb714eb22015-10-26 17:12:57 -050014 'BASE_APPS',
Norman Jamesa3e47c42015-10-18 14:43:10 -050015 'BMC_STARTING',
16 'BMC_READY',
17 'HOST_POWERING_ON',
18 'HOST_POWERED_ON',
19 'HOST_BOOTING',
Norman James2656f332015-10-26 06:42:41 -050020 'HOST_BOOTED',
Adriana Kobylakc5a16052016-03-01 14:29:47 -060021 'HOST_POWERED_OFF',
Norman Jamesc9239a32015-10-06 16:54:31 -050022]
23
Norman Jamesa3e47c42015-10-18 14:43:10 -050024EXIT_STATE_DEPEND = {
Norman Jamesb714eb22015-10-26 17:12:57 -050025 'BASE_APPS' : {
Norman James76abea32015-10-29 06:17:54 -050026 '/org/openbmc/sensors': 0,
Norman Jamesb714eb22015-10-26 17:12:57 -050027 },
Norman Jamesa3e47c42015-10-18 14:43:10 -050028 'BMC_STARTING' : {
29 '/org/openbmc/control/chassis0': 0,
30 '/org/openbmc/control/power0' : 0,
Adriana Kobylak9c751042016-02-09 13:44:32 -060031 '/org/openbmc/control/led/identify' : 0,
Norman Jamesb38ea5a2015-10-28 12:44:56 -050032 '/org/openbmc/control/host0' : 0,
Norman James2943cc62015-10-28 18:59:53 -050033 '/org/openbmc/control/flash/bios' : 0,
Norman Jamesa3e47c42015-10-18 14:43:10 -050034 }
35}
36
37## method will be called when state is entered
Norman Jamesc9239a32015-10-06 16:54:31 -050038ENTER_STATE_CALLBACK = {
Norman James2943cc62015-10-28 18:59:53 -050039 '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 }
Norman Jamesa3e47c42015-10-18 14:43:10 -050045 },
46 'BMC_READY' : {
Norman James2943cc62015-10-28 18:59:53 -050047 'setOn' : {
48 'bus_name' : 'org.openbmc.control.led',
Adriana Kobylak9c751042016-02-09 13:44:32 -060049 'obj_name' : '/org/openbmc/control/led/identify',
Norman James2943cc62015-10-28 18:59:53 -050050 '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 },
Norman Jamesc9239a32015-10-06 16:54:31 -050057 }
58}
59
Norman Jamesb38ea5a2015-10-28 12:44:56 -050060APPS = {
Norman Jamesb728e652015-11-01 07:38:46 -060061 'startup_hacks' : {
62 'system_state' : 'BASE_APPS',
63 'start_process' : True,
64 'monitor_process' : False,
65 'process_name' : 'startup_hacks.sh',
66 },
Norman Jamesb38ea5a2015-10-28 12:44:56 -050067 'inventory' : {
68 'system_state' : 'BMC_STARTING',
69 'start_process' : True,
Norman James0ee61922015-10-14 09:39:11 -050070 'monitor_process' : True,
Norman Jamesb38ea5a2015-10-28 12:44:56 -050071 'process_name' : 'inventory_items.py',
72 'args' : [ SYSTEM_NAME ]
73 },
74 'pcie_present' : {
75 'system_state' : 'HOST_POWERED_ON',
Norman Jamesd98932a2015-11-09 10:59:22 -060076 'start_process' : False,
Norman Jamesb38ea5a2015-10-28 12:44:56 -050077 'monitor_process' : False,
78 'process_name' : 'pcie_slot_present.exe',
79 },
80 'virtual_sensors' : {
81 'system_state' : 'BMC_STARTING',
82 'start_process' : True,
Norman Jamesc9239a32015-10-06 16:54:31 -050083 'monitor_process' : True,
Chris Austen3ac12272015-12-10 12:24:56 -060084 'process_name' : 'hwmon.py',
85 'args' : [ SYSTEM_NAME ]
Norman Jamesb38ea5a2015-10-28 12:44:56 -050086 },
87 'sensor_manager' : {
Norman James76abea32015-10-29 06:17:54 -050088 'system_state' : 'BASE_APPS',
Norman Jamesb38ea5a2015-10-28 12:44:56 -050089 'start_process' : True,
Norman Jamesc9239a32015-10-06 16:54:31 -050090 'monitor_process' : True,
Chris Austen4c9ea5d2015-12-09 23:26:08 -060091 'process_name' : 'sensor_manager2.py',
Norman Jamesb38ea5a2015-10-28 12:44:56 -050092 '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,
Norman Jamesc9239a32015-10-06 16:54:31 -0500103 'monitor_process' : True,
104 'process_name' : 'power_control.exe',
Norman Jamesb38ea5a2015-10-28 12:44:56 -0500105 'args' : [ '3000', '10' ]
106 },
107 'power_button' : {
108 'system_state' : 'BMC_STARTING',
Norman James2943cc62015-10-28 18:59:53 -0500109 'start_process' : False,
110 'monitor_process' : False,
Norman Jamesb38ea5a2015-10-28 12:44:56 -0500111 'process_name' : 'button_power.exe',
112 },
Adriana Kobylak341c8c22016-06-16 09:20:55 -0500113 'host_checkstop' : {
114 'system_state' : 'BMC_STARTING',
115 'start_process' : False,
116 'monitor_process' : False,
117 'process_name' : 'host_checkstop.exe',
118 },
Norman Jamesb38ea5a2015-10-28 12:44:56 -0500119 'led_control' : {
120 'system_state' : 'BMC_STARTING',
121 'start_process' : True,
Norman Jamesc9239a32015-10-06 16:54:31 -0500122 'monitor_process' : True,
Norman Jamesb38ea5a2015-10-28 12:44:56 -0500123 'process_name' : 'led_controller.exe',
124 },
125 'flash_control' : {
126 'system_state' : 'BMC_STARTING',
127 'start_process' : True,
Norman Jamesc9239a32015-10-06 16:54:31 -0500128 'monitor_process' : True,
Norman Jamesb38ea5a2015-10-28 12:44:56 -0500129 'process_name' : 'flash_bios.exe',
130 },
Adriana Kobylak86e6c2c2016-04-29 11:56:40 -0500131 'bmc_flash_control' : {
132 'system_state' : 'BMC_STARTING',
133 'start_process' : True,
134 'monitor_process' : True,
135 'process_name' : 'bmc_update.py',
136 },
Norman Jamesb38ea5a2015-10-28 12:44:56 -0500137 'download_manager' : {
138 'system_state' : 'BMC_STARTING',
139 'start_process' : True,
Norman Jamesc9239a32015-10-06 16:54:31 -0500140 'monitor_process' : True,
Norman Jamesb38ea5a2015-10-28 12:44:56 -0500141 'process_name' : 'download_manager.py',
142 'args' : [ SYSTEM_NAME ]
143 },
144 'host_control' : {
145 'system_state' : 'BMC_STARTING',
146 'start_process' : True,
Norman Jamesc9239a32015-10-06 16:54:31 -0500147 'monitor_process' : True,
Norman Jamesb38ea5a2015-10-28 12:44:56 -0500148 'process_name' : 'control_host.exe',
149 },
150 'chassis_control' : {
151 'system_state' : 'BMC_STARTING',
152 'start_process' : True,
Norman Jamesc9239a32015-10-06 16:54:31 -0500153 'monitor_process' : True,
Norman Jamesb38ea5a2015-10-28 12:44:56 -0500154 'process_name' : 'chassis_control.py',
155 },
Vishwa3d1c3de2016-06-30 13:52:59 +0530156 'restore' : {
157 'system_state' : 'BMC_READY',
158 'start_process' : True,
159 'monitor_process' : False,
160 'process_name' : 'discover_system_state.py',
161 },
Williamf784d752016-01-19 12:28:49 +0800162 'bmc_control' : {
163 'system_state' : 'BMC_STARTING',
164 'start_process' : True,
165 'monitor_process' : True,
166 'process_name' : 'control_bmc.exe',
Manjunath A Kumatagi5a1f1762016-02-02 17:34:36 +0530167 }
Norman Jamesb38ea5a2015-10-28 12:44:56 -0500168}
Norman Jamesc9239a32015-10-06 16:54:31 -0500169
Norman James2656f332015-10-26 06:42:41 -0500170CACHED_INTERFACES = {
171 "org.openbmc.InventoryItem" : True,
172 "org.openbmc.control.Chassis" : True,
173 }
Norman Jamesa3e47c42015-10-18 14:43:10 -0500174INVENTORY_ROOT = '/org/openbmc/inventory'
Norman Jamesc9239a32015-10-06 16:54:31 -0500175
176FRU_INSTANCES = {
Norman Jamesb38ea5a2015-10-28 12:44:56 -0500177 '<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, },
Norman Jamesc9239a32015-10-06 16:54:31 -0500180
Norman Jamesb38ea5a2015-10-28 12:44:56 -0500181 '<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, },
Norman Jamesa42446a2015-10-19 11:12:45 -0500186
Norman Jamesb38ea5a2015-10-28 12:44:56 -0500187 '<inventory_root>/system/chassis/motherboard/bmc' : { 'fru_type' : 'BMC','is_fru' : False,
Norman Jamesa42446a2015-10-19 11:12:45 -0500188 'manufacturer' : 'ASPEED' },
Norman Jamesb38ea5a2015-10-28 12:44:56 -0500189 '<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, },
Norman Jamesa42446a2015-10-19 11:12:45 -0500202
Norman Jamesa42446a2015-10-19 11:12:45 -0500203
Chris Austen46136de2016-05-12 00:27:37 -0500204 '<inventory_root>/system/chassis/motherboard/membuf0' : { 'fru_type' : 'MEMORY_BUFFER', 'is_fru' : False, },
Norman Jamesa42446a2015-10-19 11:12:45 -0500205
Norman Jamesb38ea5a2015-10-28 12:44:56 -0500206 '<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,},
Norman Jamesa42446a2015-10-19 11:12:45 -0500210
Norman Jamesb38ea5a2015-10-28 12:44:56 -0500211 '<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,},
Norman Jamesa42446a2015-10-19 11:12:45 -0500213
Chris Austen4c9ea5d2015-12-09 23:26:08 -0600214 '<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, },
Norman Jamesc9239a32015-10-06 16:54:31 -0500219}
220
221ID_LOOKUP = {
222 'FRU' : {
Norman Jamesa42446a2015-10-19 11:12:45 -0500223 0x0d : '<inventory_root>/system/chassis',
224 0x34 : '<inventory_root>/system/chassis/motherboard',
225 0x01 : '<inventory_root>/system/chassis/motherboard/cpu0',
Chris Austen46136de2016-05-12 00:27:37 -0500226 0x02 : '<inventory_root>/system/chassis/motherboard/membuf0',
Norman Jamesa42446a2015-10-19 11:12:45 -0500227 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',
Norman James2656f332015-10-26 06:42:41 -0500231 0x35 : '<inventory_root>/system',
Norman Jamesc9239a32015-10-06 16:54:31 -0500232 },
Norman Jamesa42446a2015-10-19 11:12:45 -0500233 'FRU_STR' : {
Norman Jamesfe635e82015-10-20 07:47:22 -0500234 'PRODUCT_15' : '<inventory_root>/system',
235 'CHASSIS_2' : '<inventory_root>/system/chassis',
236 'BOARD_1' : '<inventory_root>/system/chassis/motherboard/cpu0',
Chris Austen46136de2016-05-12 00:27:37 -0500237 'BOARD_2' : '<inventory_root>/system/chassis/motherboard/membuf0',
Chris Austen4c9ea5d2015-12-09 23:26:08 -0600238 'BOARD_14' : '<inventory_root>/system/chassis/motherboard',
Norman Jamesfe635e82015-10-20 07:47:22 -0500239 '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',
Norman Jamesa42446a2015-10-19 11:12:45 -0500243 },
Norman Jamesc9239a32015-10-06 16:54:31 -0500244 'SENSOR' : {
Chris Austen4c9ea5d2015-12-09 23:26:08 -0600245 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',
Norman Jamesa42446a2015-10-19 11:12:45 -0500251 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',
Chris Austen46136de2016-05-12 00:27:37 -0500264 0x2e : '<inventory_root>/system/chassis/motherboard/membuf0',
Norman Jamesa42446a2015-10-19 11:12:45 -0500265 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',
Chris Austen4c9ea5d2015-12-09 23:26:08 -0600269 0x09 : '/org/openbmc/sensors/host/BootCount',
270 0x05 : '/org/openbmc/sensors/host/BootProgress',
Norman James86f2a072016-01-30 22:48:54 -0600271 0x08 : '/org/openbmc/sensors/host/cpu0/OccStatus',
Chris Austen4c9ea5d2015-12-09 23:26:08 -0600272 0x32 : '/org/openbmc/sensors/host/OperatingSystemStatus',
273 0x33 : '/org/openbmc/sensors/host/PowerCap',
Norman Jamesc9239a32015-10-06 16:54:31 -0500274 },
275 'GPIO_PRESENT' : {
Chris Austen4c9ea5d2015-12-09 23:26:08 -0600276 'SLOT0_PRESENT' : '<inventory_root>/system/chassis/io_board/pcie_slot0',
277 'SLOT1_PRESENT' : '<inventory_root>/system/chassis/io_board/pcie_slot1',
Norman Jamesc9239a32015-10-06 16:54:31 -0500278 }
279}
280
281GPIO_CONFIG = {}
Norman Jamesb38ea5a2015-10-28 12:44:56 -0500282GPIO_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' }
Norman James7b8811e2016-01-12 12:51:29 -0600288GPIO_CONFIG['BMC_THROTTLE'] = { 'gpio_pin': 'J3', 'direction': 'out' }
Chris Austencd6a5602016-05-24 13:33:51 -0500289GPIO_CONFIG['IDBTN'] = { 'gpio_pin': 'Q7', 'direction': 'out' }
Norman James2943cc62015-10-28 18:59:53 -0500290GPIO_CONFIG['POWER_BUTTON'] = { 'gpio_pin': 'E0', 'direction': 'both' }
Norman Jamese62f4452015-10-31 17:33:10 -0500291GPIO_CONFIG['PCIE_RESET'] = { 'gpio_pin': 'B5', 'direction': 'out' }
292GPIO_CONFIG['USB_RESET'] = { 'gpio_pin': 'B6', 'direction': 'out' }
Norman Jamesb38ea5a2015-10-28 12:44:56 -0500293GPIO_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' }
Adriana Kobylak341c8c22016-06-16 09:20:55 -0500301GPIO_CONFIG['CHECKSTOP'] = { 'gpio_pin': 'P5', 'direction': 'falling' }
Norman Jamesc9239a32015-10-06 16:54:31 -0500302
Norman James6bbe0b52015-10-27 09:18:05 -0500303def convertGpio(name):
304 name = name.upper()
305 c = name[0:1]
Norman Jamesa9966b32015-10-28 06:55:58 -0500306 offset = int(name[1:])
Norman James6bbe0b52015-10-27 09:18:05 -0500307 a = ord(c)-65
Norman Jamesa9966b32015-10-28 06:55:58 -0500308 base = a*8+GPIO_BASE
Norman James7b8811e2016-01-12 12:51:29 -0600309 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 }
Yi Li155f93f2016-01-30 15:30:14 +0800316 },
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 }
Norman James7b8811e2016-01-12 12:51:29 -0600326 }
327}
Yi Li54decc82016-05-05 17:42:56 +0800328
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}