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 * V2Protocol handler, to process V2 Protocol commands used in Atmel programmer devices.
36 #define INCLUDE_FROM_V2PROTOCOL_C
37 #include "V2Protocol.h"
39 /** Current memory address for FLASH/EEPROM memory read/write commands */
40 uint32_t CurrentAddress
;
42 /** Flag to indicate that the next read/write operation must update the device's current address */
46 /** ISR for the management of the command execution timeout counter */
47 ISR(TIMER0_COMPA_vect
, ISR_BLOCK
)
49 if (TimeoutMSRemaining
)
53 /** Initializes the hardware and software associated with the V2 protocol command handling. */
54 void V2Protocol_Init(void)
57 /* Initialize the ADC converter for VTARGET level detection on supported AVR models */
58 ADC_Init(ADC_FREE_RUNNING
| ADC_PRESCALE_128
);
59 ADC_SetupChannel(VTARGET_ADC_CHANNEL
);
60 ADC_StartReading(VTARGET_ADC_CHANNEL_MASK
| ADC_RIGHT_ADJUSTED
| ADC_REFERENCE_AVCC
);
63 /* Millisecond timer initialization for managing the command timeout counter */
64 OCR0A
= ((F_CPU
/ 64) / 1000);
65 TCCR0A
= (1 << WGM01
);
66 TCCR0B
= ((1 << CS01
) | (1 << CS00
));
68 V2Params_LoadNonVolatileParamValues();
71 /** Master V2 Protocol packet handler, for received V2 Protocol packets from a connected host.
72 * This routine decodes the issued command and passes off the handling of the command to the
73 * appropriate function.
75 void V2Protocol_ProcessCommand(void)
77 uint8_t V2Command
= Endpoint_Read_Byte();
79 /* Set total command processing timeout value, enable timeout management interrupt */
80 TimeoutMSRemaining
= COMMAND_TIMEOUT_MS
;
81 TIMSK0
|= (1 << OCIE0A
);
88 case CMD_SET_PARAMETER
:
89 case CMD_GET_PARAMETER
:
90 V2Protocol_GetSetParam(V2Command
);
92 case CMD_LOAD_ADDRESS
:
93 V2Protocol_LoadAddress();
95 case CMD_RESET_PROTECTION
:
96 V2Protocol_ResetProtection();
98 #if defined(ENABLE_ISP_PROTOCOL)
99 case CMD_ENTER_PROGMODE_ISP
:
100 ISPProtocol_EnterISPMode();
102 case CMD_LEAVE_PROGMODE_ISP
:
103 ISPProtocol_LeaveISPMode();
105 case CMD_PROGRAM_FLASH_ISP
:
106 case CMD_PROGRAM_EEPROM_ISP
:
107 ISPProtocol_ProgramMemory(V2Command
);
109 case CMD_READ_FLASH_ISP
:
110 case CMD_READ_EEPROM_ISP
:
111 ISPProtocol_ReadMemory(V2Command
);
113 case CMD_CHIP_ERASE_ISP
:
114 ISPProtocol_ChipErase();
116 case CMD_READ_FUSE_ISP
:
117 case CMD_READ_LOCK_ISP
:
118 case CMD_READ_SIGNATURE_ISP
:
119 case CMD_READ_OSCCAL_ISP
:
120 ISPProtocol_ReadFuseLockSigOSCCAL(V2Command
);
122 case CMD_PROGRAM_FUSE_ISP
:
123 case CMD_PROGRAM_LOCK_ISP
:
124 ISPProtocol_WriteFuseLock(V2Command
);
127 ISPProtocol_SPIMulti();
130 #if defined(ENABLE_XPROG_PROTOCOL)
131 case CMD_XPROG_SETMODE
:
132 XPROGProtocol_SetMode();
135 XPROGProtocol_Command();
139 V2Protocol_UnknownCommand(V2Command
);
143 /* Disable timeout management interrupt once processing has completed */
144 TIMSK0
&= ~(1 << OCIE0A
);
146 Endpoint_WaitUntilReady();
147 Endpoint_SetEndpointDirection(ENDPOINT_DIR_OUT
);
150 /** Handler for unknown V2 protocol commands. This discards all sent data and returns a
151 * STATUS_CMD_UNKNOWN status back to the host.
153 * \param[in] V2Command Issued V2 Protocol command byte from the host
155 static void V2Protocol_UnknownCommand(const uint8_t V2Command
)
157 /* Discard all incoming data */
158 while (Endpoint_BytesInEndpoint() == AVRISP_DATA_EPSIZE
)
161 Endpoint_WaitUntilReady();
165 Endpoint_SetEndpointDirection(ENDPOINT_DIR_IN
);
167 Endpoint_Write_Byte(V2Command
);
168 Endpoint_Write_Byte(STATUS_CMD_UNKNOWN
);
172 /** Handler for the CMD_SIGN_ON command, returning the programmer ID string to the host. */
173 static void V2Protocol_SignOn(void)
176 Endpoint_SetEndpointDirection(ENDPOINT_DIR_IN
);
178 Endpoint_Write_Byte(CMD_SIGN_ON
);
179 Endpoint_Write_Byte(STATUS_CMD_OK
);
180 Endpoint_Write_Byte(sizeof(PROGRAMMER_ID
) - 1);
181 Endpoint_Write_Stream_LE(PROGRAMMER_ID
, (sizeof(PROGRAMMER_ID
) - 1), NO_STREAM_CALLBACK
);
185 /** Handler for the CMD_RESET_PROTECTION command, implemented as a dummy ACK function as
186 * no target short-circuit protection is currently implemented.
188 static void V2Protocol_ResetProtection(void)
191 Endpoint_SetEndpointDirection(ENDPOINT_DIR_IN
);
193 Endpoint_Write_Byte(CMD_RESET_PROTECTION
);
194 Endpoint_Write_Byte(STATUS_CMD_OK
);
199 /** Handler for the CMD_SET_PARAMETER and CMD_GET_PARAMETER commands from the host, setting or
200 * getting a device parameter's value from the parameter table.
202 * \param[in] V2Command Issued V2 Protocol command byte from the host
204 static void V2Protocol_GetSetParam(const uint8_t V2Command
)
206 uint8_t ParamID
= Endpoint_Read_Byte();
209 if (V2Command
== CMD_SET_PARAMETER
)
210 ParamValue
= Endpoint_Read_Byte();
213 Endpoint_SetEndpointDirection(ENDPOINT_DIR_IN
);
215 Endpoint_Write_Byte(V2Command
);
217 uint8_t ParamPrivs
= V2Params_GetParameterPrivileges(ParamID
);
219 if ((V2Command
== CMD_SET_PARAMETER
) && (ParamPrivs
& PARAM_PRIV_WRITE
))
221 Endpoint_Write_Byte(STATUS_CMD_OK
);
222 V2Params_SetParameterValue(ParamID
, ParamValue
);
224 else if ((V2Command
== CMD_GET_PARAMETER
) && (ParamPrivs
& PARAM_PRIV_READ
))
226 Endpoint_Write_Byte(STATUS_CMD_OK
);
227 Endpoint_Write_Byte(V2Params_GetParameterValue(ParamID
));
231 Endpoint_Write_Byte(STATUS_CMD_FAILED
);
237 /** Handler for the CMD_LOAD_ADDRESS command, loading the given device address into a
238 * global storage variable for later use, and issuing LOAD EXTENDED ADDRESS commands
239 * to the attached device as required.
241 static void V2Protocol_LoadAddress(void)
243 Endpoint_Read_Stream_BE(&CurrentAddress
, sizeof(CurrentAddress
), NO_STREAM_CALLBACK
);
246 Endpoint_SetEndpointDirection(ENDPOINT_DIR_IN
);
248 MustSetAddress
= true;
250 Endpoint_Write_Byte(CMD_LOAD_ADDRESS
);
251 Endpoint_Write_Byte(STATUS_CMD_OK
);