sonic-buildimage/device/ingrasys/x86_64-ingrasys_s9100-r0/plugins/eeprom.py
kaiyu22 24bad71a60 [platform]: Add plugins for ingrasys (#486)
* Adding two utilities: eeprom.py and sfputil.py
2017-04-10 11:14:08 -07:00

23 lines
766 B
Python

#!/usr/bin/env python
#############################################################################
# Ingrasys S9100
#
# 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:
from sonic_eeprom import eeprom_tlvinfo
except ImportError, e:
raise ImportError (str(e) + "- required module not found")
class board(eeprom_tlvinfo.TlvInfoDecoder):
def __init__(self, name, path, cpld_root, ro):
self.eeprom_path = "/sys/class/i2c-adapter/i2c-9/9-0054/eeprom"
super(board, self).__init__(self.eeprom_path, 0, '', True)