diff options
author | Ville Syrjälä <ville.syrjala@linux.intel.com> | 2013-06-26 20:57:33 +0300 |
---|---|---|
committer | Ben Widawsky <ben@bwidawsk.net> | 2013-06-30 22:06:38 -0700 |
commit | e87c2536f6e19dfd77fc2ede2a5a63e2675ff077 (patch) | |
tree | 2e852523877078fea568b2bcd32276156fc77fc7 /tools | |
parent | de92969a402da1ae070ca76efd8721138f46f376 (diff) |
quick_dump: Document the register definition format
Add a small comment about what the elements in the register
tuple mean.
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Signed-off-by: Ben Widawsky <ben@bwidawsk.net>
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/quick_dump/quick_dump.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tools/quick_dump/quick_dump.py b/tools/quick_dump/quick_dump.py index 390cafa4..8fdd1693 100755 --- a/tools/quick_dump/quick_dump.py +++ b/tools/quick_dump/quick_dump.py @@ -1,5 +1,12 @@ #!/usr/bin/env python3 +# register definition format: +# ('register name', 'register offset', 'register type') +# +# register types: +# '' - normal register +# 'DPIO' - DPIO register + import argparse import os import sys |