blob: fba7a91b806cba3acdb72daffe922cf6dbec7cdd [file] [log] [blame]
Brad Bishop179b39b2016-05-12 16:45:57 -04001# Contributors Listed Below - COPYRIGHT 2016
2# [+] International Business Machines Corp.
3#
4#
5# Licensed under the Apache License, Version 2.0 (the "License");
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
14# implied. See the License for the specific language governing
15# permissions and limitations under the License.
16
17import os
18import subprocess
19import dbus
20import dbus.service
21from obmc.dbuslib.bindings import DbusProperties
22
23
24## Abstract class, must subclass
25class SensorValue(DbusProperties):
26 IFACE_NAME = 'org.openbmc.SensorValue'
27
28 def __init__(self, bus, name):
29 self.Set(SensorValue.IFACE_NAME, 'units', "")
30 self.Set(SensorValue.IFACE_NAME, 'error', False)
31
32 @dbus.service.method(
33 IFACE_NAME, in_signature='v', out_signature='')
34 def setValue(self, value):
35 self.Set(SensorValue.IFACE_NAME, 'value', value)
36
37 @dbus.service.method(
38 IFACE_NAME, in_signature='', out_signature='v')
39 def getValue(self):
40 return self.Get(SensorValue.IFACE_NAME, 'value')
41
42
Brad Bishop179b39b2016-05-12 16:45:57 -040043class VirtualSensor(SensorValue):
44 def __init__(self, bus, name):
45 DbusProperties.__init__(self)
46 SensorValue.__init__(self, bus, name)
47 dbus.service.Object.__init__(self, bus, name)
48
49
Brad Bishop179b39b2016-05-12 16:45:57 -040050CONTROL_IFACE = 'org.openbmc.Control'
51
52
Brad Bishop179b39b2016-05-12 16:45:57 -040053class BootProgressSensor(VirtualSensor):
54 def __init__(self, bus, name):
55 VirtualSensor.__init__(self, bus, name)
56 self.setValue("Off")
57 bus.add_signal_receiver(
58 self.SystemStateHandler, signal_name="GotoSystemState")
59
60 def SystemStateHandler(self, state):
61 if (state == "HOST_POWERED_OFF"):
62 self.setValue("Off")
63
64 ##override setValue method
65 @dbus.service.method(
66 SensorValue.IFACE_NAME,
67 in_signature='v', out_signature='')
68 def setValue(self, value):
69 SensorValue.setValue(self, value)
70 if (value == "FW Progress, Starting OS"):
71 self.GotoSystemState("HOST_BOOTED")
Yi Li57e3bf92016-09-08 17:58:00 +080072 self.BootProgress(value)
Brad Bishop179b39b2016-05-12 16:45:57 -040073
74 @dbus.service.signal(CONTROL_IFACE, signature='s')
75 def GotoSystemState(self, state):
76 pass
77
Yi Li57e3bf92016-09-08 17:58:00 +080078 @dbus.service.signal(CONTROL_IFACE, signature='s')
79 def BootProgress(self, state):
80 pass
81
Brad Bishop179b39b2016-05-12 16:45:57 -040082
Brad Bishop179b39b2016-05-12 16:45:57 -040083class BootCountSensor(VirtualSensor):
84 def __init__(self, bus, name):
85 VirtualSensor.__init__(self, bus, name)
Andrew Geissler9070d1b2017-05-22 14:46:34 -050086 # Default boot count is 2. Add 1 onto this to allow for an
87 # SBE side switch boot attempt
88 self.setValue(3)
89
90 ## override setValue method for debug purposes
91 @dbus.service.method(
92 SensorValue.IFACE_NAME, in_signature='v', out_signature='')
93 def setValue(self, value):
Brad Bishopd641c082018-01-31 15:55:58 -050094 print "Setting boot count to " + str(value)
Brad Bishop10ad8c32017-07-01 00:23:06 -040095 SensorValue.setValue(self, value)
Brad Bishop179b39b2016-05-12 16:45:57 -040096
97
98class OperatingSystemStatusSensor(VirtualSensor):
99 def __init__(self, bus, name):
100 VirtualSensor.__init__(self, bus, name)
101 self.setValue("Off")
102 bus.add_signal_receiver(
103 self.SystemStateHandler, signal_name="GotoSystemState")
104
105 def SystemStateHandler(self, state):
106 if (state == "HOST_POWERED_OFF"):
107 self.setValue("Off")
Dhruvaraj Sdc0dc122017-03-21 02:13:29 -0500108
Brad Bishop10ad8c32017-07-01 00:23:06 -0400109
Dhruvaraj Sdc0dc122017-03-21 02:13:29 -0500110class PowerSupplyRedundancySensor(VirtualSensor):
111 def __init__(self, bus, name):
112 VirtualSensor.__init__(self, bus, name)
Dhruvaraj Subhashchandran5c5479b2017-12-05 23:38:41 -0600113 self.setValue("Enabled")
Brad Bishop10ad8c32017-07-01 00:23:06 -0400114
Jayanth Othayoth857e4b82017-03-27 08:25:45 -0500115class PowerSupplyDeratingSensor(VirtualSensor):
116 def __init__(self, bus, name):
117 VirtualSensor.__init__(self, bus, name)
Brad Bishop10ad8c32017-07-01 00:23:06 -0400118 super(PowerSupplyDeratingSensor, self).setValue(10)
Jayanth Othayoth857e4b82017-03-27 08:25:45 -0500119
120 ## override setValue method
121 @dbus.service.method(
122 SensorValue.IFACE_NAME, in_signature='v', out_signature='')
123 def setValue(self, value):
Brad Bishopd641c082018-01-31 15:55:58 -0500124 print "Setting Power Supply Derating is not allowed"
Jayanth Othayoth857e4b82017-03-27 08:25:45 -0500125
Brad Bishop10ad8c32017-07-01 00:23:06 -0400126
Jayanth Othayoth7a57f952017-03-28 07:15:29 -0500127class TurboAllowedSensor(VirtualSensor):
128 def __init__(self, bus, name):
129 VirtualSensor.__init__(self, bus, name)
130 self.setValue(0)
131
132 ## override setValue method
133 @dbus.service.method(
134 SensorValue.IFACE_NAME, in_signature='b', out_signature='')
135 def setValue(self, value):
Brad Bishop10ad8c32017-07-01 00:23:06 -0400136 super(TurboAllowedSensor, self).setValue(value)