Use -pedantic compile time option to find and correct several minor code errors.
[pub/lufa.git] / Projects / AVRISP / Lib / PDIProtocol.c
1 /*
2 LUFA Library
3 Copyright (C) Dean Camera, 2009.
4
5 dean [at] fourwalledcubicle [dot] com
6 www.fourwalledcubicle.com
7 */
8
9 /*
10 Copyright 2009 Dean Camera (dean [at] fourwalledcubicle [dot] com)
11
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.
20
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
28 this software.
29 */
30
31 #if defined(ENABLE_PDI_PROTOCOL) || defined(__DOXYGEN__)
32
33 #warning PDI Programming Protocol support is incomplete and not currently suitable for use.
34
35 /** \file
36 *
37 * PDI Protocol handler, to process V2 Protocol wrapped PDI commands used in Atmel programmer devices.
38 */
39
40 #define INCLUDE_FROM_PDIPROTOCOL_C
41 #include "PDIProtocol.h"
42
43 uint32_t XPROG_Param_NVMBase;
44 uint32_t XPROG_Param_EEPageSize;
45
46 /** Handler for the CMD_XPROG_SETMODE command, which sets the programmer-to-target protocol used for PDI
47 * XMEGA programming (either PDI or JTAG). Only PDI programming is supported.
48 */
49 void PDIProtocol_XPROG_SetMode(void)
50 {
51 struct
52 {
53 uint8_t Protocol;
54 } SetMode_XPROG_Params;
55
56 Endpoint_Read_Stream_LE(&SetMode_XPROG_Params, sizeof(SetMode_XPROG_Params));
57
58 Endpoint_ClearOUT();
59 Endpoint_SetEndpointDirection(ENDPOINT_DIR_IN);
60
61 Endpoint_Write_Byte(CMD_XPROG_SETMODE);
62 Endpoint_Write_Byte(SetMode_XPROG_Params.Protocol ? STATUS_CMD_FAILED : STATUS_CMD_OK);
63 Endpoint_ClearIN();
64 }
65
66 /** Handler for the CMD_XPROG command, which wraps up XPROG commands in a V2 wrapper which need to be
67 * removed and processed so that the underlying XPROG command can be handled.
68 */
69 void PDIProtocol_XPROG_Command(void)
70 {
71 uint8_t XPROGCommand = Endpoint_Read_Byte();
72
73 switch (XPROGCommand)
74 {
75 case XPRG_CMD_ENTER_PROGMODE:
76 PDIProtocol_EnterXPROGMode();
77 break;
78 case XPRG_CMD_LEAVE_PROGMODE:
79 PDIProtocol_LeaveXPROGMode();
80 break;
81 case XPRG_CMD_ERASE:
82 PDIProtocol_Erase();
83 break;
84 case XPRG_CMD_WRITE_MEM:
85 PDIProtocol_WriteMemory();
86 break;
87 case XPRG_CMD_READ_MEM:
88 PDIProtocol_ReadMemory();
89 break;
90 case XPRG_CMD_CRC:
91 PDIProtocol_ReadCRC();
92 break;
93 case XPRG_CMD_SET_PARAM:
94 PDIProtocol_SetParam();
95 break;
96 }
97 }
98
99 /** Handler for the XPROG ENTER_PROGMODE command to establish a PDI connection with the attached device. */
100 static void PDIProtocol_EnterXPROGMode(void)
101 {
102 Endpoint_ClearOUT();
103 Endpoint_SetEndpointDirection(ENDPOINT_DIR_IN);
104
105 /* Enable PDI programming mode with the attached target */
106 PDITarget_EnableTargetPDI();
107
108 /* Store the RESET key into the RESET PDI register to keep the XMEGA in reset */
109 PDITarget_SendByte(PDI_CMD_STCS | PDI_RESET_REG);
110 PDITarget_SendByte(PDI_RESET_KEY);
111
112 /* Enable access to the XPROG NVM bus by sending the documented NVM access key to the device */
113 PDITarget_SendByte(PDI_CMD_KEY);
114 for (uint8_t i = sizeof(PDI_NVMENABLE_KEY); i > 0; i--)
115 PDITarget_SendByte(PDI_NVMENABLE_KEY[i - 1]);
116
117 /* Wait until the NVM bus becomes active */
118 bool NVMBusEnabled = PDITarget_WaitWhileNVMBusBusy();
119
120 Endpoint_Write_Byte(CMD_XPROG);
121 Endpoint_Write_Byte(XPRG_CMD_ENTER_PROGMODE);
122 Endpoint_Write_Byte(NVMBusEnabled ? XPRG_ERR_OK : XPRG_ERR_FAILED);
123 Endpoint_ClearIN();
124 }
125
126 /** Handler for the XPROG LEAVE_PROGMODE command to terminate the PDI programming connection with
127 * the attached device.
128 */
129 static void PDIProtocol_LeaveXPROGMode(void)
130 {
131 Endpoint_ClearOUT();
132 Endpoint_SetEndpointDirection(ENDPOINT_DIR_IN);
133
134 /* Clear the RESET key into the RESET PDI register to allow the XMEGA to run */
135 PDITarget_SendByte(PDI_CMD_STCS | PDI_RESET_REG);
136 PDITarget_SendByte(0x00);
137
138 PDITarget_DisableTargetPDI();
139
140 Endpoint_Write_Byte(CMD_XPROG);
141 Endpoint_Write_Byte(XPRG_CMD_LEAVE_PROGMODE);
142 Endpoint_Write_Byte(XPRG_ERR_OK);
143 Endpoint_ClearIN();
144 }
145
146 /** Handler for the XPRG ERASE command to erase a specific memory address space in the attached device. */
147 static void PDIProtocol_Erase(void)
148 {
149 uint8_t ReturnStatus = XPRG_ERR_OK;
150
151 struct
152 {
153 uint8_t MemoryType;
154 uint32_t Address;
155 } Erase_XPROG_Params;
156
157 Endpoint_Read_Stream_LE(&Erase_XPROG_Params, sizeof(Erase_XPROG_Params));
158
159 Endpoint_ClearOUT();
160 Endpoint_SetEndpointDirection(ENDPOINT_DIR_IN);
161
162 // TODO: Send erase command here via PDI protocol
163
164 Endpoint_Write_Byte(CMD_XPROG);
165 Endpoint_Write_Byte(XPRG_CMD_ERASE);
166 Endpoint_Write_Byte(ReturnStatus);
167 Endpoint_ClearIN();
168 }
169
170 /** Handler for the XPROG WRITE_MEMORY command to write to a specific memory space within the attached device. */
171 static void PDIProtocol_WriteMemory(void)
172 {
173 uint8_t ReturnStatus = XPRG_ERR_OK;
174
175 struct
176 {
177 uint8_t MemoryType;
178 uint32_t Address;
179 uint16_t Length;
180 uint8_t ProgData[256];
181 } WriteMemory_XPROG_Params;
182
183 Endpoint_Read_Stream_LE(&WriteMemory_XPROG_Params, (sizeof(WriteMemory_XPROG_Params) -
184 sizeof(WriteMemory_XPROG_Params).ProgData));
185 WriteMemory_XPROG_Params.Address = SwapEndian_32(WriteMemory_XPROG_Params.Address);
186 WriteMemory_XPROG_Params.Length = SwapEndian_16(WriteMemory_XPROG_Params.Length);
187 Endpoint_Read_Stream_LE(&WriteMemory_XPROG_Params.ProgData, WriteMemory_XPROG_Params.Length);
188
189 Endpoint_ClearOUT();
190 Endpoint_SetEndpointDirection(ENDPOINT_DIR_IN);
191
192 // TODO: Send program command here via PDI protocol
193
194 Endpoint_Write_Byte(CMD_XPROG);
195 Endpoint_Write_Byte(XPRG_CMD_READ_MEM);
196 Endpoint_Write_Byte(ReturnStatus);
197 Endpoint_ClearIN();
198 }
199
200 /** Handler for the XPROG READ_MEMORY command to read data from a specific address space within the
201 * attached device.
202 */
203 static void PDIProtocol_ReadMemory(void)
204 {
205 uint8_t ReturnStatus = XPRG_ERR_OK;
206
207 struct
208 {
209 uint8_t MemoryType;
210 uint32_t Address;
211 uint16_t Length;
212 } ReadMemory_XPROG_Params;
213
214 Endpoint_Read_Stream_LE(&ReadMemory_XPROG_Params, sizeof(ReadMemory_XPROG_Params));
215 ReadMemory_XPROG_Params.Address = SwapEndian_32(ReadMemory_XPROG_Params.Address);
216 ReadMemory_XPROG_Params.Length = SwapEndian_16(ReadMemory_XPROG_Params.Length);
217
218 Endpoint_ClearOUT();
219 Endpoint_SetEndpointDirection(ENDPOINT_DIR_IN);
220
221 if (ReadMemory_XPROG_Params.MemoryType == XPRG_MEM_TYPE_USERSIG)
222 {
223 PDITarget_SendByte(PDI_CMD_STS | (PDI_DATSIZE_1BYTE << 2));
224 PDITarget_SendAddress(DATAMEM_BASE | DATAMEM_NVM_CMD);
225 PDITarget_SendByte(NVM_CMD_READUSERSIG);
226
227
228 }
229
230 Endpoint_Write_Byte(CMD_XPROG);
231 Endpoint_Write_Byte(XPRG_CMD_READ_MEM);
232 Endpoint_Write_Byte(ReturnStatus);
233
234 Endpoint_ClearIN();
235 }
236
237 /** Handler for the XPROG CRC command to read a specific memory space's CRC value for comparison between the
238 * attached device's memory and a data set on the host.
239 */
240 static void PDIProtocol_ReadCRC(void)
241 {
242 uint8_t ReturnStatus = XPRG_ERR_OK;
243
244 struct
245 {
246 uint8_t CRCType;
247 } ReadCRC_XPROG_Params;
248
249 Endpoint_Read_Stream_LE(&ReadCRC_XPROG_Params, sizeof(ReadCRC_XPROG_Params));
250 Endpoint_ClearOUT();
251 Endpoint_SetEndpointDirection(ENDPOINT_DIR_IN);
252
253 uint32_t MemoryCRC = 0;
254 uint8_t CRCReadCommand;
255
256 if (ReadCRC_XPROG_Params.CRCType == XPRG_CRC_APP)
257 CRCReadCommand = NVM_CMD_APPCRC;
258 else if (ReadCRC_XPROG_Params.CRCType == XPRG_CRC_BOOT)
259 CRCReadCommand = NVM_CMD_BOOTCRC;
260 else
261 CRCReadCommand = NVM_CMD_FLASHCRC;
262
263 /* Set the NVM command to the correct CRC read command */
264 PDITarget_SendByte(PDI_CMD_STS | (PDI_DATSIZE_1BYTE << 2));
265 PDITarget_SendAddress(DATAMEM_BASE | DATAMEM_NVM_CMD);
266 PDITarget_SendByte(CRCReadCommand);
267
268 /* Set CMDEX bit in NVM CTRLA register to start the CRC generation */
269 PDITarget_SendByte(PDI_CMD_STS | (PDI_DATSIZE_1BYTE << 2));
270 PDITarget_SendAddress(DATAMEM_BASE | DATAMEM_NVM_CTRLA);
271 PDITarget_SendByte(1 << 0);
272
273 /* Wait until the NVM bus and controller is no longer busy */
274 PDITarget_WaitWhileNVMBusBusy();
275 PDITarget_WaitWhileNVMControllerBusy();
276
277 /* Read the three byte generated CRC value */
278 PDITarget_SendByte(PDI_CMD_LDS | (PDI_DATSIZE_3BYTES << 2));
279 PDITarget_SendAddress(DATAMEM_BASE | DATAMEM_NVM_DAT0);
280 MemoryCRC = PDITarget_ReceiveByte();
281 MemoryCRC |= ((uint16_t)PDITarget_ReceiveByte() << 8);
282 MemoryCRC |= ((uint32_t)PDITarget_ReceiveByte() << 16);
283
284 Endpoint_Write_Byte(CMD_XPROG);
285 Endpoint_Write_Byte(XPRG_CMD_CRC);
286 Endpoint_Write_Byte(ReturnStatus);
287
288 if (ReturnStatus == XPRG_ERR_OK)
289 {
290 Endpoint_Write_Byte(MemoryCRC >> 16);
291 Endpoint_Write_Word_LE(MemoryCRC & 0xFFFF);
292 }
293
294 Endpoint_ClearIN();
295 }
296
297 /** Handler for the XPROG SET_PARAM command to set a PDI parameter for use when communicating with the
298 * attached device.
299 */
300 static void PDIProtocol_SetParam(void)
301 {
302 uint8_t ReturnStatus = XPRG_ERR_OK;
303
304 uint8_t XPROGParam = Endpoint_Read_Byte();
305
306 if (XPROGParam == XPRG_PARAM_NVMBASE)
307 XPROG_Param_NVMBase = Endpoint_Read_DWord_LE();
308 else if (XPROGParam == XPRG_PARAM_EEPPAGESIZE)
309 XPROG_Param_EEPageSize = Endpoint_Read_Word_LE();
310 else
311 ReturnStatus = XPRG_ERR_FAILED;
312
313 Endpoint_ClearOUT();
314 Endpoint_SetEndpointDirection(ENDPOINT_DIR_IN);
315
316 Endpoint_Write_Byte(CMD_XPROG);
317 Endpoint_Write_Byte(XPRG_CMD_SET_PARAM);
318 Endpoint_Write_Byte(ReturnStatus);
319 Endpoint_ClearIN();
320 }
321
322 #endif