-
-
Notifications
You must be signed in to change notification settings - Fork 26
/
main.c
342 lines (317 loc) · 8.59 KB
/
main.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
/* Name: main.c
* Project: FabISP Firmware
* Author: David A. Mellis
* Based on Work By: Dick Streefland and Christian Starkjohann
* Creation Date: 2009-11-18
* Tabsize: 4
* Copyright: (c) 2006-2008 Dick Streefland
* Copyright: (c) 2008 by OBJECTIVE DEVELOPMENT Software GmbH
* License: GNU GPL v2 (see License.txt), GNU GPL v3
*/
/*
This example should run on most AVRs with only little changes. No special
hardware resources except INT0 are used. You may have to change usbconfig.h for
different I/O pins for USB. Please note that USB D+ must be the INT0 pin, or
at least be connected to INT0 as well.
*/
#include <avr/io.h>
#include <avr/wdt.h>
#include <avr/interrupt.h> /* for sei() */
#include <util/delay.h> /* for _delay_ms() */
#include <avr/pgmspace.h> /* required by usbdrv.h */
#include "usbdrv.h"
#include "oddebug.h" /* This is also an example for using debug macros */
typedef unsigned char byte_t;
typedef unsigned int uint_t;
enum
{
// Generic requests
USBTINY_ECHO, // 0x00: echo test
USBTINY_READ, // 0x01: read byte (wIndex:address)
USBTINY_WRITE, // 0x02: write byte (wIndex:address, wValue:value)
USBTINY_CLR, // 0x03: clear bit (wIndex:address, wValue:bitno)
USBTINY_SET, // 0x04: set bit (wIndex:address, wValue:bitno)
// Programming requests
USBTINY_POWERUP, // 0x05: apply power (wValue:SCK-period, wIndex:RESET)
USBTINY_POWERDOWN, // 0x06: remove power from chip
USBTINY_SPI, // 0x07: issue SPI command (wValue:c1c0, wIndex:c3c2)
USBTINY_POLL_BYTES, // 0x08: set poll bytes for write (wValue:p1p2)
USBTINY_FLASH_READ, // 0x09: read flash (wIndex:address)
USBTINY_FLASH_WRITE, // 0x0A: write flash (wIndex:address, wValue:timeout)
USBTINY_EEPROM_READ, // 0x0B: read eeprom (wIndex:address)
USBTINY_EEPROM_WRITE, // 0x0C: write eeprom (wIndex:address, wValue:timeout)
};
// ----------------------------------------------------------------------
// Programmer output pins:
// LED PA1
// RESET PA3
// SCK PA4
// MOSI PA6
// ----------------------------------------------------------------------
#define PORT PORTA
#define DDR DDRA
#define POWER_MASK 0x02
#define RESET_MASK (1 << 3)
#define SCK_MASK (1 << 4)
#define MOSI_MASK (1 << 6)
#define ALL_MASK (POWER_MASK | RESET_MASK | SCK_MASK | MOSI_MASK)
// ----------------------------------------------------------------------
// Programmer input pins:
// MISO PA5
// ----------------------------------------------------------------------
#define PIN PINA
#define MISO_MASK (1 << 5)
// ----------------------------------------------------------------------
// Local data
// ----------------------------------------------------------------------
static byte_t sck_period; // SCK period in microseconds (1..250)
static byte_t poll1; // first poll byte for write
static byte_t poll2; // second poll byte for write
static uint_t address; // read/write address
static uint_t timeout; // write timeout in usec
static byte_t cmd0; // current read/write command byte
static byte_t cmd[4]; // SPI command buffer
static byte_t res[4]; // SPI result buffer
// ----------------------------------------------------------------------
// Delay exactly <sck_period> times 0.5 microseconds (6 cycles).
// ----------------------------------------------------------------------
__attribute__((always_inline))
static void delay ( void )
{
asm volatile(
" mov __tmp_reg__,%0 \n"
"0: rjmp 1f \n"
"1: nop \n"
" dec __tmp_reg__ \n"
" brne 0b \n"
: : "r" (sck_period) );
}
// ----------------------------------------------------------------------
// Issue one SPI command.
// ----------------------------------------------------------------------
static void spi ( byte_t* cmd, byte_t* res )
{
byte_t i;
byte_t c;
byte_t r;
byte_t mask;
for ( i = 0; i < 4; i++ )
{
c = *cmd++;
r = 0;
for ( mask = 0x80; mask; mask >>= 1 )
{
if ( c & mask )
{
PORT |= MOSI_MASK;
}
delay();
PORT |= SCK_MASK;
delay();
r <<= 1;
if ( PIN & MISO_MASK )
{
r++;
}
PORT &= ~ MOSI_MASK;
PORT &= ~ SCK_MASK;
}
*res++ = r;
}
}
// ----------------------------------------------------------------------
// Create and issue a read or write SPI command.
// ----------------------------------------------------------------------
static void spi_rw ( void )
{
uint_t a;
a = address++;
if ( cmd0 & 0x80 )
{ // eeprom
a <<= 1;
}
cmd[0] = cmd0;
if ( a & 1 )
{
cmd[0] |= 0x08;
}
cmd[1] = a >> 9;
cmd[2] = a >> 1;
spi( cmd, res );
}
static uchar dataBuffer[8]; /* buffer must stay valid when usbFunctionSetup returns */
// ----------------------------------------------------------------------
// Handle a non-standard SETUP packet.
// ----------------------------------------------------------------------
extern usbMsgLen_t usbFunctionSetup ( byte_t data[8] )
{
byte_t bit;
byte_t mask;
byte_t* addr;
byte_t req;
byte_t i;
// Generic requests
req = data[1];
if ( req == USBTINY_ECHO )
{
for ( i = 0; i < 8; i++ )
{
dataBuffer[i] = data[i];
}
usbMsgPtr = dataBuffer;
return 8;
}
addr = (byte_t*) (int) data[4];
if ( req == USBTINY_READ )
{
dataBuffer[0] = *addr;
usbMsgPtr = dataBuffer;
return 1;
}
if ( req == USBTINY_WRITE )
{
*addr = data[2];
return 0;
}
bit = data[2] & 7;
mask = 1 << bit;
if ( req == USBTINY_CLR )
{
*addr &= ~ mask;
return 0;
}
if ( req == USBTINY_SET )
{
*addr |= mask;
return 0;
}
// Programming requests
if ( req == USBTINY_POWERUP )
{
sck_period = data[2];
mask = POWER_MASK;
if ( data[4] )
{
mask |= RESET_MASK;
}
DDR |= ALL_MASK;
PORT = (PORT & ~ ALL_MASK) | mask;
return 0;
}
if ( req == USBTINY_POWERDOWN )
{
PORT |= RESET_MASK;
PORT &= ~ ALL_MASK;
DDR &= ~ ALL_MASK;
return 0;
}
if ( ! PORT )
{
return 0;
}
if ( req == USBTINY_SPI )
{
spi( data + 2, dataBuffer );
usbMsgPtr = dataBuffer;
return 4;
}
if ( req == USBTINY_POLL_BYTES )
{
poll1 = data[2];
poll2 = data[3];
return 0;
}
address = * (uint_t*) & data[4];
if ( req == USBTINY_FLASH_READ )
{
cmd0 = 0x20;
return USB_NO_MSG; // usbFunctionRead() will be called to get the data
}
if ( req == USBTINY_EEPROM_READ )
{
cmd0 = 0xa0;
return USB_NO_MSG; // usbFunctionRead() will be called to get the data
}
timeout = * (uint_t*) & data[2];
if ( req == USBTINY_FLASH_WRITE )
{
cmd0 = 0x40;
return USB_NO_MSG; // data will be received by usbFunctionWrite()
}
if ( req == USBTINY_EEPROM_WRITE )
{
cmd0 = 0xc0;
return USB_NO_MSG; // data will be received by usbFunctionWrite()
}
return 0;
}
// ----------------------------------------------------------------------
// Handle an IN packet.
// ----------------------------------------------------------------------
extern byte_t usbFunctionRead ( byte_t* data, byte_t len )
{
byte_t i;
for ( i = 0; i < len; i++ )
{
spi_rw();
data[i] = res[3];
}
return len;
}
// ----------------------------------------------------------------------
// Handle an OUT packet.
// ----------------------------------------------------------------------
extern byte_t usbFunctionWrite ( byte_t* data, byte_t len )
{
byte_t i;
uint_t usec;
byte_t r;
for ( i = 0; i < len; i++ )
{
cmd[3] = data[i];
spi_rw();
cmd[0] ^= 0x60; // turn write into read
for ( usec = 0; usec < timeout; usec += 32 * sck_period )
{ // when timeout > 0, poll until byte is written
spi( cmd, res );
r = res[3];
if ( r == cmd[3] && r != poll1 && r != poll2 )
{
break;
}
}
}
return 1;
}
/* ------------------------------------------------------------------------- */
int main(void)
{
uchar i;
wdt_enable(WDTO_1S);
/* Even if you don't use the watchdog, turn it off here. On newer devices,
* the status of the watchdog (on/off, period) is PRESERVED OVER RESET!
*/
DBG1(0x00, 0, 0); /* debug output: main starts */
/* RESET status: all port bits are inputs without pull-up.
* That's the way we need D+ and D-. Therefore we don't need any
* additional hardware initialization.
*/
odDebugInit();
usbInit();
usbDeviceDisconnect(); /* enforce re-enumeration, do this while interrupts are disabled! */
i = 0;
while(--i){ /* fake USB disconnect for > 250 ms */
wdt_reset();
_delay_ms(1);
}
usbDeviceConnect();
sei();
DBG1(0x01, 0, 0); /* debug output: main loop starts */
for(;;){ /* main event loop */
DBG1(0x02, 0, 0); /* debug output: main loop iterates */
wdt_reset();
usbPoll();
}
return 0;
}
/* ------------------------------------------------------------------------- */