* [device/celestica]: add pmon_daemon_control config * [device/celestica]: update sfp index follow port_config * [device/celestica]: update get_watchdog to avoid multiple daemon try opening watchdog
This commit is contained in:
parent
d35e382dad
commit
a5a11f6e7d
@ -0,0 +1,3 @@
|
|||||||
|
{
|
||||||
|
"skip_ledd": true
|
||||||
|
}
|
@ -19,7 +19,6 @@ try:
|
|||||||
from sonic_platform.fan import Fan
|
from sonic_platform.fan import Fan
|
||||||
from sonic_platform.psu import Psu
|
from sonic_platform.psu import Psu
|
||||||
from sonic_platform.component import Component
|
from sonic_platform.component import Component
|
||||||
from sonic_platform.watchdog import Watchdog
|
|
||||||
from sonic_platform.thermal import Thermal
|
from sonic_platform.thermal import Thermal
|
||||||
from sonic_platform.sfp import Sfp
|
from sonic_platform.sfp import Sfp
|
||||||
from sonic_platform.eeprom import Tlv
|
from sonic_platform.eeprom import Tlv
|
||||||
@ -54,7 +53,9 @@ class Chassis(ChassisBase):
|
|||||||
for index in range(0, NUM_THERMAL):
|
for index in range(0, NUM_THERMAL):
|
||||||
thermal = Thermal(index)
|
thermal = Thermal(index)
|
||||||
self._thermal_list.append(thermal)
|
self._thermal_list.append(thermal)
|
||||||
for index in range(0, NUM_SFP):
|
# sfp index start from 1
|
||||||
|
self._sfp_list.append(None)
|
||||||
|
for index in range(1, NUM_SFP+1):
|
||||||
sfp = Sfp(index)
|
sfp = Sfp(index)
|
||||||
self._sfp_list.append(sfp)
|
self._sfp_list.append(sfp)
|
||||||
for index in range(0, NUM_COMPONENT):
|
for index in range(0, NUM_COMPONENT):
|
||||||
@ -63,7 +64,6 @@ class Chassis(ChassisBase):
|
|||||||
self._reboot_cause_path = HOST_REBOOT_CAUSE_PATH if self.__is_host(
|
self._reboot_cause_path = HOST_REBOOT_CAUSE_PATH if self.__is_host(
|
||||||
) else PMON_REBOOT_CAUSE_PATH
|
) else PMON_REBOOT_CAUSE_PATH
|
||||||
|
|
||||||
self._watchdog = Watchdog()
|
|
||||||
self._eeprom = Tlv()
|
self._eeprom = Tlv()
|
||||||
|
|
||||||
def __is_host(self):
|
def __is_host(self):
|
||||||
@ -134,3 +134,16 @@ class Chassis(ChassisBase):
|
|||||||
description = 'Unknown reason'
|
description = 'Unknown reason'
|
||||||
|
|
||||||
return (reboot_cause, description)
|
return (reboot_cause, description)
|
||||||
|
|
||||||
|
def get_watchdog(self):
|
||||||
|
"""
|
||||||
|
Retreives hardware watchdog device on this chassis
|
||||||
|
Returns:
|
||||||
|
An object derived from WatchdogBase representing the hardware
|
||||||
|
watchdog device
|
||||||
|
"""
|
||||||
|
if self._watchdog is None:
|
||||||
|
from sonic_platform.watchdog import Watchdog
|
||||||
|
self._watchdog = Watchdog()
|
||||||
|
|
||||||
|
return self._watchdog
|
||||||
|
@ -94,7 +94,7 @@ class Sfp(SfpBase):
|
|||||||
def __init__(self, sfp_index):
|
def __init__(self, sfp_index):
|
||||||
# Init index
|
# Init index
|
||||||
self.index = sfp_index
|
self.index = sfp_index
|
||||||
self.port_num = self.index + 1
|
self.port_num = self.index
|
||||||
|
|
||||||
# Init eeprom path
|
# Init eeprom path
|
||||||
eeprom_path = '/sys/bus/i2c/devices/i2c-{0}/{0}-0050/eeprom'
|
eeprom_path = '/sys/bus/i2c/devices/i2c-{0}/{0}-0050/eeprom'
|
||||||
|
@ -0,0 +1,3 @@
|
|||||||
|
{
|
||||||
|
"skip_ledd": true
|
||||||
|
}
|
@ -0,0 +1,3 @@
|
|||||||
|
{
|
||||||
|
"skip_ledd": true
|
||||||
|
}
|
@ -19,7 +19,6 @@ try:
|
|||||||
from sonic_platform.fan import Fan
|
from sonic_platform.fan import Fan
|
||||||
from sonic_platform.psu import Psu
|
from sonic_platform.psu import Psu
|
||||||
from sonic_platform.component import Component
|
from sonic_platform.component import Component
|
||||||
from sonic_platform.watchdog import Watchdog
|
|
||||||
from sonic_platform.thermal import Thermal
|
from sonic_platform.thermal import Thermal
|
||||||
from sonic_platform.sfp import Sfp
|
from sonic_platform.sfp import Sfp
|
||||||
from sonic_platform.eeprom import Tlv
|
from sonic_platform.eeprom import Tlv
|
||||||
@ -56,14 +55,15 @@ class Chassis(ChassisBase):
|
|||||||
for index in range(0, NUM_THERMAL):
|
for index in range(0, NUM_THERMAL):
|
||||||
thermal = Thermal(index)
|
thermal = Thermal(index)
|
||||||
self._thermal_list.append(thermal)
|
self._thermal_list.append(thermal)
|
||||||
for index in range(0, NUM_SFP):
|
# sfp index start from 1
|
||||||
|
self._sfp_list.append(None)
|
||||||
|
for index in range(1, NUM_SFP+1):
|
||||||
sfp = Sfp(index)
|
sfp = Sfp(index)
|
||||||
self._sfp_list.append(sfp)
|
self._sfp_list.append(sfp)
|
||||||
for index in range(0, NUM_COMPONENT):
|
for index in range(0, NUM_COMPONENT):
|
||||||
component = Component(index)
|
component = Component(index)
|
||||||
self._component_list.append(component)
|
self._component_list.append(component)
|
||||||
|
|
||||||
self._watchdog = Watchdog()
|
|
||||||
self._eeprom = Tlv()
|
self._eeprom = Tlv()
|
||||||
|
|
||||||
def __is_host(self):
|
def __is_host(self):
|
||||||
@ -146,3 +146,16 @@ class Chassis(ChassisBase):
|
|||||||
description = 'Unknown reason'
|
description = 'Unknown reason'
|
||||||
|
|
||||||
return (reboot_cause, description)
|
return (reboot_cause, description)
|
||||||
|
|
||||||
|
def get_watchdog(self):
|
||||||
|
"""
|
||||||
|
Retreives hardware watchdog device on this chassis
|
||||||
|
Returns:
|
||||||
|
An object derived from WatchdogBase representing the hardware
|
||||||
|
watchdog device
|
||||||
|
"""
|
||||||
|
if self._watchdog is None:
|
||||||
|
from sonic_platform.watchdog import Watchdog
|
||||||
|
self._watchdog = Watchdog()
|
||||||
|
|
||||||
|
return self._watchdog
|
||||||
|
@ -100,7 +100,7 @@ class Sfp(SfpBase):
|
|||||||
def __init__(self, sfp_index):
|
def __init__(self, sfp_index):
|
||||||
# Init index
|
# Init index
|
||||||
self.index = sfp_index
|
self.index = sfp_index
|
||||||
self.port_num = self.index + 1 if self.PORT_START == 1 else index
|
self.port_num = self.index
|
||||||
|
|
||||||
# Init eeprom path
|
# Init eeprom path
|
||||||
eeprom_path = '/sys/bus/i2c/devices/i2c-{0}/{0}-0050/eeprom'
|
eeprom_path = '/sys/bus/i2c/devices/i2c-{0}/{0}-0050/eeprom'
|
||||||
|
@ -0,0 +1,3 @@
|
|||||||
|
{
|
||||||
|
"skip_ledd": true
|
||||||
|
}
|
Reference in New Issue
Block a user