sonic-buildimage/device/cameo/x86_64-cameo_escc601_32q-r0/plugins/sfputil.py
shihjeff 940aaa0cbe
[201911] [Innovium] Update Cameo & Wistron Drivers (#7855)
Fix #8068

Update Innovium configs on Cameo and Wistron platforms
2021-07-21 09:09:36 -07:00

167 lines
5.0 KiB
Python
Executable File

#!/usr/bin/env python
try:
import time
import json
from sonic_sfp.sfputilbase import SfpUtilBase
except ImportError as e:
raise ImportError (str(e) + "- required module not found")
attr_path = '/sys/class/hwmon/hwmon2/device/'
PLATFORM_INSTALL_INFO_FILE="/etc/sonic/platform_install.json"
PLATFORM_SFP_GROUPS = ['SFP-G01','SFP-G02','SFP-G03','SFP-G04']
QSFP_RESET_FILE = 'ESCC601_QSFP/qsfp{}_reset'
QSFP_LOWPOWER_FILE = 'ESCC601_QSFP/qsfp{}_low_power'
QSFP_PRESENT_FILE = 'ESCC601_QSFP/qsfp{}_present'
class SfpUtil(SfpUtilBase):
"""Platform specific SfpUtill class"""
_port_start = 0
_port_end = 31
_port_in_block =32
_port_to_eeprom_mapping = {}
_global_port_pres_dict = {}
def __init__(self):
eeprom_path = "{}/eeprom"
path_list = self.get_sfp_path()
for x in range(self._port_start, self._port_end + 1):
port_eeprom_path = eeprom_path.format(path_list[x])
self._port_to_eeprom_mapping[x] = port_eeprom_path
self.init_global_port_presence()
SfpUtilBase.__init__(self)
def get_sfp_path(self):
map = []
with open(PLATFORM_INSTALL_INFO_FILE) as fd:
install_info = json.load(fd)
for sfp_group_name in PLATFORM_SFP_GROUPS:
sfp_group = install_info[2][sfp_group_name]
map = map + sfp_group['paths']
return map
def reset(self, port_num):
# Check for invalid port_num
if port_num < self._port_start or port_num > self._port_end:
return False
path = attr_path+QSFP_RESET_FILE.format(port_num+1)
try:
reg_file = open(path, 'w')
except IOError as e:
print( "Error: unable to open file: %s" % str(e))
return False
reg_file.seek(0)
reg_file.write('1')
reg_file.close()
return True
def set_low_power_mode(self, port_num, lpmode):
# Check for invalid port_num
if port_num < self.port_start or port_num > self.port_end:
return False
path = attr_path+QSFP_LOWPOWER_FILE.format(port_num+1)
try:
reg_file = open(path, 'w')
except IOError as e:
print( "Error: unable to open file: %s" % str(e))
return False
# the gpio pin is ACTIVE_HIGH
if lpmode is True:
val = "1"
else:
val = "0"
# write value to gpio
reg_file.seek(0)
reg_file.write(val)
reg_file.close()
return True
def get_low_power_mode(self, port_num):
# Check for invalid port_num
if port_num < self._port_start or port_num > self._port_end:
return False
path = attr_path+QSFP_LOWPOWER_FILE.format(port_num+1)
try:
reg_file = open(path, 'r')
except IOError as e:
print( "Error: unable to open file: %s" % str(e))
return False
text = reg_file.read()
reg_file.close()
if int(text) == 1:
return True
return False
def get_presence(self, port_num):
# Check for invalid port_num
if port_num < self._port_start or port_num > self._port_end:
return False
path = attr_path+QSFP_PRESENT_FILE.format(port_num+1)
try:
reg_file = open(path, 'r')
except IOError as e:
print( "Error: unable to open file: %s" % str(e))
return False
text = reg_file.read()
reg_file.close()
if int(text) == 1:
return True
return False
def init_global_port_presence(self):
for port_num in range(self.port_start, (self.port_end + 1)):
presence = self.get_presence(port_num)
if(presence):
self._global_port_pres_dict[port_num] = '1'
else:
self._global_port_pres_dict[port_num] = '0'
def get_transceiver_change_event(self, timeout=0):
port_dict = {}
while True:
for port_num in range(self.port_start, (self.port_end + 1)):
presence = self.get_presence(port_num)
if(presence and self._global_port_pres_dict[port_num] == '0'):
self._global_port_pres_dict[port_num] = '1'
port_dict[port_num] = '1'
elif(not presence and
self._global_port_pres_dict[port_num] == '1'):
self._global_port_pres_dict[port_num] = '0'
port_dict[port_num] = '0'
if(len(port_dict) > 0):
return True, port_dict
time.sleep(1)
@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._port_in_block + 1)
@property
def port_to_eeprom_mapping(self):
return self._port_to_eeprom_mapping