blob: 2fac2201281d60f67d76cd113d7068f02b04df19 [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
Brad Bishopaea38c62018-01-30 13:00:26 -050024# Abstract class, must subclass
Brad Bishop179b39b2016-05-12 16:45:57 -040025class 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
Dhruvaraj Sdc0dc122017-03-21 02:13:29 -050053class PowerSupplyRedundancySensor(VirtualSensor):
54 def __init__(self, bus, name):
55 VirtualSensor.__init__(self, bus, name)
Gunnar Millsdab1c6d2018-01-26 15:28:26 -060056 self.bus = bus
57 self.bus_name = 'xyz.openbmc_project.Settings'
58 self.obj_path = '/xyz/openbmc_project/control/power_supply_redundancy'
59 self.iface = 'xyz.openbmc_project.Control.PowerSupplyRedundancy'
60 self.prop_iface = 'org.freedesktop.DBus.Properties'
61 self.property_name = 'PowerSupplyRedundancyEnabled'
62 super(PowerSupplyRedundancySensor, self).setValue(self.getValue())
63
64 # Override setValue method
65 @dbus.service.method(
66 SensorValue.IFACE_NAME, in_signature='v', out_signature='')
67 def setValue(self, value):
68 if (value == "Enabled"):
69 intf = self.getPowerSupplyInterface()
70 intf.Set(self.iface, self.property_name, True)
71 elif (value == "Disabled"):
72 intf = self.getPowerSupplyInterface()
73 intf.Set(self.iface, self.property_name, False)
74 else:
CamVan Nguyen9172f3e2018-02-27 15:18:58 -060075 print("Invalid Power Supply Redundancy value")
Gunnar Millsdab1c6d2018-01-26 15:28:26 -060076 return
77 super(PowerSupplyRedundancySensor, self).setValue(value)
78
79 # Override getValue method
80 @dbus.service.method(
81 SensorValue.IFACE_NAME, in_signature='', out_signature='v')
82 def getValue(self):
83 intf = self.getPowerSupplyInterface()
84 value = intf.Get(self.iface, self.property_name)
85 if (value == 1):
86 return "Enabled"
87 elif (value == 0):
88 return "Disabled"
89 else:
CamVan Nguyen9172f3e2018-02-27 15:18:58 -060090 print("Unable to determine Power Supply Redundancy value")
Gunnar Millsdab1c6d2018-01-26 15:28:26 -060091 return ""
92
93 def getPowerSupplyInterface(self):
94 obj = self.bus.get_object(self.bus_name, self.obj_path,
95 introspect=True)
96 return dbus.Interface(obj, self.prop_iface)
97
Brad Bishop10ad8c32017-07-01 00:23:06 -040098
Jayanth Othayoth857e4b82017-03-27 08:25:45 -050099class PowerSupplyDeratingSensor(VirtualSensor):
100 def __init__(self, bus, name):
101 VirtualSensor.__init__(self, bus, name)
Deepak Kodihallid67740e2018-02-23 08:05:19 -0600102 super(PowerSupplyDeratingSensor, self).setValue(90)
Jayanth Othayoth857e4b82017-03-27 08:25:45 -0500103
Brad Bishopaea38c62018-01-30 13:00:26 -0500104 # override setValue method
Jayanth Othayoth857e4b82017-03-27 08:25:45 -0500105 @dbus.service.method(
106 SensorValue.IFACE_NAME, in_signature='v', out_signature='')
107 def setValue(self, value):
CamVan Nguyen9172f3e2018-02-27 15:18:58 -0600108 print("Setting Power Supply Derating is not allowed")
Jayanth Othayoth857e4b82017-03-27 08:25:45 -0500109
Brad Bishop10ad8c32017-07-01 00:23:06 -0400110
Jayanth Othayoth7a57f952017-03-28 07:15:29 -0500111class TurboAllowedSensor(VirtualSensor):
112 def __init__(self, bus, name):
113 VirtualSensor.__init__(self, bus, name)
114 self.setValue(0)
115
Brad Bishopaea38c62018-01-30 13:00:26 -0500116 # override setValue method
Jayanth Othayoth7a57f952017-03-28 07:15:29 -0500117 @dbus.service.method(
118 SensorValue.IFACE_NAME, in_signature='b', out_signature='')
119 def setValue(self, value):
Brad Bishop10ad8c32017-07-01 00:23:06 -0400120 super(TurboAllowedSensor, self).setValue(value)