4037867b7d
* [BFN] Updated platform APIs impl
Signed-off-by: Andriy Kokhan <andriyx.kokhan@intel.com>
* Extended BFN platform SFP APIs implementation
* Update sfp.py
* [BFN] Extended SFP platform plugin implementation
Signed-off-by: Andriy Kokhan <andriyx.kokhan@intel.com>
* [BFN] Extended Fans platform plugin implementation
* [BFN] divided classes Fan and FanDrawer into 2 files
* Signed-off-by: Vadym Yashchenko <vadymx.yashchenko@intel.com>
What I did
Add get_model() function
Add get_low_critical_threshold() function
Change __get(...) function.
How I did it
Differnece from previous implementation of __get(...) function is return real value or -9999.9 if value is not provided by thrift API
* Add get_presence() function and revised __get() function
Signed-off-by: Vadym Yashchenko <vadymx.yashchenko@intel.com>
* [BFN] Updated PSU platform APIs impl
Signed-off-by: Dmytro Lytvynenko <dmytrox.lytvynenko@intel.com>
* Added BFN PSU cache (#9)
Signed-off-by: Andriy Kokhan <andriyx.kokhan@intel.com>
* [BFN] Fans and Fantray platform APIs update (#7)
* [BFN] Updated SFP platform APIs (#10)
Signed-off-by: Volodymyr Boyko <volodymyrx.boiko@intel.com>
* [BFN] Updated platform API for thermal (#8)
* Signed-off-by: Vadym Yashchenko <vadymx.yashchenko@intel.com>
* Revert "[BFN] Fans and Fantray platform APIs update (#7)" (#11)
This reverts commit c62a733443be49cbe4ba2d06047aac7516f0495e.
* Add support health monitor system (#15)
Signed-off-by: Petro Bratash <petrox.bratash@intel.com>
* Update chassis.py
* [BFN] Updated FANs and FAN Tray platform API (#14)
* Fix fix_alignment (#17)
Signed-off-by: Petro Bratash <petrox.bratash@intel.com>
* [BFN] Improvement show environment (#16)
* Added PSU temperature skip into platform.json (#18)
Signed-off-by: Andriy Kokhan <andriyx.kokhan@intel.com>
* Do not skip psud on Newport
Signed-off-by: Andriy Kokhan <andriyx.kokhan@intel.com>
* [BFN] fix fan status from Not OK to Ok (#19)
* [BFN] Updated SFP platform plugin (#13)
Signed-off-by: Volodymyr Boyko <volodymyrx.boiko@intel.com>
* [DPB] Fix typo for Ethernet0 2x200G[100G,40G] breakout mode (#21)
Signed-off-by: Mykola Gerasymenko <mykolax.gerasymenko@intel.com>
* [barefoot] Tmp fix vendor_rev (#22)
Signed-off-by: Volodymyr Boyko <volodymyrx.boiko@intel.com>
* Fixed python issues in sonic_platform/fan_drawer.py
Signed-off-by: Andriy Kokhan <andriyx.kokhan@intel.com>
* Updated fan_drawer.py
* Fixing trailing white spaces in fan_drawer.py
* [BFN] Fix thrift for SFPs API
Signed-off-by: Volodymyr Boyko <volodymyrx.boiko@intel.com>
* In platform.json, replaced 'false' with '0' to workaround ast.literal_eval() issue
Signed-off-by: Andriy Kokhan <andriyx.kokhan@intel.com>
* [Newport] Thermal manager (#23)
* Signed-off-by: Vadym Yashchenko <vadymx.yashchenko@intel.com>
* Revert "In platform.json, replaced 'false' with '0' to workaround ast.literal_eval() issue"
This reverts commit 1e73127830
.
* Removed 'controllable' options from platform.json to fix factory default config generation
Signed-off-by: Andriy Kokhan <andriyx.kokhan@intel.com>
* Update thermal_manager.py
* Migrated SFP plugin to sonic_xcvr API (#30)
Signed-off-by: Andriy Kokhan <andriyx.kokhan@intel.com>
Co-authored-by: KostiantynYarovyiBf <kostiantynx.yarovyi@intel.com>
Co-authored-by: Vadym Yashchenko <vadymx.yashchenko@intel.com>
Co-authored-by: Dmytro Lytvynenko <dmytrox.lytvynenko@intel.com>
Co-authored-by: Volodymyr Boiko <volodymyrx.boiko@intel.com>
Co-authored-by: Petro Bratash <petrox.bratash@intel.com>
Co-authored-by: Mykola Gerasymenko <mykolax.gerasymenko@intel.com>
356 lines
10 KiB
Python
356 lines
10 KiB
Python
#!/usr/bin/env python
|
|
|
|
try:
|
|
import time
|
|
import syslog
|
|
|
|
from sonic_platform_base.chassis_base import ChassisBase
|
|
from sonic_platform.sfp import Sfp
|
|
from sonic_platform.psu import psu_list_get
|
|
from sonic_platform.fan_drawer import fan_drawer_list_get
|
|
from sonic_platform.thermal import thermal_list_get
|
|
from eeprom import Eeprom
|
|
from sonic_platform.thermal_manager import ThermalManager
|
|
|
|
from sonic_platform.platform_thrift_client import pltfm_mgr_ready
|
|
from sonic_platform.platform_thrift_client import thrift_try
|
|
|
|
from sonic_py_common import device_info
|
|
|
|
except ImportError as e:
|
|
raise ImportError(str(e) + "- required module not found")
|
|
|
|
class Chassis(ChassisBase):
|
|
"""
|
|
Platform-specific Chassis class
|
|
"""
|
|
|
|
PORT_START = 1
|
|
PORT_END = 0
|
|
PORTS_IN_BLOCK = 0
|
|
QSFP_PORT_START = 1
|
|
QSFP_PORT_END = 0
|
|
QSFP_CHECK_INTERVAL = 4
|
|
|
|
def __init__(self):
|
|
ChassisBase.__init__(self)
|
|
|
|
self.__eeprom = None
|
|
self.__fan_drawers = None
|
|
self.__fan_list = None
|
|
self.__thermals = None
|
|
self.__psu_list = None
|
|
self.__sfp_list = None
|
|
self.__thermal_mngr = None
|
|
self.__polling_thermal_time = 30
|
|
|
|
self.ready = False
|
|
self.phy_port_cur_state = {}
|
|
self.qsfp_interval = self.QSFP_CHECK_INTERVAL
|
|
|
|
@property
|
|
def _eeprom(self):
|
|
if self.__eeprom is None:
|
|
self.__eeprom = Eeprom()
|
|
return self.__eeprom
|
|
|
|
@_eeprom.setter
|
|
def _eeprom(self, value):
|
|
pass
|
|
|
|
@property
|
|
def _fan_drawer_list(self):
|
|
if self.__fan_drawers is None:
|
|
self.__fan_drawers = fan_drawer_list_get()
|
|
return self.__fan_drawers
|
|
|
|
@_fan_drawer_list.setter
|
|
def _fan_drawer_list(self, value):
|
|
pass
|
|
|
|
@property
|
|
def _fan_list(self):
|
|
if self.__fan_list is None:
|
|
self.__fan_list = []
|
|
for fan_drawer in self._fan_drawer_list:
|
|
self.__fan_list.extend(fan_drawer._fan_list)
|
|
return self.__fan_list
|
|
|
|
@_fan_list.setter
|
|
def _fan_list(self, value):
|
|
pass
|
|
|
|
@property
|
|
def _thermal_list(self):
|
|
if self.__thermals is None:
|
|
self.__thermals = thermal_list_get()
|
|
return self.__thermals
|
|
|
|
@_thermal_list.setter
|
|
def _thermal_list(self, value):
|
|
pass
|
|
|
|
@property
|
|
def _psu_list(self):
|
|
if self.__psu_list is None:
|
|
self.__psu_list = psu_list_get()
|
|
return self.__psu_list
|
|
|
|
@_psu_list.setter
|
|
def _psu_list(self, value):
|
|
pass
|
|
|
|
@property
|
|
def _sfp_list(self):
|
|
if self.__sfp_list is None:
|
|
self.__update_port_info()
|
|
self.__sfp_list = []
|
|
for index in range(self.PORT_START, self.PORT_END + 1):
|
|
sfp_node = Sfp(index)
|
|
self.__sfp_list.append(sfp_node)
|
|
return self.__sfp_list
|
|
|
|
@_sfp_list.setter
|
|
def _sfp_list(self, value):
|
|
pass
|
|
|
|
@property
|
|
def _thermal_mngr(self):
|
|
if self.__thermal_mngr is None:
|
|
self.__thermal_mngr = ThermalManager(self.__polling_thermal_time)
|
|
return self.__thermal_mngr
|
|
|
|
@_thermal_mngr.setter
|
|
def _thermal_mngr(self, value):
|
|
self.__thermal_mngr = ThermalManager(value)
|
|
|
|
def __update_port_info(self):
|
|
def qsfp_max_port_get(client):
|
|
return client.pltfm_mgr.pltfm_mgr_qsfp_get_max_port()
|
|
|
|
if self.QSFP_PORT_END == 0:
|
|
platform = device_info.get_platform()
|
|
self.QSFP_PORT_END = thrift_try(qsfp_max_port_get)
|
|
exclude_cpu_port = [
|
|
"x86_64-accton_as9516_32d-r0",
|
|
"x86_64-accton_as9516bf_32d-r0",
|
|
"x86_64-accton_wedge100bf_32x-r0"
|
|
]
|
|
if platform in exclude_cpu_port:
|
|
self.QSFP_PORT_END -= 1
|
|
self.PORT_END = self.QSFP_PORT_END
|
|
self.PORTS_IN_BLOCK = self.QSFP_PORT_END
|
|
|
|
def get_name(self):
|
|
"""
|
|
Retrieves the name of the chassis
|
|
Returns:
|
|
string: The name of the chassis
|
|
"""
|
|
return self._eeprom.modelstr()
|
|
|
|
def get_presence(self):
|
|
"""
|
|
Retrieves the presence of the chassis
|
|
Returns:
|
|
bool: True if chassis is present, False if not
|
|
"""
|
|
return True
|
|
|
|
def get_model(self):
|
|
"""
|
|
Retrieves the model number (or part number) of the chassis
|
|
Returns:
|
|
string: Model/part number of chassis
|
|
"""
|
|
return self._eeprom.part_number_str()
|
|
|
|
def get_serial(self):
|
|
"""
|
|
Retrieves the serial number of the chassis (Service tag)
|
|
Returns:
|
|
string: Serial number of chassis
|
|
"""
|
|
return self._eeprom.serial_number_str()
|
|
|
|
def get_revision(self):
|
|
"""
|
|
Retrieves the revision number of the chassis (Service tag)
|
|
Returns:
|
|
string: Revision number of chassis
|
|
"""
|
|
return self._eeprom.revision_str()
|
|
|
|
def get_sfp(self, index):
|
|
"""
|
|
Retrieves sfp represented by (1-based) index <index>
|
|
|
|
Args:
|
|
index: An integer, the index (1-based) of the sfp to retrieve.
|
|
The index should be the sequence of a physical port in a chassis,
|
|
starting from 1.
|
|
For example, 0 for Ethernet0, 1 for Ethernet4 and so on.
|
|
|
|
Returns:
|
|
An object dervied from SfpBase representing the specified sfp
|
|
"""
|
|
sfp = None
|
|
|
|
try:
|
|
sfp = self._sfp_list[index-1]
|
|
except IndexError:
|
|
syslog.syslog(syslog.LOG_ERR, "SFP index {} out of range (1-{})\n".format(
|
|
index, len(self._sfp_list)-1))
|
|
return sfp
|
|
|
|
def get_status(self):
|
|
"""
|
|
Retrieves the operational status of the chassis
|
|
Returns:
|
|
bool: A boolean value, True if chassis is operating properly
|
|
False if not
|
|
"""
|
|
return True
|
|
|
|
def get_base_mac(self):
|
|
"""
|
|
Retrieves the base MAC address for the chassis
|
|
|
|
Returns:
|
|
A string containing the MAC address in the format
|
|
'XX:XX:XX:XX:XX:XX'
|
|
"""
|
|
return self._eeprom.base_mac_addr()
|
|
|
|
def get_system_eeprom_info(self):
|
|
"""
|
|
Retrieves the full content of system EEPROM information for the chassis
|
|
|
|
Returns:
|
|
A dictionary where keys are the type code defined in
|
|
OCP ONIE TlvInfo EEPROM format and values are their corresponding
|
|
values.
|
|
"""
|
|
return self._eeprom.system_eeprom_info()
|
|
|
|
def __get_transceiver_change_event(self, timeout=0):
|
|
forever = False
|
|
if timeout == 0:
|
|
forever = True
|
|
elif timeout > 0:
|
|
timeout = timeout / float(1000) # Convert to secs
|
|
else:
|
|
syslog.syslog(syslog.LOG_ERR, "Invalid timeout value {}".format(timeout))
|
|
return False, {}
|
|
|
|
phy_port_dict = {} if self.ready else {'-1': 'system_not_ready'}
|
|
|
|
while forever or timeout > 0:
|
|
if not self.ready:
|
|
if pltfm_mgr_ready():
|
|
self.ready = True
|
|
phy_port_dict = {}
|
|
|
|
if self.ready and self.qsfp_interval == 0:
|
|
self.qsfp_interval = self.QSFP_CHECK_INTERVAL
|
|
|
|
# Get presence of each SFP
|
|
for port in range(self.PORT_START, self.PORT_END + 1):
|
|
try:
|
|
sfp_resent = self.get_sfp(port).get_presence()
|
|
except Exception:
|
|
sfp_resent = False
|
|
sfp_state = '1' if sfp_resent else '0'
|
|
|
|
if port in self.phy_port_cur_state:
|
|
if self.phy_port_cur_state[port] != sfp_state:
|
|
phy_port_dict[port] = sfp_state
|
|
else:
|
|
phy_port_dict[port] = sfp_state
|
|
|
|
# Update port current state
|
|
self.phy_port_cur_state[port] = sfp_state
|
|
|
|
# Break if tranceiver state has changed
|
|
if phy_port_dict:
|
|
break
|
|
|
|
if timeout:
|
|
timeout -= 1
|
|
|
|
if self.qsfp_interval:
|
|
self.qsfp_interval -= 1
|
|
|
|
time.sleep(1)
|
|
|
|
return self.ready, phy_port_dict
|
|
|
|
def get_change_event(self, timeout=0):
|
|
ready, event_sfp = self.__get_transceiver_change_event(timeout)
|
|
return ready, { 'sfp': event_sfp } if ready else {}
|
|
|
|
def get_reboot_cause(self):
|
|
"""
|
|
Retrieves the cause of the previous reboot
|
|
|
|
Returns:
|
|
A tuple (string, string) where the first element is a string
|
|
containing the cause of the previous reboot. This string must be
|
|
one of the predefined strings in this class. If the first string
|
|
is "REBOOT_CAUSE_HARDWARE_OTHER", the second string can be used
|
|
to pass a description of the reboot cause.
|
|
"""
|
|
return self.REBOOT_CAUSE_NON_HARDWARE, ''
|
|
|
|
def get_position_in_parent(self):
|
|
"""
|
|
Retrieves 1-based relative physical position in parent device. If the agent cannot determine the parent-relative position
|
|
for some reason, or if the associated value of entPhysicalContainedIn is '0', then the value '-1' is returned
|
|
Returns:
|
|
integer: The 1-based relative physical position in parent device or -1 if cannot determine the position
|
|
"""
|
|
return -1
|
|
|
|
def is_replaceable(self):
|
|
"""
|
|
Indicate whether this device is replaceable.
|
|
Returns:
|
|
bool: True if it is replaceable.
|
|
"""
|
|
return False
|
|
|
|
def initizalize_system_led(self):
|
|
self.system_led = ""
|
|
return True
|
|
|
|
def set_status_led(self, color):
|
|
"""
|
|
Sets the state of the system LED
|
|
|
|
Args:
|
|
color: A string representing the color with which to set the
|
|
system LED
|
|
|
|
Returns:
|
|
bool: True if system LED state is set successfully, False if not
|
|
"""
|
|
self.system_led = color
|
|
return True
|
|
|
|
def get_status_led(self):
|
|
"""
|
|
Gets the state of the system LED
|
|
|
|
Returns:
|
|
A string, one of the valid LED color strings which could be vendor
|
|
specified.
|
|
"""
|
|
return self.system_led
|
|
|
|
def get_thermal_manager(self):
|
|
return self._thermal_mngr
|
|
|
|
def __del__(self):
|
|
if self.__thermal_mngr is not None:
|
|
self.__thermal_mngr.stop()
|