diff options
| author | Amaury Pouly <amaury.pouly@gmail.com> | 2013-06-13 02:12:01 +0200 |
|---|---|---|
| committer | Amaury Pouly <amaury.pouly@gmail.com> | 2013-06-13 02:25:15 +0200 |
| commit | f9cb5de58020936812653c578c79c79a13bc626c (patch) | |
| tree | d1d6c29207472bea4daa68d2fffd7e8dbfac998b /utils/hwstub/tools/lua/stmp.lua | |
| parent | c5357940ab0108b4102442d07825c44d5be0d22f (diff) | |
| download | rockbox-f9cb5de58020936812653c578c79c79a13bc626c.zip rockbox-f9cb5de58020936812653c578c79c79a13bc626c.tar.gz rockbox-f9cb5de58020936812653c578c79c79a13bc626c.tar.bz2 rockbox-f9cb5de58020936812653c578c79c79a13bc626c.tar.xz | |
hwstub: introduce lua code for the STMP and Creative ZEN V/Mozaic
Change-Id: Ice5f509a2e0d2114436d4760f338b9203ef96691
Diffstat (limited to 'utils/hwstub/tools/lua/stmp.lua')
| -rw-r--r-- | utils/hwstub/tools/lua/stmp.lua | 78 |
1 files changed, 78 insertions, 0 deletions
diff --git a/utils/hwstub/tools/lua/stmp.lua b/utils/hwstub/tools/lua/stmp.lua new file mode 100644 index 0000000..8f93b86 --- /dev/null +++ b/utils/hwstub/tools/lua/stmp.lua @@ -0,0 +1,78 @@ +--- +--- Chip Identification +--- + +STMP = { info = {} } + +local h = HELP:create_topic("STMP") +h:add("This table contains the abstraction of the different device blocks for the STMP.") +h:add("It allows one to use higher-level primitives rather than poking at register directly.") +h:add("Furthermore, it tries as much as possible to hide the differences between the different STMP families.") + +local function identify(name, family, desc) + STMP.chipid = hwstub.dev.stmp.chipid + STMP.info.chip = name + STMP.info.revision = "TA" .. tostring(hwstub.dev.stmp.rev+1) + STMP.desc = desc + STMP.family = family + print("Chip identified as " .. name ..", ROM " .. STMP.info.revision) + if not hwstub.soc:select(desc) then + print("Looking for soc " .. desc .. ": not found. Please load a soc by hand.") + end +end + +local hh = h:create_topic("is_imx233") +hh:add("STMP.is_imx233() returns true if the chip ID reports a i.MX233") + +function STMP.is_imx233() + return hwstub.dev.stmp.chipid == 0x3780 +end + +hh = h:create_topic("is_stmp3700") +hh:add("STMP.is_stmp3700() returns true if the chip ID reports a STMP3700") + +function STMP.is_stmp3700() + return hwstub.dev.stmp.chipid == 0x3700 +end + +hh = h:create_topic("is_stmp3770") +hh:add("STMP.is_stmp3770() returns true if the chip ID reports a STMP3770") + +function STMP.is_stmp3770() + return hwstub.dev.stmp.chipid == 0x37b0 +end + +hh = h:create_topic("is_stmp3600") +hh:add("STMP.is_stmp3600() returns true if the chip ID reports a STMP36xx") + +function STMP.is_stmp3600() + return hwstub.dev.stmp.chipid >= 0x3600 and hwstub.dev.stmp.chipid < 0x3700 +end + +if STMP.is_imx233() then + identify("STMP3780 (aka i.MX233)", "imx233", "imx233") +elseif STMP.is_stmp3700() then + identify("STMP3700", "stmp3700", "stmp3700") +elseif STMP.is_stmp3770() then + identify("STMP3770", "stmp3770", "stmp3700") +elseif STMP.is_stmp3600() then + identify("STMP3600", "stmp3600", "stmp3600") +else + print(string.format("Unable to identify this chip as a STMP: chipid=0x%x", hwstub.dev.stmp.chipid)); +end + +hh = h:create_topic("debug") +hh:add("STMP.debug(...) prints some debug output if STMP.debug_on is true and does nothing otherwise.") + +STMP.debug_on = false + +function STMP.debug(...) + if STMP.debug_on then print(...) end +end + +if STMP.info.chip ~= nil then + require "stmp/digctl" + require "stmp/pinctrl" + require "stmp/lcdif" + require "stmp/pwm" +end
\ No newline at end of file |