3b89e5d467
As part of consolidating all common Python-based functionality into the new sonic-py-common package, this pull request: 1. Redirects all Python applications/scripts in sonic-buildimage repo which previously imported sonic_device_util or sonic_daemon_base to instead import sonic-py-common, which was added in https://github.com/Azure/sonic-buildimage/pull/5003 2. Replaces all calls to `sonic_device_util.get_platform_info()` to instead call `sonic_py_common.get_platform()` and removes any calls to `sonic_device_util.get_machine_info()` which are no longer necessary (i.e., those which were only used to pass the results to `sonic_device_util.get_platform_info()`. 3. Removes unused imports to the now-deprecated sonic-daemon-base package and sonic_device_util.py module This is the next step toward resolving https://github.com/Azure/sonic-buildimage/issues/4999 Also reverted my previous change in which device_info.get_platform() would first try obtaining the platform ID string from Config DB and fall back to gathering it from machine.conf upon failure because this function is called by sonic-cfggen before the data is in the DB, in which case, the db_connect() call will hang indefinitely, which was not the behavior I expected. As of now, the function will always reference machine.conf.
73 lines
2.4 KiB
Python
73 lines
2.4 KiB
Python
#!/usr/bin/env python
|
|
|
|
#############################################################################
|
|
# Mellanox
|
|
#
|
|
# Platform and model specific eeprom subclass, inherits from the base class,
|
|
# and provides the followings:
|
|
# - the eeprom format definition
|
|
# - specific encoder/decoder if there is special need
|
|
#############################################################################
|
|
|
|
try:
|
|
import exceptions
|
|
import binascii
|
|
import time
|
|
import optparse
|
|
import warnings
|
|
import os
|
|
import sys
|
|
import syslog
|
|
from cStringIO import StringIO
|
|
from sonic_eeprom import eeprom_base
|
|
from sonic_eeprom import eeprom_tlvinfo
|
|
from sonic_py_common.device_info import get_machine_info
|
|
import subprocess
|
|
except ImportError, e:
|
|
raise ImportError (str(e) + "- required module not found")
|
|
|
|
SYSLOG_IDENTIFIER = "eeprom.py"
|
|
EEPROM_SYMLINK = "/var/run/hw-management/eeprom/vpd_info"
|
|
CACHE_FILE = "/var/cache/sonic/decode-syseeprom/syseeprom_cache"
|
|
|
|
def log_error(msg):
|
|
syslog.openlog(SYSLOG_IDENTIFIER)
|
|
syslog.syslog(syslog.LOG_ERR, msg)
|
|
syslog.closelog()
|
|
|
|
|
|
machine_info = get_machine_info()
|
|
onie_platform = machine_info['onie_platform']
|
|
if 'simx' in onie_platform:
|
|
platform_path = os.path.join('/usr/share/sonic/device', onie_platform)
|
|
subprocess.check_call(['/usr/bin/xxd', '-r', '-p', 'syseeprom.hex', 'syseeprom.bin'], cwd=platform_path)
|
|
CACHE_FILE = os.path.join(platform_path, 'syseeprom.bin')
|
|
|
|
class board(eeprom_tlvinfo.TlvInfoDecoder):
|
|
|
|
_TLV_INFO_MAX_LEN = 256
|
|
RETRIES = 5
|
|
|
|
def __init__(self, name, path, cpld_root, ro):
|
|
for attempt in range(self.RETRIES):
|
|
if not os.path.islink(EEPROM_SYMLINK):
|
|
time.sleep(1)
|
|
else:
|
|
break
|
|
|
|
if not (os.path.exists(EEPROM_SYMLINK) or os.path.isfile(CACHE_FILE)):
|
|
log_error("Nowhere to read syseeprom from! No symlink or cache file found")
|
|
raise RuntimeError("No syseeprom symlink or cache file found")
|
|
|
|
self.eeprom_path = EEPROM_SYMLINK if 'simx' not in onie_platform else CACHE_FILE
|
|
super(board, self).__init__(self.eeprom_path, 0, '', True)
|
|
|
|
def decode_eeprom(self, e):
|
|
original_stdout = sys.stdout
|
|
sys.stdout = StringIO()
|
|
eeprom_tlvinfo.TlvInfoDecoder.decode_eeprom(self, e)
|
|
decode_output = sys.stdout.getvalue()
|
|
sys.stdout = original_stdout
|
|
print(decode_output.replace('\0', ''))
|
|
|