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 * Header file for XPROGProtocol.c.
36 #ifndef _XPROG_PROTOCOL_
37 #define _XPROG_PROTOCOL_
41 #include <util/delay.h>
44 #include <LUFA/Drivers/USB/USB.h>
45 #include <LUFA/Drivers/Peripheral/SerialStream.h>
47 #include "../V2Protocol.h"
48 #include "XPROGTarget.h"
52 /* Preprocessor Checks: */
53 #if ((BOARD == BOARD_XPLAIN) || (BOARD == BOARD_XPLAIN_REV1))
54 #undef ENABLE_ISP_PROTOCOL
56 #if !defined(ENABLE_XPROG_PROTOCOL)
57 #define ENABLE_XPROG_PROTOCOL
62 #define XPRG_CMD_ENTER_PROGMODE 0x01
63 #define XPRG_CMD_LEAVE_PROGMODE 0x02
64 #define XPRG_CMD_ERASE 0x03
65 #define XPRG_CMD_WRITE_MEM 0x04
66 #define XPRG_CMD_READ_MEM 0x05
67 #define XPRG_CMD_CRC 0x06
68 #define XPRG_CMD_SET_PARAM 0x07
70 #define XPRG_MEM_TYPE_APPL 1
71 #define XPRG_MEM_TYPE_BOOT 2
72 #define XPRG_MEM_TYPE_EEPROM 3
73 #define XPRG_MEM_TYPE_FUSE 4
74 #define XPRG_MEM_TYPE_LOCKBITS 5
75 #define XPRG_MEM_TYPE_USERSIG 6
76 #define XPRG_MEM_TYPE_FACTORY_CALIBRATION 7
78 #define XPRG_ERASE_CHIP 1
79 #define XPRG_ERASE_APP 2
80 #define XPRG_ERASE_BOOT 3
81 #define XPRG_ERASE_EEPROM 4
82 #define XPRG_ERASE_APP_PAGE 5
83 #define XPRG_ERASE_BOOT_PAGE 6
84 #define XPRG_ERASE_EEPROM_PAGE 7
85 #define XPRG_ERASE_USERSIG 8
87 #define XPRG_MEM_WRITE_ERASE 0
88 #define XPRG_MEM_WRITE_WRITE 1
90 #define XPRG_CRC_APP 1
91 #define XPRG_CRC_BOOT 2
92 #define XPRG_CRC_FLASH 3
95 #define XPRG_ERR_FAILED 1
96 #define XPRG_ERR_COLLISION 2
97 #define XPRG_ERR_TIMEOUT 3
99 #define XPRG_PARAM_NVMBASE 0x01
100 #define XPRG_PARAM_EEPPAGESIZE 0x02
101 #define XPRG_PARAM_NVMCMD_REG 0x03
102 #define XPRG_PARAM_NVMCSR_REG 0x04
104 #define XPRG_PROTOCOL_PDI 0x00
105 #define XPRG_PROTOCOL_JTAG 0x01
106 #define XPRG_PROTOCOL_TPI 0x02
108 #define XPRG_PAGEMODE_WRITE (1 << 1)
109 #define XPRG_PAGEMODE_ERASE (1 << 0)
111 /* External Variables: */
112 extern uint32_t XPROG_Param_NVMBase
;
113 extern uint16_t XPROG_Param_EEPageSize
;
114 extern uint8_t XPROG_Param_NVMCSRRegAddr
;
115 extern uint8_t XPROG_Param_NVMCMDRegAddr
;
116 extern uint8_t XPROG_SelectedProtocol
;
118 /* Function Prototypes: */
119 void XPROGProtocol_SetMode(void);
120 void XPROGProtocol_Command(void);
122 #if (defined(INCLUDE_FROM_XPROGPROTOCOL_C) && defined(ENABLE_XPROG_PROTOCOL))
123 static void XPROGProtocol_EnterXPROGMode(void);
124 static void XPROGProtocol_LeaveXPROGMode(void);
125 static void XPROGProtocol_SetParam(void);
126 static void XPROGProtocol_Erase(void);
127 static void XPROGProtocol_WriteMemory(void);
128 static void XPROGProtocol_ReadMemory(void);
129 static void XPROGProtocol_ReadCRC(void);