sonic-buildimage/device/wistron/x86_64-wistron_sw_to3200k-r0/plugins/eeprom.py
RogerX87 33db298d70
[devices]: Update the Wistron platform support in master branch (#12110)
* Update the Wistron platform support in master branch

Signed-off-by: RogerX87 <RogerX87@gmail.com>
2023-02-23 09:08:13 -08:00

27 lines
746 B
Python

#!/usr/bin/env python
try:
import os
from sonic_eeprom import eeprom_tlvinfo
except ImportError as e:
raise ImportError (str(e) + "- required module not found")
def eeprom_check():
filepath="/sys/bus/i2c/devices/0-0056/eeprom"
if os.path.isfile(filepath):
return 1 #now board, 0x56
else:
return 0 #now board, 0x57
class board(eeprom_tlvinfo.TlvInfoDecoder):
_TLV_INFO_MAX_LEN = 256
def __init__(self, name, path, cpld_root, ro):
ret=eeprom_check()
if ret==1:
self.eeprom_path = "/sys/bus/i2c/devices/0-0056/eeprom"
else:
self.eeprom_path = "/sys/bus/i2c/devices/47-0057/eeprom"
super(board, self).__init__(self.eeprom_path, 0, '', True)