summaryrefslogtreecommitdiff
path: root/utils/hwstub/tools/lua/stmp.lua
diff options
context:
space:
mode:
Diffstat (limited to 'utils/hwstub/tools/lua/stmp.lua')
-rw-r--r--utils/hwstub/tools/lua/stmp.lua42
1 files changed, 21 insertions, 21 deletions
diff --git a/utils/hwstub/tools/lua/stmp.lua b/utils/hwstub/tools/lua/stmp.lua
index 807c18df8d..ea1cde9c6d 100644
--- a/utils/hwstub/tools/lua/stmp.lua
+++ b/utils/hwstub/tools/lua/stmp.lua
@@ -1,7 +1,6 @@
1--- 1---
2--- Chip Identification 2--- Chip Identification
3--- 3---
4
5STMP = { info = {} } 4STMP = { info = {} }
6 5
7local h = HELP:create_topic("STMP") 6local h = HELP:create_topic("STMP")
@@ -49,18 +48,6 @@ function STMP.is_stmp3600()
49 return hwstub.dev.stmp.chipid >= 0x3600 and hwstub.dev.stmp.chipid < 0x3700 48 return hwstub.dev.stmp.chipid >= 0x3600 and hwstub.dev.stmp.chipid < 0x3700
50end 49end
51 50
52if STMP.is_imx233() then
53 identify("STMP3780 (aka i.MX233)", "imx233", "imx233")
54elseif STMP.is_stmp3700() then
55 identify("STMP3700", "stmp3700", "stmp3700")
56elseif STMP.is_stmp3770() then
57 identify("STMP3770", "stmp3770", "stmp3700")
58elseif STMP.is_stmp3600() then
59 identify("STMP3600", "stmp3600", "stmp3600")
60else
61 print(string.format("Unable to identify this chip as a STMP: chipid=0x%x", hwstub.dev.stmp.chipid));
62end
63
64hh = h:create_topic("debug") 51hh = h:create_topic("debug")
65hh:add("STMP.debug(...) prints some debug output if STMP.debug_on is true and does nothing otherwise.") 52hh:add("STMP.debug(...) prints some debug output if STMP.debug_on is true and does nothing otherwise.")
66 53
@@ -70,11 +57,24 @@ function STMP.debug(...)
70 if STMP.debug_on then print(...) end 57 if STMP.debug_on then print(...) end
71end 58end
72 59
73if STMP.info.chip ~= nil then 60-- init
74 require "stmp/digctl" 61function STMP.init()
75 require "stmp/pinctrl" 62 if STMP.is_imx233() then
76 require "stmp/lcdif" 63 identify("STMP3780 (aka i.MX233)", "imx233", "imx233")
77 require "stmp/pwm" 64 elseif STMP.is_stmp3700() then
78 require "stmp/clkctrl" 65 identify("STMP3700", "stmp3700", "stmp3700")
79 require "stmp/i2c" 66 elseif STMP.is_stmp3770() then
80end \ No newline at end of file 67 identify("STMP3770", "stmp3770", "stmp3700")
68 elseif STMP.is_stmp3600() then
69 identify("STMP3600", "stmp3600", "stmp3600")
70 else
71 print(string.format("Unable to identify this chip as a STMP: chipid=0x%x", hwstub.dev.stmp.chipid));
72 end
73end
74
75require "stmp/digctl"
76require "stmp/pinctrl"
77require "stmp/lcdif"
78require "stmp/pwm"
79require "stmp/clkctrl"
80require "stmp/i2c" \ No newline at end of file