2017-08-25 12:55:11 -05:00
|
|
|
# sfputil.py
|
|
|
|
#
|
|
|
|
# Platform-specific SFP transceiver interface for SONiC
|
|
|
|
#
|
2017-07-07 06:26:53 -05:00
|
|
|
|
|
|
|
try:
|
2017-08-25 12:55:11 -05:00
|
|
|
import time
|
|
|
|
from sonic_sfp.sfputilbase import SfpUtilBase
|
|
|
|
except ImportError as e:
|
|
|
|
raise ImportError("%s - required module not found" % str(e))
|
2017-07-07 06:26:53 -05:00
|
|
|
|
|
|
|
|
2017-08-25 12:55:11 -05:00
|
|
|
class SfpUtil(SfpUtilBase):
|
|
|
|
"""Platform-specific SfpUtil class"""
|
2017-07-07 06:26:53 -05:00
|
|
|
|
2017-08-25 12:55:11 -05:00
|
|
|
PORT_START = 0
|
|
|
|
PORT_END = 31
|
|
|
|
PORTS_IN_BLOCK = 32
|
2017-07-07 06:26:53 -05:00
|
|
|
|
2017-08-25 12:55:11 -05:00
|
|
|
EEPROM_OFFSET = 1
|
2017-07-07 06:26:53 -05:00
|
|
|
|
2017-08-25 12:55:11 -05:00
|
|
|
_port_to_eeprom_mapping = {}
|
2017-07-07 06:26:53 -05:00
|
|
|
|
2017-08-25 12:55:11 -05:00
|
|
|
@property
|
|
|
|
def port_start(self):
|
|
|
|
return self.PORT_START
|
|
|
|
|
|
|
|
@property
|
|
|
|
def port_end(self):
|
|
|
|
return self.PORT_END
|
|
|
|
|
|
|
|
@property
|
|
|
|
def qsfp_ports(self):
|
|
|
|
return range(0, self.PORTS_IN_BLOCK + 1)
|
|
|
|
|
|
|
|
@property
|
|
|
|
def port_to_eeprom_mapping(self):
|
|
|
|
return self._port_to_eeprom_mapping
|
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
eeprom_path = "/bsp/qsfp/qsfp{0}"
|
2017-07-07 06:26:53 -05:00
|
|
|
|
|
|
|
for x in range(0, self.port_end + 1):
|
2017-08-25 12:55:11 -05:00
|
|
|
self._port_to_eeprom_mapping[x] = eeprom_path.format(x + self.EEPROM_OFFSET)
|
|
|
|
|
|
|
|
SfpUtilBase.__init__(self)
|
|
|
|
|
|
|
|
def get_presence(self, port_num):
|
2017-10-19 20:36:25 -05:00
|
|
|
# Check for invalid port_num
|
|
|
|
if port_num < self.port_start or port_num > self.port_end:
|
|
|
|
return False
|
2017-08-25 12:55:11 -05:00
|
|
|
|
2017-10-19 20:36:25 -05:00
|
|
|
try:
|
|
|
|
reg_file = open("/bsp/qsfp/qsfp%d_status" % (port_num+1))
|
|
|
|
except IOError as e:
|
|
|
|
print "Error: unable to open file: %s" % str(e)
|
|
|
|
return False
|
|
|
|
|
|
|
|
content = reg_file.readline().rstrip()
|
|
|
|
|
|
|
|
# content is a string with the qsfp status
|
|
|
|
if content == "good":
|
|
|
|
return True
|
|
|
|
|
|
|
|
return False
|
2017-08-25 12:55:11 -05:00
|
|
|
|
|
|
|
def get_low_power_mode(self, port_num):
|
|
|
|
|
|
|
|
raise NotImplementedError
|
|
|
|
|
|
|
|
def set_low_power_mode(self, port_num, lpmode):
|
|
|
|
|
|
|
|
raise NotImplementedError
|
|
|
|
|
|
|
|
def reset(self, port_num):
|
|
|
|
|
|
|
|
raise NotImplementedError
|