-
Notifications
You must be signed in to change notification settings - Fork 71
/
sp_driver.S
794 lines (636 loc) · 24 KB
/
sp_driver.S
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
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
;******************************************************************************
;*
;* XMEGA Self-programming driver assembly source file.
;*
;* This file contains the low-level implementations for the
;* XMEGA Self-programming driver. It is written for the GCC Assembler.
;*
;* If any SPM instructions are used, the linker file must define
;* a segment named bootloader which must be located in the device Boot section.
;* This can be done by passing "-Wl,--section-start=.BOOT=0x020000" to the
;* linker with the correct address for the boot section.
;*
;* None of these routines clean up the NVM Command Register after use.
;* It is therefore important to write NVM_CMD_NO_OPERATION_gc (0x00) to this
;* register when you are finished using any of the functions in this driver.
;*
;* For all routines, it is important that any interrupt handlers do not
;* perform any NVM operations. The user must implement a scheme for mutually
;* exclusive access to the NVM. However, the 4-cycle timeout will work fine,
;* since writing to the Configuration Change Protection register (CCP)
;* automatically disables interrupts for 4 instruction cycles.
;*
;* Note on IAR calling convention:
;* Scratch registers: R18-R27, R30-R31
;* Preserved registers: R2-R17, R28-R29
;* Parameter registers: R8-R25 (2-,4-, or 8- byte alignment)
;* Return registers: R18-R25 (up to 64-bit)
;*
;* Application note:
;* AVR1316: XMEGA Self-programming
;*
;* Documentation
;* For comprehensive code documentation, supported compilers, compiler
;* settings and supported devices see readme.html
;*
;* Atmel Corporation: http:;www.atmel.com \n
;* Support email: [email protected]
;*
;* $Revision: 1153 $
;* $Date: 2007-12-18 09:48:23 +0100 (ti, 18 des 2007) $
;*
;* Copyright (c) 2007, Atmel Corporation All rights reserved.
;*
;* Redistribution and use in source and binary forms, with or without
;* modification, are permitted provided that the following conditions are met:
;*
;* 1. Redistributions of source code must retain the above copyright notice,
;* this list of conditions and the following disclaimer.
;*
;* 2. Redistributions in binary form must reproduce the above copyright notice,
;* this list of conditions and the following disclaimer in the documentation
;* and/or other materials provided with the distribution.
;*
;* 3. The name of ATMEL may not be used to endorse or promote products derived
;* from this software without specific prior written permission.
;*
;* THIS SOFTWARE IS PROVIDED BY ATMEL "AS IS" AND ANY EXPRESS OR IMPLIED
;* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
;* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE EXPRESSLY AND
;* SPECIFICALLY DISCLAIMED. IN NO EVENT SHALL ATMEL BE LIABLE FOR ANY DIRECT,
;* INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
;* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
;* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
;* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
;* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
;* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
;******************************************************************************
#include <avr/io.h>
;#include "Flash_Defines.h"
/* Define the size of the flash page if not defined in the header files. */
#ifndef APP_SECTION_PAGE_SIZE
#error APP_SECTION_PAGE_SIZE must be defined if not defined in header files.
//#define APP_SECTION_PAGE_SIZE 512
#endif /*APP_SECTION_PAGE_SIZE*/
/* Defines not yet included in header file. */
#define NVM_CMD_NO_OPERATION_gc (0x00<<0) // Noop/Ordinary LPM
#define NVM_CMD_READ_USER_SIG_ROW_gc (0x01<<0) // Read user signature row
#define NVM_CMD_READ_CALIB_ROW_gc (0x02<<0) // Read calibration row
#define NVM_CMD_READ_EEPROM_gc (0x06<<0) // Read EEPROM
#define NVM_CMD_READ_FUSES_gc (0x07<<0) // Read fuse byte
#define NVM_CMD_WRITE_LOCK_BITS_gc (0x08<<0) // Write lock bits
#define NVM_CMD_ERASE_USER_SIG_ROW_gc (0x18<<0) // Erase user signature row
#define NVM_CMD_WRITE_USER_SIG_ROW_gc (0x1A<<0) // Write user signature row
#define NVM_CMD_ERASE_APP_gc (0x20<<0) // Erase Application Section
#define NVM_CMD_ERASE_APP_PAGE_gc (0x22<<0) // Erase Application Section page
#define NVM_CMD_LOAD_FLASH_BUFFER_gc (0x23<<0) // Load Flash page buffer
#define NVM_CMD_WRITE_APP_PAGE_gc (0x24<<0) // Write Application Section page
#define NVM_CMD_ERASE_WRITE_APP_PAGE_gc (0x25<<0) // Erase-and-write Application Section page
#define NVM_CMD_ERASE_FLASH_BUFFER_gc (0x26<<0) // Erase/flush Flash page buffer
#define NVM_CMD_ERASE_BOOT_PAGE_gc (0x2A<<0) // Erase Boot Section page
#define NVM_CMD_WRITE_BOOT_PAGE_gc (0x2C<<0) // Write Boot Section page
#define NVM_CMD_ERASE_WRITE_BOOT_PAGE_gc (0x2D<<0) // Erase-and-write Boot Section page
#define NVM_CMD_ERASE_EEPROM_gc (0x30<<0) // Erase EEPROM
#define NVM_CMD_ERASE_EEPROM_PAGE_gc (0x32<<0) // Erase EEPROM page
#define NVM_CMD_LOAD_EEPROM_BUFFER_gc (0x33<<0) // Load EEPROM page buffer
#define NVM_CMD_WRITE_EEPROM_PAGE_gc (0x34<<0) // Write EEPROM page
#define NVM_CMD_ERASE_WRITE_EEPROM_PAGE_gc (0x35<<0) // Erase-and-write EEPROM page
#define NVM_CMD_ERASE_EEPROM_BUFFER_gc (0x36<<0) // Erase/flush EEPROM page buffer
#define NVM_CMD_APP_CRC_gc (0x38<<0) // Generate Application section CRC
#define NVM_CMD_BOOT_CRC_gc (0x39<<0) // Generate Boot Section CRC
#define NVM_CMD_FLASH_RANGE_CRC_gc (0x3A<<0) // Generate Flash Range CRC
#define CCP_SPM_gc (0x9D<<0) // SPM Instruction Protection
#define CCP_IOREG_gc (0xD8<<0) // IO Register Protection
; ---
; This routine reads a byte from flash given by the address in
; R25:R24:R23:R22.
;
; Input:
; R25:R24:R23:R22.
;
; Returns:
; R24 - Read byte.
; ---
.section .text
.global SP_ReadByte
SP_ReadByte:
in r19, RAMPZ ; Save RAMPZ.
out RAMPZ, r24 ; Load RAMPZ with the MSB of the address.
movw ZL, r22 ; Move the low bytes to the Z pointer
elpm r24, Z ; Extended load byte from address pointed to by Z.
out RAMPZ, r19 ; Restore RAMPZ register.
ret
; ---
; This routine reads a word from flash given by the address in
; R25:R24:R23:R22.
;
; Input:
; R25:R24:R23:R22.
;
; Returns:
; R25:R24 - Read word.
; ---
.section .text
.global SP_ReadWord
SP_ReadWord:
in r19, RAMPZ ; Save RAMPZ.
out RAMPZ, r24 ; Load RAMPZ with the MSB of the address.
movw ZL, r22 ; Move the low bytes to the Z pointer
elpm r24, Z+ ; Extended load byte from address pointed to by Z.
elpm r25, Z ; Extended load byte from address pointed to by Z.
out RAMPZ, r19 ; Restore RAMPZ register.
ret
; ---
; This routine reads the calibration byte given by the index in R24.
;
; Input:
; R24 - Byte index.
;
; Returns:
; R24 - Calibration byte.
; ---
.section .text
.global SP_ReadCalibrationByte
SP_ReadCalibrationByte:
ldi r20, NVM_CMD_READ_CALIB_ROW_gc ; Prepare NVM command in R20.
rjmp SP_CommonLPM ; Jump to common LPM code.
; ---
; This routine reads the user signature byte given by the index in R25:R24.
;
; Input:
; R25:R24 - Byte index.
;
; Returns:
; R24 - Signature byte.
; ---
.section .text
.global SP_ReadUserSignatureByte
SP_ReadUserSignatureByte:
ldi r20, NVM_CMD_READ_USER_SIG_ROW_gc ; Prepare NVM command in R20.
rjmp SP_CommonLPM ; Jump to common LPM code.
; ---
; This routine reads the fuse byte given by the index in R24.
;
; Input:
; R24 - Byte index.
;
; Returns:
; R24 - Fuse byte.
; ---
.section .text
.global SP_ReadFuseByte
SP_ReadFuseByte:
sts NVM_ADDR0, r24 ; Load fuse byte index into NVM Address Register 0.
clr r24 ; Prepare a zero.
sts NVM_ADDR1, r24 ; Load zero into NVM Address Register 1.
sts NVM_ADDR2, r24 ; Load zero into NVM Address Register 2.
ldi r20, NVM_CMD_READ_FUSES_gc ; Prepare NVM command in R20.
rcall SP_CommonCMD ; Jump to common NVM Action code.
movw r24, r22 ; Move low byte to 1 byte return address.
ret
; ---
; This routine sets the lock bits from R24. Note that unlocking is only
; possible by doing a full chip erase, not available from software.
;
; Input:
; R24 - Lock bits.
;
; Returns:
; Nothing.
; ---
.section .text
.global SP_WriteLockBits
SP_WriteLockBits:
sts NVM_DATA0, r24 ; Load lock bits into NVM Data Register 0.
ldi r20, NVM_CMD_WRITE_LOCK_BITS_gc ; Prepare NVM command in R20.
rjmp SP_CommonCMD ; Jump to common NVM Action code.
; ---
; This routine reads the lock bits.
;
; Input:
; Nothing.
;
; Returns:
; R24 - Lock bits.
; ---
.section .text
.global SP_ReadLockBits
SP_ReadLockBits:
lds r24, NVM_LOCKBITS ; Read IO-mapped lock bits.
ret
; ---
; This routine erases the user signature row.
;
; Input:
; Nothing.
;
; Returns:
; Nothing.
; ---
.section .text
.global SP_EraseUserSignatureRow
SP_EraseUserSignatureRow:
in r19, RAMPZ ; Save RAMPZ, which is restored in SP_CommonSPM.
ldi r20, NVM_CMD_ERASE_USER_SIG_ROW_gc ; Prepare NVM command in R20.
jmp SP_CommonSPM ; Jump to common SPM code.
; ---
; This routine writes the flash buffer to the user signature row.
;
; Input:
; Nothing.
;
; Returns:
; Nothing.
; ---
.section .text
.global SP_WriteUserSignatureRow
SP_WriteUserSignatureRow:
in r19, RAMPZ ; Save RAMPZ, which is restored in SP_CommonSPM.
ldi r20, NVM_CMD_WRITE_USER_SIG_ROW_gc ; Prepare NVM command in R20.
jmp SP_CommonSPM ; Jump to common SPM code.
; ---
; This routine erases the entire application section.
;
; Input:
; Nothing.
;
; Returns:
; Nothing.
; ---
.section .text
.global SP_EraseApplicationSection
SP_EraseApplicationSection:
in r19, RAMPZ ; Save RAMPZ, which is restored in SP_CommonSPM.
clr r24 ; Prepare a zero.
clr r25
out RAMPZ, r24 ; Point into Application area.
ldi r20, NVM_CMD_ERASE_APP_gc ; Prepare NVM command in R20.
jmp SP_CommonSPM ; Jump to common SPM code.
; ---
; This routine erases the page at address R25:R24:R23:R22 in the application
; section. The address can point anywhere inside the page.
;
; Input:
; R25:R24:R23:R22 - Byte address into Flash page.
;
; Returns:
; Nothing.
; ---
.section .text
.global SP_EraseApplicationPage
SP_EraseApplicationPage:
in r19, RAMPZ ; Save RAMPZ, which is restored in SP_CommonSPM.
out RAMPZ, r24 ; Load RAMPZ with the MSB of the address.
movw r24, r22 ; Move low bytes for ZH:ZL to R25:R24
ldi r20, NVM_CMD_ERASE_APP_PAGE_gc ; Prepare NVM command in R20.
jmp SP_CommonSPM ; Jump to common SPM code.
; ---
; This routine writes the word from R23:R22 into the Flash page buffer at
; address R25:R24.
;
; Input:
; R25:R24 - Byte address into Flash page.
; R23:R22 - Word to write.
;
; Returns:
; Nothing.
; ---
.section .text
.global SP_LoadFlashWord
SP_LoadFlashWord:
in r19, RAMPZ ; Save RAMPZ, which is restored in SP_CommonSPM.
movw r0, r22 ; Prepare flash word in R1:R0.
ldi r20, NVM_CMD_LOAD_FLASH_BUFFER_gc ; Prepare NVM command in R20.
jmp SP_CommonSPM ; Jump to common SPM code.
; ---
; This routine writes an entire page from the SRAM buffer at
; address R25:R24 into the Flash page buffer.
;
; Note that you must define "-Wl,--section-start=.BOOT=0x020000" for the
; linker to place this function in the boot section with the correct address.
;
; Input:
; R25:R24 - 16-bit pointer to SRAM buffer.
;
; Returns:
; Nothing.
; ---
.section .text
.global SP_LoadFlashPage
SP_LoadFlashPage:
clr ZL ; Clear low byte of Z, to indicate start of page.
clr ZH ; Clear high byte of Z, to indicate start of page.
out RAMPX, r1 ; Clear RAMPX pointer.
movw XL, r24 ; Load X with data buffer address.
ldi r20, NVM_CMD_LOAD_FLASH_BUFFER_gc ; Prepare NVM command code in R20.
sts NVM_CMD, r20 ; Load it into NVM command register.
#if APP_SECTION_PAGE_SIZE > 512
ldi r22, ((APP_SECTION_PAGE_SIZE/2) >> 8)
#endif
ldi r21, ((APP_SECTION_PAGE_SIZE/2)&0xFF) ; Load R21 with page word count.
ldi r18, CCP_SPM_gc ; Prepare Protect SPM signature in R16.
SP_LoadFlashPage_1:
ld r0, X+ ; Load low byte from buffer into R0.
ld r1, X+ ; Load high byte from buffer into R1.
sts CCP, r18 ; Enable SPM operation (this disables interrupts for 4 cycles).
spm ; Self-program.
adiw ZL, 2 ; Move Z to next Flash word.
#if APP_SECTION_PAGE_SIZE > 512
subi r21, 1 ; Decrement word count.
sbci r22, 0
#else
dec r21 ; Decrement word count.
#endif
brne SP_LoadFlashPage_1 ; Repeat until word cont is zero.
clr r1 ; Clear R1 for GCC _zero_reg_ to function properly.
ret
; ---
; This routine reads an entire Flash page from address R23:R22:R21:R20 into the
; SRAM buffer at address R25:R24.
;
;
; Input:
; R23:R22:R21:R20 - Flash byte address.
; R25:R24 - 16-bit pointer to SRAM buffer.
;
; Returns:
; Nothing.
; ---
.section .text
.global SP_ReadFlashPage
SP_ReadFlashPage:
in r19, RAMPZ ; Save RAMPZ during assembly.
out RAMPZ, r22 ; Load RAMPZ with MSB of address
movw ZL, r20 ; Load Z with Flash address.
out RAMPX, r1 ; Load RAMPX with data pointer
movw XL, r24 ; Load X with data buffer address.
ldi r20, NVM_CMD_NO_OPERATION_gc ; Prepare NVM command code in R20.
sts NVM_CMD, r20 ; Set NVM command to No Operation so that LPM reads Flash.
#if APP_SECTION_PAGE_SIZE > 512
ldi r22, ((APP_SECTION_PAGE_SIZE/2) >> 8) ; Load R22 with byte cont high if flash page is large.
#endif
ldi r21, ((APP_SECTION_PAGE_SIZE)&0xFF) ; Load R21 with byte count.
SP_ReadFlashPage_1:
elpm r24, Z+ ; Load Flash bytes into R18:r19
elpm r25, Z+
st X+, r24 ; Write bytes to buffer.
st X+, r25
#if APP_SECTION_PAGE_SIZE > 512
subi r21, 1 ; Decrement word count.
sbci r22, 0
#else
dec r21 ; Decrement word count.
#endif
brne SP_ReadFlashPage_1 ; Repeat until byte count is zero.
out RAMPZ, r19
ret
; ---
; This routine writes the page buffer to the Flash page at address R25:R24:R23:R22
; in the application section. The address can point anywhere inside the page.
;
; Input:
; R25:R24:R23:R22 - Byte address into Flash page.
;
; Returns:
; Nothing.
; ---
.section .text
.global SP_WriteApplicationPage
SP_WriteApplicationPage:
in r19, RAMPZ ; Save RAMPZ, which is restored in SP_CommonSPM.
out RAMPZ, r24 ; Load RAMPZ with the MSB of the address.
movw r24, r22 ; Move low bytes of address to ZH:ZL from R23:R22
ldi r20, NVM_CMD_WRITE_APP_PAGE_gc ; Prepare NVM command in R20.
jmp SP_CommonSPM ; Jump to common SPM code.
; ---
; This routine erases first and then writes the page buffer to the
; Flash page at address R25:R24:R23:R22 in the application section. The address
; can point anywhere inside the page.
;
; Input:
; R25:R24:R23:R22 - Byte address into Flash page.
;
; Returns:
; Nothing.
; ---
.section .text
.global SP_EraseWriteApplicationPage
SP_EraseWriteApplicationPage:
in r19, RAMPZ ; Save RAMPZ, which is restored in SP_CommonSPM.
out RAMPZ, r24 ; Load RAMPZ with the MSB of the address.
movw r24, r22 ; Move low bytes of address to ZH:ZL from R23:R22
ldi r20, NVM_CMD_ERASE_WRITE_APP_PAGE_gc ; Prepare NVM command in R20.
jmp SP_CommonSPM ; Jump to common SPM code.
; ---
; This routine flushes the Flash page buffer.
;
; Input:
; Nothing.
;
; Returns:
; Nothing.
; ---
.section .text
.global SP_EraseFlashBuffer
SP_EraseFlashBuffer:
in r19, RAMPZ ; Save RAMPZ, which is restored in SP_CommonSPM.
ldi r20, NVM_CMD_ERASE_FLASH_BUFFER_gc ; Prepare NVM command in R20.
jmp SP_CommonSPM ; Jump to common SPM code.
; ---
; This routine erases the page at address R25:R24:R23:R22 in the Boot section. The
; address can point anywhere inside the page.
;
; Input:
; R25:R24:R23:R22 - Byte address into Flash page.
;
; Returns:
; Nothing.
; ---
.section .text
.global SP_EraseBootPage
SP_EraseBootPage:
in r19, RAMPZ ; Save RAMPZ, which is restored in SP_CommonSPM.
out RAMPZ, r24 ; Load RAMPZ with the MSB of the address.
movw r24, r22 ; Move low bytes of address to ZH:ZL from R23:R22
ldi r20, NVM_CMD_ERASE_BOOT_PAGE_gc ; Prepare NVM command in R20.
jmp SP_CommonSPM ; Jump to common SPM code.
; ---
; This routine writes the page buffer to the Flash page at address R25:R24:R23:R22
; in the BOOT section. The address can point anywhere inside the page.
;
; Input:
; R25:R24:R23:R22 - Byte address into Flash page.
;
; Returns:
; Nothing.
; ---
.section .text
.global SP_WriteBootPage
SP_WriteBootPage:
in r19, RAMPZ ; Save RAMPZ, which is restored in SP_CommonSPM.
out RAMPZ, r24 ; Load RAMPZ with the MSB of the address.
movw r24, r22 ; Move low bytes of address to ZH:ZL from R23:R22
ldi r20, NVM_CMD_WRITE_BOOT_PAGE_gc ; Prepare NVM command in R20.
jmp SP_CommonSPM ; Jump to common SPM code.
; ---
; This routine erases first and then writes the page buffer to the
; Flash page at address R25:R24:R23:R22 in the Boot section. The address
; can point anywhere inside the page.
;
; Input:
; R25:R24:R23:R22 - Byte address into Flash page.
;
; Returns:
; Nothing.
; ---
.section .text
.global SP_EraseWriteBootPage
SP_EraseWriteBootPage:
in r19, RAMPZ ; Save RAMPZ, which is restored in SP_CommonSPM.
out RAMPZ, r24 ; Load RAMPZ with the MSB of the address.
movw r24, r22 ; Move low bytes of address to ZH:ZL from R23:R22
ldi r20, NVM_CMD_ERASE_WRITE_BOOT_PAGE_gc ; Prepare NVM command in R20.
jmp SP_CommonSPM ; Jump to common SPM code.
; ---
; This routine calculates a CRC for the application section.
;
; Input:
; Nothing.
;
; Returns:
; R25:R24:R23:R22 - 32-bit CRC result (actually only 24-bit used).
; ---
.section .text
.global SP_ApplicationCRC
SP_ApplicationCRC:
ldi r20, NVM_CMD_APP_CRC_gc ; Prepare NVM command in R20.
rjmp SP_CommonCMD ; Jump to common NVM Action code.
; ---
; This routine calculates a CRC for the Boot section.
;
; Input:
; Nothing.
;
; Returns:
; R25:R24:R23:R22 - 32-bit CRC result (actually only 24-bit used).
; ---
.section .text
.global SP_BootCRC
SP_BootCRC:
ldi r20, NVM_CMD_BOOT_CRC_gc ; Prepare NVM command in R20.
rjmp SP_CommonCMD ; Jump to common NVM Action code.
; ---
; This routine locks all further access to SPM operations until next reset.
;
; Input:
; Nothing.
;
; Returns:
; Nothing.
; ---
.section .text
.global SP_LockSPM
SP_LockSPM:
ldi r18, CCP_IOREG_gc ; Prepare Protect IO-register signature in R18.
sts CCP, r18 ; Enable IO-register operation (this disables interrupts for 4 cycles).
ldi r18, NVM_SPMLOCK_bm ; Prepare bitmask for locking SPM into R18.
sts NVM_CTRLB, r18 ; Load bitmask into NVM Control Register B, which locks SPM.
ret
; ---
; This routine wait for the SPM to finish and clears the command register.
;
; Note that this routine is blocking, and will halt any execution until the SPM
; is finished.
;
; Input:
; Nothing.
;
; Returns:
; Nothing.
; ---
.section .text
.global SP_WaitForSPM
SP_WaitForSPM:
lds r18, NVM_STATUS ; Load the NVM Status register.
sbrc r18, NVM_NVMBUSY_bp ; Check if bit is cleared.
rjmp SP_WaitForSPM ; Repeat check if bit is not cleared.
clr r18
sts NVM_CMD, r18 ; Clear up command register to NO_OPERATION.
ret
; ---
; This routine is called by several other routines, and contains common code
; for executing an NVM command, including the return statement itself.
;
; If the operation (NVM command) requires the NVM Address registers to be
; prepared, this must be done before jumping to this routine.
;
; Note that R25:R24:R23:R22 is used for returning results, even if the
; C-domain calling function only expects a single byte or even void.
;
; Input:
; R20 - NVM Command code.
;
; Returns:
; R25:R24:R23:R22 - 32-bit result from NVM operation.
; ---
.section .text
SP_CommonCMD:
sts NVM_CMD, r20 ; Load command into NVM Command register.
ldi r18, CCP_IOREG_gc ; Prepare Protect IO-register signature in R18.
ldi r19, NVM_CMDEX_bm ; Prepare bitmask for setting NVM Command Execute bit into R19.
sts CCP, r18 ; Enable IO-register operation (this disables interrupts for 4 cycles).
sts NVM_CTRLA, r19 ; Load bitmask into NVM Control Register A, which executes the command.
lds r22, NVM_DATA0 ; Load NVM Data Register 0 into R22.
lds r23, NVM_DATA1 ; Load NVM Data Register 1 into R23.
lds r24, NVM_DATA2 ; Load NVM Data Register 2 into R24.
clr r25 ; Clear R25 in order to return a clean 32-bit value.
ret
; ---
; This routine is called by several other routines, and contains common code
; for executing an LPM command, including the return statement itself.
;
; Note that R24 is used for returning results, even if the
; C-domain calling function expects a void.
;
; Input:
; R25:R24 - Low bytes of Z pointer.
; R20 - NVM Command code.
;
; Returns:
; R24 - Result from LPM operation.
; ---
.section .text
SP_CommonLPM:
movw ZL, r24 ; Load index into Z.
sts NVM_CMD, r20 ; Load prepared command into NVM Command register.
lpm r24,Z
ret
; ---
; This routine is called by several other routines, and contains common code
; for executing an SPM command, including the return statement itself.
;
; If the operation (SPM command) requires the R1:R0 registers to be
; prepared, this must be done before jumping to this routine.
;
; Note that you must define "-Wl,--section-start=.BOOT=0x020000" for the
; linker to place this function in the boot section with the correct address.
;
; Input:
; R1:R0 - Optional input to SPM command.
; R25:R24 - Low bytes of Z pointer.
; R20 - NVM Command code.
;
; Returns:
; Nothing.
; ---
.section .text
SP_CommonSPM:
movw ZL, r24 ; Load R25:R24 into Z.
sts NVM_CMD, r20 ; Load prepared command into NVM Command register.
ldi r18, CCP_SPM_gc ; Prepare Protect SPM signature in R18
sts CCP, r18 ; Enable SPM operation (this disables interrupts for 4 cycles).
spm ; Self-program.
clr r1 ; Clear R1 for GCC _zero_reg_ to function properly.
out RAMPZ, r19 ; Restore RAMPZ register.
ret
; END OF FILE