forked from mfulz_github/qmk_firmware
Fixed CDC and DFU bootloaders API function offsets incorrect on some devices (thanks to Rod DeMay).
This commit is contained in:
parent
70fd816b09
commit
96fd39eda8
|
@ -48,7 +48,15 @@ BootloaderAPI_ReadLock_Trampoline:
|
|||
jmp BootloaderAPI_ReadLock
|
||||
BootloaderAPI_WriteLock_Trampoline:
|
||||
jmp BootloaderAPI_WriteLock
|
||||
BootloaderAPU_UNUSED:
|
||||
BootloaderAPU_UNUSED1:
|
||||
ret
|
||||
BootloaderAPU_UNUSED2:
|
||||
ret
|
||||
BootloaderAPU_UNUSED3:
|
||||
ret
|
||||
BootloaderAPU_UNUSED4:
|
||||
ret
|
||||
BootloaderAPU_UNUSED5:
|
||||
ret
|
||||
|
||||
; API function jump table
|
||||
|
@ -62,11 +70,11 @@ BootloaderAPI_JumpTable:
|
|||
rjmp BootloaderAPI_ReadFuse_Trampoline
|
||||
rjmp BootloaderAPI_ReadLock_Trampoline
|
||||
rjmp BootloaderAPI_WriteLock_Trampoline
|
||||
rjmp BootloaderAPU_UNUSED ; UNUSED ENTRY
|
||||
rjmp BootloaderAPU_UNUSED ; UNUSED ENTRY
|
||||
rjmp BootloaderAPU_UNUSED ; UNUSED ENTRY
|
||||
rjmp BootloaderAPU_UNUSED ; UNUSED ENTRY
|
||||
rjmp BootloaderAPU_UNUSED ; UNUSED ENTRY
|
||||
rjmp BootloaderAPU_UNUSED1 ; UNUSED ENTRY 1
|
||||
rjmp BootloaderAPU_UNUSED2 ; UNUSED ENTRY 2
|
||||
rjmp BootloaderAPU_UNUSED3 ; UNUSED ENTRY 3
|
||||
rjmp BootloaderAPU_UNUSED4 ; UNUSED ENTRY 4
|
||||
rjmp BootloaderAPU_UNUSED5 ; UNUSED ENTRY 5
|
||||
|
||||
; Bootloader table signatures and information
|
||||
.org (96 - 8)
|
||||
|
|
|
@ -95,7 +95,9 @@
|
|||
* following layout:
|
||||
*
|
||||
* \code
|
||||
* #define BOOTLOADER_API_CALL(Index) (void*)(((FLASHEND - 32) + (2 * Index)) / 2)
|
||||
* #define BOOTLOADER_API_TABLE_SIZE 32
|
||||
* #define BOOTLOADER_API_TABLE_START ((FLASHEND + 1UL) - BOOTLOADER_API_TABLE_SIZE)
|
||||
* #define BOOTLOADER_API_CALL(Index) (void*)((BOOTLOADER_API_TABLE_START + (Index * 2)) / 2)
|
||||
*
|
||||
* void (*BootloaderAPI_ErasePage)(uint32_t Address) = BOOTLOADER_API_CALL(0);
|
||||
* void (*BootloaderAPI_WritePage)(uint32_t Address) = BOOTLOADER_API_CALL(1);
|
||||
|
@ -105,13 +107,13 @@
|
|||
* uint8_t (*BootloaderAPI_ReadLock)(void) = BOOTLOADER_API_CALL(5);
|
||||
* void (*BootloaderAPI_WriteLock)(uint8_t LockBits) = BOOTLOADER_API_CALL(6);
|
||||
*
|
||||
* #define BOOTLOADER_MAGIC_SIGNATURE_START (FLASHEND - 2)
|
||||
* #define BOOTLOADER_MAGIC_SIGNATURE_START (BOOTLOADER_API_TABLE_START + (BOOTLOADER_API_TABLE_SIZE - 2))
|
||||
* #define BOOTLOADER_MAGIC_SIGNATURE 0xDCFB
|
||||
*
|
||||
* #define BOOTLOADER_CLASS_SIGNATURE_START (FLASHEND - 4)
|
||||
* #define BOOTLOADER_CLASS_SIGNATURE_START (BOOTLOADER_API_TABLE_START + (BOOTLOADER_API_TABLE_SIZE - 4))
|
||||
* #define BOOTLOADER_CDC_SIGNATURE 0xCDC1
|
||||
*
|
||||
* #define BOOTLOADER_ADDRESS_START (FLASHEND - 8)
|
||||
* #define BOOTLOADER_ADDRESS_START (BOOTLOADER_API_TABLE_START + (BOOTLOADER_API_TABLE_SIZE - 8))
|
||||
* #define BOOTLOADER_ADDRESS_LENGTH 4
|
||||
* \endcode
|
||||
*
|
||||
|
|
|
@ -48,7 +48,15 @@ BootloaderAPI_ReadLock_Trampoline:
|
|||
jmp BootloaderAPI_ReadLock
|
||||
BootloaderAPI_WriteLock_Trampoline:
|
||||
jmp BootloaderAPI_WriteLock
|
||||
BootloaderAPU_UNUSED:
|
||||
BootloaderAPU_UNUSED1:
|
||||
ret
|
||||
BootloaderAPU_UNUSED2:
|
||||
ret
|
||||
BootloaderAPU_UNUSED3:
|
||||
ret
|
||||
BootloaderAPU_UNUSED4:
|
||||
ret
|
||||
BootloaderAPU_UNUSED5:
|
||||
ret
|
||||
|
||||
; API function jump table
|
||||
|
@ -62,11 +70,11 @@ BootloaderAPI_JumpTable:
|
|||
rjmp BootloaderAPI_ReadFuse_Trampoline
|
||||
rjmp BootloaderAPI_ReadLock_Trampoline
|
||||
rjmp BootloaderAPI_WriteLock_Trampoline
|
||||
rjmp BootloaderAPU_UNUSED ; UNUSED ENTRY
|
||||
rjmp BootloaderAPU_UNUSED ; UNUSED ENTRY
|
||||
rjmp BootloaderAPU_UNUSED ; UNUSED ENTRY
|
||||
rjmp BootloaderAPU_UNUSED ; UNUSED ENTRY
|
||||
rjmp BootloaderAPU_UNUSED ; UNUSED ENTRY
|
||||
rjmp BootloaderAPU_UNUSED1 ; UNUSED ENTRY 1
|
||||
rjmp BootloaderAPU_UNUSED2 ; UNUSED ENTRY 2
|
||||
rjmp BootloaderAPU_UNUSED3 ; UNUSED ENTRY 3
|
||||
rjmp BootloaderAPU_UNUSED4 ; UNUSED ENTRY 4
|
||||
rjmp BootloaderAPU_UNUSED5 ; UNUSED ENTRY 5
|
||||
|
||||
; Bootloader table signatures and information
|
||||
.org (96 - 8)
|
||||
|
|
|
@ -100,7 +100,9 @@
|
|||
* following layout:
|
||||
*
|
||||
* \code
|
||||
* #define BOOTLOADER_API_CALL(Index) (void*)(((FLASHEND - 32) + (2 * Index)) / 2)
|
||||
* #define BOOTLOADER_API_TABLE_SIZE 32
|
||||
* #define BOOTLOADER_API_TABLE_START ((FLASHEND + 1UL) - BOOTLOADER_API_TABLE_SIZE)
|
||||
* #define BOOTLOADER_API_CALL(Index) (void*)((BOOTLOADER_API_TABLE_START + (Index * 2)) / 2)
|
||||
*
|
||||
* void (*BootloaderAPI_ErasePage)(uint32_t Address) = BOOTLOADER_API_CALL(0);
|
||||
* void (*BootloaderAPI_WritePage)(uint32_t Address) = BOOTLOADER_API_CALL(1);
|
||||
|
@ -110,13 +112,13 @@
|
|||
* uint8_t (*BootloaderAPI_ReadLock)(void) = BOOTLOADER_API_CALL(5);
|
||||
* void (*BootloaderAPI_WriteLock)(uint8_t LockBits) = BOOTLOADER_API_CALL(6);
|
||||
*
|
||||
* #define BOOTLOADER_MAGIC_SIGNATURE_START (FLASHEND - 2)
|
||||
* #define BOOTLOADER_MAGIC_SIGNATURE_START (BOOTLOADER_API_TABLE_START + (BOOTLOADER_API_TABLE_SIZE - 2))
|
||||
* #define BOOTLOADER_MAGIC_SIGNATURE 0xDCFB
|
||||
*
|
||||
* #define BOOTLOADER_CLASS_SIGNATURE_START (FLASHEND - 4)
|
||||
* #define BOOTLOADER_DFU_SIGNATURE 0xDFB1
|
||||
* #define BOOTLOADER_CLASS_SIGNATURE_START (BOOTLOADER_API_TABLE_START + (BOOTLOADER_API_TABLE_SIZE - 4))
|
||||
* #define BOOTLOADER_CDC_SIGNATURE 0xDFB1
|
||||
*
|
||||
* #define BOOTLOADER_ADDRESS_START (FLASHEND - 8)
|
||||
* #define BOOTLOADER_ADDRESS_START (BOOTLOADER_API_TABLE_START + (BOOTLOADER_API_TABLE_SIZE - 8))
|
||||
* #define BOOTLOADER_ADDRESS_LENGTH 4
|
||||
* \endcode
|
||||
*
|
||||
|
|
|
@ -66,6 +66,7 @@
|
|||
* defined (thanks to Steven Morehouse)
|
||||
* - Fixed AVRISP-MKII programmer project reset line polarity inverted when the generated EEP file is loaded into the USB AVR's EEPROM and avr-dude is used
|
||||
* - Fixed CDC and DFU bootloaders failing to compile when the bootloader section size is 8KB or more (thanks to Georg Glock)
|
||||
* - Fixed CDC and DFU bootloaders API function offsets incorrect on some devices (thanks to Rod DeMay)
|
||||
* - Fixed incorrect DFU version number reported to the host in the DFU bootloader descriptors (thanks to Georg Glock)
|
||||
* - Fixed incorrect version hundredths value encoding in VERSION_BCD() macro (thanks to Georg Glock)
|
||||
*
|
||||
|
|
Loading…
Reference in New Issue