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 * XPROG Protocol handler, to process V2 Protocol wrapped XPROG commands used in Atmel programmer devices.
36 #define INCLUDE_FROM_XPROGPROTOCOL_C
37 #include "XPROGProtocol.h"
39 #if defined(ENABLE_XPROG_PROTOCOL) || defined(__DOXYGEN__)
40 /** Base absolute address for the target's NVM controller for PDI programming */
41 uint32_t XPROG_Param_NVMBase
= 0x010001C0;
43 /** Size in bytes of the target's EEPROM page */
44 uint16_t XPROG_Param_EEPageSize
;
46 /** Address of the TPI device's NVMCMD register for TPI programming */
47 uint8_t XPROG_Param_NVMCMDRegAddr
;
49 /** Address of the TPI device's NVMCSR register for TPI programming */
50 uint8_t XPROG_Param_NVMCSRRegAddr
;
52 /** Currently selected XPROG programming protocol */
53 uint8_t XPROG_SelectedProtocol
= XPRG_PROTOCOL_PDI
;
55 /** Handler for the CMD_XPROG_SETMODE command, which sets the programmer-to-target protocol used for PDI/TPI
58 void XPROGProtocol_SetMode(void)
63 } SetMode_XPROG_Params
;
65 Endpoint_Read_Stream_LE(&SetMode_XPROG_Params
, sizeof(SetMode_XPROG_Params
), NO_STREAM_CALLBACK
);
68 Endpoint_SetEndpointDirection(ENDPOINT_DIR_IN
);
70 XPROG_SelectedProtocol
= SetMode_XPROG_Params
.Protocol
;
72 Endpoint_Write_Byte(CMD_XPROG_SETMODE
);
73 Endpoint_Write_Byte((SetMode_XPROG_Params
.Protocol
!= XPRG_PROTOCOL_JTAG
) ? STATUS_CMD_OK
: STATUS_CMD_FAILED
);
77 /** Handler for the CMD_XPROG command, which wraps up XPROG commands in a V2 wrapper which need to be
78 * removed and processed so that the underlying XPROG command can be handled.
80 void XPROGProtocol_Command(void)
82 uint8_t XPROGCommand
= Endpoint_Read_Byte();
86 case XPRG_CMD_ENTER_PROGMODE
:
87 XPROGProtocol_EnterXPROGMode();
89 case XPRG_CMD_LEAVE_PROGMODE
:
90 XPROGProtocol_LeaveXPROGMode();
93 XPROGProtocol_Erase();
95 case XPRG_CMD_WRITE_MEM
:
96 XPROGProtocol_WriteMemory();
98 case XPRG_CMD_READ_MEM
:
99 XPROGProtocol_ReadMemory();
102 XPROGProtocol_ReadCRC();
104 case XPRG_CMD_SET_PARAM
:
105 XPROGProtocol_SetParam();
110 /** Handler for the XPROG ENTER_PROGMODE command to establish a connection with the attached device. */
111 static void XPROGProtocol_EnterXPROGMode(void)
114 Endpoint_SetEndpointDirection(ENDPOINT_DIR_IN
);
118 if (XPROG_SelectedProtocol
== XPRG_PROTOCOL_PDI
)
120 /* Enable PDI programming mode with the attached target */
121 XPROGTarget_EnableTargetPDI();
123 /* Store the RESET key into the RESET PDI register to keep the XMEGA in reset */
124 XPROGTarget_SendByte(PDI_CMD_STCS
| PDI_RESET_REG
);
125 XPROGTarget_SendByte(PDI_RESET_KEY
);
127 /* Lower direction change guard time to 0 USART bits */
128 XPROGTarget_SendByte(PDI_CMD_STCS
| PDI_CTRL_REG
);
129 XPROGTarget_SendByte(0x07);
131 /* Enable access to the XPROG NVM bus by sending the documented NVM access key to the device */
132 XPROGTarget_SendByte(PDI_CMD_KEY
);
133 for (uint8_t i
= sizeof(PDI_NVMENABLE_KEY
); i
> 0; i
--)
134 XPROGTarget_SendByte(PDI_NVMENABLE_KEY
[i
- 1]);
136 /* Wait until the NVM bus becomes active */
137 NVMBusEnabled
= XMEGANVM_WaitWhileNVMBusBusy();
141 /* Enable TPI programming mode with the attached target */
142 XPROGTarget_EnableTargetTPI();
144 /* Lower direction change guard time to 0 USART bits */
145 XPROGTarget_SendByte(TPI_CMD_SSTCS
| TPI_CTRL_REG
);
146 XPROGTarget_SendByte(0x07);
148 /* Enable access to the XPROG NVM bus by sending the documented NVM access key to the device */
149 XPROGTarget_SendByte(TPI_CMD_SKEY
);
150 for (uint8_t i
= sizeof(TPI_NVMENABLE_KEY
); i
> 0; i
--)
151 XPROGTarget_SendByte(TPI_NVMENABLE_KEY
[i
- 1]);
153 /* Wait until the NVM bus becomes active */
154 NVMBusEnabled
= TINYNVM_WaitWhileNVMBusBusy();
157 Endpoint_Write_Byte(CMD_XPROG
);
158 Endpoint_Write_Byte(XPRG_CMD_ENTER_PROGMODE
);
159 Endpoint_Write_Byte(NVMBusEnabled ? XPRG_ERR_OK
: XPRG_ERR_FAILED
);
163 /** Handler for the XPROG LEAVE_PROGMODE command to terminate the PDI programming connection with
164 * the attached device.
166 static void XPROGProtocol_LeaveXPROGMode(void)
169 Endpoint_SetEndpointDirection(ENDPOINT_DIR_IN
);
171 if (XPROG_SelectedProtocol
== XPRG_PROTOCOL_PDI
)
173 XMEGANVM_WaitWhileNVMBusBusy();
175 /* Clear the RESET key in the RESET PDI register to allow the XMEGA to run */
176 XPROGTarget_SendByte(PDI_CMD_STCS
| PDI_RESET_REG
);
177 XPROGTarget_SendByte(0x00);
179 /* Clear /RESET key twice (for some reason this needs to be done twice to take effect) */
180 XPROGTarget_SendByte(PDI_CMD_STCS
| PDI_RESET_REG
);
181 XPROGTarget_SendByte(0x00);
183 XPROGTarget_DisableTargetPDI();
187 TINYNVM_WaitWhileNVMBusBusy();
189 /* Clear the NVMEN bit in the TPI CONTROL register to disable TPI mode */
190 XPROGTarget_SendByte(TPI_CMD_SSTCS
| TPI_CTRL_REG
);
191 XPROGTarget_SendByte(0x00);
193 XPROGTarget_DisableTargetTPI();
196 Endpoint_Write_Byte(CMD_XPROG
);
197 Endpoint_Write_Byte(XPRG_CMD_LEAVE_PROGMODE
);
198 Endpoint_Write_Byte(XPRG_ERR_OK
);
202 /** Handler for the XPRG ERASE command to erase a specific memory address space in the attached device. */
203 static void XPROGProtocol_Erase(void)
205 uint8_t ReturnStatus
= XPRG_ERR_OK
;
211 } Erase_XPROG_Params
;
213 Endpoint_Read_Stream_LE(&Erase_XPROG_Params
, sizeof(Erase_XPROG_Params
), NO_STREAM_CALLBACK
);
214 Erase_XPROG_Params
.Address
= SwapEndian_32(Erase_XPROG_Params
.Address
);
217 Endpoint_SetEndpointDirection(ENDPOINT_DIR_IN
);
219 uint8_t EraseCommand
;
221 if (XPROG_SelectedProtocol
== XPRG_PROTOCOL_PDI
)
223 /* Determine which NVM command to send to the device depending on the memory to erase */
224 switch (Erase_XPROG_Params
.MemoryType
)
226 case XPRG_ERASE_CHIP
:
227 EraseCommand
= XMEGA_NVM_CMD_CHIPERASE
;
230 EraseCommand
= XMEGA_NVM_CMD_ERASEAPPSEC
;
232 case XPRG_ERASE_BOOT
:
233 EraseCommand
= XMEGA_NVM_CMD_ERASEBOOTSEC
;
235 case XPRG_ERASE_EEPROM
:
236 EraseCommand
= XMEGA_NVM_CMD_ERASEEEPROM
;
238 case XPRG_ERASE_APP_PAGE
:
239 EraseCommand
= XMEGA_NVM_CMD_ERASEAPPSECPAGE
;
241 case XPRG_ERASE_BOOT_PAGE
:
242 EraseCommand
= XMEGA_NVM_CMD_ERASEBOOTSECPAGE
;
244 case XPRG_ERASE_EEPROM_PAGE
:
245 EraseCommand
= XMEGA_NVM_CMD_ERASEEEPROMPAGE
;
247 case XPRG_ERASE_USERSIG
:
248 EraseCommand
= XMEGA_NVM_CMD_ERASEUSERSIG
;
251 EraseCommand
= XMEGA_NVM_CMD_NOOP
;
255 /* Erase the target memory, indicate timeout if ocurred */
256 if (!(XMEGANVM_EraseMemory(EraseCommand
, Erase_XPROG_Params
.Address
)))
257 ReturnStatus
= XPRG_ERR_TIMEOUT
;
261 if (Erase_XPROG_Params
.MemoryType
== XPRG_ERASE_CHIP
)
262 EraseCommand
= TINY_NVM_CMD_CHIPERASE
;
264 EraseCommand
= TINY_NVM_CMD_SECTIONERASE
;
266 /* Erase the target memory, indicate timeout if ocurred */
267 if (!(TINYNVM_EraseMemory(EraseCommand
, Erase_XPROG_Params
.Address
)))
268 ReturnStatus
= XPRG_ERR_TIMEOUT
;
271 Endpoint_Write_Byte(CMD_XPROG
);
272 Endpoint_Write_Byte(XPRG_CMD_ERASE
);
273 Endpoint_Write_Byte(ReturnStatus
);
277 /** Handler for the XPROG WRITE_MEMORY command to write to a specific memory space within the attached device. */
278 static void XPROGProtocol_WriteMemory(void)
280 uint8_t ReturnStatus
= XPRG_ERR_OK
;
288 uint8_t ProgData
[256];
289 } WriteMemory_XPROG_Params
;
291 Endpoint_Read_Stream_LE(&WriteMemory_XPROG_Params
, (sizeof(WriteMemory_XPROG_Params
) -
292 sizeof(WriteMemory_XPROG_Params
).ProgData
), NO_STREAM_CALLBACK
);
293 WriteMemory_XPROG_Params
.Address
= SwapEndian_32(WriteMemory_XPROG_Params
.Address
);
294 WriteMemory_XPROG_Params
.Length
= SwapEndian_16(WriteMemory_XPROG_Params
.Length
);
295 Endpoint_Read_Stream_LE(&WriteMemory_XPROG_Params
.ProgData
, WriteMemory_XPROG_Params
.Length
, NO_STREAM_CALLBACK
);
298 Endpoint_SetEndpointDirection(ENDPOINT_DIR_IN
);
300 if (XPROG_SelectedProtocol
== XPRG_PROTOCOL_PDI
)
302 /* Assume FLASH page programming by default, as it is the common case */
303 uint8_t WriteCommand
= XMEGA_NVM_CMD_WRITEFLASHPAGE
;
304 uint8_t WriteBuffCommand
= XMEGA_NVM_CMD_LOADFLASHPAGEBUFF
;
305 uint8_t EraseBuffCommand
= XMEGA_NVM_CMD_ERASEFLASHPAGEBUFF
;
306 bool PagedMemory
= true;
308 switch (WriteMemory_XPROG_Params
.MemoryType
)
310 case XPRG_MEM_TYPE_APPL
:
311 WriteCommand
= XMEGA_NVM_CMD_WRITEAPPSECPAGE
;
313 case XPRG_MEM_TYPE_BOOT
:
314 WriteCommand
= XMEGA_NVM_CMD_WRITEBOOTSECPAGE
;
316 case XPRG_MEM_TYPE_EEPROM
:
317 WriteCommand
= XMEGA_NVM_CMD_WRITEEEPROMPAGE
;
318 WriteBuffCommand
= XMEGA_NVM_CMD_LOADEEPROMPAGEBUFF
;
319 EraseBuffCommand
= XMEGA_NVM_CMD_ERASEEEPROMPAGEBUFF
;
321 case XPRG_MEM_TYPE_USERSIG
:
322 /* User signature is paged, but needs us to manually indicate the mode bits since the host doesn't set them */
323 WriteMemory_XPROG_Params
.PageMode
= (XPRG_PAGEMODE_ERASE
| XPRG_PAGEMODE_WRITE
);
324 WriteCommand
= XMEGA_NVM_CMD_WRITEUSERSIG
;
326 case XPRG_MEM_TYPE_FUSE
:
327 WriteCommand
= XMEGA_NVM_CMD_WRITEFUSE
;
330 case XPRG_MEM_TYPE_LOCKBITS
:
331 WriteCommand
= XMEGA_NVM_CMD_WRITELOCK
;
336 /* Send the appropriate memory write commands to the device, indicate timeout if occurred */
337 if ((PagedMemory
&& !(XMEGANVM_WritePageMemory(WriteBuffCommand
, EraseBuffCommand
, WriteCommand
,
338 WriteMemory_XPROG_Params
.PageMode
, WriteMemory_XPROG_Params
.Address
,
339 WriteMemory_XPROG_Params
.ProgData
, WriteMemory_XPROG_Params
.Length
))) ||
340 (!PagedMemory
&& !(XMEGANVM_WriteByteMemory(WriteCommand
, WriteMemory_XPROG_Params
.Address
,
341 WriteMemory_XPROG_Params
.ProgData
[0]))))
343 ReturnStatus
= XPRG_ERR_TIMEOUT
;
348 /* Send write command to the TPI device, indicate timeout if occurred */
349 if (!(TINYNVM_WriteMemory(WriteMemory_XPROG_Params
.Address
, WriteMemory_XPROG_Params
.ProgData
,
350 WriteMemory_XPROG_Params
.Length
)))
352 ReturnStatus
= XPRG_ERR_TIMEOUT
;
356 Endpoint_Write_Byte(CMD_XPROG
);
357 Endpoint_Write_Byte(XPRG_CMD_WRITE_MEM
);
358 Endpoint_Write_Byte(ReturnStatus
);
362 /** Handler for the XPROG READ_MEMORY command to read data from a specific address space within the
365 static void XPROGProtocol_ReadMemory(void)
367 uint8_t ReturnStatus
= XPRG_ERR_OK
;
374 } ReadMemory_XPROG_Params
;
376 Endpoint_Read_Stream_LE(&ReadMemory_XPROG_Params
, sizeof(ReadMemory_XPROG_Params
), NO_STREAM_CALLBACK
);
377 ReadMemory_XPROG_Params
.Address
= SwapEndian_32(ReadMemory_XPROG_Params
.Address
);
378 ReadMemory_XPROG_Params
.Length
= SwapEndian_16(ReadMemory_XPROG_Params
.Length
);
381 Endpoint_SetEndpointDirection(ENDPOINT_DIR_IN
);
383 uint8_t ReadBuffer
[256];
385 if (XPROG_SelectedProtocol
== XPRG_PROTOCOL_PDI
)
387 /* Read the PDI target's memory, indicate timeout if occurred */
388 if (!(XMEGANVM_ReadMemory(ReadMemory_XPROG_Params
.Address
, ReadBuffer
, ReadMemory_XPROG_Params
.Length
)))
389 ReturnStatus
= XPRG_ERR_TIMEOUT
;
393 /* Read the TPI target's memory, indicate timeout if occurred */
394 if (!(TINYNVM_ReadMemory(ReadMemory_XPROG_Params
.Address
, ReadBuffer
, ReadMemory_XPROG_Params
.Length
)))
395 ReturnStatus
= XPRG_ERR_TIMEOUT
;
398 Endpoint_Write_Byte(CMD_XPROG
);
399 Endpoint_Write_Byte(XPRG_CMD_READ_MEM
);
400 Endpoint_Write_Byte(ReturnStatus
);
402 if (ReturnStatus
== XPRG_ERR_OK
)
403 Endpoint_Write_Stream_LE(ReadBuffer
, ReadMemory_XPROG_Params
.Length
, NO_STREAM_CALLBACK
);
408 /** Handler for the XPROG CRC command to read a specific memory space's CRC value for comparison between the
409 * attached device's memory and a data set on the host.
411 static void XPROGProtocol_ReadCRC(void)
413 uint8_t ReturnStatus
= XPRG_ERR_OK
;
418 } ReadCRC_XPROG_Params
;
420 Endpoint_Read_Stream_LE(&ReadCRC_XPROG_Params
, sizeof(ReadCRC_XPROG_Params
), NO_STREAM_CALLBACK
);
423 Endpoint_SetEndpointDirection(ENDPOINT_DIR_IN
);
427 if (XPROG_SelectedProtocol
== XPRG_PROTOCOL_PDI
)
431 /* Determine which NVM command to send to the device depending on the memory to CRC */
432 switch (ReadCRC_XPROG_Params
.CRCType
)
435 CRCCommand
= XMEGA_NVM_CMD_APPCRC
;
438 CRCCommand
= XMEGA_NVM_CMD_BOOTCRC
;
441 CRCCommand
= XMEGA_NVM_CMD_FLASHCRC
;
445 /* Perform and retrieve the memory CRC, indicate timeout if occurred */
446 if (!(XMEGANVM_GetMemoryCRC(CRCCommand
, &MemoryCRC
)))
447 ReturnStatus
= XPRG_ERR_TIMEOUT
;
451 /* TPI does not support memory CRC */
452 ReturnStatus
= XPRG_ERR_FAILED
;
455 Endpoint_Write_Byte(CMD_XPROG
);
456 Endpoint_Write_Byte(XPRG_CMD_CRC
);
457 Endpoint_Write_Byte(ReturnStatus
);
459 if (ReturnStatus
== XPRG_ERR_OK
)
461 Endpoint_Write_Byte(MemoryCRC
>> 16);
462 Endpoint_Write_Word_LE(MemoryCRC
& 0xFFFF);
468 /** Handler for the XPROG SET_PARAM command to set a XPROG parameter for use when communicating with the
471 static void XPROGProtocol_SetParam(void)
473 uint8_t ReturnStatus
= XPRG_ERR_OK
;
475 uint8_t XPROGParam
= Endpoint_Read_Byte();
477 /* Determine which parameter is being set, store the new parameter value */
480 case XPRG_PARAM_NVMBASE
:
481 XPROG_Param_NVMBase
= Endpoint_Read_DWord_BE();
483 case XPRG_PARAM_EEPPAGESIZE
:
484 XPROG_Param_EEPageSize
= Endpoint_Read_Word_BE();
486 case XPRG_PARAM_NVMCMD_REG
:
487 XPROG_Param_NVMCMDRegAddr
= Endpoint_Read_Byte();
489 case XPRG_PARAM_NVMCSR_REG
:
490 XPROG_Param_NVMCSRRegAddr
= Endpoint_Read_Byte();
493 ReturnStatus
= XPRG_ERR_FAILED
;
498 Endpoint_SetEndpointDirection(ENDPOINT_DIR_IN
);
500 Endpoint_Write_Byte(CMD_XPROG
);
501 Endpoint_Write_Byte(XPRG_CMD_SET_PARAM
);
502 Endpoint_Write_Byte(ReturnStatus
);