From de92969a402da1ae070ca76efd8721138f46f376 Mon Sep 17 00:00:00 2001 From: Ville Syrjälä Date: Wed, 26 Jun 2013 20:57:32 +0300 Subject: quick_dump: Add automagic DPIO register support MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Repurpose the (currently unused) third element in the register definition tuple to indicate the type of the register. 'DPIO' is the only special register type for now. Signed-off-by: Ville Syrjälä Signed-off-by: Ben Widawsky --- tools/quick_dump/quick_dump.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'tools/quick_dump') diff --git a/tools/quick_dump/quick_dump.py b/tools/quick_dump/quick_dump.py index 6111b5d8..390cafa4 100755 --- a/tools/quick_dump/quick_dump.py +++ b/tools/quick_dump/quick_dump.py @@ -13,7 +13,10 @@ def parse_file(file): print('-' * 54) for line in file: register = ast.literal_eval(line) - val = reg.read(register[1]) + if register[2] == 'DPIO': + val = reg.dpio_read(register[1]) + else: + val = reg.read(register[1]) intreg = int(register[1], 16) print('{0:#010x} | {1:<28} | {2:#010x}'.format(intreg, register[0], val)) print('') -- cgit v1.2.3