3 Copyright (C) Dean Camera, 2010.
5 dean [at] fourwalledcubicle [dot] com
10 Copyright 2010 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 CDC_Line_Coding_t LineEncoding
= { .BaudRateBPS
= 0,
43 .CharFormat
= OneStopBit
,
44 .ParityType
= 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
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 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 /* Enable global interrupts so that the USB stack can function */
78 /* Disconnect from the host - USB interface will be reset later along with the AVR */
81 /* Enable the watchdog and force a timeout to reset the AVR */
82 wdt_enable(WDTO_250MS
);
87 /** Configures all hardware required for the bootloader. */
88 void SetupHardware(void)
90 /* Disable watchdog if enabled by bootloader/fuses */
91 MCUSR
&= ~(1 << WDRF
);
94 /* Disable clock division */
95 clock_prescale_set(clock_div_1
);
97 /* Relocate the interrupt vector table to the bootloader section */
101 /* Initialize USB Subsystem */
105 /** Event handler for the USB_ConfigurationChanged event. This configures the device's endpoints ready
106 * to relay data to and from the attached USB host.
108 void EVENT_USB_Device_ConfigurationChanged(void)
110 /* Setup CDC Notification, Rx and Tx Endpoints */
111 Endpoint_ConfigureEndpoint(CDC_NOTIFICATION_EPNUM
, EP_TYPE_INTERRUPT
,
112 ENDPOINT_DIR_IN
, CDC_NOTIFICATION_EPSIZE
,
113 ENDPOINT_BANK_SINGLE
);
115 Endpoint_ConfigureEndpoint(CDC_TX_EPNUM
, EP_TYPE_BULK
,
116 ENDPOINT_DIR_IN
, CDC_TXRX_EPSIZE
,
117 ENDPOINT_BANK_SINGLE
);
119 Endpoint_ConfigureEndpoint(CDC_RX_EPNUM
, EP_TYPE_BULK
,
120 ENDPOINT_DIR_OUT
, CDC_TXRX_EPSIZE
,
121 ENDPOINT_BANK_SINGLE
);
124 /** Event handler for the USB_UnhandledControlRequest event. This is used to catch standard and class specific
125 * control requests that are not handled internally by the USB library (including the CDC control commands,
126 * which are all issued via the control endpoint), so that they can be handled appropriately for the application.
128 void EVENT_USB_Device_UnhandledControlRequest(void)
130 /* Process CDC specific control requests */
131 switch (USB_ControlRequest
.bRequest
)
133 case REQ_GetLineEncoding
:
134 if (USB_ControlRequest
.bmRequestType
== (REQDIR_DEVICETOHOST
| REQTYPE_CLASS
| REQREC_INTERFACE
))
136 Endpoint_ClearSETUP();
138 /* Write the line coding data to the control endpoint */
139 Endpoint_Write_Control_Stream_LE(&LineEncoding
, sizeof(CDC_Line_Coding_t
));
144 case REQ_SetLineEncoding
:
145 if (USB_ControlRequest
.bmRequestType
== (REQDIR_HOSTTODEVICE
| REQTYPE_CLASS
| REQREC_INTERFACE
))
147 Endpoint_ClearSETUP();
149 /* Read the line coding data in from the host into the global struct */
150 Endpoint_Read_Control_Stream_LE(&LineEncoding
, sizeof(CDC_Line_Coding_t
));
158 /** Reads or writes a block of EEPROM or FLASH memory to or from the appropriate CDC data endpoint, depending
159 * on the AVR910 protocol command issued.
161 * \param[in] Command Single character AVR910 protocol command indicating what memory operation to perform
163 static void ReadWriteMemoryBlock(const uint8_t Command
)
168 bool HighByte
= false;
171 BlockSize
= (FetchNextCommandByte() << 8);
172 BlockSize
|= FetchNextCommandByte();
174 MemoryType
= FetchNextCommandByte();
176 if ((MemoryType
!= 'E') && (MemoryType
!= 'F'))
178 /* Send error byte back to the host */
179 WriteNextResponseByte('?');
184 /* Check if command is to read memory */
187 /* Re-enable RWW section */
192 if (MemoryType
== 'F')
194 /* Read the next FLASH byte from the current FLASH page */
195 #if (FLASHEND > 0xFFFF)
196 WriteNextResponseByte(pgm_read_byte_far(CurrAddress
| HighByte
));
198 WriteNextResponseByte(pgm_read_byte(CurrAddress
| HighByte
));
201 /* If both bytes in current word have been read, increment the address counter */
205 HighByte
= !HighByte
;
209 /* Read the next EEPROM byte into the endpoint */
210 WriteNextResponseByte(eeprom_read_byte((uint8_t*)(intptr_t)(CurrAddress
>> 1)));
212 /* Increment the address counter after use */
219 uint32_t PageStartAddress
= CurrAddress
;
221 if (MemoryType
== 'F')
223 boot_page_erase(PageStartAddress
);
224 boot_spm_busy_wait();
229 if (MemoryType
== 'F')
231 /* If both bytes in current word have been written, increment the address counter */
234 /* Write the next FLASH word to the current FLASH page */
235 boot_page_fill(CurrAddress
, ((FetchNextCommandByte() << 8) | LowByte
));
237 /* Increment the address counter after use */
244 LowByte
= FetchNextCommandByte();
251 /* Write the next EEPROM byte from the endpoint */
252 eeprom_write_byte((uint8_t*)((intptr_t)(CurrAddress
>> 1)), FetchNextCommandByte());
254 /* Increment the address counter after use */
259 /* If in FLASH programming mode, commit the page after writing */
260 if (MemoryType
== 'F')
262 /* Commit the flash page to memory */
263 boot_page_write(PageStartAddress
);
265 /* Wait until write operation has completed */
266 boot_spm_busy_wait();
269 /* Send response byte back to the host */
270 WriteNextResponseByte('\r');
274 /** Retrieves the next byte from the host in the CDC data OUT endpoint, and clears the endpoint bank if needed
275 * to allow reception of the next data packet from the host.
277 * \return Next received byte from the host in the CDC data OUT endpoint
279 static uint8_t FetchNextCommandByte(void)
281 /* Select the OUT endpoint so that the next data byte can be read */
282 Endpoint_SelectEndpoint(CDC_RX_EPNUM
);
284 /* If OUT endpoint empty, clear it and wait for the next packet from the host */
285 while (!(Endpoint_IsReadWriteAllowed()))
289 while (!(Endpoint_IsOUTReceived()))
291 if (USB_DeviceState
== DEVICE_STATE_Unattached
)
296 /* Fetch the next byte from the OUT endpoint */
297 return Endpoint_Read_Byte();
300 /** Writes the next response byte to the CDC data IN endpoint, and sends the endpoint back if needed to free up the
301 * bank when full ready for the next byte in the packet to the host.
303 * \param[in] Response Next response byte to send to the host
305 static void WriteNextResponseByte(const uint8_t Response
)
307 /* Select the IN endpoint so that the next data byte can be written */
308 Endpoint_SelectEndpoint(CDC_TX_EPNUM
);
310 /* If IN endpoint full, clear it and wait until ready for the next packet to the host */
311 if (!(Endpoint_IsReadWriteAllowed()))
315 while (!(Endpoint_IsINReady()))
317 if (USB_DeviceState
== DEVICE_STATE_Unattached
)
322 /* Write the next byte to the OUT endpoint */
323 Endpoint_Write_Byte(Response
);
326 /** Task to read in AVR910 commands from the CDC data OUT endpoint, process them, perform the required actions
327 * and send the appropriate response back to the host.
331 /* Select the OUT endpoint */
332 Endpoint_SelectEndpoint(CDC_RX_EPNUM
);
334 /* Check if endpoint has a command in it sent from the host */
335 if (Endpoint_IsOUTReceived())
337 /* Read in the bootloader command (first byte sent from host) */
338 uint8_t Command
= FetchNextCommandByte();
340 if ((Command
== 'L') || (Command
== 'P') || (Command
== 'T') || (Command
== 'E'))
343 RunBootloader
= false;
344 else if (Command
== 'T')
345 FetchNextCommandByte();
347 /* Send confirmation byte back to the host */
348 WriteNextResponseByte('\r');
350 else if (Command
== 't')
352 /* Return ATMEGA128 part code - this is only to allow AVRProg to use the bootloader */
353 WriteNextResponseByte(0x44);
354 WriteNextResponseByte(0x00);
356 else if (Command
== 'a')
358 /* Indicate auto-address increment is supported */
359 WriteNextResponseByte('Y');
361 else if (Command
== 'A')
363 /* Set the current address to that given by the host */
364 CurrAddress
= (FetchNextCommandByte() << 9);
365 CurrAddress
|= (FetchNextCommandByte() << 1);
367 /* Send confirmation byte back to the host */
368 WriteNextResponseByte('\r');
370 else if (Command
== 'p')
372 /* Indicate serial programmer back to the host */
373 WriteNextResponseByte('S');
375 else if (Command
== 'S')
377 /* Write the 7-byte software identifier to the endpoint */
378 for (uint8_t CurrByte
= 0; CurrByte
< 7; CurrByte
++)
379 WriteNextResponseByte(SOFTWARE_IDENTIFIER
[CurrByte
]);
381 else if (Command
== 'V')
383 WriteNextResponseByte('0' + BOOTLOADER_VERSION_MAJOR
);
384 WriteNextResponseByte('0' + BOOTLOADER_VERSION_MINOR
);
386 else if (Command
== 's')
388 WriteNextResponseByte(AVR_SIGNATURE_3
);
389 WriteNextResponseByte(AVR_SIGNATURE_2
);
390 WriteNextResponseByte(AVR_SIGNATURE_1
);
392 else if (Command
== 'b')
394 WriteNextResponseByte('Y');
396 /* Send block size to the host */
397 WriteNextResponseByte(SPM_PAGESIZE
>> 8);
398 WriteNextResponseByte(SPM_PAGESIZE
& 0xFF);
400 else if (Command
== 'e')
402 /* Clear the application section of flash */
403 for (uint32_t CurrFlashAddress
= 0; CurrFlashAddress
< BOOT_START_ADDR
; CurrFlashAddress
++)
405 boot_page_erase(CurrFlashAddress
);
406 boot_spm_busy_wait();
407 boot_page_write(CurrFlashAddress
);
408 boot_spm_busy_wait();
410 CurrFlashAddress
+= SPM_PAGESIZE
;
413 /* Send confirmation byte back to the host */
414 WriteNextResponseByte('\r');
416 else if (Command
== 'l')
418 /* Set the lock bits to those given by the host */
419 boot_lock_bits_set(FetchNextCommandByte());
421 /* Send confirmation byte back to the host */
422 WriteNextResponseByte('\r');
424 else if (Command
== 'r')
426 WriteNextResponseByte(boot_lock_fuse_bits_get(GET_LOCK_BITS
));
428 else if (Command
== 'F')
430 WriteNextResponseByte(boot_lock_fuse_bits_get(GET_LOW_FUSE_BITS
));
432 else if (Command
== 'N')
434 WriteNextResponseByte(boot_lock_fuse_bits_get(GET_HIGH_FUSE_BITS
));
436 else if (Command
== 'Q')
438 WriteNextResponseByte(boot_lock_fuse_bits_get(GET_EXTENDED_FUSE_BITS
));
440 else if (Command
== 'C')
442 /* Write the high byte to the current flash page */
443 boot_page_fill(CurrAddress
, FetchNextCommandByte());
445 /* Send confirmation byte back to the host */
446 WriteNextResponseByte('\r');
448 else if (Command
== 'c')
450 /* Write the low byte to the current flash page */
451 boot_page_fill(CurrAddress
| 1, FetchNextCommandByte());
453 /* Increment the address */
456 /* Send confirmation byte back to the host */
457 WriteNextResponseByte('\r');
459 else if (Command
== 'm')
461 /* Commit the flash page to memory */
462 boot_page_write(CurrAddress
);
464 /* Wait until write operation has completed */
465 boot_spm_busy_wait();
467 /* Send confirmation byte back to the host */
468 WriteNextResponseByte('\r');
470 else if ((Command
== 'B') || (Command
== 'g'))
472 /* Delegate the block write/read to a separate function for clarity */
473 ReadWriteMemoryBlock(Command
);
475 else if (Command
== 'R')
477 #if (FLASHEND > 0xFFFF)
478 uint16_t ProgramWord
= pgm_read_word_far(CurrAddress
);
480 uint16_t ProgramWord
= pgm_read_word(CurrAddress
);
483 WriteNextResponseByte(ProgramWord
>> 8);
484 WriteNextResponseByte(ProgramWord
& 0xFF);
486 else if (Command
== 'D')
488 /* Read the byte from the endpoint and write it to the EEPROM */
489 eeprom_write_byte((uint8_t*)((intptr_t)(CurrAddress
>> 1)), FetchNextCommandByte());
491 /* Increment the address after use */
494 /* Send confirmation byte back to the host */
495 WriteNextResponseByte('\r');
497 else if (Command
== 'd')
499 /* Read the EEPROM byte and write it to the endpoint */
500 WriteNextResponseByte(eeprom_read_byte((uint8_t*)((intptr_t)(CurrAddress
>> 1))));
502 /* Increment the address after use */
505 else if (Command
== 27)
507 /* Escape is sync, ignore */
511 /* Unknown command, return fail code */
512 WriteNextResponseByte('?');
515 /* Select the IN endpoint */
516 Endpoint_SelectEndpoint(CDC_TX_EPNUM
);
518 /* Remember if the endpoint is completely full before clearing it */
519 bool IsEndpointFull
= !(Endpoint_IsReadWriteAllowed());
521 /* Send the endpoint data to the host */
524 /* If a full endpoint's worth of data was sent, we need to send an empty packet afterwards to signal end of transfer */
527 while (!(Endpoint_IsINReady()))
529 if (USB_DeviceState
== DEVICE_STATE_Unattached
)
536 /* Wait until the data has been sent to the host */
537 while (!(Endpoint_IsINReady()))
539 if (USB_DeviceState
== DEVICE_STATE_Unattached
)
543 /* Select the OUT endpoint */
544 Endpoint_SelectEndpoint(CDC_RX_EPNUM
);
546 /* Acknowledge the command from the host */