3 Copyright (C) Dean Camera, 2010.
5 dean [at] fourwalledcubicle [dot] com
6 www.fourwalledcubicle.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 /** Line coding options for the virtual serial port. Although the virtual serial port data is never
40 * sent through a physical serial port, the line encoding data must still be read and preserved from
41 * the host, or the host will detect a problem and fail to open the port. This structure contains the
42 * current encoding options, including baud rate, character format, parity mode and total number of
43 * bits in each data chunk.
45 CDC_Line_Coding_t LineCoding
= { .BaudRateBPS
= 9600,
46 .CharFormat
= OneStopBit
,
47 .ParityType
= Parity_None
,
50 /** Current address counter. This stores the current address of the FLASH or EEPROM as set by the host,
51 * and is used when reading or writing to the AVRs memory (either FLASH or EEPROM depending on the issued
56 /** Flag to indicate if the bootloader should be running, or should exit and allow the application code to run
57 * via a soft reset. When cleared, the bootloader will abort, the USB interface will shut down and the application
58 * jumped to via an indirect jump to location 0x0000.
60 bool RunBootloader
= true;
63 /** Main program entry point. This routine configures the hardware required by the bootloader, then continuously
64 * runs the bootloader processing routine until instructed to soft-exit, or hard-reset via the watchdog to start
65 * the loaded application code.
69 /* Setup hardware required for the bootloader */
72 /* Enable global interrupts so that the USB stack can function */
81 /* Reset all configured hardware to their default states for the user app */
84 /* Start the user application */
85 AppPtr_t AppStartPtr
= (AppPtr_t
)0x0000;
89 /** Configures all hardware required for the bootloader. */
90 void SetupHardware(void)
92 /* Disable watchdog if enabled by bootloader/fuses */
93 MCUSR
&= ~(1 << WDRF
);
96 /* Disable clock division */
97 clock_prescale_set(clock_div_1
);
99 /* Relocate the interrupt vector table to the bootloader section */
101 MCUCR
= (1 << IVSEL
);
103 /* Initialize USB Subsystem */
107 /** Resets all configured hardware required for the bootloader back to their original states. */
108 void ResetHardware(void)
110 /* Shut down the USB subsystem */
113 /* Relocate the interrupt vector table back to the application section */
117 /* Re-enable RWW section */
121 /** Event handler for the USB_ConfigurationChanged event. This configures the device's endpoints ready
122 * to relay data to and from the attached USB host.
124 void EVENT_USB_Device_ConfigurationChanged(void)
126 /* Setup CDC Notification, Rx and Tx Endpoints */
127 Endpoint_ConfigureEndpoint(CDC_NOTIFICATION_EPNUM
, EP_TYPE_INTERRUPT
,
128 ENDPOINT_DIR_IN
, CDC_NOTIFICATION_EPSIZE
,
129 ENDPOINT_BANK_SINGLE
);
131 Endpoint_ConfigureEndpoint(CDC_TX_EPNUM
, EP_TYPE_BULK
,
132 ENDPOINT_DIR_IN
, CDC_TXRX_EPSIZE
,
133 ENDPOINT_BANK_SINGLE
);
135 Endpoint_ConfigureEndpoint(CDC_RX_EPNUM
, EP_TYPE_BULK
,
136 ENDPOINT_DIR_OUT
, CDC_TXRX_EPSIZE
,
137 ENDPOINT_BANK_SINGLE
);
140 /** Event handler for the USB_UnhandledControlRequest event. This is used to catch standard and class specific
141 * control requests that are not handled internally by the USB library, so that they can be handled appropriately
142 * for the application.
144 void EVENT_USB_Device_UnhandledControlRequest(void)
146 uint8_t* LineCodingData
= (uint8_t*)&LineCoding
;
148 /* Process CDC specific control requests */
149 switch (USB_ControlRequest
.bRequest
)
151 case REQ_GetLineEncoding
:
152 if (USB_ControlRequest
.bmRequestType
== (REQDIR_DEVICETOHOST
| REQTYPE_CLASS
| REQREC_INTERFACE
))
154 Endpoint_ClearSETUP();
156 for (uint8_t i
= 0; i
< sizeof(LineCoding
); i
++)
157 Endpoint_Write_Byte(*(LineCodingData
++));
161 Endpoint_ClearStatusStage();
165 case REQ_SetLineEncoding
:
166 if (USB_ControlRequest
.bmRequestType
== (REQDIR_HOSTTODEVICE
| REQTYPE_CLASS
| REQREC_INTERFACE
))
168 Endpoint_ClearSETUP();
170 while (!(Endpoint_IsOUTReceived()))
172 if (USB_DeviceState
== DEVICE_STATE_Unattached
)
176 for (uint8_t i
= 0; i
< sizeof(LineCoding
); i
++)
177 *(LineCodingData
++) = Endpoint_Read_Byte();
181 Endpoint_ClearStatusStage();
185 case REQ_SetControlLineState
:
186 if (USB_ControlRequest
.bmRequestType
== (REQDIR_HOSTTODEVICE
| REQTYPE_CLASS
| REQREC_INTERFACE
))
188 Endpoint_ClearSETUP();
190 Endpoint_ClearStatusStage();
197 /** Reads or writes a block of EEPROM or FLASH memory to or from the appropriate CDC data endpoint, depending
198 * on the AVR910 protocol command issued.
200 * \param[in] Command Single character AVR910 protocol command indicating what memory operation to perform
202 static void ReadWriteMemoryBlock(const uint8_t Command
)
207 bool HighByte
= false;
210 BlockSize
= (FetchNextCommandByte() << 8);
211 BlockSize
|= FetchNextCommandByte();
213 MemoryType
= FetchNextCommandByte();
215 if ((MemoryType
!= 'E') && (MemoryType
!= 'F'))
217 /* Send error byte back to the host */
218 WriteNextResponseByte('?');
223 /* Check if command is to read memory */
226 /* Re-enable RWW section */
231 if (MemoryType
== 'F')
233 /* Read the next FLASH byte from the current FLASH page */
234 #if (FLASHEND > 0xFFFF)
235 WriteNextResponseByte(pgm_read_byte_far(CurrAddress
| HighByte
));
237 WriteNextResponseByte(pgm_read_byte(CurrAddress
| HighByte
));
240 /* If both bytes in current word have been read, increment the address counter */
244 HighByte
= !HighByte
;
248 /* Read the next EEPROM byte into the endpoint */
249 WriteNextResponseByte(eeprom_read_byte((uint8_t*)(uint16_t)(CurrAddress
>> 1)));
251 /* Increment the address counter after use */
258 uint32_t PageStartAddress
= CurrAddress
;
260 if (MemoryType
== 'F')
262 boot_page_erase(PageStartAddress
);
263 boot_spm_busy_wait();
268 if (MemoryType
== 'F')
270 /* If both bytes in current word have been written, increment the address counter */
273 /* Write the next FLASH word to the current FLASH page */
274 boot_page_fill(CurrAddress
, ((FetchNextCommandByte() << 8) | LowByte
));
276 /* Increment the address counter after use */
283 LowByte
= FetchNextCommandByte();
290 /* Write the next EEPROM byte from the endpoint */
291 eeprom_write_byte((uint8_t*)(uint16_t)(CurrAddress
>> 1), FetchNextCommandByte());
293 /* Increment the address counter after use */
298 /* If in FLASH programming mode, commit the page after writing */
299 if (MemoryType
== 'F')
301 /* Commit the flash page to memory */
302 boot_page_write(PageStartAddress
);
304 /* Wait until write operation has completed */
305 boot_spm_busy_wait();
308 /* Send response byte back to the host */
309 WriteNextResponseByte('\r');
313 /** Retrieves the next byte from the host in the CDC data OUT endpoint, and clears the endpoint bank if needed
314 * to allow reception of the next data packet from the host.
316 * \return Next received byte from the host in the CDC data OUT endpoint
318 static uint8_t FetchNextCommandByte(void)
320 /* Select the OUT endpoint so that the next data byte can be read */
321 Endpoint_SelectEndpoint(CDC_RX_EPNUM
);
323 /* If OUT endpoint empty, clear it and wait for the next packet from the host */
324 while (!(Endpoint_IsReadWriteAllowed()))
328 while (!(Endpoint_IsOUTReceived()))
330 if (USB_DeviceState
== DEVICE_STATE_Unattached
)
335 /* Fetch the next byte from the OUT endpoint */
336 return Endpoint_Read_Byte();
339 /** Writes the next response byte to the CDC data IN endpoint, and sends the endpoint back if needed to free up the
340 * bank when full ready for the next byte in the packet to the host.
342 * \param[in] Response Next response byte to send to the host
344 static void WriteNextResponseByte(const uint8_t Response
)
346 /* Select the IN endpoint so that the next data byte can be written */
347 Endpoint_SelectEndpoint(CDC_TX_EPNUM
);
349 /* If IN endpoint full, clear it and wait until ready for the next packet to the host */
350 if (!(Endpoint_IsReadWriteAllowed()))
354 while (!(Endpoint_IsINReady()))
356 if (USB_DeviceState
== DEVICE_STATE_Unattached
)
361 /* Write the next byte to the OUT endpoint */
362 Endpoint_Write_Byte(Response
);
365 /** Task to read in AVR910 commands from the CDC data OUT endpoint, process them, perform the required actions
366 * and send the appropriate response back to the host.
370 /* Select the OUT endpoint */
371 Endpoint_SelectEndpoint(CDC_RX_EPNUM
);
373 /* Check if endpoint has a command in it sent from the host */
374 if (Endpoint_IsOUTReceived())
376 /* Read in the bootloader command (first byte sent from host) */
377 uint8_t Command
= FetchNextCommandByte();
379 if ((Command
== 'L') || (Command
== 'P') || (Command
== 'T') || (Command
== 'E'))
382 RunBootloader
= false;
384 FetchNextCommandByte();
386 /* Send confirmation byte back to the host */
387 WriteNextResponseByte('\r');
389 else if (Command
== 't')
391 /* Return ATMEGA128 part code - this is only to allow AVRProg to use the bootloader */
392 WriteNextResponseByte(0x44);
394 WriteNextResponseByte(0x00);
396 else if (Command
== 'a')
398 /* Indicate auto-address increment is supported */
399 WriteNextResponseByte('Y');
401 else if (Command
== 'A')
403 /* Set the current address to that given by the host */
404 CurrAddress
= (FetchNextCommandByte() << 9);
405 CurrAddress
|= (FetchNextCommandByte() << 1);
407 /* Send confirmation byte back to the host */
408 WriteNextResponseByte('\r');
410 else if (Command
== 'p')
412 /* Indicate serial programmer back to the host */
413 WriteNextResponseByte('S');
415 else if (Command
== 'S')
417 /* Write the 7-byte software identifier to the endpoint */
418 for (uint8_t CurrByte
= 0; CurrByte
< 7; CurrByte
++)
419 WriteNextResponseByte(SOFTWARE_IDENTIFIER
[CurrByte
]);
421 else if (Command
== 'V')
423 WriteNextResponseByte('0' + BOOTLOADER_VERSION_MAJOR
);
424 WriteNextResponseByte('0' + BOOTLOADER_VERSION_MINOR
);
426 else if (Command
== 's')
428 WriteNextResponseByte(AVR_SIGNATURE_3
);
429 WriteNextResponseByte(AVR_SIGNATURE_2
);
430 WriteNextResponseByte(AVR_SIGNATURE_1
);
432 else if (Command
== 'b')
434 WriteNextResponseByte('Y');
436 /* Send block size to the host */
437 WriteNextResponseByte(SPM_PAGESIZE
>> 8);
438 WriteNextResponseByte(SPM_PAGESIZE
& 0xFF);
440 else if (Command
== 'e')
442 /* Clear the application section of flash */
443 for (uint32_t CurrFlashAddress
= 0; CurrFlashAddress
< BOOT_START_ADDR
; CurrFlashAddress
++)
445 boot_page_erase(CurrFlashAddress
);
446 boot_spm_busy_wait();
447 boot_page_write(CurrFlashAddress
);
448 boot_spm_busy_wait();
450 CurrFlashAddress
+= SPM_PAGESIZE
;
453 /* Send confirmation byte back to the host */
454 WriteNextResponseByte('\r');
456 else if (Command
== 'l')
458 /* Set the lock bits to those given by the host */
459 boot_lock_bits_set(FetchNextCommandByte());
461 /* Send confirmation byte back to the host */
462 WriteNextResponseByte('\r');
464 else if (Command
== 'r')
466 WriteNextResponseByte(boot_lock_fuse_bits_get(GET_LOCK_BITS
));
468 else if (Command
== 'F')
470 WriteNextResponseByte(boot_lock_fuse_bits_get(GET_LOW_FUSE_BITS
));
472 else if (Command
== 'N')
474 WriteNextResponseByte(boot_lock_fuse_bits_get(GET_HIGH_FUSE_BITS
));
476 else if (Command
== 'Q')
478 WriteNextResponseByte(boot_lock_fuse_bits_get(GET_EXTENDED_FUSE_BITS
));
480 else if (Command
== 'C')
482 /* Write the high byte to the current flash page */
483 boot_page_fill(CurrAddress
, FetchNextCommandByte());
485 /* Send confirmation byte back to the host */
486 WriteNextResponseByte('\r');
488 else if (Command
== 'c')
490 /* Write the low byte to the current flash page */
491 boot_page_fill(CurrAddress
| 1, FetchNextCommandByte());
493 /* Increment the address */
496 /* Send confirmation byte back to the host */
497 WriteNextResponseByte('\r');
499 else if (Command
== 'm')
501 /* Commit the flash page to memory */
502 boot_page_write(CurrAddress
);
504 /* Wait until write operation has completed */
505 boot_spm_busy_wait();
507 /* Send confirmation byte back to the host */
508 WriteNextResponseByte('\r');
510 else if ((Command
== 'B') || (Command
== 'g'))
512 /* Delegate the block write/read to a separate function for clarity */
513 ReadWriteMemoryBlock(Command
);
515 else if (Command
== 'R')
517 #if (FLASHEND > 0xFFFF)
518 uint16_t ProgramWord
= pgm_read_word_far(CurrAddress
);
520 uint16_t ProgramWord
= pgm_read_word(CurrAddress
);
523 WriteNextResponseByte(ProgramWord
>> 8);
524 WriteNextResponseByte(ProgramWord
& 0xFF);
526 else if (Command
== 'D')
528 /* Read the byte from the endpoint and write it to the EEPROM */
529 eeprom_write_byte((uint8_t*)((uint16_t)(CurrAddress
>> 1)), FetchNextCommandByte());
531 /* Increment the address after use */
534 /* Send confirmation byte back to the host */
535 WriteNextResponseByte('\r');
537 else if (Command
== 'd')
539 /* Read the EEPROM byte and write it to the endpoint */
540 WriteNextResponseByte(eeprom_read_byte((uint8_t*)((uint16_t)(CurrAddress
>> 1))));
542 /* Increment the address after use */
545 else if (Command
== 27)
547 /* Escape is sync, ignore */
551 /* Unknown command, return fail code */
552 WriteNextResponseByte('?');
555 /* Select the IN endpoint */
556 Endpoint_SelectEndpoint(CDC_TX_EPNUM
);
558 /* Remember if the endpoint is completely full before clearing it */
559 bool IsEndpointFull
= !(Endpoint_IsReadWriteAllowed());
561 /* Send the endpoint data to the host */
564 /* If a full endpoint's worth of data was sent, we need to send an empty packet afterwards to signal end of transfer */
567 while (!(Endpoint_IsINReady()))
569 if (USB_DeviceState
== DEVICE_STATE_Unattached
)
576 /* Wait until the data has been sent to the host */
577 while (!(Endpoint_IsINReady()))
579 if (USB_DeviceState
== DEVICE_STATE_Unattached
)
583 /* Select the OUT endpoint */
584 Endpoint_SelectEndpoint(CDC_RX_EPNUM
);
586 /* Acknowledge the command from the host */