1 //-----------------------------------------------------------------------------
2 // This code is licensed to you under the terms of the GNU GPL, version 2 or,
3 // at your option, any later version. See the LICENSE.txt file for the text of
5 //-----------------------------------------------------------------------------
6 // Main code for the bootloader
7 //-----------------------------------------------------------------------------
11 struct common_area common_area
__attribute__((section(".commonarea")));
12 unsigned int start_addr
, end_addr
, bootrom_unlocked
;
13 extern char _bootrom_start
, _bootrom_end
, _flash_start
, _flash_end
;
15 static void ConfigClocks(void)
17 // we are using a 16 MHz crystal as the basis for everything
18 // slow clock runs at 32Khz typical regardless of crystal
20 // enable system clock and USB clock
21 AT91C_BASE_PMC
->PMC_SCER
= AT91C_PMC_PCK
| AT91C_PMC_UDP
;
23 // enable the clock to the following peripherals
24 AT91C_BASE_PMC
->PMC_PCER
=
32 // worst case scenario, with 16Mhz xtal startup delay is 14.5ms
33 // with a slow clock running at it worst case (max) frequency of 42khz
34 // max startup delay = (14.5ms*42k)/8 = 76 = 0x4C round up to 0x50
36 // enable main oscillator and set startup delay
37 AT91C_BASE_PMC
->PMC_MOR
=
39 PMC_MAIN_OSC_STARTUP_DELAY(0x50);
41 // wait for main oscillator to stabilize
42 while ( !(AT91C_BASE_PMC
->PMC_SR
& PMC_MAIN_OSC_STABILIZED
) )
45 // minimum PLL clock frequency is 80 MHz in range 00 (96 here so okay)
46 // frequency is crystal * multiplier / divisor = 16Mhz * 12 / 2 = 96Mhz
47 AT91C_BASE_PMC
->PMC_PLLR
=
49 PMC_PLL_COUNT_BEFORE_LOCK(0x50) |
50 PMC_PLL_FREQUENCY_RANGE(0) |
51 PMC_PLL_MULTIPLIER(12) |
52 PMC_PLL_USB_DIVISOR(1);
54 // wait for PLL to lock
55 while ( !(AT91C_BASE_PMC
->PMC_SR
& PMC_MAIN_OSC_PLL_LOCK
) )
58 // we want a master clock (MCK) to be PLL clock / 2 = 96Mhz / 2 = 48Mhz
59 // as per datasheet, this register must be programmed in two operations
60 // when changing to PLL, program the prescaler first then the source
61 AT91C_BASE_PMC
->PMC_MCKR
= PMC_CLK_PRESCALE_DIV_2
;
63 // wait for main clock ready signal
64 while ( !(AT91C_BASE_PMC
->PMC_SR
& PMC_MAIN_OSC_MCK_READY
) )
67 // set the source to PLL
68 AT91C_BASE_PMC
->PMC_MCKR
= AT91C_PMC_CSS_PLL_CLK
| PMC_CLK_PRESCALE_DIV_2
;
70 // wait for main clock ready signal
71 while ( !(AT91C_BASE_PMC
->PMC_SR
& PMC_MAIN_OSC_MCK_READY
) )
75 static void Fatal(void)
80 void UsbPacketReceived(uint8_t *packet
, int len
)
83 UsbCommand
*c
= (UsbCommand
*)packet
;
86 if(len
!= sizeof(*c
)) {
93 c
->cmd
= CMD_DEVICE_INFO
;
94 c
->arg
[0] = DEVICE_INFO_FLAG_BOOTROM_PRESENT
| DEVICE_INFO_FLAG_CURRENT_MODE_BOOTROM
|
95 DEVICE_INFO_FLAG_UNDERSTANDS_START_FLASH
;
96 if(common_area
.flags
.osimage_present
) c
->arg
[0] |= DEVICE_INFO_FLAG_OSIMAGE_PRESENT
;
97 UsbSendPacket(packet
, len
);
100 case CMD_SETUP_WRITE
:
101 /* The temporary write buffer of the embedded flash controller is mapped to the
102 * whole memory region, only the last 8 bits are decoded.
104 p
= (volatile uint32_t *)&_flash_start
;
105 for(i
= 0; i
< 12; i
++) {
106 p
[i
+c
->arg
[0]] = c
->d
.asDwords
[i
];
110 case CMD_FINISH_WRITE
:
111 p
= (volatile uint32_t *)&_flash_start
;
112 for(i
= 0; i
< 4; i
++) {
113 p
[i
+60] = c
->d
.asDwords
[i
];
116 /* Check that the address that we are supposed to write to is within our allowed region */
117 if( ((c
->arg
[0]+AT91C_IFLASH_PAGE_SIZE
-1) >= end_addr
) || (c
->arg
[0] < start_addr
) ) {
121 UsbSendPacket(packet
, len
);
123 /* Translate address to flash page and do flash, update here for the 512k part */
124 AT91C_BASE_EFC0
->EFC_FCR
= MC_FLASH_COMMAND_KEY
|
125 MC_FLASH_COMMAND_PAGEN((c
->arg
[0]-(int)&_flash_start
)/AT91C_IFLASH_PAGE_SIZE
) |
126 AT91C_MC_FCMD_START_PROG
;
131 while(!((sr
= AT91C_BASE_EFC0
->EFC_FSR
) & MC_FLASH_STATUS_READY
))
133 if(sr
& (MC_FLASH_STATUS_LOCKE
| MC_FLASH_STATUS_PROGE
)) {
136 UsbSendPacket(packet
, len
);
140 case CMD_HARDWARE_RESET
:
141 USB_D_PLUS_PULLUP_OFF();
142 AT91C_BASE_RSTC
->RSTC_RCR
= RST_CONTROL_KEY
| AT91C_RSTC_PROCRST
;
145 case CMD_START_FLASH
:
146 if(c
->arg
[2] == START_FLASH_MAGIC
) bootrom_unlocked
= 1;
147 else bootrom_unlocked
= 0;
149 int prot_start
= (int)&_bootrom_start
;
150 int prot_end
= (int)&_bootrom_end
;
151 int allow_start
= (int)&_flash_start
;
152 int allow_end
= (int)&_flash_end
;
153 int cmd_start
= c
->arg
[0];
154 int cmd_end
= c
->arg
[1];
156 /* Only allow command if the bootrom is unlocked, or the parameters are outside of the protected
157 * bootrom area. In any case they must be within the flash area.
159 if( (bootrom_unlocked
|| ((cmd_start
>= prot_end
) || (cmd_end
< prot_start
)))
160 && (cmd_start
>= allow_start
) && (cmd_end
<= allow_end
) ) {
161 start_addr
= cmd_start
;
164 start_addr
= end_addr
= 0;
167 UsbSendPacket(packet
, len
);
179 UsbSendPacket(packet
, len
);
183 static void flash_mode(int externally_entered
)
187 bootrom_unlocked
= 0;
195 if(!externally_entered
&& !BUTTON_PRESS()) {
196 /* Perform a reset to leave flash mode */
197 USB_D_PLUS_PULLUP_OFF();
199 AT91C_BASE_RSTC
->RSTC_RCR
= RST_CONTROL_KEY
| AT91C_RSTC_PROCRST
;
202 if(externally_entered
&& BUTTON_PRESS()) {
203 /* Let the user's button press override the automatic leave */
204 externally_entered
= 0;
209 extern char _osimage_entry
;
213 // First set up all the I/O pins; GPIOs configured directly, other ones
214 // just need to be assigned to the appropriate peripheral.
216 // Kill all the pullups, especially the one on USB D+; leave them for
217 // the unused pins, though.
218 AT91C_BASE_PIOA
->PIO_PPUDR
=
236 // (and add GPIO_FPGA_ON)
237 // These pins are outputs
238 AT91C_BASE_PIOA
->PIO_OER
=
245 // PIO controls the following pins
246 AT91C_BASE_PIOA
->PIO_PER
=
253 USB_D_PLUS_PULLUP_OFF();
259 // if 512K FLASH part - TODO make some defines :)
260 if ((AT91C_BASE_DBGU
->DBGU_CIDR
& 0xf00) == 0xa00) {
261 AT91C_BASE_EFC0
->EFC_FMR
=
262 MC_FLASH_MODE_FLASH_WAIT_STATES(1) |
263 MC_FLASH_MODE_MASTER_CLK_IN_MHZ(0x48);
264 AT91C_BASE_EFC1
->EFC_FMR
=
265 MC_FLASH_MODE_FLASH_WAIT_STATES(1) |
266 MC_FLASH_MODE_MASTER_CLK_IN_MHZ(0x48);
268 AT91C_BASE_EFC0
->EFC_FMR
=
269 MC_FLASH_MODE_FLASH_WAIT_STATES(0) |
270 MC_FLASH_MODE_MASTER_CLK_IN_MHZ(48);
273 // Initialize all system clocks
278 int common_area_present
= 0;
279 switch(AT91C_BASE_RSTC
->RSTC_RSR
& AT91C_RSTC_RSTTYP
) {
280 case AT91C_RSTC_RSTTYP_WATCHDOG
:
281 case AT91C_RSTC_RSTTYP_SOFTWARE
:
282 case AT91C_RSTC_RSTTYP_USER
:
283 /* In these cases the common_area in RAM should be ok, retain it if it's there */
284 if(common_area
.magic
== COMMON_AREA_MAGIC
&& common_area
.version
== 1) {
285 common_area_present
= 1;
288 default: /* Otherwise, initialize it from scratch */
292 if(!common_area_present
){
293 /* Common area not ok, initialize it */
294 int i
; for(i
=0; i
<sizeof(common_area
); i
++) { /* Makeshift memset, no need to drag util.c into this */
295 ((char*)&common_area
)[i
] = 0;
297 common_area
.magic
= COMMON_AREA_MAGIC
;
298 common_area
.version
= 1;
299 common_area
.flags
.bootrom_present
= 1;
302 common_area
.flags
.bootrom_present
= 1;
303 if(common_area
.command
== COMMON_AREA_COMMAND_ENTER_FLASH_MODE
) {
304 common_area
.command
= COMMON_AREA_COMMAND_NONE
;
306 } else if(BUTTON_PRESS()) {
308 } else if(*(uint32_t*)&_osimage_entry
== 0xffffffffU
) {
311 // jump to Flash address of the osimage entry point (LSBit set for thumb mode)
312 asm("bx %0\n" : : "r" ( ((int)&_osimage_entry
) | 0x1 ) );