forked from ElTangas/jtag2updi
-
Notifications
You must be signed in to change notification settings - Fork 16
/
UPDI_lo_lvl.cpp
379 lines (305 loc) · 7.11 KB
/
UPDI_lo_lvl.cpp
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
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
/*
UPDI_cmd.cpp
Created: 23-11-2017 22:48:36
Author: JMR_2
*/
// Includes
#include "UPDI_lo_lvl.h"
#include "sys.h"
#include "dbg.h"
// _l versions have long (24-bit) address poimter
// otherwisem, address pointer is 16-bit
// Keys
FLASH<uint8_t> UPDI::Chip_Erase[8] {0x65, 0x73, 0x61, 0x72, 0x45, 0x4D, 0x56, 0x4E};
FLASH<uint8_t> UPDI::NVM_Prog[8] {0x20, 0x67, 0x6F, 0x72, 0x50, 0x4D, 0x56, 0x4E};
FLASH<uint8_t> UPDI::UserRow_Write[8] {0x65, 0x74, 0x26, 0x73, 0x55, 0x4D, 0x56, 0x4E};
/*
STCS - Store to Control Register
*/
void UPDI::stcs(reg r, uint8_t data) {
#ifdef DEBUG_STCS
DBG::updi_stcs(r,data);
#endif
UPDI_io::put(UPDI::SYNCH);
UPDI_io::put(0xC0 + r);
UPDI_io::put(data);
}
/*
LDCS - Load Control Register
*/
uint8_t UPDI::ldcs(reg r) {
#ifdef DEBUG_LDCS
DBG::updi_ldcs(r);
#endif
UPDI_io::put(UPDI::SYNCH);
UPDI_io::put(0x80 + r);
#ifdef DEBUG_LDCS
uint8_t resp= UPDI_io::get();
DBG::updi_res(resp);
return resp;
#else
return UPDI_io::get();
#endif
}
/*
REP - Repeat Command
*/
void UPDI::rep(uint8_t repeats) {
#ifdef DEBUG_REP
DBG::updi_rep(repeats);
#endif
UPDI_io::put(UPDI::SYNCH);
UPDI_io::put(0xA0);
UPDI_io::put(repeats);
}
/*
LDS - Load with Direct Addressing
*/
uint8_t UPDI::lds_b(uint16_t address) {
#ifdef DEBUG_LDS
DBG::updi_lds(address);
#endif
UPDI_io::put(UPDI::SYNCH);
UPDI_io::put(0x04);
UPDI_io::put(address & 0xFF);
UPDI_io::put(address >> 8);
#ifdef DEBUG_LDS
uint8_t resp= UPDI_io::get();
DBG::updi_res(resp);
return resp;
#else
return UPDI_io::get();
#endif
}
uint8_t UPDI::lds_b_l(uint32_t address) {
#ifdef DEBUG_LDS
DBG::updi_lds(address);
#endif
UPDI_io::put(UPDI::SYNCH);
UPDI_io::put(0x08);
UPDI_io::put(address);
UPDI_io::put(address >> 8);
UPDI_io::put(address >> 16);
#ifdef DEBUG_LDS
uint8_t resp= UPDI_io::get();
DBG::updi_res(resp);
return resp;
#else
return UPDI_io::get();
#endif
}
uint16_t UPDI::lds_w(uint16_t address) {
#ifdef DEBUG_LDS
DBG::updi_lds(address);
#endif
UPDI_io::put(UPDI::SYNCH);
UPDI_io::put(0x05);
UPDI_io::put(address);
UPDI_io::put(address >> 8);
#ifdef DEBUG_LDS
uint16_t resp= UPDI_io::get()|(UPDI_io::get() << 8);
DBG::updi_res(resp);
return resp;
#else
return UPDI_io::get() | (UPDI_io::get() << 8);
#endif
}
uint16_t UPDI::lds_w_l(uint32_t address) {
#ifdef DEBUG_LDS
DBG::updi_lds(address);
#endif
UPDI_io::put(UPDI::SYNCH);
UPDI_io::put(0x09);
UPDI_io::put(address);
UPDI_io::put(address >> 8);
UPDI_io::put(address >> 16);
#ifdef DEBUG_LDS
uint16_t resp= UPDI_io::get()|(UPDI_io::get() << 8);
DBG::updi_res(resp);
return resp;
#else
return UPDI_io::get() | (UPDI_io::get() << 8);
#endif
}
/*
STS - Byte oriented Store with Direct Addressing
*/
void UPDI::sts_b(uint16_t address, uint8_t data) {
#ifdef DEBUG_STS
DBG::updi_sts(address,data);
#endif
UPDI_io::put(UPDI::SYNCH);
UPDI_io::put(0x44);
UPDI_io::put(address & 0xFF);
UPDI_io::put(address >> 8);
UPDI_io::get();
UPDI_io::put(data);
UPDI_io::get();
}
void UPDI::sts_b_l(uint32_t address, uint8_t data) {
#ifdef DEBUG_STS
DBG::updi_sts(address,data);
#endif
UPDI_io::put(UPDI::SYNCH);
UPDI_io::put(0x48);
UPDI_io::put(address & 0xFF);
UPDI_io::put((address >> 8) & 0xFF);
UPDI_io::put((address >> 16) & 0xFF);
UPDI_io::get();
UPDI_io::put(data);
UPDI_io::get();
}
/*
STS - Store with Direct Addressing
*/
void UPDI::sts_w(uint16_t address, uint16_t data) {
#ifdef DEBUG_STS
DBG::updi_sts(address,data);
#endif
UPDI_io::put(UPDI::SYNCH);
UPDI_io::put(0x45);
UPDI_io::put(address & 0xFF);
UPDI_io::put(address >> 8);
UPDI_io::get();
UPDI_io::put(data & 0xFF);
UPDI_io::put(data >> 8);
UPDI_io::get();
}
void UPDI::sts_w_l(uint32_t address, uint16_t data) {
#ifdef DEBUG_STS
DBG::updi_sts(address,data);
#endif
UPDI_io::put(UPDI::SYNCH);
UPDI_io::put(0x49);
UPDI_io::put(address & 0xFF);
UPDI_io::put((address >> 8) & 0xFF);
UPDI_io::put((address >> 16) & 0xFF);
UPDI_io::get();
UPDI_io::put(data & 0xFF);
UPDI_io::put(data >> 8);
UPDI_io::get();
}
/*
STPTR - Set pointer for indirect addressing
*/
void UPDI::stptr_b(uint8_t address) {
// No debug code here - byte-addressed STPTR is never actually used!
UPDI_io::put(UPDI::SYNCH);
UPDI_io::put(0x68);
UPDI_io::put(address);
UPDI_io::get();
}
void UPDI::stptr_w(uint16_t address) {
#ifdef DEBUG_STPTR
DBG::updi_st_ptr_w(address);
#endif
UPDI_io::put(UPDI::SYNCH);
UPDI_io::put(0x69);
UPDI_io::put(address & 0xFF);
UPDI_io::put(address >> 8);
UPDI_io::get();
}
void UPDI::stptr_l(uint32_t address) {
#ifdef DEBUG_STPTR
DBG::updi_st_ptr_l(address);
#endif
UPDI_io::put(UPDI::SYNCH);
UPDI_io::put(0x6A);
UPDI_io::put(address & 0xFF);
UPDI_io::put((address >> 8) & 0xFF);
UPDI_io::put((address >> 16) & 0xFF);
UPDI_io::get();
}
void UPDI::stptr_p(uint8_t* addr_p, uint8_t n) {
UPDI_io::put(UPDI::SYNCH);
UPDI_io::put(0x68 + --n);
UPDI_io::put(*(addr_p++));
if (n >= 1)
UPDI_io::put(*(addr_p++));
if (n >= 2)
UPDI_io::put(*addr_p);
UPDI_io::get();
}
/*
LDPTR - Load pointer for indirect addressing
*/
uint8_t UPDI::ldptr_b() {
UPDI_io::put(UPDI::SYNCH);
UPDI_io::put(0x28);
return UPDI_io::get();
}
uint16_t UPDI::ldptr_w() {
UPDI_io::put(UPDI::SYNCH);
UPDI_io::put(0x29);
return UPDI_io::get() | (UPDI_io::get() << 8);
}
uint32_t UPDI::ldptr_l() {
UPDI_io::put(UPDI::SYNCH);
UPDI_io::put(0x2A);
return UPDI_io::get() | (UPDI_io::get() << 8) | (((uint32_t)UPDI_io::get()) << 16);
}
uint8_t UPDI::ld_b() {
UPDI_io::put(UPDI::SYNCH);
UPDI_io::put(0x20);
return UPDI_io::get();
}
uint16_t UPDI::ld_w() {
UPDI_io::put(UPDI::SYNCH);
UPDI_io::put(0x21);
return UPDI_io::get() | (UPDI_io::get() << 8);
}
uint8_t UPDI::ldinc_b() {
UPDI_io::put(UPDI::SYNCH);
UPDI_io::put(0x24);
return UPDI_io::get();
}
uint16_t UPDI::ldinc_w() {
UPDI_io::put(UPDI::SYNCH);
UPDI_io::put(0x25);
return UPDI_io::get() | (UPDI_io::get() << 8);
}
void UPDI::st_b(uint8_t data) {
UPDI_io::put(UPDI::SYNCH);
UPDI_io::put(0x60);
UPDI_io::put(data);
UPDI_io::get();
}
void UPDI::st_w(uint16_t data) {
UPDI_io::put(UPDI::SYNCH);
UPDI_io::put(0x61);
UPDI_io::put(data & 0xFF);
UPDI_io::put(data >> 8);
UPDI_io::get();
}
void UPDI::stinc_b(uint8_t data) {
UPDI_io::put(UPDI::SYNCH);
UPDI_io::put(0x64);
UPDI_io::put(data);
UPDI_io::get();
}
void UPDI::stinc_w(uint16_t data) {
UPDI_io::put(UPDI::SYNCH);
UPDI_io::put(0x65);
UPDI_io::put(data & 0xFF);
UPDI_io::put(data >> 8);
UPDI_io::get();
}
/*
STINC noget variants
For use when the RSD bit is set in control register A
This is done to improve performance when doing busst writes
stinc_b_noget is copy of stinc_b without the get()
stinc_b_b_noget is copy of stinc_w without the get(), and with data expressed as two
bytes instead of a word, since this is more convenient in the single place that it is called from
*/
void UPDI::stinc_b_noget(uint8_t data) {
UPDI_io::put(UPDI::SYNCH);
UPDI_io::put(0x64);
UPDI_io::put(data);
}
void UPDI::stinc_b_b_noget(uint8_t data0, uint8_t data1) {
UPDI_io::put(UPDI::SYNCH);
UPDI_io::put(0x65);
UPDI_io::put(data0);
UPDI_io::put(data1);
}