[device/celestica]: update psuutil follow new platform api (#3537)

Fixes #3518

Update psuutil API to detect PSU GPIO base from label
This commit is contained in:
Wirut Getbamrung 2019-10-07 21:17:46 +07:00 committed by Ying Xie
parent 619c4a4851
commit 4ab5c2f6e5

View File

@ -12,49 +12,51 @@ except ImportError as e:
raise ImportError(str(e) + "- required module not found") raise ImportError(str(e) + "- required module not found")
GPIO_DIR = "/sys/class/gpio"
GPIO_LABEL = "pca9505"
DX010_MAX_PSUS = 2
class PsuUtil(PsuBase): class PsuUtil(PsuBase):
"""Platform-specific PSUutil class""" """Platform-specific PSUutil class"""
def __init__(self): def __init__(self):
PsuBase.__init__(self) PsuBase.__init__(self)
# DX010 PSU pin mapping # DX010 PSU pin mapping
self.psu = [ self.dx010_psu_gpio = [
{'base': self.get_gpio_base()}, {'base': self.__get_gpio_base()},
{'abs':27, 'power':22}, {'prs': 27, 'status': 22},
{'abs':28, 'power':25} {'prs': 28, 'status': 25}
] ]
def get_gpio_base(self): def __read_txt_file(self, file_path):
sys_gpio_dir = "/sys/class/gpio"
for r in os.listdir(sys_gpio_dir):
if "gpiochip" in r:
return int(r[8:],10)
return 216 #Reserve
# Get a psu status and presence
def read_psu_statuses(self, pinnum):
sys_gpio_dir = "/sys/class/gpio"
gpio_base = self.psu[0]['base']
gpio_dir = sys_gpio_dir + '/gpio' + str(gpio_base+pinnum)
gpio_file = gpio_dir + "/value"
try: try:
with open(gpio_file, 'r') as fd: with open(file_path, 'r') as fd:
retval = fd.read() data = fd.read()
return data.strip()
except IOError: except IOError:
raise IOError("Unable to open " + gpio_file + "file !") pass
return ""
retval = retval.rstrip('\r\n') def __get_gpio_base(self):
return retval for r in os.listdir(GPIO_DIR):
label_path = os.path.join(GPIO_DIR, r, "label")
if "gpiochip" in r and GPIO_LABEL in self.__read_txt_file(label_path):
return int(r[8:], 10)
return 216 # Reserve
def __get_gpio_value(self, pinnum):
gpio_base = self.dx010_psu_gpio[0]['base']
gpio_dir = GPIO_DIR + '/gpio' + str(gpio_base+pinnum)
gpio_file = gpio_dir + "/value"
retval = self.__read_txt_file(gpio_file)
return retval.rstrip('\r\n')
def get_num_psus(self): def get_num_psus(self):
""" """
Retrieves the number of PSUs available on the device Retrieves the number of PSUs available on the device
:return: An integer, the number of PSUs available on the device :return: An integer, the number of PSUs available on the device
""" """
DX010_MAX_PSUS = 2
return DX010_MAX_PSUS return DX010_MAX_PSUS
def get_psu_status(self, index): def get_psu_status(self, index):
@ -65,14 +67,9 @@ class PsuUtil(PsuBase):
:return: Boolean, True if PSU is operating properly, False if PSU is\ :return: Boolean, True if PSU is operating properly, False if PSU is\
faulty faulty
""" """
status = 0 raw = self.__get_gpio_value(
psu_status = self.read_psu_statuses(self.psu[index]['power']) self.dx010_psu_gpio[index]['status'])
psu_status = int(psu_status, 10) return int(raw, 10) == 1
# Check for PSU status
if (psu_status == 1):
status = 1
return status
def get_psu_presence(self, index): def get_psu_presence(self, index):
""" """
@ -81,11 +78,5 @@ class PsuUtil(PsuBase):
:param index: An integer, index of the PSU of which to query status :param index: An integer, index of the PSU of which to query status
:return: Boolean, True if PSU is plugged, False if not :return: Boolean, True if PSU is plugged, False if not
""" """
status = 0 raw = self.__get_gpio_value(self.dx010_psu_gpio[index]['prs'])
psu_absence = self.read_psu_statuses(self.psu[index]['abs']) return int(raw, 10) == 0
psu_absence = (int(psu_absence, 10))
# Check for PSU presence
if (psu_absence == 0):
status = 1
return status