Brad Bishop | de6ed12 | 2016-08-30 20:14:57 -0400 | [diff] [blame] | 1 | #!/usr/bin/env python |
Norman James | 89de916 | 2015-08-27 21:41:36 -0500 | [diff] [blame] | 2 | |
CamVan Nguyen | d65b2d5 | 2018-02-27 15:14:41 -0600 | [diff] [blame] | 3 | # TODO: openbmc/openbmc#2994 remove python 2 support |
| 4 | try: # python 2 |
| 5 | import gobject |
| 6 | except ImportError: # python 3 |
| 7 | from gi.repository import GObject as gobject |
Norman James | 89de916 | 2015-08-27 21:41:36 -0500 | [diff] [blame] | 8 | import dbus |
| 9 | import dbus.service |
| 10 | import dbus.mainloop.glib |
Norman James | 90baede | 2015-09-02 20:32:49 -0500 | [diff] [blame] | 11 | import os |
Brad Bishop | 84e73b5 | 2016-05-12 15:57:52 -0400 | [diff] [blame] | 12 | from obmc.dbuslib.bindings import DbusProperties, DbusObjectManager, get_dbus |
| 13 | import obmc.enums |
Brad Bishop | 0b380f7 | 2016-06-10 00:29:50 -0400 | [diff] [blame] | 14 | import obmc_system_config as System |
Andrew Geissler | f6e918e | 2018-03-26 14:17:51 -0700 | [diff] [blame] | 15 | import obmc.inventory |
Brad Bishop | a7ac805 | 2016-09-21 09:17:05 -0400 | [diff] [blame] | 16 | import obmc.system |
Norman James | 89de916 | 2015-08-27 21:41:36 -0500 | [diff] [blame] | 17 | |
| 18 | DBUS_NAME = 'org.openbmc.managers.System' |
| 19 | OBJ_NAME = '/org/openbmc/managers/System' |
Andrew Geissler | f6e918e | 2018-03-26 14:17:51 -0700 | [diff] [blame] | 20 | INTF_SENSOR = 'org.openbmc.SensorValue' |
Norman James | cf74f95 | 2015-10-28 12:45:18 -0500 | [diff] [blame] | 21 | |
Brad Bishop | 416539d | 2016-07-22 07:22:42 -0400 | [diff] [blame] | 22 | class SystemManager(DbusProperties, DbusObjectManager): |
| 23 | def __init__(self, bus, obj_name): |
Brad Bishop | f47f5fa | 2016-09-08 22:29:01 -0400 | [diff] [blame] | 24 | super(SystemManager, self).__init__( |
| 25 | conn=bus, |
| 26 | object_path=obj_name) |
Brad Bishop | 416539d | 2016-07-22 07:22:42 -0400 | [diff] [blame] | 27 | self.bus = bus |
Norman James | 9e6acf9 | 2015-09-08 07:00:04 -0500 | [diff] [blame] | 28 | |
Andrew Geissler | f6e918e | 2018-03-26 14:17:51 -0700 | [diff] [blame] | 29 | # replace symbolic path in ID_LOOKUP |
| 30 | for category in System.ID_LOOKUP: |
| 31 | for key in System.ID_LOOKUP[category]: |
| 32 | val = System.ID_LOOKUP[category][key] |
| 33 | new_val = val.replace( |
| 34 | "<inventory_root>", obmc.inventory.INVENTORY_ROOT) |
| 35 | System.ID_LOOKUP[category][key] = new_val |
| 36 | |
CamVan Nguyen | d65b2d5 | 2018-02-27 15:14:41 -0600 | [diff] [blame] | 37 | print("SystemManager Init Done") |
Brad Bishop | 4de4264 | 2016-06-29 21:55:47 -0400 | [diff] [blame] | 38 | |
Andrew Geissler | f6e918e | 2018-03-26 14:17:51 -0700 | [diff] [blame] | 39 | def doObjectLookup(self, category, key): |
| 40 | obj_path = "" |
| 41 | intf_name = INTF_SENSOR |
| 42 | try: |
| 43 | obj_path = System.ID_LOOKUP[category][key] |
| 44 | parts = obj_path.split('/') |
| 45 | if (parts[3] != 'sensors'): |
| 46 | print ("ERROR SystemManager: SENSOR only supported type") |
| 47 | intf_name = "" |
| 48 | except Exception as e: |
| 49 | print ("ERROR SystemManager: "+str(e)+" not found in lookup") |
| 50 | |
| 51 | return [obj_path, intf_name] |
| 52 | |
| 53 | @dbus.service.method(DBUS_NAME, in_signature='ss', out_signature='(ss)') |
| 54 | def getObjectFromId(self, category, key): |
| 55 | return self.doObjectLookup(category, key) |
| 56 | |
| 57 | @dbus.service.method(DBUS_NAME, in_signature='sy', out_signature='(ss)') |
| 58 | def getObjectFromByteId(self, category, key): |
| 59 | byte = int(key) |
| 60 | return self.doObjectLookup(category, byte) |
| 61 | |
Brad Bishop | 416539d | 2016-07-22 07:22:42 -0400 | [diff] [blame] | 62 | @dbus.service.method(DBUS_NAME, in_signature='s', out_signature='sis') |
| 63 | def gpioInit(self, name): |
| 64 | gpio_path = '' |
| 65 | gpio_num = -1 |
| 66 | r = ['', gpio_num, ''] |
| 67 | if name not in System.GPIO_CONFIG: |
Xo Wang | 605620d | 2016-09-21 12:46:29 -0700 | [diff] [blame] | 68 | # TODO: Better error handling |
| 69 | msg = "ERROR: "+name+" not found in GPIO config table" |
CamVan Nguyen | d65b2d5 | 2018-02-27 15:14:41 -0600 | [diff] [blame] | 70 | print(msg) |
Xo Wang | 605620d | 2016-09-21 12:46:29 -0700 | [diff] [blame] | 71 | raise Exception(msg) |
Brad Bishop | 416539d | 2016-07-22 07:22:42 -0400 | [diff] [blame] | 72 | else: |
| 73 | |
| 74 | gpio_num = -1 |
| 75 | gpio = System.GPIO_CONFIG[name] |
| 76 | if 'gpio_num' in System.GPIO_CONFIG[name]: |
| 77 | gpio_num = gpio['gpio_num'] |
| 78 | else: |
| 79 | if 'gpio_pin' in System.GPIO_CONFIG[name]: |
Brad Bishop | a7ac805 | 2016-09-21 09:17:05 -0400 | [diff] [blame] | 80 | gpio_num = obmc.system.convertGpio(gpio['gpio_pin']) |
Brad Bishop | 416539d | 2016-07-22 07:22:42 -0400 | [diff] [blame] | 81 | else: |
Xo Wang | 605620d | 2016-09-21 12:46:29 -0700 | [diff] [blame] | 82 | msg = "ERROR: SystemManager - GPIO lookup failed for "+name |
CamVan Nguyen | d65b2d5 | 2018-02-27 15:14:41 -0600 | [diff] [blame] | 83 | print(msg) |
Xo Wang | 605620d | 2016-09-21 12:46:29 -0700 | [diff] [blame] | 84 | raise Exception(msg) |
Brad Bishop | 416539d | 2016-07-22 07:22:42 -0400 | [diff] [blame] | 85 | |
| 86 | if (gpio_num != -1): |
| 87 | r = [obmc.enums.GPIO_DEV, gpio_num, gpio['direction']] |
| 88 | return r |
| 89 | |
Xo Wang | 3f87de8 | 2016-09-22 11:17:01 -0700 | [diff] [blame] | 90 | @dbus.service.method(DBUS_NAME, in_signature='', |
Adriana Kobylak | 24341f9 | 2018-01-26 15:07:23 -0600 | [diff] [blame] | 91 | out_signature='ssa(sb)a(sb)a(sbb)ssssa(sb)') |
Lei YU | 75a18a2 | 2016-11-22 01:47:47 +0800 | [diff] [blame] | 92 | def getGpioConfiguration(self): |
| 93 | power_config = System.GPIO_CONFIGS.get('power_config', {}) |
| 94 | power_good_in = power_config.get('power_good_in', '') |
| 95 | latch_out = power_config.get('latch_out', '') |
| 96 | power_up_outs = power_config.get('power_up_outs', []) |
| 97 | reset_outs = power_config.get('reset_outs', []) |
Lei YU | a42400f | 2017-08-22 17:04:43 +0800 | [diff] [blame] | 98 | pci_reset_outs = power_config.get('pci_reset_outs', []) |
Lei YU | 75a18a2 | 2016-11-22 01:47:47 +0800 | [diff] [blame] | 99 | hostctl_config = System.GPIO_CONFIGS.get('hostctl_config', {}) |
| 100 | fsi_data = hostctl_config.get('fsi_data', '') |
| 101 | fsi_clk = hostctl_config.get('fsi_clk', '') |
| 102 | fsi_enable = hostctl_config.get('fsi_enable', '') |
| 103 | cronus_sel = hostctl_config.get('cronus_sel', '') |
| 104 | optionals = hostctl_config.get('optionals', []) |
Adriana Kobylak | 24341f9 | 2018-01-26 15:07:23 -0600 | [diff] [blame] | 105 | r = [power_good_in, latch_out, power_up_outs, reset_outs, |
| 106 | pci_reset_outs, fsi_data, fsi_clk, fsi_enable, cronus_sel, |
| 107 | optionals] |
CamVan Nguyen | d65b2d5 | 2018-02-27 15:14:41 -0600 | [diff] [blame] | 108 | print("Power GPIO config: " + str(r)) |
Xo Wang | 3f87de8 | 2016-09-22 11:17:01 -0700 | [diff] [blame] | 109 | return r |
| 110 | |
Norman James | 89de916 | 2015-08-27 21:41:36 -0500 | [diff] [blame] | 111 | |
| 112 | if __name__ == '__main__': |
| 113 | dbus.mainloop.glib.DBusGMainLoop(set_as_default=True) |
Brad Bishop | 84e73b5 | 2016-05-12 15:57:52 -0400 | [diff] [blame] | 114 | bus = get_dbus() |
Brad Bishop | 416539d | 2016-07-22 07:22:42 -0400 | [diff] [blame] | 115 | obj = SystemManager(bus, OBJ_NAME) |
Norman James | 6f8d042 | 2015-09-14 18:48:00 -0500 | [diff] [blame] | 116 | mainloop = gobject.MainLoop() |
Brad Bishop | f0f3efe | 2016-06-29 23:20:24 -0400 | [diff] [blame] | 117 | obj.unmask_signals() |
Brad Bishop | 416539d | 2016-07-22 07:22:42 -0400 | [diff] [blame] | 118 | name = dbus.service.BusName(DBUS_NAME, bus) |
Norman James | 89de916 | 2015-08-27 21:41:36 -0500 | [diff] [blame] | 119 | |
CamVan Nguyen | d65b2d5 | 2018-02-27 15:14:41 -0600 | [diff] [blame] | 120 | print("Running SystemManager") |
Norman James | 89de916 | 2015-08-27 21:41:36 -0500 | [diff] [blame] | 121 | mainloop.run() |
Brad Bishop | 5306675 | 2016-09-21 08:48:04 -0400 | [diff] [blame] | 122 | |
| 123 | # vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4 |