ced3b3f310
Add support for Accton as9726-32d platform This pull request is based on as9716-32d, so I reference as9716-32d to create new model: as9726-32d. This module do not need led driver to control led, FPGA can handle it. I also implement API2.0(sonic_platform) for this model, CPLD driver, PSU driver, Fan driver to control these HW behavior.
14 lines
394 B
Python
Executable File
14 lines
394 B
Python
Executable File
try:
|
|
from sonic_eeprom import eeprom_tlvinfo
|
|
|
|
except ImportError as e:
|
|
raise ImportError(str(e) + "- required module not found")
|
|
|
|
|
|
class board(eeprom_tlvinfo.TlvInfoDecoder):
|
|
_TLV_INFO_MAX_LEN = 256
|
|
|
|
def __init__(self, name, path, cpld_root, ro):
|
|
self.eeprom_path = "/sys/bus/i2c/devices/1-0057/eeprom"
|
|
super(board, self).__init__(self.eeprom_path, 0, '', True)
|