-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdevices.lua
More file actions
236 lines (221 loc) · 10.5 KB
/
Copy pathdevices.lua
File metadata and controls
236 lines (221 loc) · 10.5 KB
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
local Object = require'oo'
local NXPpart = Object:inherit{}
function NXPpart.bootloader_ram (self)
if self.family == 'lpc111x' or self.family == 'lpc13xx' or self.family == 'lpc122x' then
return 0x260
elseif self.family == 'lpc15xx' then
return 0x9e4
elseif self.family == 'lpc17xx' then
return 0x200
else
error ('unknown bootloader ram size for device: ' .. self.name)
end
end
function NXPpart.ram_start (self)
if self.family == 'lpc15xx' then
return 0x02000000
else
return 0x10000000
end
end
function NXPpart.free_ram_start (self)
return self:ram_start() + self:bootloader_ram()
end
function NXPpart.free_ram_size (self)
-- stack = 256, IAP = 32
return self.main_ram * 1024 - self:bootloader_ram() - 256 - 32
end
function NXPpart.sector_size (self, s)
if self.const_sector_size then
return self.const_sector_size * 1024
elseif s < 16 then
return 4*1024
else
return 32*1024
end
end
function NXPpart.sector_start_addr (self, s)
if self.const_sector_size then
return s * self.const_sector_size * 1024
elseif s < 16 then
return s * 4*1024
else
return 16 * 4*1024 + (s - 16) * 32*1024
end
end
function NXPpart.addr2sector (self, addr)
if self.const_sector_size then
return math.floor(addr / self.const_sector_size / 1024)
else
local sector = math.floor(addr / 4 / 1024)
if sector < 16 or self.family == 'lpc122x' then
return sector
else
return math.floor ((sector - 16) / 8) + 16
end
end
end
local devices = {}
local function add_part (id, family, name, package, flash, ram)
local main_ram
if ram == 4 or ram == 8 or ram == 16 or family == 'lpc15xx' then
main_ram = ram
elseif ram == 32 or ram == 64 then
main_ram = ram / 2
end
local const_sector_size = false
if family == 'lpc111x' or family == 'lpc122x' or family == 'lpc15xx' then
const_sector_size = 4
end
local uuencode = true
if family == 'lpc15xx' then
uuencode = false
end
devices[id] = NXPpart:inherit{
name = name,
family = family,
package = package,
flash = flash,
ram = ram,
main_ram = main_ram,
const_sector_size = const_sector_size,
uuencode = uuencode
}
end
-- FIXME: package cannot be determined solely from part-id
-- LPC111x
add_part (0x0A07102B, 'lpc111x', 'LPC1110FD20', '?', 4, 1)
add_part (0x1A07102B, 'lpc111x', 'LPC1110FD20', '?', 4, 1)
add_part (0x0A16D02B, 'lpc111x', 'LPC1111FDH20/002', '?', 8, 2)
add_part (0x1A16D02B, 'lpc111x', 'LPC1111FDH20/002', '?', 8, 2)
add_part (0x041E502B, 'lpc111x', 'LPC1111FHN33/101', '?', 8, 2)
add_part (0x2516D02B, 'lpc111x', 'LPC1111FHN33/101', '?', 8, 2)
add_part (0x2516D02B, 'lpc111x', 'LPC1111FHN33/102', '?', 8, 2)
add_part (0x00010013, 'lpc111x', 'LPC1111FHN33/103', '?', 8, 2)
add_part (0x00010013, 'lpc111x', 'LPC1111JHN33/103', '?', 8, 2)
add_part (0x0416502B, 'lpc111x', 'LPC1111FHN33/201', '?', 8, 4)
add_part (0x2516902B, 'lpc111x', 'LPC1111FHN33/201', '?', 8, 4)
add_part (0x2516902B, 'lpc111x', 'LPC1111FHN33/202', '?', 8, 4)
add_part (0x00010012, 'lpc111x', 'LPC1111FHN33/203', '?', 8, 4)
add_part (0x00010012, 'lpc111x', 'LPC1111JHN33/203', '?', 8, 4)
add_part (0x0A24902B, 'lpc111x', 'LPC1112FD20/102', '?', 16, 4)
add_part (0x1A24902B, 'lpc111x', 'LPC1112FD20/102', '?', 16, 4)
add_part (0x0A24902B, 'lpc111x', 'LPC1112FDH20/102', '?', 16, 4)
add_part (0x1A24902B, 'lpc111x', 'LPC1112FDH20/102', '?', 16, 4)
add_part (0x0A24902B, 'lpc111x', 'LPC1112FDH28/102', '?', 16, 4)
add_part (0x1A24902B, 'lpc111x', 'LPC1112FDH28/102', '?', 16, 4)
add_part (0x042D502B, 'lpc111x', 'LPC1112FHN33/101', '?', 16, 2)
add_part (0x2524D02B, 'lpc111x', 'LPC1112FHN33/101', '?', 16, 2)
add_part (0x2524D02B, 'lpc111x', 'LPC1112FHN33/102', '?', 16, 2)
add_part (0x2524D02B, 'lpc111x', 'LPC1112FHI33/102', '?', 16, 2)
add_part (0x0425502B, 'lpc111x', 'LPC1112FHN33/201', '?', 16, 2)
add_part (0x2524902B, 'lpc111x', 'LPC1112FHN33/201', '?', 16, 2)
add_part (0x2524902B, 'lpc111x', 'LPC1112FHN33/202', '?', 16, 2)
add_part (0x2524902B, 'lpc111x', 'LPC1112FHN24/202', '?', 16, 2)
add_part (0x2524902B, 'lpc111x', 'LPC1112FHI33/202', '?', 16, 2)
add_part (0x00020023, 'lpc111x', 'LPC1112FHN33/103', '?', 16, 2)
add_part (0x00020023, 'lpc111x', 'LPC1112JHN33/103', '?', 16, 2)
add_part (0x00020022, 'lpc111x', 'LPC1112FHN33/203', '?', 16, 2)
add_part (0x00020022, 'lpc111x', 'LPC1112JHN33/203', '?', 16, 2)
add_part (0x00020022, 'lpc111x', 'LPC1112FHI33/203', '?', 16, 2)
add_part (0x00020022, 'lpc111x', 'LPC1112JHI33/203', '?', 16, 2)
add_part (0x0434502B, 'lpc111x', 'LPC1113FHN33/201', '?', 24, 4)
add_part (0x2532902B, 'lpc111x', 'LPC1113FHN33/201', '?', 24, 4)
add_part (0x2532902B, 'lpc111x', 'LPC1113FHN33/202', '?', 24, 4)
add_part (0x0434102B, 'lpc111x', 'LPC1113FHN33/301', '?', 24, 8)
add_part (0x2532102B, 'lpc111x', 'LPC1113FHN33/301', '?', 24, 8)
add_part (0x2532102B, 'lpc111x', 'LPC1113FHN33/302', '?', 24, 8)
add_part (0x0434102B, 'lpc111x', 'LPC1113FBD48/301', '?', 24, 8)
add_part (0x2532102B, 'lpc111x', 'LPC1113FBD48/301', '?', 24, 8)
add_part (0x2532102B, 'lpc111x', 'LPC1113FBD48/302', '?', 24, 8)
add_part (0x00030030, 'lpc111x', 'LPC1113FBD48/303', '?', 24, 8)
add_part (0x00030030, 'lpc111x', 'LPC1113JBD48/303', '?', 24, 8)
add_part (0x00030032, 'lpc111x', 'LPC1113FHN33/203', '?', 24, 4)
add_part (0x00030032, 'lpc111x', 'LPC1113JHN33/203', '?', 24, 4)
add_part (0x00030030, 'lpc111x', 'LPC1113FHN33/303', '?', 24, 8)
add_part (0x00030030, 'lpc111x', 'LPC1113JHN33/303', '?', 24, 8)
add_part (0x0A40902B, 'lpc111x', 'LPC1114FDH28/102', '?', 32, 4)
add_part (0x1A40902B, 'lpc111x', 'LPC1114FDH28/102', '?', 32, 4)
add_part (0x0A40902B, 'lpc111x', 'LPC1114FN28/102', '?', 32, 4)
add_part (0x1A40902B, 'lpc111x', 'LPC1114FN28/102', '?', 32, 4)
add_part (0x0444502B, 'lpc111x', 'LPC1114FHN33/201', '?', 32, 4)
add_part (0x2540902B, 'lpc111x', 'LPC1114FHN33/201', '?', 32, 4)
add_part (0x2540902B, 'lpc111x', 'LPC1114FHN33/202', '?', 32, 4)
add_part (0x0444102B, 'lpc111x', 'LPC1114FHN33/301', '?', 32, 8)
add_part (0x2540102B, 'lpc111x', 'LPC1114FHN33/301', '?', 32, 8)
add_part (0x2540102B, 'lpc111x', 'LPC1114FHN33/302', '?', 32, 8)
add_part (0x2540102B, 'lpc111x', 'LPC1114FHI33/302', '?', 32, 8)
add_part (0x0444102B, 'lpc111x', 'LPC1114FBD48/301', '?', 32, 8)
add_part (0x2540102B, 'lpc111x', 'LPC1114FBD48/301', '?', 32, 8)
add_part (0x2540102B, 'lpc111x', 'LPC1114FBD48/302', '?', 32, 8)
add_part (0x00040040, 'lpc111x', 'LPC1114FBD48/303', '?', 32, 8)
add_part (0x00040040, 'lpc111x', 'LPC1114JBD48/303', '?', 32, 8)
add_part (0x00040042, 'lpc111x', 'LPC1114FHN33/203', '?', 32, 4)
add_part (0x00040042, 'lpc111x', 'LPC1114JHN33/203', '?', 32, 4)
add_part (0x00040040, 'lpc111x', 'LPC1114FHN33/303', '?', 32, 8)
add_part (0x00040040, 'lpc111x', 'LPC1114JHN33/303', '?', 32, 8)
add_part (0x00040060, 'lpc111x', 'LPC1114FBD48/323', '?', 32, 8)
add_part (0x00040060, 'lpc111x', 'LPC1114JBD48/323', '?', 32, 8)
add_part (0x00040070, 'lpc111x', 'LPC1114FBD48/333', '?', 32, 8)
add_part (0x00040070, 'lpc111x', 'LPC1114JBD48/333', '?', 32, 8)
add_part (0x00040070, 'lpc111x', 'LPC1114FHN33/333', '?', 32, 8)
add_part (0x00040070, 'lpc111x', 'LPC1114JHN33/333', '?', 32, 8)
add_part (0x00040040, 'lpc111x', 'LPC1114FHI33/303', '?', 32, 8)
add_part (0x00040040, 'lpc111x', 'LPC1114JHI33/303', '?', 32, 8)
add_part (0x2540102B, 'lpc111x', 'LPC11D14FBD100/302', '?', 32, 8)
add_part (0x00050080, 'lpc111x', 'LPC1115FBD48/303', '?', 64, 8)
add_part (0x00050080, 'lpc111x', 'LPC1115JBD48/303', '?', 64, 8)
add_part (0x00050080, 'lpc111x', 'LPC1115FET48/303', '?', 64, 8)
add_part (0x00050080, 'lpc111x', 'LPC1115JET48/303', '?', 64, 8)
add_part (0x1421102B, 'lpc111x', 'LPC11C12FBD48/301', '?', 16, 8)
add_part (0x1440102B, 'lpc111x', 'LPC11C14FBD48/301', '?', 32, 8)
add_part (0x1431102B, 'lpc111x', 'LPC11C22FBD48/301', '?', 16, 8)
add_part (0x1430102B, 'lpc111x', 'LPC11C24FBD48/301', '?', 32, 8)
-- LPC13xx
add_part (0x2C42502B, 'lpc13xx', 'LPC1311', 'HVQFN33', 8, 4)
add_part (0x1816902B, 'lpc13xx', 'LPC1311/01', 'HVQFN33', 8, 4)
add_part (0x2C40102B, 'lpc13xx', 'LPC1313', 'HVQFN33', 32, 8)
add_part (0x2C40102B, 'lpc13xx', 'LPC1313', 'LQFP48', 32, 8)
add_part (0x1830102B, 'lpc13xx', 'LPC1313/01', 'HVQFN33', 32, 8)
add_part (0x1830102B, 'lpc13xx', 'LPC1313/01', 'LQFP48', 32, 8)
add_part (0x3D01402B, 'lpc13xx', 'LPC1342', 'HVQFN33', 16, 4)
add_part (0x3D00002B, 'lpc13xx', 'LPC1343', 'HVQFN33', 32, 8)
add_part (0x3D00002B, 'lpc13xx', 'LPC1343', 'LQFP48', 32, 8)
-- LPC17xx
add_part (0x26113F37, 'lpc17xx', 'LPC1769', 'LQFP100', 512, 64)
add_part (0x26013F37, 'lpc17xx', 'LPC1768', 'LQFP100', 512, 64)
add_part (0x26013F37, 'lpc17xx', 'LPC1768', 'TFBGA100', 512, 64)
add_part (0x26012837, 'lpc17xx', 'LPC1767', 'LQFP100', 512, 64)
add_part (0x26013F33, 'lpc17xx', 'LPC1766', 'LQFP100', 256, 64)
add_part (0x26013733, 'lpc17xx', 'LPC1765', 'LQFP100', 256, 64)
add_part (0x26011922, 'lpc17xx', 'LPC1764', 'LQFP100', 128, 32)
add_part (0x26012033, 'lpc17xx', 'LPC1763', 'LQFP100', 256, 64)
add_part (0x25113737, 'lpc17xx', 'LPC1759', 'LQFP80', 512, 64)
add_part (0x25013F37, 'lpc17xx', 'LPC1758', 'LQFP80', 512, 64)
add_part (0x25011723, 'lpc17xx', 'LPC1756', 'LQFP80', 256, 32)
add_part (0x25011722, 'lpc17xx', 'LPC1754', 'LQFP80', 128, 32)
add_part (0x25001121, 'lpc17xx', 'LPC1752', 'LQFP80', 64, 16)
add_part (0x25001118, 'lpc17xx', 'LPC1751', 'LQFP80', 32, 8)
add_part (0x25001110, 'lpc17xx', 'LPC1751', 'LQFP80', 32, 8)
-- LPC12xx
add_part (0x3670002B, 'lpc122x', 'LPC12D27-301', 'LQFP100', 128, 8)
add_part (0x3670002B, 'lpc122x', 'LPC1227-301', 'LQFP64', 128, 8)
add_part (0x3670002B, 'lpc122x', 'LPC1227-301', 'LQFP48', 128, 8)
add_part (0x3660002B, 'lpc122x', 'LPC1226-301', 'LQFP64', 96, 8)
add_part (0x3660002B, 'lpc122x', 'LPC1226-301', 'LQFP48', 96, 8)
add_part (0x3652002B, 'lpc122x', 'LPC1225-321', 'LQFP64', 80, 8)
add_part (0x3650002B, 'lpc122x', 'LPC1225-301', 'LQFP64', 64, 8)
add_part (0x3652002B, 'lpc122x', 'LPC1225-321', 'LQFP48', 80, 8)
add_part (0x3650002B, 'lpc122x', 'LPC1225-301', 'LQFP48', 64, 8)
add_part (0x3642C02B, 'lpc122x', 'LPC1224-121', 'LQFP64', 48, 4)
add_part (0x3640C02B, 'lpc122x', 'LPC1224-101', 'LQFP64', 32, 4)
add_part (0x3642C02B, 'lpc122x', 'LPC1224-121', 'LQFP48', 48, 4)
add_part (0x3640C02B, 'lpc122x', 'LPC1224-101', 'LQFP48', 32, 4)
-- LPC15xx
add_part (0x00001549, 'lpc15xx', 'LPC1549', 'LQFP..', 256, 36)
add_part (0x00001548, 'lpc15xx', 'LPC1548', 'LQFP..', 128, 20)
add_part (0x00001547, 'lpc15xx', 'LPC1547', 'LQFP..', 64, 12)
add_part (0x00001519, 'lpc15xx', 'LPC1519', 'LQFP..', 256, 36)
add_part (0x00001518, 'lpc15xx', 'LPC1518', 'LQFP..', 128, 20)
add_part (0x00001517, 'lpc15xx', 'LPC1517', 'LQFP..', 64, 12)
return devices