[202205][DellEMC] Fixing 'show interface status' break in DellEMC platforms porting changes (#13236)
This commit is contained in:
parent
3e36d72931
commit
cbd21d8ef9
@ -106,9 +106,6 @@ class Chassis(ChassisBase):
|
|||||||
for port_num in range(self.PORT_START, (self.PORT_END + 1)):
|
for port_num in range(self.PORT_START, (self.PORT_END + 1)):
|
||||||
# sfp get uses zero-indexing, but port numbers start from 1
|
# sfp get uses zero-indexing, but port numbers start from 1
|
||||||
presence = self.get_sfp(port_num).get_presence()
|
presence = self.get_sfp(port_num).get_presence()
|
||||||
if presence:
|
|
||||||
self._global_port_pres_dict[port_num] = '1'
|
|
||||||
else:
|
|
||||||
self._global_port_pres_dict[port_num] = '0'
|
self._global_port_pres_dict[port_num] = '0'
|
||||||
|
|
||||||
self._watchdog = Watchdog()
|
self._watchdog = Watchdog()
|
||||||
|
@ -76,7 +76,7 @@ class Component(ComponentBase):
|
|||||||
self.index = component_index
|
self.index = component_index
|
||||||
self.name = self.CHASSIS_COMPONENTS[self.index][0]
|
self.name = self.CHASSIS_COMPONENTS[self.index][0]
|
||||||
self.description = self.CHASSIS_COMPONENTS[self.index][1]
|
self.description = self.CHASSIS_COMPONENTS[self.index][1]
|
||||||
self.version = self.CHASSIS_COMPONENTS[self.index][2]()
|
self.version = None
|
||||||
|
|
||||||
def get_name(self):
|
def get_name(self):
|
||||||
"""
|
"""
|
||||||
@ -100,6 +100,8 @@ class Component(ComponentBase):
|
|||||||
Returns:
|
Returns:
|
||||||
A string containing the firmware version of the component
|
A string containing the firmware version of the component
|
||||||
"""
|
"""
|
||||||
|
if self.version == None:
|
||||||
|
self.version = self.CHASSIS_COMPONENTS[self.index][2]()
|
||||||
return self.version
|
return self.version
|
||||||
|
|
||||||
def install_firmware(self, image_path):
|
def install_firmware(self, image_path):
|
||||||
|
@ -110,9 +110,6 @@ class Chassis(ChassisBase):
|
|||||||
for port_num in range(self.PORT_START, (self.PORT_END + 1)):
|
for port_num in range(self.PORT_START, (self.PORT_END + 1)):
|
||||||
# sfp get uses zero-indexing, but port numbers start from 1
|
# sfp get uses zero-indexing, but port numbers start from 1
|
||||||
presence = self.get_sfp(port_num-1).get_presence()
|
presence = self.get_sfp(port_num-1).get_presence()
|
||||||
if presence:
|
|
||||||
self._global_port_pres_dict[port_num] = '1'
|
|
||||||
else:
|
|
||||||
self._global_port_pres_dict[port_num] = '0'
|
self._global_port_pres_dict[port_num] = '0'
|
||||||
|
|
||||||
# check for this event change for sfp / do we need to handle timeout/sleep
|
# check for this event change for sfp / do we need to handle timeout/sleep
|
||||||
|
@ -76,7 +76,7 @@ class Component(ComponentBase):
|
|||||||
self.index = component_index
|
self.index = component_index
|
||||||
self.name = self.CHASSIS_COMPONENTS[self.index][0]
|
self.name = self.CHASSIS_COMPONENTS[self.index][0]
|
||||||
self.description = self.CHASSIS_COMPONENTS[self.index][1]
|
self.description = self.CHASSIS_COMPONENTS[self.index][1]
|
||||||
self.version = self.CHASSIS_COMPONENTS[self.index][2]()
|
self.version = None
|
||||||
|
|
||||||
def get_name(self):
|
def get_name(self):
|
||||||
"""
|
"""
|
||||||
@ -100,6 +100,8 @@ class Component(ComponentBase):
|
|||||||
Returns:
|
Returns:
|
||||||
A string containing the firmware version of the component
|
A string containing the firmware version of the component
|
||||||
"""
|
"""
|
||||||
|
if self.version == None:
|
||||||
|
self.version = self.CHASSIS_COMPONENTS[self.index][2]()
|
||||||
return self.version
|
return self.version
|
||||||
|
|
||||||
def install_firmware(self, image_path):
|
def install_firmware(self, image_path):
|
||||||
|
@ -92,8 +92,7 @@ class Chassis(ChassisBase):
|
|||||||
|
|
||||||
for port_num in range(self.PORT_START, self.PORTS_IN_BLOCK):
|
for port_num in range(self.PORT_START, self.PORTS_IN_BLOCK):
|
||||||
# sfp get uses zero-indexing, but port numbers start from 1
|
# sfp get uses zero-indexing, but port numbers start from 1
|
||||||
presence = self.get_sfp(port_num).get_presence()
|
self._global_port_pres_dict[port_num] = '0'
|
||||||
self._global_port_pres_dict[port_num] = '1' if presence else '0'
|
|
||||||
|
|
||||||
def __del__(self):
|
def __del__(self):
|
||||||
if self.oir_fd != -1:
|
if self.oir_fd != -1:
|
||||||
|
@ -86,7 +86,7 @@ class Component(ComponentBase):
|
|||||||
self.index = component_index
|
self.index = component_index
|
||||||
self.name = self.CHASSIS_COMPONENTS[self.index][0]
|
self.name = self.CHASSIS_COMPONENTS[self.index][0]
|
||||||
self.description = self.CHASSIS_COMPONENTS[self.index][1]
|
self.description = self.CHASSIS_COMPONENTS[self.index][1]
|
||||||
self.version = self.CHASSIS_COMPONENTS[self.index][2]()
|
self.version = None
|
||||||
|
|
||||||
def get_name(self):
|
def get_name(self):
|
||||||
"""
|
"""
|
||||||
@ -110,6 +110,8 @@ class Component(ComponentBase):
|
|||||||
Returns:
|
Returns:
|
||||||
A string containing the firmware version of the component
|
A string containing the firmware version of the component
|
||||||
"""
|
"""
|
||||||
|
if self.version == None:
|
||||||
|
self.version = self.CHASSIS_COMPONENTS[self.index][2]()
|
||||||
return self.version
|
return self.version
|
||||||
|
|
||||||
def install_firmware(self, image_path):
|
def install_firmware(self, image_path):
|
||||||
|
@ -151,8 +151,7 @@ class Chassis(ChassisBase):
|
|||||||
self._component_list = [Component(i) for i in range(MAX_S5248F_COMPONENT)]
|
self._component_list = [Component(i) for i in range(MAX_S5248F_COMPONENT)]
|
||||||
for port_num in range(self.PORT_START, self.PORTS_IN_BLOCK):
|
for port_num in range(self.PORT_START, self.PORTS_IN_BLOCK):
|
||||||
# sfp get uses zero-indexing, but port numbers start from 1
|
# sfp get uses zero-indexing, but port numbers start from 1
|
||||||
presence = self.get_sfp(port_num-1).get_presence()
|
self._global_port_pres_dict[port_num] = '0'
|
||||||
self._global_port_pres_dict[port_num] = '1' if presence else '0'
|
|
||||||
|
|
||||||
#self.LOCATOR_LED_ON = self.STATUS_LED_COLOR_BLUE_BLINK
|
#self.LOCATOR_LED_ON = self.STATUS_LED_COLOR_BLUE_BLINK
|
||||||
#self.LOCATOR_LED_OFF = self.STATUS_LED_COLOR_OFF
|
#self.LOCATOR_LED_OFF = self.STATUS_LED_COLOR_OFF
|
||||||
|
@ -86,7 +86,7 @@ class Component(ComponentBase):
|
|||||||
self.index = component_index
|
self.index = component_index
|
||||||
self.name = self.CHASSIS_COMPONENTS[self.index][0]
|
self.name = self.CHASSIS_COMPONENTS[self.index][0]
|
||||||
self.description = self.CHASSIS_COMPONENTS[self.index][1]
|
self.description = self.CHASSIS_COMPONENTS[self.index][1]
|
||||||
self.version = self.CHASSIS_COMPONENTS[self.index][2]()
|
self.version = None
|
||||||
|
|
||||||
def get_name(self):
|
def get_name(self):
|
||||||
"""
|
"""
|
||||||
@ -110,6 +110,8 @@ class Component(ComponentBase):
|
|||||||
Returns:
|
Returns:
|
||||||
A string containing the firmware version of the component
|
A string containing the firmware version of the component
|
||||||
"""
|
"""
|
||||||
|
if self.version == None:
|
||||||
|
self.version = self.CHASSIS_COMPONENTS[self.index][2]()
|
||||||
return self.version
|
return self.version
|
||||||
|
|
||||||
def install_firmware(self, image_path):
|
def install_firmware(self, image_path):
|
||||||
|
@ -56,6 +56,9 @@ class Chassis(ChassisBase):
|
|||||||
_is_fan_control_enabled = False
|
_is_fan_control_enabled = False
|
||||||
_fan_control_initialised = False
|
_fan_control_initialised = False
|
||||||
|
|
||||||
|
_global_port_pres_dict = {}
|
||||||
|
|
||||||
|
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
ChassisBase.__init__(self)
|
ChassisBase.__init__(self)
|
||||||
self.status_led_reg = "system_led"
|
self.status_led_reg = "system_led"
|
||||||
@ -107,6 +110,9 @@ class Chassis(ChassisBase):
|
|||||||
component = Component(i)
|
component = Component(i)
|
||||||
self._component_list.append(component)
|
self._component_list.append(component)
|
||||||
|
|
||||||
|
for port_num in range(self.PORT_START, (self.PORT_END + 1)):
|
||||||
|
self._global_port_pres_dict[port_num] = '0'
|
||||||
|
|
||||||
def _get_cpld_register(self, reg_name):
|
def _get_cpld_register(self, reg_name):
|
||||||
rv = 'ERR'
|
rv = 'ERR'
|
||||||
mb_reg_file = self.CPLD_DIR+'/'+reg_name
|
mb_reg_file = self.CPLD_DIR+'/'+reg_name
|
||||||
|
@ -65,6 +65,9 @@ class Chassis(ChassisBase):
|
|||||||
'amber': 0x02, 'blinking amber': 0x08
|
'amber': 0x02, 'blinking amber': 0x08
|
||||||
}
|
}
|
||||||
|
|
||||||
|
_global_port_pres_dict = {}
|
||||||
|
|
||||||
|
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
|
|
||||||
ChassisBase.__init__(self)
|
ChassisBase.__init__(self)
|
||||||
@ -103,6 +106,13 @@ class Chassis(ChassisBase):
|
|||||||
component = Component(i)
|
component = Component(i)
|
||||||
self._component_list.append(component)
|
self._component_list.append(component)
|
||||||
|
|
||||||
|
for i in self._sfp_list:
|
||||||
|
presence = i.get_presence()
|
||||||
|
if presence:
|
||||||
|
self._global_port_pres_dict[i.index] = '1'
|
||||||
|
else:
|
||||||
|
self._global_port_pres_dict[i.index] = '0'
|
||||||
|
|
||||||
bios_ver = self.get_component(0).get_firmware_version()
|
bios_ver = self.get_component(0).get_firmware_version()
|
||||||
bios_minor_ver = bios_ver.split("-")[-1]
|
bios_minor_ver = bios_ver.split("-")[-1]
|
||||||
if bios_minor_ver.isdigit() and (int(bios_minor_ver) >= 9):
|
if bios_minor_ver.isdigit() and (int(bios_minor_ver) >= 9):
|
||||||
|
@ -11,6 +11,7 @@
|
|||||||
|
|
||||||
try:
|
try:
|
||||||
from sonic_eeprom import eeprom_tlvinfo
|
from sonic_eeprom import eeprom_tlvinfo
|
||||||
|
import os
|
||||||
except ImportError as e:
|
except ImportError as e:
|
||||||
raise ImportError(str(e) + "- required module not found")
|
raise ImportError(str(e) + "- required module not found")
|
||||||
|
|
||||||
@ -27,6 +28,10 @@ class Eeprom(eeprom_tlvinfo.TlvInfoDecoder):
|
|||||||
super(Eeprom, self).__init__(self.eeprom_path, 0, '', True)
|
super(Eeprom, self).__init__(self.eeprom_path, 0, '', True)
|
||||||
self.eeprom_tlv_dict = dict()
|
self.eeprom_tlv_dict = dict()
|
||||||
|
|
||||||
|
if os.geteuid() != 0:
|
||||||
|
self.eeprom_data = "N/A"
|
||||||
|
return
|
||||||
|
|
||||||
try:
|
try:
|
||||||
if self.is_module:
|
if self.is_module:
|
||||||
self.write_eeprom(b"\x00\x00")
|
self.write_eeprom(b"\x00\x00")
|
||||||
|
@ -84,9 +84,6 @@ class Chassis(ChassisBase):
|
|||||||
|
|
||||||
for port_num in range(self.PORT_START, (self.PORT_END + 1)):
|
for port_num in range(self.PORT_START, (self.PORT_END + 1)):
|
||||||
presence = self.get_sfp(port_num).get_presence()
|
presence = self.get_sfp(port_num).get_presence()
|
||||||
if presence:
|
|
||||||
self._global_port_pres_dict[port_num] = '1'
|
|
||||||
else:
|
|
||||||
self._global_port_pres_dict[port_num] = '0'
|
self._global_port_pres_dict[port_num] = '0'
|
||||||
|
|
||||||
def __del__(self):
|
def __del__(self):
|
||||||
|
@ -147,8 +147,7 @@ class Chassis(ChassisBase):
|
|||||||
self._component_list = [Component(i) for i in range(MAX_Z9332F_COMPONENT)]
|
self._component_list = [Component(i) for i in range(MAX_Z9332F_COMPONENT)]
|
||||||
for port_num in range(self.PORT_START, self.PORTS_IN_BLOCK):
|
for port_num in range(self.PORT_START, self.PORTS_IN_BLOCK):
|
||||||
# sfp get uses zero-indexing, but port numbers start from 1
|
# sfp get uses zero-indexing, but port numbers start from 1
|
||||||
presence = self.get_sfp(port_num).get_presence()
|
self._global_port_pres_dict[port_num] = '0'
|
||||||
self._global_port_pres_dict[port_num] = '1' if presence else '0'
|
|
||||||
|
|
||||||
self._watchdog = Watchdog()
|
self._watchdog = Watchdog()
|
||||||
def __del__(self):
|
def __del__(self):
|
||||||
|
@ -153,7 +153,7 @@ class Component(ComponentBase):
|
|||||||
self.index = component_index
|
self.index = component_index
|
||||||
self.name = self.CHASSIS_COMPONENTS[self.index][0]
|
self.name = self.CHASSIS_COMPONENTS[self.index][0]
|
||||||
self.description = self.CHASSIS_COMPONENTS[self.index][1]
|
self.description = self.CHASSIS_COMPONENTS[self.index][1]
|
||||||
self.version = self.CHASSIS_COMPONENTS[self.index][2]()
|
self.version = None
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def _get_available_firmware_version(image_path):
|
def _get_available_firmware_version(image_path):
|
||||||
@ -242,6 +242,8 @@ class Component(ComponentBase):
|
|||||||
Returns:
|
Returns:
|
||||||
A string containing the firmware version of the component
|
A string containing the firmware version of the component
|
||||||
"""
|
"""
|
||||||
|
if self.version == None:
|
||||||
|
self.version = self.CHASSIS_COMPONENTS[self.index][2]()
|
||||||
return self.version
|
return self.version
|
||||||
|
|
||||||
def get_presence(self):
|
def get_presence(self):
|
||||||
|
Reference in New Issue
Block a user