From: Ville Syrjälä <[email protected]>

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ä <[email protected]>
---
 tools/quick_dump/quick_dump.py | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/tools/quick_dump/quick_dump.py b/tools/quick_dump/quick_dump.py
index 6111b5d..390cafa 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('')
-- 
1.8.1.5

_______________________________________________
Intel-gfx mailing list
[email protected]
http://lists.freedesktop.org/mailman/listinfo/intel-gfx

Reply via email to