blob: a0bfe4a034d3f0bcb4e5e0cef2d7f923b9fb5eae (
plain)
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
|
---
title: Bare-metal ATSAM3X8E
date: 2024-09-16
layout: post
---
Notes on programming bare-metal ATSAM3X8E chips (Arduino Due) using Serial Wire
Debug (SwD) protocol.
## Toolchain
ST-LINK/V2 programmer, OpenOCD, ARM GNU Compiler Toolchain.
## Electrical connections
<table style="border: none; width: 100%;">
<tr style="border: none;">
<td style="border: none; width: 50%; vertical-align: top; background-color: transparent;">
<img src="schematic.png" alt="Pinout" style="width: 100%">
<p style="text-align: center;">Wiring</p>
</td>
<td style="border: none; width: 50%; vertical-align: top; background-color: transparent;">
<img src="connections.jpeg" alt="Circuit" style="width: 100%">
<p style="text-align: center;">Arduino Due</p>
</td>
</tr>
</table>
Arduino Due exposes the ATSAM3X8E's SWD interface via its DEBUG port. The
ST-LINK/v2 programmer connects to that to communicate with the chip.
## Upload procedure
Build. Magic is in the script.ld linker script.
```
$ arm-none-eabi-gcc -mcpu=cortex-m3 -mthumb -T script.ld \
-nostartfiles \
-nostdlib \
-o a.elf main.c
```
Upload using OpenOCD:
```
$ openocd -f openocd-due.cfg
$ telnet localhost 4444
> halt
> at91sam3 gpnvm show
> at91sam3 gpnvm set 1
> at91sam3 gpnvm show
$ openocd -f openocd-due.cfg -c "program a.elf verify reset exit"
```
First command starts OpenOCD. Telnet session halts chip, checks GPNVM bit. If
unset (returns 0), set to 1 and verify. Final command uploads program. See
OpenOCD manual AT91SAM3 flash driver section for full command list.
## GPNVM bits
ARM chips boot into address 0x00000. ATSAM3X8E has ROM and dual-banked flash
(flash0/flash1) at different addresses. GPNVM bits control which maps to
0x00000.
GPNVM1 cleared (default): boots from ROM (Atmel SAM-BA bootloader). GPNVM1=1,
GPNVM2=0: flash0 (0x80000) maps to 0x00000. Both cleared: flash1 maps to
0x00000.
Program goes in flash0, so set GPNVM1=1 to boot our code instead of bootloader.
## Linker script notes
Vector table must be at first flash address--required for ARM chips unless
relocated using VTOR register.
First vector table entry: stack pointer. Initialize to highest memory location
(ATSAM3X8E has descending stack).
Second entry: reset vector. Place initialization code here (zero memory, set
registers) before jumping to main().
Commit:
[3184969](https://git.asciimx.com/bare-metal-arduino-due/commit/?id=318496925ca76668dd9d63c3d060376f489276f8)
|