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 * PDI Protocol handler, to process V2 Protocol wrapped PDI commands used in Atmel programmer devices.
36 #define INCLUDE_FROM_PDIPROTOCOL_C
37 #include "PDIProtocol.h"
39 #if defined(ENABLE_PDI_PROTOCOL) || defined(__DOXYGEN__)
40 #warning PDI Programming Protocol support is incomplete and not currently suitable for general use.
42 /** Base absolute address for the target's NVM controller */
43 uint32_t XPROG_Param_NVMBase
;
45 /** Size in bytes of the target's EEPROM page */
46 uint32_t XPROG_Param_EEPageSize
;
48 /** Handler for the CMD_XPROG_SETMODE command, which sets the programmer-to-target protocol used for PDI
49 * XMEGA programming (either PDI or JTAG). Only PDI programming is supported.
51 void PDIProtocol_XPROG_SetMode(void)
56 } SetMode_XPROG_Params
;
58 Endpoint_Read_Stream_LE(&SetMode_XPROG_Params
, sizeof(SetMode_XPROG_Params
));
61 Endpoint_SetEndpointDirection(ENDPOINT_DIR_IN
);
63 Endpoint_Write_Byte(CMD_XPROG_SETMODE
);
64 Endpoint_Write_Byte((SetMode_XPROG_Params
.Protocol
== XPRG_PROTOCOL_PDI
) ? STATUS_CMD_OK
: STATUS_CMD_FAILED
);
68 /** Handler for the CMD_XPROG command, which wraps up XPROG commands in a V2 wrapper which need to be
69 * removed and processed so that the underlying XPROG command can be handled.
71 void PDIProtocol_XPROG_Command(void)
73 uint8_t XPROGCommand
= Endpoint_Read_Byte();
77 case XPRG_CMD_ENTER_PROGMODE
:
78 PDIProtocol_EnterXPROGMode();
80 case XPRG_CMD_LEAVE_PROGMODE
:
81 PDIProtocol_LeaveXPROGMode();
86 case XPRG_CMD_WRITE_MEM
:
87 PDIProtocol_WriteMemory();
89 case XPRG_CMD_READ_MEM
:
90 PDIProtocol_ReadMemory();
93 PDIProtocol_ReadCRC();
95 case XPRG_CMD_SET_PARAM
:
96 PDIProtocol_SetParam();
101 /** Handler for the XPROG ENTER_PROGMODE command to establish a PDI connection with the attached device. */
102 static void PDIProtocol_EnterXPROGMode(void)
105 Endpoint_SetEndpointDirection(ENDPOINT_DIR_IN
);
107 /* Enable PDI programming mode with the attached target */
108 PDITarget_EnableTargetPDI();
110 /* Store the RESET key into the RESET PDI register to keep the XMEGA in reset */
111 PDITarget_SendByte(PDI_CMD_STCS
| PDI_RESET_REG
);
112 PDITarget_SendByte(PDI_RESET_KEY
);
114 /* Enable access to the XPROG NVM bus by sending the documented NVM access key to the device */
115 PDITarget_SendByte(PDI_CMD_KEY
);
116 for (uint8_t i
= sizeof(PDI_NVMENABLE_KEY
); i
> 0; i
--)
117 PDITarget_SendByte(PDI_NVMENABLE_KEY
[i
- 1]);
119 /* Wait until the NVM bus becomes active */
120 bool NVMBusEnabled
= PDITarget_WaitWhileNVMBusBusy();
122 Endpoint_Write_Byte(CMD_XPROG
);
123 Endpoint_Write_Byte(XPRG_CMD_ENTER_PROGMODE
);
124 Endpoint_Write_Byte(NVMBusEnabled ? XPRG_ERR_OK
: XPRG_ERR_FAILED
);
128 /** Handler for the XPROG LEAVE_PROGMODE command to terminate the PDI programming connection with
129 * the attached device.
131 static void PDIProtocol_LeaveXPROGMode(void)
134 Endpoint_SetEndpointDirection(ENDPOINT_DIR_IN
);
136 /* Clear the RESET key in the RESET PDI register to allow the XMEGA to run */
137 PDITarget_SendByte(PDI_CMD_STCS
| PDI_RESET_REG
);
138 PDITarget_SendByte(0x00);
140 PDITarget_DisableTargetPDI();
142 Endpoint_Write_Byte(CMD_XPROG
);
143 Endpoint_Write_Byte(XPRG_CMD_LEAVE_PROGMODE
);
144 Endpoint_Write_Byte(XPRG_ERR_OK
);
148 /** Handler for the XPRG ERASE command to erase a specific memory address space in the attached device. */
149 static void PDIProtocol_Erase(void)
151 uint8_t ReturnStatus
= XPRG_ERR_OK
;
157 } Erase_XPROG_Params
;
159 Endpoint_Read_Stream_LE(&Erase_XPROG_Params
, sizeof(Erase_XPROG_Params
));
160 Erase_XPROG_Params
.Address
= SwapEndian_32(Erase_XPROG_Params
.Address
);
163 Endpoint_SetEndpointDirection(ENDPOINT_DIR_IN
);
165 uint8_t EraseCommand
= NVM_CMD_NOOP
;
167 if (Erase_XPROG_Params
.MemoryType
== XPRG_ERASE_CHIP
)
168 EraseCommand
= NVM_CMD_CHIPERASE
;
169 else if (Erase_XPROG_Params
.MemoryType
== XPRG_ERASE_APP
)
170 EraseCommand
= NVM_CMD_ERASEAPPSEC
;
171 else if (Erase_XPROG_Params
.MemoryType
== XPRG_ERASE_BOOT
)
172 EraseCommand
= NVM_CMD_ERASEBOOTSEC
;
173 else if (Erase_XPROG_Params
.MemoryType
== XPRG_ERASE_EEPROM
)
174 EraseCommand
= NVM_CMD_ERASEEEPROM
;
175 else if (Erase_XPROG_Params
.MemoryType
== XPRG_ERASE_APP_PAGE
)
176 EraseCommand
= NVM_CMD_ERASEAPPSECPAGE
;
177 else if (Erase_XPROG_Params
.MemoryType
== XPRG_ERASE_BOOT_PAGE
)
178 EraseCommand
= NVM_CMD_ERASEBOOTSECPAGE
;
179 else if (Erase_XPROG_Params
.MemoryType
== XPRG_ERASE_EEPROM_PAGE
)
180 EraseCommand
= NVM_CMD_ERASEEEPROMPAGE
;
181 else if (Erase_XPROG_Params
.MemoryType
== XPRG_ERASE_USERSIG
)
182 EraseCommand
= NVM_CMD_ERASEUSERSIG
;
184 if (!(NVMTarget_EraseMemory(EraseCommand
, Erase_XPROG_Params
.Address
)))
185 ReturnStatus
= XPRG_ERR_TIMEOUT
;
187 Endpoint_Write_Byte(CMD_XPROG
);
188 Endpoint_Write_Byte(XPRG_CMD_ERASE
);
189 Endpoint_Write_Byte(ReturnStatus
);
193 /** Handler for the XPROG WRITE_MEMORY command to write to a specific memory space within the attached device. */
194 static void PDIProtocol_WriteMemory(void)
196 uint8_t ReturnStatus
= XPRG_ERR_OK
;
204 uint8_t ProgData
[256];
205 } WriteMemory_XPROG_Params
;
207 Endpoint_Read_Stream_LE(&WriteMemory_XPROG_Params
, (sizeof(WriteMemory_XPROG_Params
) -
208 sizeof(WriteMemory_XPROG_Params
).ProgData
));
209 WriteMemory_XPROG_Params
.Address
= SwapEndian_32(WriteMemory_XPROG_Params
.Address
);
210 WriteMemory_XPROG_Params
.Length
= SwapEndian_16(WriteMemory_XPROG_Params
.Length
);
211 Endpoint_Read_Stream_LE(&WriteMemory_XPROG_Params
.ProgData
, WriteMemory_XPROG_Params
.Length
);
214 Endpoint_SetEndpointDirection(ENDPOINT_DIR_IN
);
217 uint8_t WriteCommand
= NVM_CMD_NOOP
;
218 uint8_t WriteBuffCommand
= NVM_CMD_NOOP
;
219 uint8_t EraseBuffCommand
= NVM_CMD_NOOP
;
220 bool PagedMemory
= false;
222 if (WriteMemory_XPROG_Params
.MemoryType
== XPRG_MEM_TYPE_APPL
)
224 WriteCommand
= NVM_CMD_ERASEWRITEFLASH
;
225 WriteBuffCommand
= NVM_CMD_LOADFLASHPAGEBUFF
;
226 EraseBuffCommand
= NVM_CMD_ERASEFLASHPAGEBUFF
;
229 else if (WriteMemory_XPROG_Params
.MemoryType
== XPRG_MEM_TYPE_BOOT
)
231 WriteCommand
= NVM_CMD_ERASEWRITEFLASH
;
232 WriteBuffCommand
= NVM_CMD_LOADFLASHPAGEBUFF
;
233 EraseBuffCommand
= NVM_CMD_ERASEFLASHPAGEBUFF
;
236 else if (WriteMemory_XPROG_Params
.MemoryType
== XPRG_MEM_TYPE_EEPROM
)
238 WriteCommand
= NVM_CMD_ERASEWRITEEEPROMPAGE
;
239 WriteBuffCommand
= NVM_CMD_LOADEEPROMPAGEBUFF
;
240 EraseBuffCommand
= NVM_CMD_ERASEEEPROMPAGEBUFF
;
243 else if (WriteMemory_XPROG_Params
.MemoryType
== XPRG_MEM_TYPE_USERSIG
)
245 WriteCommand
= NVM_CMD_WRITEUSERSIG
;
246 WriteBuffCommand
= NVM_CMD_LOADFLASHPAGEBUFF
;
247 EraseBuffCommand
= NVM_CMD_ERASEFLASHPAGEBUFF
;
250 else if (WriteMemory_XPROG_Params
.MemoryType
== XPRG_MEM_TYPE_FUSE
)
252 WriteCommand
= NVM_CMD_WRITEFUSE
;
254 else if (WriteMemory_XPROG_Params
.MemoryType
== XPRG_MEM_TYPE_LOCKBITS
)
256 WriteCommand
= NVM_CMD_WRITELOCK
;
261 if (!(NVMTarget_WritePageMemory(WriteBuffCommand
, EraseBuffCommand
, WriteCommand
,
262 WriteMemory_XPROG_Params
.PageMode
, WriteMemory_XPROG_Params
.Address
,
263 WriteMemory_XPROG_Params
.ProgData
, WriteMemory_XPROG_Params
.Length
)))
265 ReturnStatus
= XPRG_ERR_TIMEOUT
;
270 if (!(NVMTarget_WriteByteMemory(WriteCommand
, WriteMemory_XPROG_Params
.Address
, WriteMemory_XPROG_Params
.ProgData
,
271 WriteMemory_XPROG_Params
.Length
)))
273 ReturnStatus
= XPRG_ERR_TIMEOUT
;
277 Endpoint_Write_Byte(CMD_XPROG
);
278 Endpoint_Write_Byte(XPRG_CMD_WRITE_MEM
);
279 Endpoint_Write_Byte(ReturnStatus
);
283 /** Handler for the XPROG READ_MEMORY command to read data from a specific address space within the
286 static void PDIProtocol_ReadMemory(void)
288 uint8_t ReturnStatus
= XPRG_ERR_OK
;
295 } ReadMemory_XPROG_Params
;
297 Endpoint_Read_Stream_LE(&ReadMemory_XPROG_Params
, sizeof(ReadMemory_XPROG_Params
));
298 ReadMemory_XPROG_Params
.Address
= SwapEndian_32(ReadMemory_XPROG_Params
.Address
);
299 ReadMemory_XPROG_Params
.Length
= SwapEndian_16(ReadMemory_XPROG_Params
.Length
);
302 Endpoint_SetEndpointDirection(ENDPOINT_DIR_IN
);
304 uint8_t ReadBuffer
[ReadMemory_XPROG_Params
.Length
];
306 if (!(NVMTarget_ReadMemory(ReadMemory_XPROG_Params
.Address
, ReadBuffer
, ReadMemory_XPROG_Params
.Length
)))
307 ReturnStatus
= XPRG_ERR_TIMEOUT
;
309 Endpoint_Write_Byte(CMD_XPROG
);
310 Endpoint_Write_Byte(XPRG_CMD_READ_MEM
);
311 Endpoint_Write_Byte(ReturnStatus
);
313 if (ReturnStatus
== XPRG_ERR_OK
)
314 Endpoint_Write_Stream_LE(ReadBuffer
, ReadMemory_XPROG_Params
.Length
);
319 /** Handler for the XPROG CRC command to read a specific memory space's CRC value for comparison between the
320 * attached device's memory and a data set on the host.
322 static void PDIProtocol_ReadCRC(void)
324 uint8_t ReturnStatus
= XPRG_ERR_OK
;
329 } ReadCRC_XPROG_Params
;
331 Endpoint_Read_Stream_LE(&ReadCRC_XPROG_Params
, sizeof(ReadCRC_XPROG_Params
));
333 Endpoint_SetEndpointDirection(ENDPOINT_DIR_IN
);
335 uint8_t CRCCommand
= NVM_CMD_NOOP
;
338 if (ReadCRC_XPROG_Params
.CRCType
== XPRG_CRC_APP
)
339 CRCCommand
= NVM_CMD_APPCRC
;
340 else if (ReadCRC_XPROG_Params
.CRCType
== XPRG_CRC_BOOT
)
341 CRCCommand
= NVM_CMD_BOOTCRC
;
343 CRCCommand
= NVM_CMD_FLASHCRC
;
345 if (!(NVMTarget_GetMemoryCRC(CRCCommand
, &MemoryCRC
)))
346 ReturnStatus
= XPRG_ERR_TIMEOUT
;
348 Endpoint_Write_Byte(CMD_XPROG
);
349 Endpoint_Write_Byte(XPRG_CMD_CRC
);
350 Endpoint_Write_Byte(ReturnStatus
);
352 if (ReturnStatus
== XPRG_ERR_OK
)
354 Endpoint_Write_Byte(MemoryCRC
>> 16);
355 Endpoint_Write_Word_LE(MemoryCRC
& 0xFFFF);
361 /** Handler for the XPROG SET_PARAM command to set a PDI parameter for use when communicating with the
364 static void PDIProtocol_SetParam(void)
366 uint8_t ReturnStatus
= XPRG_ERR_OK
;
368 uint8_t XPROGParam
= Endpoint_Read_Byte();
370 if (XPROGParam
== XPRG_PARAM_NVMBASE
)
371 XPROG_Param_NVMBase
= Endpoint_Read_DWord_BE();
372 else if (XPROGParam
== XPRG_PARAM_EEPPAGESIZE
)
373 XPROG_Param_EEPageSize
= Endpoint_Read_Word_BE();
375 ReturnStatus
= XPRG_ERR_FAILED
;
378 Endpoint_SetEndpointDirection(ENDPOINT_DIR_IN
);
380 Endpoint_Write_Byte(CMD_XPROG
);
381 Endpoint_Write_Byte(XPRG_CMD_SET_PARAM
);
382 Endpoint_Write_Byte(ReturnStatus
);