blob: 4942669fc40e554121c4f7479ef8ff6414fc8002 [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 Jamesa9966b32015-10-28 06:55:58 -05004GPIO_BASE = 320
Norman James969227c2015-10-08 15:10:47 -05005SYSTEM_NAME = "Palmetto"
Norman Jamesc9239a32015-10-06 16:54:31 -05006
Norman Jamesa3e47c42015-10-18 14:43:10 -05007
8## System states
9## state can change to next state in 2 ways:
10## - a process emits a GotoSystemState signal with state name to goto
11## - objects specified in EXIT_STATE_DEPEND have started
Norman Jamesc9239a32015-10-06 16:54:31 -050012SYSTEM_STATES = [
Norman Jamesb714eb22015-10-26 17:12:57 -050013 'BASE_APPS',
Norman Jamesa3e47c42015-10-18 14:43:10 -050014 'BMC_STARTING',
15 'BMC_READY',
16 'HOST_POWERING_ON',
17 'HOST_POWERED_ON',
18 'HOST_BOOTING',
Norman James2656f332015-10-26 06:42:41 -050019 'HOST_BOOTED',
Adriana Kobylakc5a16052016-03-01 14:29:47 -060020 'HOST_POWERED_OFF',
Norman Jamesc9239a32015-10-06 16:54:31 -050021]
22
Norman Jamesa3e47c42015-10-18 14:43:10 -050023EXIT_STATE_DEPEND = {
Norman Jamesb714eb22015-10-26 17:12:57 -050024 'BASE_APPS' : {
Norman James76abea32015-10-29 06:17:54 -050025 '/org/openbmc/sensors': 0,
Norman Jamesb714eb22015-10-26 17:12:57 -050026 },
Norman Jamesa3e47c42015-10-18 14:43:10 -050027 'BMC_STARTING' : {
28 '/org/openbmc/control/chassis0': 0,
29 '/org/openbmc/control/power0' : 0,
Adriana Kobylak9c751042016-02-09 13:44:32 -060030 '/org/openbmc/control/led/identify' : 0,
Norman Jamesb38ea5a2015-10-28 12:44:56 -050031 '/org/openbmc/control/host0' : 0,
Norman James2943cc62015-10-28 18:59:53 -050032 '/org/openbmc/control/flash/bios' : 0,
Norman Jamesa3e47c42015-10-18 14:43:10 -050033 }
34}
35
36## method will be called when state is entered
Norman Jamesc9239a32015-10-06 16:54:31 -050037ENTER_STATE_CALLBACK = {
Norman James2943cc62015-10-28 18:59:53 -050038 'HOST_POWERED_ON' : {
39 'boot' : {
40 'bus_name' : 'org.openbmc.control.Host',
41 'obj_name' : '/org/openbmc/control/host0',
42 'interface_name' : 'org.openbmc.control.Host',
43 }
Norman Jamesa3e47c42015-10-18 14:43:10 -050044 },
45 'BMC_READY' : {
Norman James2943cc62015-10-28 18:59:53 -050046 'setOn' : {
47 'bus_name' : 'org.openbmc.control.led',
Adriana Kobylak9c751042016-02-09 13:44:32 -060048 'obj_name' : '/org/openbmc/control/led/identify',
Norman James2943cc62015-10-28 18:59:53 -050049 'interface_name' : 'org.openbmc.Led',
50 },
51 'init' : {
52 'bus_name' : 'org.openbmc.control.Flash',
53 'obj_name' : '/org/openbmc/control/flash/bios',
54 'interface_name' : 'org.openbmc.Flash',
55 },
Norman Jamesc9239a32015-10-06 16:54:31 -050056 }
57}
58
Norman Jamesb38ea5a2015-10-28 12:44:56 -050059APPS = {
Norman Jamesb728e652015-11-01 07:38:46 -060060 'startup_hacks' : {
61 'system_state' : 'BASE_APPS',
62 'start_process' : True,
63 'monitor_process' : False,
64 'process_name' : 'startup_hacks.sh',
65 },
Norman Jamesb38ea5a2015-10-28 12:44:56 -050066 'inventory' : {
67 'system_state' : 'BMC_STARTING',
68 'start_process' : True,
Norman James0ee61922015-10-14 09:39:11 -050069 'monitor_process' : True,
Norman Jamesb38ea5a2015-10-28 12:44:56 -050070 'process_name' : 'inventory_items.py',
71 'args' : [ SYSTEM_NAME ]
72 },
73 'pcie_present' : {
74 'system_state' : 'HOST_POWERED_ON',
Norman Jamesd98932a2015-11-09 10:59:22 -060075 'start_process' : False,
Norman Jamesb38ea5a2015-10-28 12:44:56 -050076 'monitor_process' : False,
77 'process_name' : 'pcie_slot_present.exe',
78 },
79 'virtual_sensors' : {
80 'system_state' : 'BMC_STARTING',
81 'start_process' : True,
Norman Jamesc9239a32015-10-06 16:54:31 -050082 'monitor_process' : True,
Chris Austen3ac12272015-12-10 12:24:56 -060083 'process_name' : 'hwmon.py',
84 'args' : [ SYSTEM_NAME ]
Norman Jamesb38ea5a2015-10-28 12:44:56 -050085 },
86 'sensor_manager' : {
Norman James76abea32015-10-29 06:17:54 -050087 'system_state' : 'BASE_APPS',
Norman Jamesb38ea5a2015-10-28 12:44:56 -050088 'start_process' : True,
Norman Jamesc9239a32015-10-06 16:54:31 -050089 'monitor_process' : True,
Chris Austen4c9ea5d2015-12-09 23:26:08 -060090 'process_name' : 'sensor_manager2.py',
Norman Jamesb38ea5a2015-10-28 12:44:56 -050091 'args' : [ SYSTEM_NAME ]
92 },
93 'host_watchdog' : {
94 'system_state' : 'BMC_STARTING',
95 'start_process' : True,
96 'monitor_process' : True,
97 'process_name' : 'host_watchdog.exe',
98 },
99 'power_control' : {
100 'system_state' : 'BMC_STARTING',
101 'start_process' : True,
Norman Jamesc9239a32015-10-06 16:54:31 -0500102 'monitor_process' : True,
103 'process_name' : 'power_control.exe',
Norman Jamesb38ea5a2015-10-28 12:44:56 -0500104 'args' : [ '3000', '10' ]
105 },
106 'power_button' : {
107 'system_state' : 'BMC_STARTING',
Norman James2943cc62015-10-28 18:59:53 -0500108 'start_process' : False,
109 'monitor_process' : False,
Norman Jamesb38ea5a2015-10-28 12:44:56 -0500110 'process_name' : 'button_power.exe',
111 },
Adriana Kobylak341c8c22016-06-16 09:20:55 -0500112 'host_checkstop' : {
113 'system_state' : 'BMC_STARTING',
114 'start_process' : False,
115 'monitor_process' : False,
116 'process_name' : 'host_checkstop.exe',
117 },
Norman Jamesb38ea5a2015-10-28 12:44:56 -0500118 'led_control' : {
119 'system_state' : 'BMC_STARTING',
120 'start_process' : True,
Norman Jamesc9239a32015-10-06 16:54:31 -0500121 'monitor_process' : True,
Norman Jamesb38ea5a2015-10-28 12:44:56 -0500122 'process_name' : 'led_controller.exe',
123 },
124 'flash_control' : {
125 'system_state' : 'BMC_STARTING',
126 'start_process' : True,
Norman Jamesc9239a32015-10-06 16:54:31 -0500127 'monitor_process' : True,
Norman Jamesb38ea5a2015-10-28 12:44:56 -0500128 'process_name' : 'flash_bios.exe',
129 },
Adriana Kobylak86e6c2c2016-04-29 11:56:40 -0500130 'bmc_flash_control' : {
131 'system_state' : 'BMC_STARTING',
132 'start_process' : True,
133 'monitor_process' : True,
134 'process_name' : 'bmc_update.py',
135 },
Norman Jamesb38ea5a2015-10-28 12:44:56 -0500136 'download_manager' : {
137 'system_state' : 'BMC_STARTING',
138 'start_process' : True,
Norman Jamesc9239a32015-10-06 16:54:31 -0500139 'monitor_process' : True,
Norman Jamesb38ea5a2015-10-28 12:44:56 -0500140 'process_name' : 'download_manager.py',
141 'args' : [ SYSTEM_NAME ]
142 },
143 'host_control' : {
144 'system_state' : 'BMC_STARTING',
145 'start_process' : True,
Norman Jamesc9239a32015-10-06 16:54:31 -0500146 'monitor_process' : True,
Norman Jamesb38ea5a2015-10-28 12:44:56 -0500147 'process_name' : 'control_host.exe',
148 },
149 'chassis_control' : {
150 'system_state' : 'BMC_STARTING',
151 'start_process' : True,
Norman Jamesc9239a32015-10-06 16:54:31 -0500152 'monitor_process' : True,
Norman Jamesb38ea5a2015-10-28 12:44:56 -0500153 'process_name' : 'chassis_control.py',
154 },
Vishwa3d1c3de2016-06-30 13:52:59 +0530155 'restore' : {
156 'system_state' : 'BMC_READY',
157 'start_process' : True,
158 'monitor_process' : False,
159 'process_name' : 'discover_system_state.py',
160 },
Williamf784d752016-01-19 12:28:49 +0800161 'bmc_control' : {
162 'system_state' : 'BMC_STARTING',
163 'start_process' : True,
164 'monitor_process' : True,
165 'process_name' : 'control_bmc.exe',
Manjunath A Kumatagi5a1f1762016-02-02 17:34:36 +0530166 }
Norman Jamesb38ea5a2015-10-28 12:44:56 -0500167}
Norman Jamesc9239a32015-10-06 16:54:31 -0500168
Norman James2656f332015-10-26 06:42:41 -0500169CACHED_INTERFACES = {
170 "org.openbmc.InventoryItem" : True,
171 "org.openbmc.control.Chassis" : True,
172 }
Norman Jamesa3e47c42015-10-18 14:43:10 -0500173INVENTORY_ROOT = '/org/openbmc/inventory'
Norman Jamesc9239a32015-10-06 16:54:31 -0500174
175FRU_INSTANCES = {
Norman Jamesb38ea5a2015-10-28 12:44:56 -0500176 '<inventory_root>/system' : { 'fru_type' : 'SYSTEM','is_fru' : True, },
177 '<inventory_root>/system/chassis' : { 'fru_type' : 'SYSTEM','is_fru' : True, },
178 '<inventory_root>/system/chassis/motherboard' : { 'fru_type' : 'MAIN_PLANAR','is_fru' : True, },
Norman Jamesc9239a32015-10-06 16:54:31 -0500179
Norman Jamesb38ea5a2015-10-28 12:44:56 -0500180 '<inventory_root>/system/chassis/fan0' : { 'fru_type' : 'FAN','is_fru' : True, },
181 '<inventory_root>/system/chassis/fan1' : { 'fru_type' : 'FAN','is_fru' : True, },
182 '<inventory_root>/system/chassis/fan2' : { 'fru_type' : 'FAN','is_fru' : True, },
183 '<inventory_root>/system/chassis/fan3' : { 'fru_type' : 'FAN','is_fru' : True, },
184 '<inventory_root>/system/chassis/fan4' : { 'fru_type' : 'FAN','is_fru' : True, },
Norman Jamesa42446a2015-10-19 11:12:45 -0500185
Norman Jamesb38ea5a2015-10-28 12:44:56 -0500186 '<inventory_root>/system/chassis/motherboard/bmc' : { 'fru_type' : 'BMC','is_fru' : False,
Norman Jamesa42446a2015-10-19 11:12:45 -0500187 'manufacturer' : 'ASPEED' },
Norman Jamesb38ea5a2015-10-28 12:44:56 -0500188 '<inventory_root>/system/chassis/motherboard/cpu0' : { 'fru_type' : 'CPU', 'is_fru' : True, },
189 '<inventory_root>/system/chassis/motherboard/cpu0/core0' : { 'fru_type' : 'CORE', 'is_fru' : False, },
190 '<inventory_root>/system/chassis/motherboard/cpu0/core1' : { 'fru_type' : 'CORE', 'is_fru' : False, },
191 '<inventory_root>/system/chassis/motherboard/cpu0/core2' : { 'fru_type' : 'CORE', 'is_fru' : False, },
192 '<inventory_root>/system/chassis/motherboard/cpu0/core3' : { 'fru_type' : 'CORE', 'is_fru' : False, },
193 '<inventory_root>/system/chassis/motherboard/cpu0/core4' : { 'fru_type' : 'CORE', 'is_fru' : False, },
194 '<inventory_root>/system/chassis/motherboard/cpu0/core5' : { 'fru_type' : 'CORE', 'is_fru' : False, },
195 '<inventory_root>/system/chassis/motherboard/cpu0/core6' : { 'fru_type' : 'CORE', 'is_fru' : False, },
196 '<inventory_root>/system/chassis/motherboard/cpu0/core7' : { 'fru_type' : 'CORE', 'is_fru' : False, },
197 '<inventory_root>/system/chassis/motherboard/cpu0/core8' : { 'fru_type' : 'CORE', 'is_fru' : False, },
198 '<inventory_root>/system/chassis/motherboard/cpu0/core9' : { 'fru_type' : 'CORE', 'is_fru' : False, },
199 '<inventory_root>/system/chassis/motherboard/cpu0/core10' : { 'fru_type' : 'CORE', 'is_fru' : False, },
200 '<inventory_root>/system/chassis/motherboard/cpu0/core11' : { 'fru_type' : 'CORE', 'is_fru' : False, },
Norman Jamesa42446a2015-10-19 11:12:45 -0500201
Norman Jamesa42446a2015-10-19 11:12:45 -0500202
Chris Austen46136de2016-05-12 00:27:37 -0500203 '<inventory_root>/system/chassis/motherboard/membuf0' : { 'fru_type' : 'MEMORY_BUFFER', 'is_fru' : False, },
Norman Jamesa42446a2015-10-19 11:12:45 -0500204
Norman Jamesb38ea5a2015-10-28 12:44:56 -0500205 '<inventory_root>/system/chassis/motherboard/dimm0' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
206 '<inventory_root>/system/chassis/motherboard/dimm1' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
207 '<inventory_root>/system/chassis/motherboard/dimm2' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
208 '<inventory_root>/system/chassis/motherboard/dimm3' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
Norman Jamesa42446a2015-10-19 11:12:45 -0500209
Norman Jamesb38ea5a2015-10-28 12:44:56 -0500210 '<inventory_root>/system/chassis/io_board/pcie_slot0' : { 'fru_type' : 'PCIE_CARD', 'is_fru' : True,},
211 '<inventory_root>/system/chassis/io_board/pcie_slot1' : { 'fru_type' : 'PCIE_CARD', 'is_fru' : True,},
Norman Jamesa42446a2015-10-19 11:12:45 -0500212
Chris Austen4c9ea5d2015-12-09 23:26:08 -0600213 '<inventory_root>/system/systemevent' : { 'fru_type' : 'SYSTEM_EVENT', 'is_fru' : False, },
214 '<inventory_root>/system/chassis/motherboard/refclock' : { 'fru_type' : 'MAIN_PLANAR', 'is_fru' : False, },
215 '<inventory_root>/system/chassis/motherboard/pcieclock': { 'fru_type' : 'MAIN_PLANAR', 'is_fru' : False, },
216 '<inventory_root>/system/chassis/motherboard/todclock' : { 'fru_type' : 'MAIN_PLANAR', 'is_fru' : False, },
217 '<inventory_root>/system/chassis/motherboard/apss' : { 'fru_type' : 'MAIN_PLANAR', 'is_fru' : False, },
Norman Jamesc9239a32015-10-06 16:54:31 -0500218}
219
220ID_LOOKUP = {
221 'FRU' : {
Norman Jamesa42446a2015-10-19 11:12:45 -0500222 0x0d : '<inventory_root>/system/chassis',
223 0x34 : '<inventory_root>/system/chassis/motherboard',
224 0x01 : '<inventory_root>/system/chassis/motherboard/cpu0',
Chris Austen46136de2016-05-12 00:27:37 -0500225 0x02 : '<inventory_root>/system/chassis/motherboard/membuf0',
Norman Jamesa42446a2015-10-19 11:12:45 -0500226 0x03 : '<inventory_root>/system/chassis/motherboard/dimm0',
227 0x04 : '<inventory_root>/system/chassis/motherboard/dimm1',
228 0x05 : '<inventory_root>/system/chassis/motherboard/dimm2',
229 0x06 : '<inventory_root>/system/chassis/motherboard/dimm3',
Norman James2656f332015-10-26 06:42:41 -0500230 0x35 : '<inventory_root>/system',
Norman Jamesc9239a32015-10-06 16:54:31 -0500231 },
Norman Jamesa42446a2015-10-19 11:12:45 -0500232 'FRU_STR' : {
Norman Jamesfe635e82015-10-20 07:47:22 -0500233 'PRODUCT_15' : '<inventory_root>/system',
234 'CHASSIS_2' : '<inventory_root>/system/chassis',
235 'BOARD_1' : '<inventory_root>/system/chassis/motherboard/cpu0',
Chris Austen46136de2016-05-12 00:27:37 -0500236 'BOARD_2' : '<inventory_root>/system/chassis/motherboard/membuf0',
Chris Austen4c9ea5d2015-12-09 23:26:08 -0600237 'BOARD_14' : '<inventory_root>/system/chassis/motherboard',
Norman Jamesfe635e82015-10-20 07:47:22 -0500238 'PRODUCT_3' : '<inventory_root>/system/chassis/motherboard/dimm0',
239 'PRODUCT_4' : '<inventory_root>/system/chassis/motherboard/dimm1',
240 'PRODUCT_5' : '<inventory_root>/system/chassis/motherboard/dimm2',
241 'PRODUCT_6' : '<inventory_root>/system/chassis/motherboard/dimm3',
Norman Jamesa42446a2015-10-19 11:12:45 -0500242 },
Norman Jamesc9239a32015-10-06 16:54:31 -0500243 'SENSOR' : {
Chris Austen4c9ea5d2015-12-09 23:26:08 -0600244 0x34 : '<inventory_root>/system/chassis/motherboard',
245 0x35 : '<inventory_root>/system/systemevent',
246 0x37 : '<inventory_root>/system/chassis/motherboard/refclock',
247 0x38 : '<inventory_root>/system/chassis/motherboard/pcieclock',
248 0x39 : '<inventory_root>/system/chassis/motherboard/todclock',
249 0x3A : '<inventory_root>/system/chassis/motherboard/apss',
Norman Jamesa42446a2015-10-19 11:12:45 -0500250 0x2f : '<inventory_root>/system/chassis/motherboard/cpu0',
251 0x22 : '<inventory_root>/system/chassis/motherboard/cpu0/core0',
252 0x23 : '<inventory_root>/system/chassis/motherboard/cpu0/core1',
253 0x24 : '<inventory_root>/system/chassis/motherboard/cpu0/core2',
254 0x25 : '<inventory_root>/system/chassis/motherboard/cpu0/core3',
255 0x26 : '<inventory_root>/system/chassis/motherboard/cpu0/core4',
256 0x27 : '<inventory_root>/system/chassis/motherboard/cpu0/core5',
257 0x28 : '<inventory_root>/system/chassis/motherboard/cpu0/core6',
258 0x29 : '<inventory_root>/system/chassis/motherboard/cpu0/core7',
259 0x2a : '<inventory_root>/system/chassis/motherboard/cpu0/core8',
260 0x2b : '<inventory_root>/system/chassis/motherboard/cpu0/core9',
261 0x2c : '<inventory_root>/system/chassis/motherboard/cpu0/core10',
262 0x2d : '<inventory_root>/system/chassis/motherboard/cpu0/core11',
Chris Austen46136de2016-05-12 00:27:37 -0500263 0x2e : '<inventory_root>/system/chassis/motherboard/membuf0',
Norman Jamesa42446a2015-10-19 11:12:45 -0500264 0x1e : '<inventory_root>/system/chassis/motherboard/dimm0',
265 0x1f : '<inventory_root>/system/chassis/motherboard/dimm1',
266 0x20 : '<inventory_root>/system/chassis/motherboard/dimm2',
267 0x21 : '<inventory_root>/system/chassis/motherboard/dimm3',
Chris Austen4c9ea5d2015-12-09 23:26:08 -0600268 0x09 : '/org/openbmc/sensors/host/BootCount',
269 0x05 : '/org/openbmc/sensors/host/BootProgress',
Norman James86f2a072016-01-30 22:48:54 -0600270 0x08 : '/org/openbmc/sensors/host/cpu0/OccStatus',
Chris Austen4c9ea5d2015-12-09 23:26:08 -0600271 0x32 : '/org/openbmc/sensors/host/OperatingSystemStatus',
272 0x33 : '/org/openbmc/sensors/host/PowerCap',
Norman Jamesc9239a32015-10-06 16:54:31 -0500273 },
274 'GPIO_PRESENT' : {
Chris Austen4c9ea5d2015-12-09 23:26:08 -0600275 'SLOT0_PRESENT' : '<inventory_root>/system/chassis/io_board/pcie_slot0',
276 'SLOT1_PRESENT' : '<inventory_root>/system/chassis/io_board/pcie_slot1',
Norman Jamesc9239a32015-10-06 16:54:31 -0500277 }
278}
279
280GPIO_CONFIG = {}
Norman Jamesb38ea5a2015-10-28 12:44:56 -0500281GPIO_CONFIG['FSI_CLK'] = { 'gpio_pin': 'A4', 'direction': 'out' }
282GPIO_CONFIG['FSI_DATA'] = { 'gpio_pin': 'A5', 'direction': 'out' }
283GPIO_CONFIG['FSI_ENABLE'] = { 'gpio_pin': 'D0', 'direction': 'out' }
284GPIO_CONFIG['POWER_PIN'] = { 'gpio_pin': 'E1', 'direction': 'out' }
285GPIO_CONFIG['CRONUS_SEL'] = { 'gpio_pin': 'A6', 'direction': 'out' }
286GPIO_CONFIG['PGOOD'] = { 'gpio_pin': 'C7', 'direction': 'in' }
Norman James7b8811e2016-01-12 12:51:29 -0600287GPIO_CONFIG['BMC_THROTTLE'] = { 'gpio_pin': 'J3', 'direction': 'out' }
Chris Austencd6a5602016-05-24 13:33:51 -0500288GPIO_CONFIG['IDBTN'] = { 'gpio_pin': 'Q7', 'direction': 'out' }
Norman James2943cc62015-10-28 18:59:53 -0500289GPIO_CONFIG['POWER_BUTTON'] = { 'gpio_pin': 'E0', 'direction': 'both' }
Norman Jamese62f4452015-10-31 17:33:10 -0500290GPIO_CONFIG['PCIE_RESET'] = { 'gpio_pin': 'B5', 'direction': 'out' }
291GPIO_CONFIG['USB_RESET'] = { 'gpio_pin': 'B6', 'direction': 'out' }
Norman Jamesb38ea5a2015-10-28 12:44:56 -0500292GPIO_CONFIG['SLOT0_RISER_PRESENT'] = { 'gpio_pin': 'N0', 'direction': 'in' }
293GPIO_CONFIG['SLOT1_RISER_PRESENT'] = { 'gpio_pin': 'N1', 'direction': 'in' }
294GPIO_CONFIG['SLOT2_RISER_PRESENT'] = { 'gpio_pin': 'N2', 'direction': 'in' }
295GPIO_CONFIG['SLOT0_PRESENT'] = { 'gpio_pin': 'N3', 'direction': 'in' }
296GPIO_CONFIG['SLOT1_PRESENT'] = { 'gpio_pin': 'N4', 'direction': 'in' }
297GPIO_CONFIG['SLOT2_PRESENT'] = { 'gpio_pin': 'N5', 'direction': 'in' }
298GPIO_CONFIG['MEZZ0_PRESENT'] = { 'gpio_pin': 'O0', 'direction': 'in' }
299GPIO_CONFIG['MEZZ1_PRESENT'] = { 'gpio_pin': 'O1', 'direction': 'in' }
Adriana Kobylak341c8c22016-06-16 09:20:55 -0500300GPIO_CONFIG['CHECKSTOP'] = { 'gpio_pin': 'P5', 'direction': 'falling' }
Norman Jamesc9239a32015-10-06 16:54:31 -0500301
Norman James6bbe0b52015-10-27 09:18:05 -0500302def convertGpio(name):
303 name = name.upper()
304 c = name[0:1]
Norman Jamesa9966b32015-10-28 06:55:58 -0500305 offset = int(name[1:])
Norman James6bbe0b52015-10-27 09:18:05 -0500306 a = ord(c)-65
Norman Jamesa9966b32015-10-28 06:55:58 -0500307 base = a*8+GPIO_BASE
Norman James7b8811e2016-01-12 12:51:29 -0600308 return base+offset
309
310HWMON_CONFIG = {
311 '2-004c' : {
312 'names' : {
Edward A. Jamesc14f6fe2016-08-11 11:02:15 -0500313 'temp1_input' : { 'object_path' : 'temperature/ambient','poll_interval' : 5000,'scale' : -3,'units' : 'C' },
Norman James7b8811e2016-01-12 12:51:29 -0600314 }
Yi Li155f93f2016-01-30 15:30:14 +0800315 },
316 '3-0050' : {
317 'names' : {
318 'caps_curr_powercap' : { 'object_path' : 'powercap/curr_cap','poll_interval' : 10000,'scale' : 1,'units' : 'W' },
319 'caps_curr_powerreading' : { 'object_path' : 'powercap/system_power','poll_interval' : 10000,'scale' : 1,'units' : 'W' },
320 'caps_max_powercap' : { 'object_path' : 'powercap/max_cap','poll_interval' : 10000,'scale' : 1,'units' : 'W' },
321 'caps_min_powercap' : { 'object_path' : 'powercap/min_cap','poll_interval' : 10000,'scale' : 1,'units' : 'W' },
322 'caps_norm_powercap' : { 'object_path' : 'powercap/n_cap','poll_interval' : 10000,'scale' : 1,'units' : 'W' },
323 'caps_user_powerlimit' : { 'object_path' : 'powercap/user_cap','poll_interval' : 10000,'scale' : 1,'units' : 'W' },
324 }
Norman James7b8811e2016-01-12 12:51:29 -0600325 }
326}
Yi Li54decc82016-05-05 17:42:56 +0800327
328# Miscellaneous non-poll sensor with system specific properties.
329# The sensor id is the same as those defined in ID_LOOKUP['SENSOR'].
330MISC_SENSORS = {
331 0x09 : { 'class' : 'BootCountSensor' },
332 0x05 : { 'class' : 'BootProgressSensor' },
333 0x08 : { 'class' : 'OccStatusSensor',
334 'os_path' : '/sys/class/i2c-adapter/i2c-3/3-0050/online' },
335 0x32 : { 'class' : 'OperatingSystemStatusSensor' },
336 0x33 : { 'class' : 'PowerCap',
337 'os_path' : '/sys/class/hwmon/hwmon1/user_powercap' },
338}