7f4ab8fbd8
Submodule updates include the following commits: * src/sonic-utilities 9dc58ea...f9eb739 (18): > Remove unnecessary calls to str.encode() now that the package is Python 3; Fix deprecation warning (#1260) > [generate_dump] Ignoring file/directory not found Errors (#1201) > Fixed porstat rate and util issues (#1140) > fix error: interface counters is mismatch after warm-reboot (#1099) > Remove unnecessary calls to str.decode() now that the package is Python 3 (#1255) > [acl-loader] Make list sorting compliant with Python 3 (#1257) > Replace hard-coded fast-reboot with variable. And some typo corrections (#1254) > [configlet][portconfig] Remove calls to dict.has_key() which is not available in Python 3 (#1247) > Remove unnecessary conversions to list() and calls to dict.keys() (#1243) > Clean up LGTM alerts (#1239) > Add 'requests' as install dependency in setup.py (#1240) > Convert to Python 3 (#1128) > Fix mock SonicV2Connector in python3: use decode_responses mode so caller code will be the same as python2 (#1238) > [tests] Do not trim from PATH if we did not append to it; Clean up/fix shebangs in scripts (#1233) > Updates to bgp config and show commands with BGP_INTERNAL_NEIGHBOR table (#1224) > [cli]: NAT show commands newline issue after migrated to Python3 (#1204) > [doc]: Update Command-Reference.md (#1231) > Added 'import sys' in feature.py file (#1232) * src/sonic-py-swsssdk 9d9f0c6...1664be9 (2): > Fix: no need to decode() after redis client scan, so it will work for both python2 and python3 (#96) > FieldValueMap `contains`(`in`) will also work when migrated to libswsscommon(C++ with SWIG wrapper) (#94) - Also fix Python 3-related issues: - Use integer (floor) division in config_samples.py (sonic-config-engine) - Replace print statement with print function in eeprom.py plugin for x86_64-kvm_x86_64-r0 platform - Update all platform plugins to be compatible with both Python 2 and Python 3 - Remove shebangs from plugins files which are not intended to be executable - Replace tabs with spaces in Python plugin files and fix alignment, because Python 3 is more strict - Remove trailing whitespace from plugins files
268 lines
8.4 KiB
Python
Executable File
268 lines
8.4 KiB
Python
Executable File
try:
|
|
import os
|
|
import time
|
|
import re
|
|
import sys
|
|
import glob
|
|
from sonic_sfp.sfputilbase import SfpUtilBase
|
|
except ImportError as e:
|
|
raise ImportError(str(e) + "- required module not found")
|
|
|
|
if sys.version_info[0] < 3:
|
|
import commands
|
|
else:
|
|
import subprocess as commands
|
|
|
|
smbus_present = 1
|
|
|
|
try:
|
|
import smbus
|
|
except ImportError as e:
|
|
smbus_present = 0
|
|
|
|
|
|
class SfpUtil(SfpUtilBase):
|
|
"""Platform specific sfputil class"""
|
|
|
|
_port_start = 49
|
|
_port_end = 52
|
|
ports_in_block = 4
|
|
|
|
_port_to_eeprom_mapping = {}
|
|
port_to_i2c_mapping = {
|
|
49: 2,
|
|
50: 3,
|
|
51: 4,
|
|
52: 5
|
|
}
|
|
|
|
_qsfp_ports = list(range(_port_start, ports_in_block + 1))
|
|
_changed_ports = [0, 0, 0, 0]
|
|
|
|
def __init__(self):
|
|
|
|
# Enable optical SFP Tx
|
|
if smbus_present == 0:
|
|
os.system("i2cset -y -m 0x0f 0 0x41 0x5 0x00")
|
|
else:
|
|
bus = smbus.SMBus(0)
|
|
DEVICE_ADDRESS = 0x41
|
|
DEVICEREG = 0x5
|
|
OPTIC_E = bus.read_byte_data(DEVICE_ADDRESS, DEVICEREG)
|
|
OPTIC_E = OPTIC_E & 0xf0
|
|
bus.write_byte_data(DEVICE_ADDRESS, DEVICEREG, OPTIC_E)
|
|
|
|
# Mux Ordering
|
|
mux_dev = sorted(glob.glob("/sys/class/i2c-adapter/i2c-0/i2c-[0-9]"))
|
|
|
|
# Enable optoe2 Driver
|
|
eeprom_path = "/sys/class/i2c-adapter/i2c-{0}/{0}-0050/eeprom"
|
|
bus_path = "/sys/class/i2c-adapter/i2c-{0}/"
|
|
y = 0
|
|
for x in range(self.port_start, self.port_end + 1):
|
|
mux_dev_num = mux_dev[y]
|
|
self.port_to_i2c_mapping[x] = mux_dev_num[-1]
|
|
y = y + 1
|
|
port_eeprom_path = eeprom_path.format(self.port_to_i2c_mapping[x])
|
|
#print port_eeprom_path
|
|
if not os.path.exists(port_eeprom_path):
|
|
bus_dev_path = bus_path.format(self.port_to_i2c_mapping[x])
|
|
os.system("echo optoe2 0x50 > " + bus_dev_path + "/new_device")
|
|
self.port_to_eeprom_mapping[x] = port_eeprom_path
|
|
self._port_to_eeprom_mapping[x] = port_eeprom_path
|
|
SfpUtilBase.__init__(self)
|
|
|
|
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 = "/sys/class/i2c-adapter/i2c-{0}/{0}-0050/sfp_port_reset"
|
|
port_ps = path.format(self.port_to_i2c_mapping[port_num])
|
|
|
|
try:
|
|
reg_file = open(port_ps, 'w')
|
|
except IOError as e:
|
|
print("Error: unable to open file: %s" % str(e))
|
|
return False
|
|
|
|
# toggle reset
|
|
reg_file.seek(0)
|
|
reg_file.write('1')
|
|
time.sleep(1)
|
|
reg_file.seek(0)
|
|
reg_file.write('0')
|
|
reg_file.close()
|
|
return True
|
|
|
|
def set_low_power_mode(self, port_nuM, lpmode):
|
|
raise NotImplementedError
|
|
|
|
def get_low_power_mode(self, port_num):
|
|
raise NotImplementedError
|
|
|
|
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
|
|
prt = port_num % 49
|
|
sel = "{0:02b}".format(prt)
|
|
p = sel[0]
|
|
q = sel[1]
|
|
|
|
pos = [1, 2, 4, 8]
|
|
bit_pos = pos[prt]
|
|
if smbus_present == 0:
|
|
cmdstatus, sfpstatus = commands.getstatusoutput(
|
|
'i2cget -y 0 0x41 0x3') # need to verify the cpld register logic
|
|
sfpstatus = int(sfpstatus, 16)
|
|
else:
|
|
bus = smbus.SMBus(0)
|
|
DEVICE_ADDRESS = 0x41
|
|
DEVICE_REG = 0x3
|
|
sfpstatus = bus.read_byte_data(DEVICE_ADDRESS, DEVICE_REG)
|
|
sfpstatus = sfpstatus & (bit_pos)
|
|
if sfpstatus == 0:
|
|
#print("Port " + str(port_num) + "present")
|
|
return True
|
|
|
|
return False
|
|
|
|
def read_porttab_mappings(self, porttabfile):
|
|
logical = []
|
|
logical_to_physical = {}
|
|
physical_to_logical = {}
|
|
last_fp_port_index = 0
|
|
last_portname = ""
|
|
first = 1
|
|
port_pos_in_file = 0
|
|
parse_fmt_port_config_ini = False
|
|
|
|
try:
|
|
f = open(porttabfile)
|
|
except:
|
|
raise
|
|
|
|
parse_fmt_port_config_ini = (os.path.basename(porttabfile) == "port_config.ini")
|
|
|
|
# Read the porttab file and generate dicts
|
|
# with mapping for future reference.
|
|
#
|
|
# TODO: Refactor this to use the portconfig.py module that now
|
|
# exists as part of the sonic-config-engine package.
|
|
title = []
|
|
for line in f:
|
|
line.strip()
|
|
if re.search("^#", line) is not None:
|
|
# The current format is: # name lanes alias index speed
|
|
# Where the ordering of the columns can vary
|
|
title = line.split()[1:]
|
|
continue
|
|
|
|
# Parsing logic for 'port_config.ini' file
|
|
if (parse_fmt_port_config_ini):
|
|
portname = line.split()[0]
|
|
|
|
if "index" in title:
|
|
fp_port_index = int(line.split()[title.index("index")])
|
|
# Leave the old code for backward compatibility
|
|
elif len(line.split()) >= 4:
|
|
fp_port_index = int(line.split()[3])
|
|
else:
|
|
fp_port_index = portname.split("Ethernet").pop()
|
|
fp_port_index = int(fp_port_index.split("s").pop(0))+1
|
|
# print(fp_port_index)
|
|
else: # Parsing logic for older 'portmap.ini' file
|
|
fp_port_index = portname.split("Ethernet").pop()
|
|
fp_port_index = int(fp_port_index.split("s").pop(0))+1
|
|
|
|
if ((len(self.sfp_ports) > 0) and (fp_port_index not in self.sfp_ports)):
|
|
continue
|
|
|
|
if first == 1:
|
|
# Initialize last_[physical|logical]_port
|
|
# to the first valid port
|
|
last_fp_port_index = fp_port_index
|
|
last_portname = portname
|
|
first = 0
|
|
|
|
logical.append(portname)
|
|
|
|
logical_to_physical[portname] = [fp_port_index]
|
|
if physical_to_logical.get(fp_port_index) is None:
|
|
physical_to_logical[fp_port_index] = [portname]
|
|
else:
|
|
physical_to_logical[fp_port_index].append(
|
|
portname)
|
|
|
|
if (fp_port_index - last_fp_port_index) > 1:
|
|
# last port was a gang port
|
|
for p in range(last_fp_port_index+1, fp_port_index):
|
|
logical_to_physical[last_portname].append(p)
|
|
if physical_to_logical.get(p) is None:
|
|
physical_to_logical[p] = [last_portname]
|
|
else:
|
|
physical_to_logical[p].append(last_portname)
|
|
|
|
last_fp_port_index = fp_port_index
|
|
last_portname = portname
|
|
|
|
port_pos_in_file += 1
|
|
|
|
self.logical = logical
|
|
self.logical_to_physical = logical_to_physical
|
|
self.physical_to_logical = physical_to_logical
|
|
# print(self.logical_to_physical)
|
|
|
|
@property
|
|
def port_start(self):
|
|
return self._port_start
|
|
|
|
@property
|
|
def port_end(self):
|
|
return self._port_end
|
|
|
|
@property
|
|
def qsfp_ports(self):
|
|
return self._qsfp_ports
|
|
|
|
@property
|
|
def port_to_eeprom_mapping(self):
|
|
return self._port_to_eeprom_mapping
|
|
|
|
def get_transceiver_change_event(self, timeout):
|
|
port_dict = {}
|
|
port = 0
|
|
|
|
if timeout == 0:
|
|
cd_ms = sys.maxsize
|
|
else:
|
|
cd_ms = timeout
|
|
changed_port = 0
|
|
# poll per second
|
|
while cd_ms > 0:
|
|
for port_num in range(49, 53):
|
|
prt = port_num % 49
|
|
sfpstatus = self.get_presence(port_num)
|
|
if sfpstatus:
|
|
port_dict[str(port_num)] = '1'
|
|
if self._changed_ports[prt] == 0:
|
|
changed_port = 1
|
|
self._changed_ports[prt] = 1
|
|
else:
|
|
port_dict[str(port_num)] = '0'
|
|
if self._changed_ports[prt] == 1:
|
|
changed_port = 1
|
|
self._changed_ports[prt] = 0
|
|
|
|
if changed_port != 0:
|
|
break
|
|
time.sleep(1)
|
|
cd_ms = cd_ms - 1000
|
|
|
|
if changed_port:
|
|
return True, port_dict
|
|
else:
|
|
return True, {}
|
|
return False, {}
|