Norman James | 42c1be8 | 2015-10-22 14:34:26 -0500 | [diff] [blame] | 1 | #!/usr/bin/python -u |
Norman James | e276510 | 2015-08-19 22:00:55 -0500 | [diff] [blame] | 2 | |
Norman James | 471ab59 | 2015-08-30 22:29:40 -0500 | [diff] [blame] | 3 | import sys |
Adriana Kobylak | 08d3bdb | 2015-10-20 16:59:14 -0500 | [diff] [blame] | 4 | import uuid |
Norman James | 6f8d042 | 2015-09-14 18:48:00 -0500 | [diff] [blame] | 5 | #from gi.repository import GObject |
| 6 | import gobject |
Norman James | e276510 | 2015-08-19 22:00:55 -0500 | [diff] [blame] | 7 | import dbus |
| 8 | import dbus.service |
| 9 | import dbus.mainloop.glib |
Norman James | 5e792e3 | 2015-10-07 17:36:17 -0500 | [diff] [blame] | 10 | import Openbmc |
Norman James | e276510 | 2015-08-19 22:00:55 -0500 | [diff] [blame] | 11 | |
Norman James | 3f97c5d | 2015-08-26 17:44:14 -0500 | [diff] [blame] | 12 | DBUS_NAME = 'org.openbmc.control.Chassis' |
Norman James | 8fee6f2 | 2015-10-28 12:48:43 -0500 | [diff] [blame] | 13 | OBJ_NAME = '/org/openbmc/control/chassis0' |
Norman James | a3e47c4 | 2015-10-18 14:43:10 -0500 | [diff] [blame] | 14 | CONTROL_INTF = 'org.openbmc.Control' |
Norman James | 3f97c5d | 2015-08-26 17:44:14 -0500 | [diff] [blame] | 15 | |
Norman James | 2a3d20b | 2015-08-20 07:09:33 -0500 | [diff] [blame] | 16 | POWER_OFF = 0 |
| 17 | POWER_ON = 1 |
| 18 | |
Norman James | 9e6acf9 | 2015-09-08 07:00:04 -0500 | [diff] [blame] | 19 | BOOTED = 100 |
| 20 | |
Norman James | 323ed97 | 2015-12-09 09:06:37 -0600 | [diff] [blame] | 21 | class ChassisControlObject(Openbmc.DbusProperties,Openbmc.DbusObjectManager): |
Norman James | e276510 | 2015-08-19 22:00:55 -0500 | [diff] [blame] | 22 | def __init__(self,bus,name): |
Norman James | 471ab59 | 2015-08-30 22:29:40 -0500 | [diff] [blame] | 23 | self.dbus_objects = { } |
Norman James | 2656f33 | 2015-10-26 06:42:41 -0500 | [diff] [blame] | 24 | Openbmc.DbusProperties.__init__(self) |
Norman James | 323ed97 | 2015-12-09 09:06:37 -0600 | [diff] [blame] | 25 | Openbmc.DbusObjectManager.__init__(self) |
Norman James | 9e6acf9 | 2015-09-08 07:00:04 -0500 | [diff] [blame] | 26 | dbus.service.Object.__init__(self,bus,name) |
Norman James | 90baede | 2015-09-02 20:32:49 -0500 | [diff] [blame] | 27 | ## load utilized objects |
Norman James | 362a80f | 2015-09-14 14:04:39 -0500 | [diff] [blame] | 28 | self.dbus_objects = { |
| 29 | 'power_control' : { |
| 30 | 'bus_name' : 'org.openbmc.control.Power', |
Norman James | a3e47c4 | 2015-10-18 14:43:10 -0500 | [diff] [blame] | 31 | 'object_name' : '/org/openbmc/control/power0', |
Norman James | 362a80f | 2015-09-14 14:04:39 -0500 | [diff] [blame] | 32 | 'interface_name' : 'org.openbmc.control.Power' |
| 33 | }, |
| 34 | 'identify_led' : { |
Norman James | a3e47c4 | 2015-10-18 14:43:10 -0500 | [diff] [blame] | 35 | 'bus_name' : 'org.openbmc.control.led', |
| 36 | 'object_name' : '/org/openbmc/led/IDENTIFY', |
Norman James | 362a80f | 2015-09-14 14:04:39 -0500 | [diff] [blame] | 37 | 'interface_name' : 'org.openbmc.Led' |
Norman James | c07c473 | 2015-10-26 07:12:58 -0500 | [diff] [blame] | 38 | }, |
| 39 | 'watchdog' : { |
| 40 | 'bus_name' : 'org.openbmc.watchdog.Host', |
Norman James | 8fee6f2 | 2015-10-28 12:48:43 -0500 | [diff] [blame] | 41 | 'object_name' : '/org/openbmc/watchdog/host0', |
Norman James | c07c473 | 2015-10-26 07:12:58 -0500 | [diff] [blame] | 42 | 'interface_name' : 'org.openbmc.Watchdog' |
Norman James | 98e1f7b | 2015-11-24 22:17:56 -0600 | [diff] [blame] | 43 | }, |
| 44 | 'host_services' : { |
| 45 | 'bus_name' : 'org.openbmc.HostServices', |
| 46 | 'object_name' : '/org/openbmc/HostServices', |
| 47 | 'interface_name' : 'org.openbmc.HostServices' |
| 48 | }, |
Norman James | 471ab59 | 2015-08-30 22:29:40 -0500 | [diff] [blame] | 49 | } |
Norman James | 90baede | 2015-09-02 20:32:49 -0500 | [diff] [blame] | 50 | |
Adriana Kobylak | 08d3bdb | 2015-10-20 16:59:14 -0500 | [diff] [blame] | 51 | #uuid |
Norman James | 2656f33 | 2015-10-26 06:42:41 -0500 | [diff] [blame] | 52 | self.Set(DBUS_NAME,"uuid",str(uuid.uuid1())) |
| 53 | self.Set(DBUS_NAME,"reboot",0) |
| 54 | self.Set(DBUS_NAME,"power_policy",0) |
Norman James | 323ed97 | 2015-12-09 09:06:37 -0600 | [diff] [blame] | 55 | self.Set(DBUS_NAME,"last_system_state","") |
Adriana Kobylak | 08d3bdb | 2015-10-20 16:59:14 -0500 | [diff] [blame] | 56 | |
Norman James | 471ab59 | 2015-08-30 22:29:40 -0500 | [diff] [blame] | 57 | bus.add_signal_receiver(self.power_button_signal_handler, |
Norman James | cfc2b44 | 2015-10-31 17:31:46 -0500 | [diff] [blame] | 58 | dbus_interface = "org.openbmc.Button", signal_name = "Released", |
Norman James | 8fee6f2 | 2015-10-28 12:48:43 -0500 | [diff] [blame] | 59 | path="/org/openbmc/buttons/power0" ) |
Norman James | cfc2b44 | 2015-10-31 17:31:46 -0500 | [diff] [blame] | 60 | bus.add_signal_receiver(self.reset_button_signal_handler, |
Norman James | 807ed1f | 2015-11-09 10:53:03 -0600 | [diff] [blame] | 61 | dbus_interface = "org.openbmc.Button", signal_name = "PressedLong", |
Norman James | cfc2b44 | 2015-10-31 17:31:46 -0500 | [diff] [blame] | 62 | path="/org/openbmc/buttons/power0" ) |
| 63 | |
Norman James | 9e6acf9 | 2015-09-08 07:00:04 -0500 | [diff] [blame] | 64 | bus.add_signal_receiver(self.host_watchdog_signal_handler, |
| 65 | dbus_interface = "org.openbmc.Watchdog", signal_name = "WatchdogError") |
Norman James | 362a80f | 2015-09-14 14:04:39 -0500 | [diff] [blame] | 66 | bus.add_signal_receiver(self.SystemStateHandler,signal_name = "GotoSystemState") |
Norman James | 323ed97 | 2015-12-09 09:06:37 -0600 | [diff] [blame] | 67 | self.InterfacesAdded(name,self.properties) |
Norman James | 471ab59 | 2015-08-30 22:29:40 -0500 | [diff] [blame] | 68 | |
Norman James | 9e6acf9 | 2015-09-08 07:00:04 -0500 | [diff] [blame] | 69 | |
Norman James | 362a80f | 2015-09-14 14:04:39 -0500 | [diff] [blame] | 70 | def getInterface(self,name): |
| 71 | o = self.dbus_objects[name] |
Norman James | 85f050b | 2015-12-18 14:58:20 -0600 | [diff] [blame] | 72 | obj = bus.get_object(o['bus_name'],o['object_name'],introspect=False) |
Norman James | 362a80f | 2015-09-14 14:04:39 -0500 | [diff] [blame] | 73 | return dbus.Interface(obj,o['interface_name']) |
Norman James | e276510 | 2015-08-19 22:00:55 -0500 | [diff] [blame] | 74 | |
Norman James | e276510 | 2015-08-19 22:00:55 -0500 | [diff] [blame] | 75 | |
Norman James | 3f97c5d | 2015-08-26 17:44:14 -0500 | [diff] [blame] | 76 | @dbus.service.method(DBUS_NAME, |
Norman James | e276510 | 2015-08-19 22:00:55 -0500 | [diff] [blame] | 77 | in_signature='', out_signature='') |
| 78 | def setIdentify(self): |
| 79 | print "Turn on identify" |
Norman James | 362a80f | 2015-09-14 14:04:39 -0500 | [diff] [blame] | 80 | intf = self.getInterface('identify_led') |
| 81 | intf.setOn() |
Norman James | e276510 | 2015-08-19 22:00:55 -0500 | [diff] [blame] | 82 | return None |
| 83 | |
Norman James | 3f97c5d | 2015-08-26 17:44:14 -0500 | [diff] [blame] | 84 | @dbus.service.method(DBUS_NAME, |
Norman James | e276510 | 2015-08-19 22:00:55 -0500 | [diff] [blame] | 85 | in_signature='', out_signature='') |
| 86 | def clearIdentify(self): |
Norman James | 362a80f | 2015-09-14 14:04:39 -0500 | [diff] [blame] | 87 | print "Turn on identify" |
| 88 | intf = self.getInterface('identify_led') |
| 89 | intf.setOff() |
Norman James | e276510 | 2015-08-19 22:00:55 -0500 | [diff] [blame] | 90 | return None |
| 91 | |
Norman James | 3f97c5d | 2015-08-26 17:44:14 -0500 | [diff] [blame] | 92 | @dbus.service.method(DBUS_NAME, |
Norman James | e276510 | 2015-08-19 22:00:55 -0500 | [diff] [blame] | 93 | in_signature='', out_signature='') |
Norman James | 362a80f | 2015-09-14 14:04:39 -0500 | [diff] [blame] | 94 | def powerOn(self): |
Norman James | e276510 | 2015-08-19 22:00:55 -0500 | [diff] [blame] | 95 | print "Turn on power and boot" |
Norman James | 2656f33 | 2015-10-26 06:42:41 -0500 | [diff] [blame] | 96 | self.Set(DBUS_NAME,"reboot",0) |
Norman James | e276510 | 2015-08-19 22:00:55 -0500 | [diff] [blame] | 97 | if (self.getPowerState()==0): |
Norman James | 362a80f | 2015-09-14 14:04:39 -0500 | [diff] [blame] | 98 | intf = self.getInterface('power_control') |
| 99 | intf.setPowerState(POWER_ON) |
Norman James | c07c473 | 2015-10-26 07:12:58 -0500 | [diff] [blame] | 100 | intfwatchdog = self.getInterface('watchdog') |
Adriana Kobylak | 025d13f | 2015-10-22 12:45:24 -0500 | [diff] [blame] | 101 | #Start watchdog with 30s timeout per the OpenPower Host IPMI Spec |
| 102 | #Once the host starts booting, it'll reset and refresh the timer |
| 103 | intfwatchdog.set(30000) |
| 104 | intfwatchdog.start() |
Norman James | e276510 | 2015-08-19 22:00:55 -0500 | [diff] [blame] | 105 | return None |
| 106 | |
Norman James | 3f97c5d | 2015-08-26 17:44:14 -0500 | [diff] [blame] | 107 | @dbus.service.method(DBUS_NAME, |
Norman James | e276510 | 2015-08-19 22:00:55 -0500 | [diff] [blame] | 108 | in_signature='', out_signature='') |
Norman James | 362a80f | 2015-09-14 14:04:39 -0500 | [diff] [blame] | 109 | def powerOff(self): |
Norman James | e276510 | 2015-08-19 22:00:55 -0500 | [diff] [blame] | 110 | print "Turn off power" |
Norman James | 362a80f | 2015-09-14 14:04:39 -0500 | [diff] [blame] | 111 | intf = self.getInterface('power_control') |
| 112 | intf.setPowerState(POWER_OFF) |
| 113 | return None |
| 114 | |
| 115 | @dbus.service.method(DBUS_NAME, |
| 116 | in_signature='', out_signature='') |
| 117 | def softPowerOff(self): |
| 118 | print "Soft off power" |
Norman James | 98e1f7b | 2015-11-24 22:17:56 -0600 | [diff] [blame] | 119 | intf = self.getInterface('host_services') |
| 120 | ## host services will call power off when ready |
| 121 | intf.SoftPowerOff() |
Norman James | 362a80f | 2015-09-14 14:04:39 -0500 | [diff] [blame] | 122 | return None |
| 123 | |
| 124 | @dbus.service.method(DBUS_NAME, |
| 125 | in_signature='', out_signature='') |
| 126 | def reboot(self): |
| 127 | print "Rebooting" |
Norman James | 8d2e3ef | 2015-11-17 19:34:25 -0600 | [diff] [blame] | 128 | if self.getPowerState() == POWER_OFF: |
Norman James | cfc2b44 | 2015-10-31 17:31:46 -0500 | [diff] [blame] | 129 | self.powerOn(); |
| 130 | else: |
| 131 | self.Set(DBUS_NAME,"reboot",1) |
Norman James | b4ef318 | 2015-12-03 17:54:35 -0600 | [diff] [blame] | 132 | self.powerOff() |
| 133 | return None |
| 134 | |
Norman James | b4bd9e2 | 2015-12-18 15:47:50 -0600 | [diff] [blame] | 135 | @dbus.service.method(DBUS_NAME, |
| 136 | in_signature='', out_signature='') |
Norman James | b4ef318 | 2015-12-03 17:54:35 -0600 | [diff] [blame] | 137 | def softReboot(self): |
| 138 | print "Soft Rebooting" |
| 139 | if self.getPowerState() == POWER_OFF: |
| 140 | self.powerOn(); |
| 141 | else: |
| 142 | self.Set(DBUS_NAME,"reboot",1) |
Norman James | 8d2e3ef | 2015-11-17 19:34:25 -0600 | [diff] [blame] | 143 | self.softPowerOff() |
Norman James | e276510 | 2015-08-19 22:00:55 -0500 | [diff] [blame] | 144 | return None |
| 145 | |
Norman James | 3f97c5d | 2015-08-26 17:44:14 -0500 | [diff] [blame] | 146 | @dbus.service.method(DBUS_NAME, |
Norman James | e276510 | 2015-08-19 22:00:55 -0500 | [diff] [blame] | 147 | in_signature='', out_signature='i') |
| 148 | def getPowerState(self): |
Norman James | 362a80f | 2015-09-14 14:04:39 -0500 | [diff] [blame] | 149 | intf = self.getInterface('power_control') |
| 150 | return intf.getPowerState() |
Norman James | e276510 | 2015-08-19 22:00:55 -0500 | [diff] [blame] | 151 | |
Norman James | 3f97c5d | 2015-08-26 17:44:14 -0500 | [diff] [blame] | 152 | @dbus.service.method(DBUS_NAME, |
Norman James | e276510 | 2015-08-19 22:00:55 -0500 | [diff] [blame] | 153 | in_signature='', out_signature='') |
| 154 | def setDebugMode(self): |
| 155 | return None |
| 156 | |
Norman James | 3f97c5d | 2015-08-26 17:44:14 -0500 | [diff] [blame] | 157 | @dbus.service.method(DBUS_NAME, |
Norman James | e276510 | 2015-08-19 22:00:55 -0500 | [diff] [blame] | 158 | in_signature='i', out_signature='') |
| 159 | def setPowerPolicy(self,policy): |
Norman James | 2656f33 | 2015-10-26 06:42:41 -0500 | [diff] [blame] | 160 | self.Set(DBUS_NAME,"power_policy",policy) |
Norman James | e276510 | 2015-08-19 22:00:55 -0500 | [diff] [blame] | 161 | return None |
| 162 | |
Norman James | 9e6acf9 | 2015-09-08 07:00:04 -0500 | [diff] [blame] | 163 | |
Norman James | e276510 | 2015-08-19 22:00:55 -0500 | [diff] [blame] | 164 | ## Signal handler |
Norman James | 362a80f | 2015-09-14 14:04:39 -0500 | [diff] [blame] | 165 | |
| 166 | def SystemStateHandler(self,state_name): |
Norman James | 2656f33 | 2015-10-26 06:42:41 -0500 | [diff] [blame] | 167 | self.Set(DBUS_NAME,"last_system_state",state_name) |
| 168 | if (state_name == "HOST_POWERED_OFF" and self.Get(DBUS_NAME,"reboot")==1): |
Norman James | 362a80f | 2015-09-14 14:04:39 -0500 | [diff] [blame] | 169 | self.powerOn() |
| 170 | |
| 171 | |
Norman James | e276510 | 2015-08-19 22:00:55 -0500 | [diff] [blame] | 172 | def power_button_signal_handler(self): |
Norman James | 9e6acf9 | 2015-09-08 07:00:04 -0500 | [diff] [blame] | 173 | # toggle power |
Norman James | e276510 | 2015-08-19 22:00:55 -0500 | [diff] [blame] | 174 | state = self.getPowerState() |
Norman James | 2a3d20b | 2015-08-20 07:09:33 -0500 | [diff] [blame] | 175 | if state == POWER_OFF: |
Norman James | 362a80f | 2015-09-14 14:04:39 -0500 | [diff] [blame] | 176 | self.powerOn() |
Norman James | 2a3d20b | 2015-08-20 07:09:33 -0500 | [diff] [blame] | 177 | elif state == POWER_ON: |
Norman James | 362a80f | 2015-09-14 14:04:39 -0500 | [diff] [blame] | 178 | self.powerOff(); |
Norman James | e276510 | 2015-08-19 22:00:55 -0500 | [diff] [blame] | 179 | |
Norman James | cfc2b44 | 2015-10-31 17:31:46 -0500 | [diff] [blame] | 180 | def reset_button_signal_handler(self): |
| 181 | self.reboot(); |
| 182 | |
Norman James | 9e6acf9 | 2015-09-08 07:00:04 -0500 | [diff] [blame] | 183 | def host_watchdog_signal_handler(self): |
Norman James | 362a80f | 2015-09-14 14:04:39 -0500 | [diff] [blame] | 184 | print "Watchdog Error, Hard Rebooting" |
Norman James | c07c473 | 2015-10-26 07:12:58 -0500 | [diff] [blame] | 185 | #self.Set(DBUS_NAME,"reboot",1) |
| 186 | #self.powerOff() |
Norman James | 9e6acf9 | 2015-09-08 07:00:04 -0500 | [diff] [blame] | 187 | |
Norman James | e276510 | 2015-08-19 22:00:55 -0500 | [diff] [blame] | 188 | |
| 189 | if __name__ == '__main__': |
| 190 | dbus.mainloop.glib.DBusGMainLoop(set_as_default=True) |
| 191 | |
Norman James | 5e792e3 | 2015-10-07 17:36:17 -0500 | [diff] [blame] | 192 | bus = Openbmc.getDBus() |
Norman James | 3f97c5d | 2015-08-26 17:44:14 -0500 | [diff] [blame] | 193 | name = dbus.service.BusName(DBUS_NAME, bus) |
| 194 | obj = ChassisControlObject(bus, OBJ_NAME) |
Norman James | 6f8d042 | 2015-09-14 18:48:00 -0500 | [diff] [blame] | 195 | mainloop = gobject.MainLoop() |
Norman James | 81dbd35 | 2015-08-19 22:44:53 -0500 | [diff] [blame] | 196 | |
Norman James | e276510 | 2015-08-19 22:00:55 -0500 | [diff] [blame] | 197 | print "Running ChassisControlService" |
| 198 | mainloop.run() |
| 199 | |