756de913cb
Why I did it Added support for the device Z9432F How I did it Implemented the support for the platform Z9432F Switch Vendor: DellEMC Switch SKU: Z9432F-ON ASIC Vendor: Broadcom SONiC Image: sonic-broadcom.bin
237 lines
7.4 KiB
Python
237 lines
7.4 KiB
Python
#
|
|
# psuutil.py
|
|
# Platform-specific PSU status interface for SONiC
|
|
#
|
|
import logging
|
|
import commands
|
|
|
|
Z9332F_MAX_PSUS = 2
|
|
FRU_PSUL = 11
|
|
FRU_PSUR = 12
|
|
|
|
|
|
try:
|
|
from sonic_psu.psu_base import PsuBase
|
|
except ImportError as e:
|
|
raise ImportError(str(e) + "- required module not found")
|
|
|
|
|
|
class PsuUtil(PsuBase):
|
|
"""Platform-specific PSUutil class"""
|
|
IPMI_PSU1_DATA = "ipmitool raw 0x04 0x2d 0x2f | awk '{print substr($0,9,1)}'"
|
|
IPMI_PSU2_DATA = "ipmitool raw 0x04 0x2d 0x39 | awk '{print substr($0,9,1)}'"
|
|
IPMI_PSU_VOUT = "ipmitool sdr get PSU{0}_VOut"
|
|
IPMI_PSU_POUT = "ipmitool sdr get PSU{0}_POut"
|
|
IPMI_PSU_COUT = "ipmitool sdr get PSU{0}_COut"
|
|
IPMI_PSU_FAN_SPEED = "ipmitool sdr get PSU{0}_Fan"
|
|
IPMI_FRU = "ipmitool fru"
|
|
IPMI_FRU_DATA = "ipmitool fru print {0}"
|
|
|
|
def __init__(self):
|
|
PsuBase.__init__(self)
|
|
|
|
def isDockerEnv(self):
|
|
num_docker = open('/proc/self/cgroup', 'r').read().count(":/docker")
|
|
if num_docker > 0:
|
|
return True
|
|
else:
|
|
return False
|
|
|
|
def get_psu_vout(self,index):
|
|
try:
|
|
ret_status, ipmi_cmd_ret = commands.getstatusoutput(self.IPMI_PSU_VOUT.format(index))
|
|
if ret_status == 0:
|
|
rdata = ipmi_cmd_ret.splitlines()[3].split(':')[1].split(' ')[1]
|
|
return rdata
|
|
|
|
except Exception:
|
|
logging.error('Failed to execute : %s'%self.IPMI_PSU_VOUT.format(index))
|
|
|
|
def get_psu_cout(self,index):
|
|
try:
|
|
ret_status, ipmi_cmd_ret = commands.getstatusoutput(self.IPMI_PSU_COUT.format(index))
|
|
if ret_status == 0:
|
|
rdata = ipmi_cmd_ret.splitlines()[3].split(':')[1].split(' ')[1]
|
|
return rdata
|
|
|
|
except Exception:
|
|
logging.error('Failed to execute : %s'%self.IPMI_PSU_COUT.format(index))
|
|
|
|
def get_psu_pout(self,index):
|
|
try:
|
|
ret_status, ipmi_cmd_ret = commands.getstatusoutput(self.IPMI_PSU_POUT.format(index))
|
|
if ret_status == 0:
|
|
rdata = ipmi_cmd_ret.splitlines()[3].split(':')[1].split(' ')[1]
|
|
return rdata
|
|
|
|
except Exception:
|
|
logging.error('Failed to execute : %s'%self.IPMI_PSU_POUT.format(index))
|
|
|
|
def get_psu_fan_speed(self,index):
|
|
try:
|
|
ret_status, ipmi_cmd_ret = commands.getstatusoutput(self.IPMI_PSU_FAN_SPEED.format(index))
|
|
if ret_status == 0:
|
|
rdata = ipmi_cmd_ret.splitlines()[3].split(':')[1].split(' ')[1]
|
|
return rdata
|
|
|
|
except Exception:
|
|
logging.error('Failed to execute : %s'%self.IPMI_PSU_FAN_SPEED.format(index))
|
|
|
|
|
|
#Fetch FRU Data for given fruid
|
|
def get_psu_airflow(self, index):
|
|
if index == 1:
|
|
fru_id = 'FRU_PSUL'
|
|
else:
|
|
fru_id = 'FRU_PSUR'
|
|
|
|
ret_status, ipmi_cmd_ret = commands.getstatusoutput(self.IPMI_FRU)
|
|
if ret_status:
|
|
logging.error('Failed to execute ipmitool: '+ self.IPMI_FRU)
|
|
|
|
found_fru = False
|
|
for line in ipmi_cmd_ret.splitlines():
|
|
if line.startswith('FRU Device Description') and fru_id in line.split(':')[1] :
|
|
found_fru = True
|
|
if found_fru and line.startswith(' Board Product '):
|
|
return ' B2F' if 'PS/IO' in line else ' F2B'
|
|
return ''
|
|
|
|
# Read FRU info
|
|
def get_fru_info(self,fru_id,reg_name):
|
|
output = None
|
|
Found = False
|
|
try:
|
|
status, ipmi_fru_list = commands.getstatusoutput(self.IPMI_FRU_DATA.format(fru_id))
|
|
if status == 0:
|
|
for item in ipmi_fru_list.split("\n"):
|
|
if reg_name == item.split(':')[0].strip(' '):
|
|
output = item.strip()
|
|
output = output.split(':')[1]
|
|
Found = True
|
|
break;
|
|
|
|
if not Found:
|
|
logging.error('\nFailed to fetch: ' + reg_name + ' sensor ')
|
|
|
|
return output
|
|
except Exception:
|
|
logging.error('Failed to execute:' + ipmi_fru_list)
|
|
|
|
def get_num_psus(self):
|
|
"""
|
|
Retrieves the number of PSUs available on the device
|
|
:return: An integer, the number of PSUs available on the device
|
|
"""
|
|
Z9332F_MAX_PSUS = 2
|
|
return Z9332F_MAX_PSUS
|
|
|
|
def get_psu_status(self, index):
|
|
"""
|
|
Retrieves the oprational status of power supply unit (PSU) defined
|
|
by index <index>
|
|
:param index: An integer, index of the PSU of which to query status
|
|
:return: Boolean, True if PSU is operating properly, False if PSU is\
|
|
faulty
|
|
"""
|
|
psu_status = '0'
|
|
|
|
if index == 1:
|
|
cmd_status, psu_status = commands.getstatusoutput(self.IPMI_PSU1_DATA)
|
|
elif index == 2:
|
|
cmd_status, psu_status = commands.getstatusoutput(self.IPMI_PSU2_DATA)
|
|
else:
|
|
logging.error("Invalid PSU number:" + index)
|
|
|
|
if cmd_status:
|
|
logging.error('Failed to execute ipmitool')
|
|
|
|
return (not int(psu_status, 16) > 1)
|
|
|
|
def get_psu_presence(self, index):
|
|
"""
|
|
Retrieves the presence status of power supply unit (PSU) defined
|
|
by index <index>
|
|
:param index: An integer, index of the PSU of which to query status
|
|
:return: Boolean, True if PSU is plugged, False if not
|
|
"""
|
|
psu_status = '0'
|
|
|
|
if index == 1:
|
|
cmd_status, psu_status = commands.getstatusoutput(self.IPMI_PSU1_DATA)
|
|
elif index == 2:
|
|
cmd_status, psu_status = commands.getstatusoutput(self.IPMI_PSU2_DATA)
|
|
else:
|
|
logging.error("Invalid PSU number:" + index)
|
|
|
|
if cmd_status:
|
|
logging.error('Failed to execute ipmitool')
|
|
|
|
return (int(psu_status, 16) & 1)
|
|
|
|
def get_output_voltage(self, index):
|
|
if index is None:
|
|
return 0.0
|
|
psuvoltage=self.get_psu_vout(index)
|
|
return float(psuvoltage.strip())
|
|
|
|
def get_output_current(self, index):
|
|
if index is None:
|
|
return 0.0
|
|
psucurrent=self.get_psu_cout(index)
|
|
return float(psucurrent.strip())
|
|
|
|
def get_output_power(self, index):
|
|
if index is None:
|
|
return 0.0
|
|
psupower=self.get_psu_pout(index)
|
|
return float(psupower.strip())
|
|
|
|
def get_fan_rpm(self, index, fan_idx):
|
|
if index is None:
|
|
return 0
|
|
fanrpm=self.get_psu_fan_speed(index)
|
|
return int(fanrpm.strip())
|
|
|
|
def get_serial(self, index):
|
|
if index is None:
|
|
return None
|
|
if index == 1:
|
|
fru_id = FRU_PSUL
|
|
else:
|
|
fru_id = FRU_PSUR
|
|
|
|
return self.get_fru_info(fru_id,'Board Serial')
|
|
|
|
def get_model(self, index):
|
|
if index is None:
|
|
return None
|
|
if index == 1:
|
|
fru_id = FRU_PSUL
|
|
else:
|
|
fru_id = FRU_PSUR
|
|
|
|
return self.get_fru_info(fru_id,'Board Part Number')
|
|
|
|
def get_mfr_id(self, index):
|
|
if index is None:
|
|
return None
|
|
if index == 1:
|
|
fru_id = FRU_PSUL
|
|
else:
|
|
fru_id = FRU_PSUR
|
|
|
|
return self.get_fru_info(fru_id,'Board Mfg')
|
|
|
|
def get_direction(self, index):
|
|
if index is None:
|
|
return None
|
|
|
|
direction=self.get_psu_airflow(index).strip()
|
|
if direction == 'B2F':
|
|
return "INTAKE"
|
|
elif direction == 'F2B':
|
|
return "EXHAUST"
|
|
else:
|
|
return None
|