3 Copyright (C) Dean Camera, 2012.
5 dean [at] fourwalledcubicle [dot] com
10 Copyright 2012 Dean Camera (dean [at] fourwalledcubicle [dot] com)
12 Permission to use, copy, modify, distribute, and sell this
13 software and its documentation for any purpose is hereby granted
14 without fee, provided that the above copyright notice appear in
15 all copies and that both that the copyright notice and this
16 permission notice and warranty disclaimer appear in supporting
17 documentation, and that the name of the author not be used in
18 advertising or publicity pertaining to distribution of the
19 software without specific, written prior permission.
21 The author disclaim all warranties with regard to this
22 software, including all implied warranties of merchantability
23 and fitness. In no event shall the author be liable for any
24 special, indirect or consequential damages or any damages
25 whatsoever resulting from loss of use, data or profits, whether
26 in an action of contract, negligence or other tortious action,
27 arising out of or in connection with the use or performance of
33 * Main source file for the CDC class bootloader. This file contains the complete bootloader logic.
36 #define INCLUDE_FROM_BOOTLOADERCDC_C
37 #include "BootloaderCDC.h"
39 /** Contains the current baud rate and other settings of the first virtual serial port. This must be retained as some
40 * operating systems will not open the port unless the settings can be set successfully.
42 static CDC_LineEncoding_t LineEncoding
= { .BaudRateBPS
= 0,
43 .CharFormat
= CDC_LINEENCODING_OneStopBit
,
44 .ParityType
= CDC_PARITY_None
,
47 /** Current address counter. This stores the current address of the FLASH or EEPROM as set by the host,
48 * and is used when reading or writing to the AVRs memory (either FLASH or EEPROM depending on the issued
51 static uint32_t CurrAddress
;
53 /** Flag to indicate if the bootloader should be running, or should exit and allow the application code to run
54 * via a watchdog reset. When cleared the bootloader will exit, starting the watchdog and entering an infinite
55 * loop until the AVR restarts and the application runs.
57 static bool RunBootloader
= true;
59 /** Magic lock for forced application start. If the HWBE fuse is programmed and BOOTRST is unprogrammed, the bootloader
60 * will start if the /HWB line of the AVR is held low and the system is reset. However, if the /HWB line is still held
61 * low when the application attempts to start via a watchdog reset, the bootloader will re-start. If set to the value
62 * \ref MAGIC_BOOT_KEY the special init function \ref Application_Jump_Check() will force the application to start.
64 uint32_t MagicBootKey ATTR_NO_INIT
;
67 /** Special startup routine to check if the bootloader was started via a watchdog reset, and if the magic application
68 * start key has been loaded into \ref MagicBootKey. If the bootloader started via the watchdog and the key is valid,
69 * this will force the user application to start via a software jump.
71 void Application_Jump_Check(void)
73 // If the reset source was the bootloader and the key is correct, clear it and jump to the application
74 if ((MCUSR
& (1 << WDRF
)) && (MagicBootKey
== MAGIC_BOOT_KEY
))
77 ((void (*)(void))0x0000)();
81 /** Main program entry point. This routine configures the hardware required by the bootloader, then continuously
82 * runs the bootloader processing routine until instructed to soft-exit, or hard-reset via the watchdog to start
83 * the loaded application code.
87 /* Setup hardware required for the bootloader */
90 /* Turn on first LED on the board to indicate that the bootloader has started */
91 LEDs_SetAllLEDs(LEDS_LED1
);
93 /* Enable global interrupts so that the USB stack can function */
102 /* Disconnect from the host - USB interface will be reset later along with the AVR */
105 /* Unlock the forced application start mode of the bootloader if it is restarted */
106 MagicBootKey
= MAGIC_BOOT_KEY
;
108 /* Enable the watchdog and force a timeout to reset the AVR */
109 wdt_enable(WDTO_250MS
);
114 /** Configures all hardware required for the bootloader. */
115 static void SetupHardware(void)
117 /* Disable watchdog if enabled by bootloader/fuses */
118 MCUSR
&= ~(1 << WDRF
);
121 /* Disable clock division */
122 clock_prescale_set(clock_div_1
);
124 /* Relocate the interrupt vector table to the bootloader section */
126 MCUCR
= (1 << IVSEL
);
128 /* Initialize the USB and other board hardware drivers */
132 /* Bootloader active LED toggle timer initialization */
133 TIMSK1
= (1 << TOIE1
);
134 TCCR1B
= ((1 << CS11
) | (1 << CS10
));
137 /** ISR to periodically toggle the LEDs on the board to indicate that the bootloader is active. */
138 ISR(TIMER1_OVF_vect
, ISR_BLOCK
)
140 LEDs_ToggleLEDs(LEDS_LED1
| LEDS_LED2
);
143 /** Event handler for the USB_ConfigurationChanged event. This configures the device's endpoints ready
144 * to relay data to and from the attached USB host.
146 void EVENT_USB_Device_ConfigurationChanged(void)
148 /* Setup CDC Notification, Rx and Tx Endpoints */
149 Endpoint_ConfigureEndpoint(CDC_NOTIFICATION_EPADDR
, EP_TYPE_INTERRUPT
,
150 CDC_NOTIFICATION_EPSIZE
, 1);
152 Endpoint_ConfigureEndpoint(CDC_TX_EPADDR
, EP_TYPE_BULK
, CDC_TXRX_EPSIZE
, 1);
154 Endpoint_ConfigureEndpoint(CDC_RX_EPADDR
, EP_TYPE_BULK
, CDC_TXRX_EPSIZE
, 1);
157 /** Event handler for the USB_ControlRequest event. This is used to catch and process control requests sent to
158 * the device from the USB host before passing along unhandled control requests to the library for processing
161 void EVENT_USB_Device_ControlRequest(void)
163 /* Ignore any requests that aren't directed to the CDC interface */
164 if ((USB_ControlRequest
.bmRequestType
& (CONTROL_REQTYPE_TYPE
| CONTROL_REQTYPE_RECIPIENT
)) !=
165 (REQTYPE_CLASS
| REQREC_INTERFACE
))
170 /* Activity - toggle indicator LEDs */
171 LEDs_ToggleLEDs(LEDS_LED1
| LEDS_LED2
);
173 /* Process CDC specific control requests */
174 switch (USB_ControlRequest
.bRequest
)
176 case CDC_REQ_GetLineEncoding
:
177 if (USB_ControlRequest
.bmRequestType
== (REQDIR_DEVICETOHOST
| REQTYPE_CLASS
| REQREC_INTERFACE
))
179 Endpoint_ClearSETUP();
181 /* Write the line coding data to the control endpoint */
182 Endpoint_Write_Control_Stream_LE(&LineEncoding
, sizeof(CDC_LineEncoding_t
));
187 case CDC_REQ_SetLineEncoding
:
188 if (USB_ControlRequest
.bmRequestType
== (REQDIR_HOSTTODEVICE
| REQTYPE_CLASS
| REQREC_INTERFACE
))
190 Endpoint_ClearSETUP();
192 /* Read the line coding data in from the host into the global struct */
193 Endpoint_Read_Control_Stream_LE(&LineEncoding
, sizeof(CDC_LineEncoding_t
));
201 #if !defined(NO_BLOCK_SUPPORT)
202 /** Reads or writes a block of EEPROM or FLASH memory to or from the appropriate CDC data endpoint, depending
203 * on the AVR910 protocol command issued.
205 * \param[in] Command Single character AVR910 protocol command indicating what memory operation to perform
207 static void ReadWriteMemoryBlock(const uint8_t Command
)
212 bool HighByte
= false;
215 BlockSize
= (FetchNextCommandByte() << 8);
216 BlockSize
|= FetchNextCommandByte();
218 MemoryType
= FetchNextCommandByte();
220 if ((MemoryType
!= 'E') && (MemoryType
!= 'F'))
222 /* Send error byte back to the host */
223 WriteNextResponseByte('?');
228 /* Check if command is to read memory */
231 /* Re-enable RWW section */
236 if (MemoryType
== 'F')
238 /* Read the next FLASH byte from the current FLASH page */
239 #if (FLASHEND > 0xFFFF)
240 WriteNextResponseByte(pgm_read_byte_far(CurrAddress
| HighByte
));
242 WriteNextResponseByte(pgm_read_byte(CurrAddress
| HighByte
));
245 /* If both bytes in current word have been read, increment the address counter */
249 HighByte
= !HighByte
;
253 /* Read the next EEPROM byte into the endpoint */
254 WriteNextResponseByte(eeprom_read_byte((uint8_t*)(intptr_t)(CurrAddress
>> 1)));
256 /* Increment the address counter after use */
263 uint32_t PageStartAddress
= CurrAddress
;
265 if (MemoryType
== 'F')
267 boot_page_erase(PageStartAddress
);
268 boot_spm_busy_wait();
273 if (MemoryType
== 'F')
275 /* If both bytes in current word have been written, increment the address counter */
278 /* Write the next FLASH word to the current FLASH page */
279 boot_page_fill(CurrAddress
, ((FetchNextCommandByte() << 8) | LowByte
));
281 /* Increment the address counter after use */
286 LowByte
= FetchNextCommandByte();
289 HighByte
= !HighByte
;
293 /* Write the next EEPROM byte from the endpoint */
294 eeprom_write_byte((uint8_t*)((intptr_t)(CurrAddress
>> 1)), FetchNextCommandByte());
296 /* Increment the address counter after use */
301 /* If in FLASH programming mode, commit the page after writing */
302 if (MemoryType
== 'F')
304 /* Commit the flash page to memory */
305 boot_page_write(PageStartAddress
);
307 /* Wait until write operation has completed */
308 boot_spm_busy_wait();
311 /* Send response byte back to the host */
312 WriteNextResponseByte('\r');
317 /** Retrieves the next byte from the host in the CDC data OUT endpoint, and clears the endpoint bank if needed
318 * to allow reception of the next data packet from the host.
320 * \return Next received byte from the host in the CDC data OUT endpoint
322 static uint8_t FetchNextCommandByte(void)
324 /* Select the OUT endpoint so that the next data byte can be read */
325 Endpoint_SelectEndpoint(CDC_RX_EPADDR
);
327 /* If OUT endpoint empty, clear it and wait for the next packet from the host */
328 while (!(Endpoint_IsReadWriteAllowed()))
332 while (!(Endpoint_IsOUTReceived()))
334 if (USB_DeviceState
== DEVICE_STATE_Unattached
)
339 /* Fetch the next byte from the OUT endpoint */
340 return Endpoint_Read_8();
343 /** Writes the next response byte to the CDC data IN endpoint, and sends the endpoint back if needed to free up the
344 * bank when full ready for the next byte in the packet to the host.
346 * \param[in] Response Next response byte to send to the host
348 static void WriteNextResponseByte(const uint8_t Response
)
350 /* Select the IN endpoint so that the next data byte can be written */
351 Endpoint_SelectEndpoint(CDC_TX_EPADDR
);
353 /* If IN endpoint full, clear it and wait until ready for the next packet to the host */
354 if (!(Endpoint_IsReadWriteAllowed()))
358 while (!(Endpoint_IsINReady()))
360 if (USB_DeviceState
== DEVICE_STATE_Unattached
)
365 /* Write the next byte to the IN endpoint */
366 Endpoint_Write_8(Response
);
369 /** Task to read in AVR910 commands from the CDC data OUT endpoint, process them, perform the required actions
370 * and send the appropriate response back to the host.
372 static void CDC_Task(void)
374 /* Select the OUT endpoint */
375 Endpoint_SelectEndpoint(CDC_RX_EPADDR
);
377 /* Check if endpoint has a command in it sent from the host */
378 if (!(Endpoint_IsOUTReceived()))
381 /* Read in the bootloader command (first byte sent from host) */
382 uint8_t Command
= FetchNextCommandByte();
386 RunBootloader
= false;
388 /* Send confirmation byte back to the host */
389 WriteNextResponseByte('\r');
391 else if (Command
== 'T')
393 FetchNextCommandByte();
395 /* Send confirmation byte back to the host */
396 WriteNextResponseByte('\r');
398 else if ((Command
== 'L') || (Command
== 'P'))
400 /* Send confirmation byte back to the host */
401 WriteNextResponseByte('\r');
403 else if (Command
== 't')
405 /* Return ATMEGA128 part code - this is only to allow AVRProg to use the bootloader */
406 WriteNextResponseByte(0x44);
407 WriteNextResponseByte(0x00);
409 else if (Command
== 'a')
411 /* Indicate auto-address increment is supported */
412 WriteNextResponseByte('Y');
414 else if (Command
== 'A')
416 /* Set the current address to that given by the host */
417 CurrAddress
= (FetchNextCommandByte() << 9);
418 CurrAddress
|= (FetchNextCommandByte() << 1);
420 /* Send confirmation byte back to the host */
421 WriteNextResponseByte('\r');
423 else if (Command
== 'p')
425 /* Indicate serial programmer back to the host */
426 WriteNextResponseByte('S');
428 else if (Command
== 'S')
430 /* Write the 7-byte software identifier to the endpoint */
431 for (uint8_t CurrByte
= 0; CurrByte
< 7; CurrByte
++)
432 WriteNextResponseByte(SOFTWARE_IDENTIFIER
[CurrByte
]);
434 else if (Command
== 'V')
436 WriteNextResponseByte('0' + BOOTLOADER_VERSION_MAJOR
);
437 WriteNextResponseByte('0' + BOOTLOADER_VERSION_MINOR
);
439 else if (Command
== 's')
441 WriteNextResponseByte(AVR_SIGNATURE_3
);
442 WriteNextResponseByte(AVR_SIGNATURE_2
);
443 WriteNextResponseByte(AVR_SIGNATURE_1
);
445 else if (Command
== 'e')
447 /* Clear the application section of flash */
448 for (uint32_t CurrFlashAddress
= 0; CurrFlashAddress
< BOOT_START_ADDR
; CurrFlashAddress
+= SPM_PAGESIZE
)
450 boot_page_erase(CurrFlashAddress
);
451 boot_spm_busy_wait();
452 boot_page_write(CurrFlashAddress
);
453 boot_spm_busy_wait();
456 /* Send confirmation byte back to the host */
457 WriteNextResponseByte('\r');
459 #if !defined(NO_LOCK_BYTE_WRITE_SUPPORT)
460 else if (Command
== 'l')
462 /* Set the lock bits to those given by the host */
463 boot_lock_bits_set(FetchNextCommandByte());
465 /* Send confirmation byte back to the host */
466 WriteNextResponseByte('\r');
469 else if (Command
== 'r')
471 WriteNextResponseByte(boot_lock_fuse_bits_get(GET_LOCK_BITS
));
473 else if (Command
== 'F')
475 WriteNextResponseByte(boot_lock_fuse_bits_get(GET_LOW_FUSE_BITS
));
477 else if (Command
== 'N')
479 WriteNextResponseByte(boot_lock_fuse_bits_get(GET_HIGH_FUSE_BITS
));
481 else if (Command
== 'Q')
483 WriteNextResponseByte(boot_lock_fuse_bits_get(GET_EXTENDED_FUSE_BITS
));
485 #if !defined(NO_BLOCK_SUPPORT)
486 else if (Command
== 'b')
488 WriteNextResponseByte('Y');
490 /* Send block size to the host */
491 WriteNextResponseByte(SPM_PAGESIZE
>> 8);
492 WriteNextResponseByte(SPM_PAGESIZE
& 0xFF);
494 else if ((Command
== 'B') || (Command
== 'g'))
496 /* Delegate the block write/read to a separate function for clarity */
497 ReadWriteMemoryBlock(Command
);
500 #if !defined(NO_FLASH_BYTE_SUPPORT)
501 else if (Command
== 'C')
503 /* Write the high byte to the current flash page */
504 boot_page_fill(CurrAddress
, FetchNextCommandByte());
506 /* Send confirmation byte back to the host */
507 WriteNextResponseByte('\r');
509 else if (Command
== 'c')
511 /* Write the low byte to the current flash page */
512 boot_page_fill(CurrAddress
| 0x01, FetchNextCommandByte());
514 /* Increment the address */
517 /* Send confirmation byte back to the host */
518 WriteNextResponseByte('\r');
520 else if (Command
== 'm')
522 /* Commit the flash page to memory */
523 boot_page_write(CurrAddress
);
525 /* Wait until write operation has completed */
526 boot_spm_busy_wait();
528 /* Send confirmation byte back to the host */
529 WriteNextResponseByte('\r');
531 else if (Command
== 'R')
533 #if (FLASHEND > 0xFFFF)
534 uint16_t ProgramWord
= pgm_read_word_far(CurrAddress
);
536 uint16_t ProgramWord
= pgm_read_word(CurrAddress
);
539 WriteNextResponseByte(ProgramWord
>> 8);
540 WriteNextResponseByte(ProgramWord
& 0xFF);
543 #if !defined(NO_EEPROM_BYTE_SUPPORT)
544 else if (Command
== 'D')
546 /* Read the byte from the endpoint and write it to the EEPROM */
547 eeprom_write_byte((uint8_t*)((intptr_t)(CurrAddress
>> 1)), FetchNextCommandByte());
549 /* Increment the address after use */
552 /* Send confirmation byte back to the host */
553 WriteNextResponseByte('\r');
555 else if (Command
== 'd')
557 /* Read the EEPROM byte and write it to the endpoint */
558 WriteNextResponseByte(eeprom_read_byte((uint8_t*)((intptr_t)(CurrAddress
>> 1))));
560 /* Increment the address after use */
564 else if (Command
!= 27)
566 /* Unknown (non-sync) command, return fail code */
567 WriteNextResponseByte('?');
570 /* Select the IN endpoint */
571 Endpoint_SelectEndpoint(CDC_TX_EPADDR
);
573 /* Remember if the endpoint is completely full before clearing it */
574 bool IsEndpointFull
= !(Endpoint_IsReadWriteAllowed());
576 /* Send the endpoint data to the host */
579 /* If a full endpoint's worth of data was sent, we need to send an empty packet afterwards to signal end of transfer */
582 while (!(Endpoint_IsINReady()))
584 if (USB_DeviceState
== DEVICE_STATE_Unattached
)
591 /* Wait until the data has been sent to the host */
592 while (!(Endpoint_IsINReady()))
594 if (USB_DeviceState
== DEVICE_STATE_Unattached
)
598 /* Select the OUT endpoint */
599 Endpoint_SelectEndpoint(CDC_RX_EPADDR
);
601 /* Acknowledge the command from the host */