mirror of
https://github.com/chipsec/chipsec
synced 2026-06-08 13:31:00 +00:00
bd9cfe0b95
Update usage in argparser
Update for more than one class
Signed-off-by: Sae86 <sara.batllori@intel.com>
87 lines
3.5 KiB
Python
87 lines
3.5 KiB
Python
#CHIPSEC: Platform Security Assessment Framework
|
|
#Copyright (c) 2010-2021, Intel Corporation
|
|
#
|
|
#This program is free software; you can redistribute it and/or
|
|
#modify it under the terms of the GNU General Public License
|
|
#as published by the Free Software Foundation; Version 2.
|
|
#
|
|
#This program is distributed in the hope that it will be useful,
|
|
#but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
#GNU General Public License for more details.
|
|
#
|
|
#You should have received a copy of the GNU General Public License
|
|
#along with this program; if not, write to the Free Software
|
|
#Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
#
|
|
#Contact information:
|
|
#chipsec@intel.com
|
|
#
|
|
|
|
"""
|
|
>>> chipsec_util smbus read <device_addr> <start_offset> [size]
|
|
>>> chipsec_util smbus write <device_addr> <offset> <byte_val>
|
|
|
|
Examples:
|
|
|
|
>>> chipsec_util smbus read 0xA0 0x0 0x100
|
|
"""
|
|
|
|
import time
|
|
|
|
from chipsec.command import BaseCommand
|
|
from chipsec.logger import print_buffer
|
|
from chipsec.hal.smbus import SMBus
|
|
from argparse import ArgumentParser
|
|
|
|
class SMBusCommand(BaseCommand):
|
|
|
|
def requires_driver(self):
|
|
parser = ArgumentParser(prog='chipsec_util smbus', usage=__doc__)
|
|
subparsers = parser.add_subparsers()
|
|
parser_read = subparsers.add_parser('read')
|
|
parser_read.add_argument('dev_addr', type=lambda x: int(x, 16), help='Start Address (hex)')
|
|
parser_read.add_argument('start_off', type=lambda x: int(x, 16), help='Start Offset (hex)')
|
|
parser_read.add_argument('size', type=lambda x: int(x, 16), default=None, nargs='?', help='Size [Default=Byte] (hex)')
|
|
parser_read.set_defaults(func=self.smbus_read)
|
|
|
|
parser_write = subparsers.add_parser('write')
|
|
parser_write.add_argument('dev_addr', type=lambda x: int(x, 16), help='Start Address (hex)')
|
|
parser_write.add_argument('off', type=lambda x: int(x, 16), help='Start Offset (hex)')
|
|
parser_write.add_argument('val', type=lambda x: int(x, 16), help='Byte Value (hex)')
|
|
parser_write.set_defaults(func=self.smbus_write)
|
|
|
|
parser.parse_args(self.argv[2:], namespace=self)
|
|
return True
|
|
|
|
|
|
def smbus_read(self):
|
|
if self.size is not None:
|
|
buf = self._smbus.read_range( self.dev_addr, self.start_off, self.size )
|
|
self.logger.log( "[CHIPSEC] SMBus read: device 0x{:X} offset 0x{:X} size 0x{:X}".format(self.dev_addr, self.start_off, self.size) )
|
|
print_buffer( buf )
|
|
else:
|
|
val = self._smbus.read_byte( self.dev_addr, self.start_off )
|
|
self.logger.log( "[CHIPSEC] SMBus read: device 0x{:X} offset 0x{:X} = 0x{:X}".format(self.dev_addr, self.start_off, val) )
|
|
|
|
def smbus_write(self):
|
|
self.logger.log( "[CHIPSEC] SMBus write: device 0x{:X} offset 0x{:X} = 0x{:X}".format(self.dev_addr, self.off, self.val) )
|
|
self._smbus.write_byte( self.dev_addr, self.off, self.val )
|
|
|
|
def run(self):
|
|
try:
|
|
self._smbus = SMBus( self.cs )
|
|
except BaseException as msg:
|
|
self.logger.error(msg)
|
|
return
|
|
|
|
t = time.time()
|
|
if not self._smbus.is_SMBus_supported():
|
|
self.logger.log( "[CHIPSEC] SMBus controller is not supported" )
|
|
return
|
|
self._smbus.display_SMBus_info()
|
|
self.func()
|
|
self.logger.log( "[CHIPSEC] (smbus) time elapsed {:.3f}".format(time.time() -t) )
|
|
|
|
commands = { 'smbus': SMBusCommand }
|