3 Copyright (C) Dean Camera, 2009.
5 dean [at] fourwalledcubicle [dot] com
6 www.fourwalledcubicle.com
10 Copyright 2009 Dean Camera (dean [at] fourwalledcubicle [dot] com)
12 Permission to use, copy, modify, and distribute this software
13 and its documentation for any purpose and without fee is hereby
14 granted, provided that the above copyright notice appear in all
15 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 */
41 uint32_t XPROG_Param_NVMBase
= 0x010001C0;
43 /** Size in bytes of the target's EEPROM page */
44 uint32_t XPROG_Param_EEPageSize
;
46 /** Currently selected XPROG programming protocol */
47 uint8_t XPROG_SelectedProtocol
= XPRG_PROTOCOL_PDI
;
50 /** Handler for the CMD_XPROG_SETMODE command, which sets the programmer-to-target protocol used for PDI/TPI
53 void XPROGProtocol_SetMode(void)
58 } SetMode_XPROG_Params
;
60 Endpoint_Read_Stream_LE(&SetMode_XPROG_Params
, sizeof(SetMode_XPROG_Params
));
63 Endpoint_SetEndpointDirection(ENDPOINT_DIR_IN
);
65 XPROG_SelectedProtocol
= SetMode_XPROG_Params
.Protocol
;
67 Endpoint_Write_Byte(CMD_XPROG_SETMODE
);
68 Endpoint_Write_Byte((SetMode_XPROG_Params
.Protocol
!= XPRG_PROTOCOL_JTAG
) ? STATUS_CMD_OK
: STATUS_CMD_FAILED
);
72 /** Handler for the CMD_XPROG command, which wraps up XPROG commands in a V2 wrapper which need to be
73 * removed and processed so that the underlying XPROG command can be handled.
75 void XPROGProtocol_Command(void)
77 uint8_t XPROGCommand
= Endpoint_Read_Byte();
81 case XPRG_CMD_ENTER_PROGMODE
:
82 XPROGProtocol_EnterXPROGMode();
84 case XPRG_CMD_LEAVE_PROGMODE
:
85 XPROGProtocol_LeaveXPROGMode();
88 XPROGProtocol_Erase();
90 case XPRG_CMD_WRITE_MEM
:
91 XPROGProtocol_WriteMemory();
93 case XPRG_CMD_READ_MEM
:
94 XPROGProtocol_ReadMemory();
97 XPROGProtocol_ReadCRC();
99 case XPRG_CMD_SET_PARAM
:
100 XPROGProtocol_SetParam();
105 /** Handler for the XPROG ENTER_PROGMODE command to establish a connection with the attached device. */
106 static void XPROGProtocol_EnterXPROGMode(void)
109 Endpoint_SetEndpointDirection(ENDPOINT_DIR_IN
);
113 if (XPROG_SelectedProtocol
== XPRG_PROTOCOL_PDI
)
115 /* Enable PDI programming mode with the attached target */
116 XPROGTarget_EnableTargetPDI();
118 /* Store the RESET key into the RESET PDI register to keep the XMEGA in reset */
119 XPROGTarget_SendByte(PDI_CMD_STCS
| PDI_RESET_REG
);
120 XPROGTarget_SendByte(PDI_RESET_KEY
);
122 /* Enable access to the XPROG NVM bus by sending the documented NVM access key to the device */
123 XPROGTarget_SendByte(PDI_CMD_KEY
);
124 for (uint8_t i
= sizeof(PDI_NVMENABLE_KEY
); i
> 0; i
--)
125 XPROGTarget_SendByte(PDI_NVMENABLE_KEY
[i
- 1]);
127 /* Wait until the NVM bus becomes active */
128 NVMBusEnabled
= XMEGANVM_WaitWhileNVMBusBusy();
132 /* Enable TPI programming mode with the attached target */
133 XPROGTarget_EnableTargetTPI();
135 // TODO - enable NVM bus via KEY
138 Endpoint_Write_Byte(CMD_XPROG
);
139 Endpoint_Write_Byte(XPRG_CMD_ENTER_PROGMODE
);
140 Endpoint_Write_Byte(NVMBusEnabled ? XPRG_ERR_OK
: XPRG_ERR_FAILED
);
144 /** Handler for the XPROG LEAVE_PROGMODE command to terminate the PDI programming connection with
145 * the attached device.
147 static void XPROGProtocol_LeaveXPROGMode(void)
150 Endpoint_SetEndpointDirection(ENDPOINT_DIR_IN
);
152 if (XPROG_SelectedProtocol
== XPRG_PROTOCOL_PDI
)
154 /* Clear the RESET key in the RESET PDI register to allow the XMEGA to run */
155 XPROGTarget_SendByte(PDI_CMD_STCS
| PDI_RESET_REG
);
156 XPROGTarget_SendByte(0x00);
158 XPROGTarget_DisableTargetPDI();
162 // TODO - Disable TPI via register
164 XPROGTarget_DisableTargetTPI();
167 Endpoint_Write_Byte(CMD_XPROG
);
168 Endpoint_Write_Byte(XPRG_CMD_LEAVE_PROGMODE
);
169 Endpoint_Write_Byte(XPRG_ERR_OK
);
173 /** Handler for the XPRG ERASE command to erase a specific memory address space in the attached device. */
174 static void XPROGProtocol_Erase(void)
176 uint8_t ReturnStatus
= XPRG_ERR_OK
;
182 } Erase_XPROG_Params
;
184 Endpoint_Read_Stream_LE(&Erase_XPROG_Params
, sizeof(Erase_XPROG_Params
));
185 Erase_XPROG_Params
.Address
= SwapEndian_32(Erase_XPROG_Params
.Address
);
188 Endpoint_SetEndpointDirection(ENDPOINT_DIR_IN
);
190 uint8_t EraseCommand
= XMEGA_NVM_CMD_NOOP
;
192 if (XPROG_SelectedProtocol
== XPRG_PROTOCOL_PDI
)
194 /* Determine which NVM command to send to the device depending on the memory to erase */
195 if (Erase_XPROG_Params
.MemoryType
== XPRG_ERASE_CHIP
)
196 EraseCommand
= XMEGA_NVM_CMD_CHIPERASE
;
197 else if (Erase_XPROG_Params
.MemoryType
== XPRG_ERASE_APP
)
198 EraseCommand
= XMEGA_NVM_CMD_ERASEAPPSEC
;
199 else if (Erase_XPROG_Params
.MemoryType
== XPRG_ERASE_BOOT
)
200 EraseCommand
= XMEGA_NVM_CMD_ERASEBOOTSEC
;
201 else if (Erase_XPROG_Params
.MemoryType
== XPRG_ERASE_EEPROM
)
202 EraseCommand
= XMEGA_NVM_CMD_ERASEEEPROM
;
203 else if (Erase_XPROG_Params
.MemoryType
== XPRG_ERASE_APP_PAGE
)
204 EraseCommand
= XMEGA_NVM_CMD_ERASEAPPSECPAGE
;
205 else if (Erase_XPROG_Params
.MemoryType
== XPRG_ERASE_BOOT_PAGE
)
206 EraseCommand
= XMEGA_NVM_CMD_ERASEBOOTSECPAGE
;
207 else if (Erase_XPROG_Params
.MemoryType
== XPRG_ERASE_EEPROM_PAGE
)
208 EraseCommand
= XMEGA_NVM_CMD_ERASEEEPROMPAGE
;
209 else if (Erase_XPROG_Params
.MemoryType
== XPRG_ERASE_USERSIG
)
210 EraseCommand
= XMEGA_NVM_CMD_ERASEUSERSIG
;
212 /* Erase the target memory, indicate timeout if ocurred */
213 if (!(XMEGANVM_EraseMemory(EraseCommand
, Erase_XPROG_Params
.Address
)))
214 ReturnStatus
= XPRG_ERR_TIMEOUT
;
221 Endpoint_Write_Byte(CMD_XPROG
);
222 Endpoint_Write_Byte(XPRG_CMD_ERASE
);
223 Endpoint_Write_Byte(ReturnStatus
);
227 /** Handler for the XPROG WRITE_MEMORY command to write to a specific memory space within the attached device. */
228 static void XPROGProtocol_WriteMemory(void)
230 uint8_t ReturnStatus
= XPRG_ERR_OK
;
238 uint8_t ProgData
[256];
239 } WriteMemory_XPROG_Params
;
241 Endpoint_Read_Stream_LE(&WriteMemory_XPROG_Params
, (sizeof(WriteMemory_XPROG_Params
) -
242 sizeof(WriteMemory_XPROG_Params
).ProgData
));
243 WriteMemory_XPROG_Params
.Address
= SwapEndian_32(WriteMemory_XPROG_Params
.Address
);
244 WriteMemory_XPROG_Params
.Length
= SwapEndian_16(WriteMemory_XPROG_Params
.Length
);
245 Endpoint_Read_Stream_LE(&WriteMemory_XPROG_Params
.ProgData
, WriteMemory_XPROG_Params
.Length
);
248 Endpoint_SetEndpointDirection(ENDPOINT_DIR_IN
);
250 /* Assume FLASH page programming by default, as it is the common case */
251 uint8_t WriteCommand
= XMEGA_NVM_CMD_WRITEFLASHPAGE
;
252 uint8_t WriteBuffCommand
= XMEGA_NVM_CMD_LOADFLASHPAGEBUFF
;
253 uint8_t EraseBuffCommand
= XMEGA_NVM_CMD_ERASEFLASHPAGEBUFF
;
254 bool PagedMemory
= true;
256 if (XPROG_SelectedProtocol
== XPRG_PROTOCOL_PDI
)
258 if (WriteMemory_XPROG_Params
.MemoryType
== XPRG_MEM_TYPE_APPL
)
260 WriteCommand
= XMEGA_NVM_CMD_WRITEAPPSECPAGE
;
262 else if (WriteMemory_XPROG_Params
.MemoryType
== XPRG_MEM_TYPE_BOOT
)
264 WriteCommand
= XMEGA_NVM_CMD_WRITEBOOTSECPAGE
;
266 else if (WriteMemory_XPROG_Params
.MemoryType
== XPRG_MEM_TYPE_EEPROM
)
268 WriteCommand
= XMEGA_NVM_CMD_WRITEEEPROMPAGE
;
269 WriteBuffCommand
= XMEGA_NVM_CMD_LOADEEPROMPAGEBUFF
;
270 EraseBuffCommand
= XMEGA_NVM_CMD_ERASEEEPROMPAGEBUFF
;
272 else if (WriteMemory_XPROG_Params
.MemoryType
== XPRG_MEM_TYPE_USERSIG
)
274 /* User signature is paged, but needs us to manually indicate the mode bits since the host doesn't set them */
275 WriteMemory_XPROG_Params
.PageMode
= (XPRG_PAGEMODE_ERASE
| XPRG_PAGEMODE_WRITE
);
276 WriteCommand
= XMEGA_NVM_CMD_WRITEUSERSIG
;
278 else if (WriteMemory_XPROG_Params
.MemoryType
== XPRG_MEM_TYPE_FUSE
)
280 WriteCommand
= XMEGA_NVM_CMD_WRITEFUSE
;
283 else if (WriteMemory_XPROG_Params
.MemoryType
== XPRG_MEM_TYPE_LOCKBITS
)
285 WriteCommand
= XMEGA_NVM_CMD_WRITELOCK
;
289 /* Send the appropriate memory write commands to the device, indicate timeout if occurred */
290 if ((PagedMemory
&& !XMEGANVM_WritePageMemory(WriteBuffCommand
, EraseBuffCommand
, WriteCommand
,
291 WriteMemory_XPROG_Params
.PageMode
, WriteMemory_XPROG_Params
.Address
,
292 WriteMemory_XPROG_Params
.ProgData
, WriteMemory_XPROG_Params
.Length
)) ||
293 (!PagedMemory
&& !XMEGANVM_WriteByteMemory(WriteCommand
, WriteMemory_XPROG_Params
.Address
,
294 WriteMemory_XPROG_Params
.ProgData
)))
296 ReturnStatus
= XPRG_ERR_TIMEOUT
;
304 Endpoint_Write_Byte(CMD_XPROG
);
305 Endpoint_Write_Byte(XPRG_CMD_WRITE_MEM
);
306 Endpoint_Write_Byte(ReturnStatus
);
310 /** Handler for the XPROG READ_MEMORY command to read data from a specific address space within the
313 static void XPROGProtocol_ReadMemory(void)
315 uint8_t ReturnStatus
= XPRG_ERR_OK
;
322 } ReadMemory_XPROG_Params
;
324 Endpoint_Read_Stream_LE(&ReadMemory_XPROG_Params
, sizeof(ReadMemory_XPROG_Params
));
325 ReadMemory_XPROG_Params
.Address
= SwapEndian_32(ReadMemory_XPROG_Params
.Address
);
326 ReadMemory_XPROG_Params
.Length
= SwapEndian_16(ReadMemory_XPROG_Params
.Length
);
329 Endpoint_SetEndpointDirection(ENDPOINT_DIR_IN
);
331 uint8_t ReadBuffer
[256];
333 if (XPROG_SelectedProtocol
== XPRG_PROTOCOL_PDI
)
335 /* Read the target's memory, indicate timeout if occurred */
336 if (!(XMEGANVM_ReadMemory(ReadMemory_XPROG_Params
.Address
, ReadBuffer
, ReadMemory_XPROG_Params
.Length
)))
337 ReturnStatus
= XPRG_ERR_TIMEOUT
;
344 Endpoint_Write_Byte(CMD_XPROG
);
345 Endpoint_Write_Byte(XPRG_CMD_READ_MEM
);
346 Endpoint_Write_Byte(ReturnStatus
);
348 if (ReturnStatus
== XPRG_ERR_OK
)
349 Endpoint_Write_Stream_LE(ReadBuffer
, ReadMemory_XPROG_Params
.Length
);
354 /** Handler for the XPROG CRC command to read a specific memory space's CRC value for comparison between the
355 * attached device's memory and a data set on the host.
357 static void XPROGProtocol_ReadCRC(void)
359 uint8_t ReturnStatus
= XPRG_ERR_OK
;
364 } ReadCRC_XPROG_Params
;
366 Endpoint_Read_Stream_LE(&ReadCRC_XPROG_Params
, sizeof(ReadCRC_XPROG_Params
));
368 Endpoint_SetEndpointDirection(ENDPOINT_DIR_IN
);
370 uint8_t CRCCommand
= XMEGA_NVM_CMD_NOOP
;
373 if (XPROG_SelectedProtocol
== XPRG_PROTOCOL_PDI
)
375 /* Determine which NVM command to send to the device depending on the memory to CRC */
376 if (ReadCRC_XPROG_Params
.CRCType
== XPRG_CRC_APP
)
377 CRCCommand
= XMEGA_NVM_CMD_APPCRC
;
378 else if (ReadCRC_XPROG_Params
.CRCType
== XPRG_CRC_BOOT
)
379 CRCCommand
= XMEGA_NVM_CMD_BOOTCRC
;
381 CRCCommand
= XMEGA_NVM_CMD_FLASHCRC
;
383 /* Perform and retrieve the memory CRC, indicate timeout if occurred */
384 if (!(XMEGANVM_GetMemoryCRC(CRCCommand
, &MemoryCRC
)))
385 ReturnStatus
= XPRG_ERR_TIMEOUT
;
389 /* TPI does not support memory CRC */
390 ReturnStatus
= XPRG_ERR_FAILED
;
393 Endpoint_Write_Byte(CMD_XPROG
);
394 Endpoint_Write_Byte(XPRG_CMD_CRC
);
395 Endpoint_Write_Byte(ReturnStatus
);
397 if (ReturnStatus
== XPRG_ERR_OK
)
399 Endpoint_Write_Byte(MemoryCRC
>> 16);
400 Endpoint_Write_Word_LE(MemoryCRC
& 0xFFFF);
406 /** Handler for the XPROG SET_PARAM command to set a XPROG parameter for use when communicating with the
409 static void XPROGProtocol_SetParam(void)
411 uint8_t ReturnStatus
= XPRG_ERR_OK
;
413 uint8_t XPROGParam
= Endpoint_Read_Byte();
415 /* Determine which parameter is being set, store the new parameter value */
416 if (XPROGParam
== XPRG_PARAM_NVMBASE
)
417 XPROG_Param_NVMBase
= Endpoint_Read_DWord_BE();
418 else if (XPROGParam
== XPRG_PARAM_EEPPAGESIZE
)
419 XPROG_Param_EEPageSize
= Endpoint_Read_Word_BE();
421 ReturnStatus
= XPRG_ERR_FAILED
;
424 Endpoint_SetEndpointDirection(ENDPOINT_DIR_IN
);
426 Endpoint_Write_Byte(CMD_XPROG
);
427 Endpoint_Write_Byte(XPRG_CMD_SET_PARAM
);
428 Endpoint_Write_Byte(ReturnStatus
);