diff options
| author | Amaury Pouly <amaury.pouly@gmail.com> | 2013-08-11 19:18:58 +0200 |
|---|---|---|
| committer | Amaury Pouly <amaury.pouly@gmail.com> | 2013-08-11 19:18:58 +0200 |
| commit | 1b1692ff06a563db90e812a4edf8c1434bc4976d (patch) | |
| tree | 9e6f3ee07949750bb6f90b4fb81896e2a6649a9c /utils/hwstub/tools/lua/dumper.lua | |
| parent | d759bd371050d933a13c3e0b283313f44b7da425 (diff) | |
| download | rockbox-1b1692ff06a563db90e812a4edf8c1434bc4976d.zip rockbox-1b1692ff06a563db90e812a4edf8c1434bc4976d.tar.gz rockbox-1b1692ff06a563db90e812a4edf8c1434bc4976d.tar.bz2 rockbox-1b1692ff06a563db90e812a4edf8c1434bc4976d.tar.xz | |
hwstub: add stmp clkctrl code and generic register dumper
Change-Id: I432853fb4171f07ed23b73dc0499814fe8ce8748
Diffstat (limited to 'utils/hwstub/tools/lua/dumper.lua')
| -rw-r--r-- | utils/hwstub/tools/lua/dumper.lua | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/utils/hwstub/tools/lua/dumper.lua b/utils/hwstub/tools/lua/dumper.lua new file mode 100644 index 0000000..51d9bc7 --- /dev/null +++ b/utils/hwstub/tools/lua/dumper.lua @@ -0,0 +1,38 @@ +DUMPER = {} + +local h = HELP:create_topic("DUMPER") +h:add("This table contains some tools to dump the registers from the device to a file.") + +local hh = h:create_topic("dump_all") +hh:add("The DUMPER.dump_all(file) function dumps all the registers under HW to a file.") +hh:add("If the argument is a string, the function will interpret it as a path.") +hh:add("Otherwise it will be interpreted as an object returned by io.open") + +function DUMPER.dump_all_reg(prefix, hw, f) + for reg, tabl in pairs(hw) do + if type(reg) == "string" and type(tabl) == "table" and tabl.read ~= nil then + f:write(string.format("%s%s = %#08x\n", prefix, tabl.name, tabl.read())) + end + end +end + +function DUMPER.dump_all_dev(prefix, hw, f) + for block, tabl in pairs(hw) do + if type(block) == "string" and type(tabl) == "table" then + DUMPER.dump_all_reg(prefix .. block .. ".", tabl, f) + end + end +end + +function DUMPER.dump_all(file) + local f = file + if type(file) == "string" then + f = io.open(file, "w") + end + if f == nil then error("Cannot open file or write to nil") end + f:write(string.format("HW = %s\n", HW.name)) + DUMPER.dump_all_dev("HW.", HW, f) + if type(file) == "string" then + io.close(f) + end +end
\ No newline at end of file |