3 Copyright (C) Dean Camera, 2011.
5 dean [at] fourwalledcubicle [dot] com
10 Copyright 2011 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;
60 /** Main program entry point. This routine configures the hardware required by the bootloader, then continuously
61 * runs the bootloader processing routine until instructed to soft-exit, or hard-reset via the watchdog to start
62 * the loaded application code.
66 /* Setup hardware required for the bootloader */
69 /* Turn on first LED on the board to indicate that the bootloader has started */
70 LEDs_SetAllLEDs(LEDS_LED1
);
72 /* Enable global interrupts so that the USB stack can function */
81 /* Disconnect from the host - USB interface will be reset later along with the AVR */
84 /* Enable the watchdog and force a timeout to reset the AVR */
85 wdt_enable(WDTO_250MS
);
90 /** Configures all hardware required for the bootloader. */
91 void SetupHardware(void)
93 /* Disable watchdog if enabled by bootloader/fuses */
94 MCUSR
&= ~(1 << WDRF
);
97 /* Disable clock division */
98 clock_prescale_set(clock_div_1
);
100 /* Relocate the interrupt vector table to the bootloader section */
102 MCUCR
= (1 << IVSEL
);
104 /* Initialize USB Subsystem */
108 /* Bootloader active LED toggle timer initialization */
109 TIMSK1
= (1 << TOIE1
);
110 TCCR1B
= ((1 << CS11
) | (1 << CS10
));
113 /** ISR to periodically toggle the LEDs on the board to indicate that the bootloader is active. */
114 ISR(TIMER1_OVF_vect
, ISR_BLOCK
)
116 LEDs_ToggleLEDs(LEDS_LED1
| LEDS_LED2
);
119 /** Event handler for the USB_ConfigurationChanged event. This configures the device's endpoints ready
120 * to relay data to and from the attached USB host.
122 void EVENT_USB_Device_ConfigurationChanged(void)
124 /* Setup CDC Notification, Rx and Tx Endpoints */
125 Endpoint_ConfigureEndpoint(CDC_NOTIFICATION_EPNUM
, EP_TYPE_INTERRUPT
,
126 ENDPOINT_DIR_IN
, CDC_NOTIFICATION_EPSIZE
,
127 ENDPOINT_BANK_SINGLE
);
129 Endpoint_ConfigureEndpoint(CDC_TX_EPNUM
, EP_TYPE_BULK
,
130 ENDPOINT_DIR_IN
, CDC_TXRX_EPSIZE
,
131 ENDPOINT_BANK_SINGLE
);
133 Endpoint_ConfigureEndpoint(CDC_RX_EPNUM
, EP_TYPE_BULK
,
134 ENDPOINT_DIR_OUT
, CDC_TXRX_EPSIZE
,
135 ENDPOINT_BANK_SINGLE
);
138 /** Event handler for the USB_ControlRequest event. This is used to catch and process control requests sent to
139 * the device from the USB host before passing along unhandled control requests to the library for processing
142 void EVENT_USB_Device_ControlRequest(void)
144 /* Ignore any requests that aren't directed to the CDC interface */
145 if ((USB_ControlRequest
.bmRequestType
& (CONTROL_REQTYPE_TYPE
| CONTROL_REQTYPE_RECIPIENT
)) !=
146 (REQTYPE_CLASS
| REQREC_INTERFACE
))
151 /* Process CDC specific control requests */
152 switch (USB_ControlRequest
.bRequest
)
154 case CDC_REQ_GetLineEncoding
:
155 if (USB_ControlRequest
.bmRequestType
== (REQDIR_DEVICETOHOST
| REQTYPE_CLASS
| REQREC_INTERFACE
))
157 Endpoint_ClearSETUP();
159 /* Write the line coding data to the control endpoint */
160 Endpoint_Write_Control_Stream_LE(&LineEncoding
, sizeof(CDC_LineEncoding_t
));
165 case CDC_REQ_SetLineEncoding
:
166 if (USB_ControlRequest
.bmRequestType
== (REQDIR_HOSTTODEVICE
| REQTYPE_CLASS
| REQREC_INTERFACE
))
168 Endpoint_ClearSETUP();
170 /* Read the line coding data in from the host into the global struct */
171 Endpoint_Read_Control_Stream_LE(&LineEncoding
, sizeof(CDC_LineEncoding_t
));
179 #if !defined(NO_BLOCK_SUPPORT)
180 /** Reads or writes a block of EEPROM or FLASH memory to or from the appropriate CDC data endpoint, depending
181 * on the AVR910 protocol command issued.
183 * \param[in] Command Single character AVR910 protocol command indicating what memory operation to perform
185 static void ReadWriteMemoryBlock(const uint8_t Command
)
190 bool HighByte
= false;
193 BlockSize
= (FetchNextCommandByte() << 8);
194 BlockSize
|= FetchNextCommandByte();
196 MemoryType
= FetchNextCommandByte();
198 if ((MemoryType
!= 'E') && (MemoryType
!= 'F'))
200 /* Send error byte back to the host */
201 WriteNextResponseByte('?');
206 /* Check if command is to read memory */
209 /* Re-enable RWW section */
214 if (MemoryType
== 'F')
216 /* Read the next FLASH byte from the current FLASH page */
217 #if (FLASHEND > 0xFFFF)
218 WriteNextResponseByte(pgm_read_byte_far(CurrAddress
| HighByte
));
220 WriteNextResponseByte(pgm_read_byte(CurrAddress
| HighByte
));
223 /* If both bytes in current word have been read, increment the address counter */
227 HighByte
= !HighByte
;
231 /* Read the next EEPROM byte into the endpoint */
232 WriteNextResponseByte(eeprom_read_byte((uint8_t*)(intptr_t)(CurrAddress
>> 1)));
234 /* Increment the address counter after use */
241 uint32_t PageStartAddress
= CurrAddress
;
243 if (MemoryType
== 'F')
245 boot_page_erase(PageStartAddress
);
246 boot_spm_busy_wait();
251 if (MemoryType
== 'F')
253 /* If both bytes in current word have been written, increment the address counter */
256 /* Write the next FLASH word to the current FLASH page */
257 boot_page_fill(CurrAddress
, ((FetchNextCommandByte() << 8) | LowByte
));
259 /* Increment the address counter after use */
264 LowByte
= FetchNextCommandByte();
267 HighByte
= !HighByte
;
271 /* Write the next EEPROM byte from the endpoint */
272 eeprom_write_byte((uint8_t*)((intptr_t)(CurrAddress
>> 1)), FetchNextCommandByte());
274 /* Increment the address counter after use */
279 /* If in FLASH programming mode, commit the page after writing */
280 if (MemoryType
== 'F')
282 /* Commit the flash page to memory */
283 boot_page_write(PageStartAddress
);
285 /* Wait until write operation has completed */
286 boot_spm_busy_wait();
289 /* Send response byte back to the host */
290 WriteNextResponseByte('\r');
295 /** Retrieves the next byte from the host in the CDC data OUT endpoint, and clears the endpoint bank if needed
296 * to allow reception of the next data packet from the host.
298 * \return Next received byte from the host in the CDC data OUT endpoint
300 static uint8_t FetchNextCommandByte(void)
302 /* Select the OUT endpoint so that the next data byte can be read */
303 Endpoint_SelectEndpoint(CDC_RX_EPNUM
);
305 /* If OUT endpoint empty, clear it and wait for the next packet from the host */
306 while (!(Endpoint_IsReadWriteAllowed()))
310 while (!(Endpoint_IsOUTReceived()))
312 if (USB_DeviceState
== DEVICE_STATE_Unattached
)
317 /* Fetch the next byte from the OUT endpoint */
318 return Endpoint_Read_8();
321 /** Writes the next response byte to the CDC data IN endpoint, and sends the endpoint back if needed to free up the
322 * bank when full ready for the next byte in the packet to the host.
324 * \param[in] Response Next response byte to send to the host
326 static void WriteNextResponseByte(const uint8_t Response
)
328 /* Select the IN endpoint so that the next data byte can be written */
329 Endpoint_SelectEndpoint(CDC_TX_EPNUM
);
331 /* If IN endpoint full, clear it and wait until ready for the next packet to the host */
332 if (!(Endpoint_IsReadWriteAllowed()))
336 while (!(Endpoint_IsINReady()))
338 if (USB_DeviceState
== DEVICE_STATE_Unattached
)
343 /* Write the next byte to the IN endpoint */
344 Endpoint_Write_8(Response
);
347 /** Task to read in AVR910 commands from the CDC data OUT endpoint, process them, perform the required actions
348 * and send the appropriate response back to the host.
352 /* Select the OUT endpoint */
353 Endpoint_SelectEndpoint(CDC_RX_EPNUM
);
355 /* Check if endpoint has a command in it sent from the host */
356 if (!(Endpoint_IsOUTReceived()))
359 /* Read in the bootloader command (first byte sent from host) */
360 uint8_t Command
= FetchNextCommandByte();
364 RunBootloader
= false;
366 /* Send confirmation byte back to the host */
367 WriteNextResponseByte('\r');
369 else if (Command
== 'T')
371 FetchNextCommandByte();
373 /* Send confirmation byte back to the host */
374 WriteNextResponseByte('\r');
376 else if ((Command
== 'L') || (Command
== 'P'))
378 /* Send confirmation byte back to the host */
379 WriteNextResponseByte('\r');
381 else if (Command
== 't')
383 /* Return ATMEGA128 part code - this is only to allow AVRProg to use the bootloader */
384 WriteNextResponseByte(0x44);
385 WriteNextResponseByte(0x00);
387 else if (Command
== 'a')
389 /* Indicate auto-address increment is supported */
390 WriteNextResponseByte('Y');
392 else if (Command
== 'A')
394 /* Set the current address to that given by the host */
395 CurrAddress
= (FetchNextCommandByte() << 9);
396 CurrAddress
|= (FetchNextCommandByte() << 1);
398 /* Send confirmation byte back to the host */
399 WriteNextResponseByte('\r');
401 else if (Command
== 'p')
403 /* Indicate serial programmer back to the host */
404 WriteNextResponseByte('S');
406 else if (Command
== 'S')
408 /* Write the 7-byte software identifier to the endpoint */
409 for (uint8_t CurrByte
= 0; CurrByte
< 7; CurrByte
++)
410 WriteNextResponseByte(SOFTWARE_IDENTIFIER
[CurrByte
]);
412 else if (Command
== 'V')
414 WriteNextResponseByte('0' + BOOTLOADER_VERSION_MAJOR
);
415 WriteNextResponseByte('0' + BOOTLOADER_VERSION_MINOR
);
417 else if (Command
== 's')
419 WriteNextResponseByte(AVR_SIGNATURE_3
);
420 WriteNextResponseByte(AVR_SIGNATURE_2
);
421 WriteNextResponseByte(AVR_SIGNATURE_1
);
423 else if (Command
== 'e')
425 /* Clear the application section of flash */
426 for (uint32_t CurrFlashAddress
= 0; CurrFlashAddress
< BOOT_START_ADDR
; CurrFlashAddress
+= SPM_PAGESIZE
)
428 boot_page_erase(CurrFlashAddress
);
429 boot_spm_busy_wait();
430 boot_page_write(CurrFlashAddress
);
431 boot_spm_busy_wait();
434 /* Send confirmation byte back to the host */
435 WriteNextResponseByte('\r');
437 #if !defined(NO_LOCK_BYTE_WRITE_SUPPORT)
438 else if (Command
== 'l')
440 /* Set the lock bits to those given by the host */
441 boot_lock_bits_set(FetchNextCommandByte());
443 /* Send confirmation byte back to the host */
444 WriteNextResponseByte('\r');
447 else if (Command
== 'r')
449 WriteNextResponseByte(boot_lock_fuse_bits_get(GET_LOCK_BITS
));
451 else if (Command
== 'F')
453 WriteNextResponseByte(boot_lock_fuse_bits_get(GET_LOW_FUSE_BITS
));
455 else if (Command
== 'N')
457 WriteNextResponseByte(boot_lock_fuse_bits_get(GET_HIGH_FUSE_BITS
));
459 else if (Command
== 'Q')
461 WriteNextResponseByte(boot_lock_fuse_bits_get(GET_EXTENDED_FUSE_BITS
));
463 #if !defined(NO_BLOCK_SUPPORT)
464 else if (Command
== 'b')
466 WriteNextResponseByte('Y');
468 /* Send block size to the host */
469 WriteNextResponseByte(SPM_PAGESIZE
>> 8);
470 WriteNextResponseByte(SPM_PAGESIZE
& 0xFF);
472 else if ((Command
== 'B') || (Command
== 'g'))
474 /* Delegate the block write/read to a separate function for clarity */
475 ReadWriteMemoryBlock(Command
);
478 #if !defined(NO_FLASH_BYTE_SUPPORT)
479 else if (Command
== 'C')
481 /* Write the high byte to the current flash page */
482 boot_page_fill(CurrAddress
, FetchNextCommandByte());
484 /* Send confirmation byte back to the host */
485 WriteNextResponseByte('\r');
487 else if (Command
== 'c')
489 /* Write the low byte to the current flash page */
490 boot_page_fill(CurrAddress
| 0x01, FetchNextCommandByte());
492 /* Increment the address */
495 /* Send confirmation byte back to the host */
496 WriteNextResponseByte('\r');
498 else if (Command
== 'm')
500 /* Commit the flash page to memory */
501 boot_page_write(CurrAddress
);
503 /* Wait until write operation has completed */
504 boot_spm_busy_wait();
506 /* Send confirmation byte back to the host */
507 WriteNextResponseByte('\r');
509 else if (Command
== 'R')
511 #if (FLASHEND > 0xFFFF)
512 uint16_t ProgramWord
= pgm_read_word_far(CurrAddress
);
514 uint16_t ProgramWord
= pgm_read_word(CurrAddress
);
517 WriteNextResponseByte(ProgramWord
>> 8);
518 WriteNextResponseByte(ProgramWord
& 0xFF);
521 #if !defined(NO_EEPROM_BYTE_SUPPORT)
522 else if (Command
== 'D')
524 /* Read the byte from the endpoint and write it to the EEPROM */
525 eeprom_write_byte((uint8_t*)((intptr_t)(CurrAddress
>> 1)), FetchNextCommandByte());
527 /* Increment the address after use */
530 /* Send confirmation byte back to the host */
531 WriteNextResponseByte('\r');
533 else if (Command
== 'd')
535 /* Read the EEPROM byte and write it to the endpoint */
536 WriteNextResponseByte(eeprom_read_byte((uint8_t*)((intptr_t)(CurrAddress
>> 1))));
538 /* Increment the address after use */
542 else if (Command
!= 27)
544 /* Unknown (non-sync) command, return fail code */
545 WriteNextResponseByte('?');
548 /* Select the IN endpoint */
549 Endpoint_SelectEndpoint(CDC_TX_EPNUM
);
551 /* Remember if the endpoint is completely full before clearing it */
552 bool IsEndpointFull
= !(Endpoint_IsReadWriteAllowed());
554 /* Send the endpoint data to the host */
557 /* If a full endpoint's worth of data was sent, we need to send an empty packet afterwards to signal end of transfer */
560 while (!(Endpoint_IsINReady()))
562 if (USB_DeviceState
== DEVICE_STATE_Unattached
)
569 /* Wait until the data has been sent to the host */
570 while (!(Endpoint_IsINReady()))
572 if (USB_DeviceState
== DEVICE_STATE_Unattached
)
576 /* Select the OUT endpoint */
577 Endpoint_SelectEndpoint(CDC_RX_EPNUM
);
579 /* Acknowledge the command from the host */