1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
|
---
--- PINCTRL
---
STMP.pinctrl = {}
local h = HELP:get_topic("STMP"):create_topic("pinctrl")
h:add("The STMP.pinctrl table handles the pinctrl device for all STMPs.")
h:add("It provides a simple abstraction to set individual pins.")
local hh = h:create_topic("pin")
hh:add("The STMP.pinctrl.pin(x,yy) function returns a table for the pin BxPyy.")
hh:add("Depending on the STMP family, the following function might be available.")
hh:add("* read() returns the value of the pin (the pin does not need to be configured as GPIO)")
hh:add("* write(x) sets the value of the pin (provided it is a GPIO with output enabled)")
hh:add("* set() is equivalent to write(1)")
hh:add("* clr() is equivalent to write(0)")
hh:add("* enable() enables the gpio output (provided it is configured as GPIO).")
hh:add("* disable() disables the gpio output (provided it is configured as GPIO)")
hh:add("* muxsel(x) set pin function to x, which can be an integer or one of: MAIN, ALT1, ALT2, GPIO")
function STMP.pinctrl.pin(bank,pin)
local t = {
read = function()
return bit32.extract(HW.PINCTRL.DINn[bank].read(), pin)
end,
write = function(val)
if val then t.set() else t.clr() end
end,
set = function()
HW.PINCTRL.DOUTn[bank].set(bit32.lshift(1, pin))
end,
clr = function()
HW.PINCTRL.DOUTn[bank].clr(bit32.lshift(1, pin))
end,
enable = function()
HW.PINCTRL.DOEn[bank].set(bit32.lshift(1, pin))
end,
disable = function()
HW.PINCTRL.DOEn[bank].clr(bit32.lshift(1, pin))
end,
muxsel = function(x)
if type(x) == "string" then
if x == "MAIN" then x = 0
elseif x == "ALT1" then x = 1
elseif x == "ALT2" then x = 2
elseif x == "GPIO" then x = 3
else error("Invalid muxsel string " .. x) end
end
local v = nil
if STMP.is_stmp3600() then
if pin < 16 then
v = HW.PINCTRL.MUXSELLn[bank]
else
v = HW.PINCTRL.MUXSELHn[bank]
end
else
v = HW.PINCTRL.MUXSELn[2 * bank + math.floor(pin / 16)]
end
v.write(bit32.replace(v.read(), x, (pin % 16) * 2, 2))
end,
pull = function(val)
if val then
HW.PINCTRL.PULLn[bank].set(bit32.lshift(1, pin))
else
HW.PINCTRL.PULLn[bank].clr(bit32.lshift(1, pin))
end
end,
}
return t
end
hh = h:create_topic("configure")
hh:add("The STMP.pinctrl.configure(tbl) function configures pins according to a table.")
hh:add("The table must contain a list of subtable, each corresponding to a pin.")
hh:add("Each subtable can configure one or more aspects of a specific pin.")
hh:add("The following characteristics are understood:")
hh:add("* bank: pin bank (mandatory)")
hh:add("* pin: pin number (mandatory) ")
hh:add("* muxsel: same values as STMP.pinctrl.pin().muxsel (optional)")
hh:add("* enable: enable/disable output (optional)")
hh:add("* output: set/clear output (optional)")
hh:add("* pull: enable/disable pullup (optional)")
hh:add("All non-subtable entries are ignored")
hh:add("All unknown parameters in subtablkes are ignored")
hh:add("")
hh:add("Example:")
hh:add("STMP.pinctrl.configure({{bank=0,pin=1,muxsel=\"GPIO\",enable=false},{bank=0,pin=2,muxsel=\"MAIN\"}})")
function STMP.pinctrl.configure(tbl)
if type(tbl) ~= "table" then error("Parameter must be a table") end
for i,v in pairs(tbl) do
if type(v) == "table" then
if v.bank ~= nil and v.pin ~= nil then
local pin = STMP.pinctrl.pin(v.bank,v.pin)
if v.muxsel ~= nil then
STMP.debug(string.format("cfg B%dP%02d muxsel %s", v.bank, v.pin, v.muxsel))
pin.muxsel(v.muxsel)
end
if v.enable ~= nil then
STMP.debug(string.format("cfg B%dP%02d enable %s", v.bank, v.pin, v.enable))
if v.enable then pin.enable()
else pin.disable() end
end
if v.output ~= nil then
STMP.debug(string.format("cfg B%dP%02d output %s", v.bank, v.pin, v.output))
if v.output then pin.set()
else pin.clr() end
end
if v.pull ~= nil then
STMP.debug(string.format("cfg B%dP%02d pull %s", v.bank, v.pin, v.pull))
pin.pull(v.pull)
end
end
end
end
end
hh = h:create_topic("configure_ex")
hh:add("The STMP.pinctrl.configure_ex(tbl) function configures pins according to a table.")
hh:add("It is an enhanced version of configure which handles the different families and packages.")
hh:add("The argument must be a table with one entry per STMP family.")
hh:add("Each entry must a subtable with one subentry per package.")
hh:add("Each subentry must be a valid argument to STMP.pinctrl.configure().")
hh:add("The family names are the one returned by STMP.family.")
hh:add("The table can also contain an entry \"all\" which apply to all families")
hh:add("The package names are the one returned by STMP.digctl.package().")
hh:add("The table can also contain an entry \"all\" which apply to all packages.")
function STMP.pinctrl.configure_ex(tbl)
if type(tbl) ~= "table" then error("Parameter must be a table") end
local pack = STMP.digctl.package()
if tbl[STMP.family] ~= nil then
if tbl[STMP.family][pack] ~= nil then STMP.pinctrl.configure(tbl[STMP.family][pack]) end
if tbl[STMP.family]["all"] ~= nil then STMP.pinctrl.configure(tbl[STMP.family]["all"]) end
end
if tbl["all"] ~= nil then
if tbl["all"][pack] ~= nil then STMP.pinctrl.configure(tbl["all"][pack]) end
if tbl["all"]["all"] ~= nil then STMP.pinctrl.configure(tbl["all"]["all"]) end
end
end
hh = h:create_topic("lcdif")
hh:add("The STMP.pinctrl.lcdif tables provides some high level routines to configure the pins.")
hh:add("It is specialised to configure the LCDIF pins correctly.")
hh:add("Some of the modes may not be available on all STMP families.")
STMP.pinctrl.lcdif = {}
local hhh = hh:create_topic("setup_system")
hhh:add("The STMP.pinctrl.lcdif.setup_system(bus_width,busy) functions configure the LCDIF pins.")
hhh:add("It only take cares of the pins used in system mode and for a specified bus width.")
hhh:add("The handled bus widths are 8, 16 and 18")
hhh:add("The busy pin is configured only if busy is true")
function STMP.pinctrl.lcdif.setup_system(bus_width, busy)
local common =
{
stmp3600 =
{
all =
{
lcd_reset = { bank = 1, pin = 16, muxsel = "MAIN"},
lcd_rs = { bank = 1, pin = 17, muxsel = "MAIN"},
lcd_wr = { bank = 1, pin = 18, muxsel = "MAIN"},
lcd_cs = { bank = 1, pin = 19, muxsel = "MAIN"},
lcd_d0 = {bank = 1, pin = 0, muxsel = "MAIN"},
lcd_d1 = {bank = 1, pin = 1, muxsel = "MAIN"},
lcd_d2 = {bank = 1, pin = 2, muxsel = "MAIN"},
lcd_d3 = {bank = 1, pin = 3, muxsel = "MAIN"},
lcd_d4 = {bank = 1, pin = 4, muxsel = "MAIN"},
lcd_d5 = {bank = 1, pin = 5, muxsel = "MAIN"},
lcd_d6 = {bank = 1, pin = 6, muxsel = "MAIN"},
lcd_d7 = {bank = 1, pin = 7, muxsel = "MAIN"}
}
},
stmp3700 =
{
all =
{
lcd_reset = { bank = 1, pin = 16, muxsel = "MAIN"},
lcd_rs = { bank = 1, pin = 17, muxsel = "MAIN"},
lcd_wr = { bank = 1, pin = 18, muxsel = "MAIN"},
lcd_rd = { bank = 1, pin = 19, muxsel = "MAIN"},
lcd_cs = { bank = 1, pin = 20, muxsel = "MAIN"},
lcd_d0 = {bank = 1, pin = 0, muxsel = "MAIN"},
lcd_d1 = {bank = 1, pin = 1, muxsel = "MAIN"},
lcd_d2 = {bank = 1, pin = 2, muxsel = "MAIN"},
lcd_d3 = {bank = 1, pin = 3, muxsel = "MAIN"},
lcd_d4 = {bank = 1, pin = 4, muxsel = "MAIN"},
lcd_d5 = {bank = 1, pin = 5, muxsel = "MAIN"},
lcd_d6 = {bank = 1, pin = 6, muxsel = "MAIN"},
lcd_d7 = {bank = 1, pin = 7, muxsel = "MAIN"}
}
},
imx233 =
{
all =
{
lcd_reset = { bank = 1, pin = 18, muxsel = "MAIN"},
lcd_rs = { bank = 1, pin = 19, muxsel = "MAIN"},
lcd_wr = { bank = 1, pin = 20, muxsel = "MAIN"},
lcd_cs = { bank = 1, pin = 21, muxsel = "MAIN"},
lcd_d0 = {bank = 1, pin = 0, muxsel = "MAIN"},
lcd_d1 = {bank = 1, pin = 1, muxsel = "MAIN"},
lcd_d2 = {bank = 1, pin = 2, muxsel = "MAIN"},
lcd_d3 = {bank = 1, pin = 3, muxsel = "MAIN"},
lcd_d4 = {bank = 1, pin = 4, muxsel = "MAIN"},
lcd_d5 = {bank = 1, pin = 5, muxsel = "MAIN"},
lcd_d6 = {bank = 1, pin = 6, muxsel = "MAIN"},
lcd_d7 = {bank = 1, pin = 7, muxsel = "MAIN"}
}
}
}
local bus8_15 =
{
stmp3600 =
{
all =
{
lcd_d8 = {bank = 1, pin = 8, muxsel = "MAIN"},
lcd_d9 = {bank = 1, pin = 9, muxsel = "MAIN"},
lcd_d10 = {bank = 1, pin = 10, muxsel = "MAIN"},
lcd_d11 = {bank = 1, pin = 11, muxsel = "MAIN"},
lcd_d12 = {bank = 1, pin = 12, muxsel = "MAIN"},
lcd_d13 = {bank = 1, pin = 13, muxsel = "MAIN"},
lcd_d14 = {bank = 1, pin = 14, muxsel = "MAIN"},
lcd_d15 = {bank = 1, pin = 15, muxsel = "MAIN"}
}
},
stmp3700 =
{
all =
{
lcd_d8 = {bank = 1, pin = 8, muxsel = "MAIN"},
lcd_d9 = {bank = 1, pin = 9, muxsel = "MAIN"},
lcd_d10 = {bank = 1, pin = 10, muxsel = "MAIN"},
lcd_d11 = {bank = 1, pin = 11, muxsel = "MAIN"},
lcd_d12 = {bank = 1, pin = 12, muxsel = "MAIN"},
lcd_d13 = {bank = 1, pin = 13, muxsel = "MAIN"},
lcd_d14 = {bank = 1, pin = 14, muxsel = "MAIN"},
lcd_d15 = {bank = 1, pin = 15, muxsel = "MAIN"}
}
},
imx233 =
{
all =
{
lcd_d8 = {bank = 1, pin = 8, muxsel = "MAIN"},
lcd_d9 = {bank = 1, pin = 9, muxsel = "MAIN"},
lcd_d10 = {bank = 1, pin = 10, muxsel = "MAIN"},
lcd_d11 = {bank = 1, pin = 11, muxsel = "MAIN"},
lcd_d12 = {bank = 1, pin = 12, muxsel = "MAIN"},
lcd_d13 = {bank = 1, pin = 13, muxsel = "MAIN"},
lcd_d14 = {bank = 1, pin = 14, muxsel = "MAIN"},
lcd_d15 = {bank = 1, pin = 15, muxsel = "MAIN"}
}
}
}
local bus16_17 =
{
imx233 =
{
all =
{
lcd_d16 = {bank = 1, pin = 16, muxsel = "MAIN"},
lcd_d17 = {bank = 1, pin = 17, muxsel = "MAIN"},
}
}
}
local busy_pin =
{
stmp3600 =
{
all =
{
lcd_busy = { bank = 1, pin = 21, muxsel = "MAIN"},
}
},
stmp3700 =
{
all =
{
lcd_busy = { bank = 1, pin = 21, muxsel = "MAIN"},
}
},
}
STMP.pinctrl.configure_ex(common)
if bus_width > 8 then
STMP.pinctrl.configure_ex(bus8_15)
end
if bus_width > 16 then
STMP.pinctrl.configure_ex(bus16_17)
end
if busy then
STMP.pinctrl.configure_ex(busy_pin)
end
end
STMP.pinctrl.i2c = {}
local hhh = hh:create_topic("setup")
hhh:add("The STMP.pinctrl.i2c.setup() functions configure the I2C pins.")
function STMP.pinctrl.i2c.setup()
local pins =
{
stmp3700 =
{
all =
{
i2c_scl = { bank = 2, pin = 5, muxsel = "MAIN", pull = true},
i2c_sda = { bank = 2, pin = 6, muxsel = "MAIN", pull = true}
}
},
imx233 =
{
all =
{
i2c_scl = { bank = 0, pin = 30, muxsel = "MAIN", pull = true},
i2c_sda = { bank = 0, pin = 31, muxsel = "MAIN", pull = true}
}
}
}
STMP.pinctrl.configure_ex(pins)
end
|