bcc6c64335
- Make DellEMC platform modules Python3 compliant. - Change return type of PSU Platform APIs in DellEMC Z9264, S5232 and Thermal Platform APIs in S5232 to 'float'. - Remove multiple copies of pcisysfs.py. - PEP8 style changes for utility scripts. - Build and install Python3 version of sonic_platform package. - Fix minor Platform API issues.
95 lines
2.3 KiB
Python
Executable File
95 lines
2.3 KiB
Python
Executable File
#!/usr/bin/python3
|
|
# Script to read/write the nvram
|
|
|
|
import sys
|
|
import os
|
|
import getopt
|
|
import struct
|
|
|
|
nvram_resource = '/dev/nvram'
|
|
|
|
def usage():
|
|
''' This is the Usage Method '''
|
|
|
|
print('Utility for NVRAM read/write')
|
|
print('\t\t nvram_rd_wr.py --get --offset <offset>')
|
|
print('\t\t nvram_rd_wr.py --set --val <val> --offset <offset>')
|
|
sys.exit(1)
|
|
|
|
def nvram_reg_read(nvram_resource, offset):
|
|
fd = os.open(nvram_resource, os.O_RDONLY)
|
|
if(fd < 0):
|
|
print('file open failed %s' % nvram_resource)
|
|
return
|
|
if(os.lseek(fd, offset, os.SEEK_SET) != offset):
|
|
print('lseek failed on %s' % nvram_resource)
|
|
return
|
|
buf = os.read(fd, 1)
|
|
reg_val1 = ord(buf)
|
|
print('value %x' % reg_val1)
|
|
os.close(fd)
|
|
|
|
def nvram_reg_write(nvram_resource, offset, val):
|
|
fd = os.open(nvram_resource, os.O_RDWR)
|
|
if(fd < 0):
|
|
print('file open failed %s' % nvram_resource)
|
|
return
|
|
if(os.lseek(fd, offset, os.SEEK_SET) != offset):
|
|
print('lseek failed on %s' % nvram_resource)
|
|
return
|
|
ret = os.write(fd, struct.pack('B', val))
|
|
if(ret != 1):
|
|
print('write failed %d' % ret)
|
|
return
|
|
os.close(fd)
|
|
|
|
def main(argv):
|
|
|
|
''' The main function will read the user input from the
|
|
command line argument and process the request '''
|
|
|
|
opts = ''
|
|
val = ''
|
|
choice = ''
|
|
offset = ''
|
|
|
|
try:
|
|
opts, args = getopt.getopt(argv, "hgs:",
|
|
["val=", "offset=", "help", "get", "set"])
|
|
except getopt.GetoptError:
|
|
usage()
|
|
|
|
if not os.path.exists(nvram_resource):
|
|
print('NVRAM is not initialized')
|
|
sys.exit(1)
|
|
|
|
for opt, arg in opts:
|
|
|
|
if opt in ('-h', '--help'):
|
|
choice = 'help'
|
|
|
|
elif opt in ('-g', '--get'):
|
|
choice = 'get'
|
|
|
|
elif opt in ('-s', '--set'):
|
|
choice = 'set'
|
|
|
|
elif opt == '--offset':
|
|
offset = int(arg, 16) - 0xE
|
|
|
|
elif opt == '--val':
|
|
val = int(arg, 16)
|
|
|
|
if choice == 'get' and offset != '':
|
|
nvram_reg_read(nvram_resource, offset)
|
|
|
|
elif choice == 'set' and offset != '' and val != '':
|
|
nvram_reg_write(nvram_resource, offset, val)
|
|
|
|
else:
|
|
usage()
|
|
|
|
# Calling the main method
|
|
if __name__ == "__main__":
|
|
main(sys.argv[1:])
|