forked from facchinm/avrdude
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlinuxspi.c
413 lines (343 loc) · 10.8 KB
/
linuxspi.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
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
/*
* avrdude - A Downloader/Uploader for AVR device programmers
* Support for using spidev userspace drivers to communicate directly over SPI
*
* Copyright (C) 2013 Kevin Cuzner <[email protected]>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* Support for inversion of reset pin, Tim Chilton 02/05/2014
*/
#include "ac_cfg.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <fcntl.h>
#include <unistd.h>
#include <errno.h>
#include "avrdude.h"
#include "libavrdude.h"
#if HAVE_SPIDEV
/**
* Linux Kernel SPI Drivers
*
* Copyright (C) 2006 SWAPP
* Andrea Paterniani <[email protected]>
* Copyright (C) 2007 David Brownell (simplification, cleanup)
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*/
#include <fcntl.h>
#include <unistd.h>
#include <sys/ioctl.h>
#include <linux/types.h>
#include <linux/spi/spidev.h>
#include <stddef.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <math.h>
/**
* Data for the programmer
*/
struct pdata
{
unsigned int speedHz;
};
typedef enum {
LINUXSPI_GPIO_DIRECTION,
LINUXSPI_GPIO_VALUE,
LINUXSPI_GPIO_EXPORT,
LINUXSPI_GPIO_UNEXPORT
} LINUXSPI_GPIO_OP;
#define PDATA(pgm) ((struct pdata *)(pgm->cookie))
#define IMPORT_PDATA(pgm) struct pdata *pdata = PDATA(pgm)
/**
* Function Prototypes
*/
//linuxspi specific functions
static int linuxspi_spi_duplex(PROGRAMMER* pgm, unsigned char* tx, unsigned char* rx, int len);
static int linuxspi_gpio_op_wr(PROGRAMMER* pgm, LINUXSPI_GPIO_OP op, int gpio, char* val);
//interface - management
static void linuxspi_setup(PROGRAMMER* pgm);
static void linuxspi_teardown(PROGRAMMER* pgm);
//interface - prog
static int linuxspi_open(PROGRAMMER* pgm, char* port);
static void linuxspi_close(PROGRAMMER* pgm);
// dummy functions
static void linuxspi_disable(PROGRAMMER * pgm);
static void linuxspi_enable(PROGRAMMER * pgm);
static void linuxspi_display(PROGRAMMER * pgm, const char * p);
//universal
static int linuxspi_initialize(PROGRAMMER* pgm, AVRPART* p);
// SPI specific functions
static int linuxspi_cmd(PROGRAMMER * pgm, const unsigned char *cmd, unsigned char *res);
static int linuxspi_program_enable(PROGRAMMER * pgm, AVRPART * p);
static int linuxspi_chip_erase(PROGRAMMER * pgm, AVRPART * p);
static long sck_clock_hz = 500000;
static int linuxspi_set_sck_period(PROGRAMMER * pgm, double bitclock)
{
sck_clock_hz = 1.0 / bitclock;
}
/**
* @brief Sends/receives a message in full duplex mode
* @return -1 on failure, otherwise number of bytes sent/recieved
*/
static int linuxspi_spi_duplex(PROGRAMMER* pgm, unsigned char* tx, unsigned char* rx, int len)
{
int fd = open(pgm->port, O_RDWR);
if (fd < 0)
{
fprintf(stderr, "\n%s: error: Unable to open SPI port %s", progname, pgm->port);
return -1; //error
}
if (pgm->bitclock != 0.0) {
linuxspi_set_sck_period(pgm, pgm->bitclock);
}
struct spi_ioc_transfer tr = {
.tx_buf = (unsigned long)tx,
.rx_buf = (unsigned long)rx,
.len = len,
.delay_usecs = 1,
.speed_hz = sck_clock_hz, //should settle around 400Khz, a standard SPI speed
.bits_per_word = 8,
};
int ret = ioctl(fd, SPI_IOC_MESSAGE(1), &tr);
close(fd);
if (ret != len)
{
fprintf(stderr, "\n%s: error: Unable to send SPI message\n", progname);
return -1;
}
return ret;
}
/**
* @brief Performs an operation on a gpio. Writes to stderr if error.
* @param op Operation to perform
* @param gpio
* @return -1 if failed, 0 otherwise
*/
static int linuxspi_gpio_op_wr(PROGRAMMER* pgm, LINUXSPI_GPIO_OP op, int gpio, char* val)
{
char* fn = malloc(PATH_MAX); //filename
gpio &= ~PIN_INVERSE; // Remove the inversion flag
switch(op)
{
case LINUXSPI_GPIO_DIRECTION:
sprintf(fn, "/sys/class/gpio/gpio%d/direction", gpio);
break;
case LINUXSPI_GPIO_EXPORT:
sprintf(fn, "/sys/class/gpio/export");
break;
case LINUXSPI_GPIO_UNEXPORT:
sprintf(fn, "/sys/class/gpio/unexport");
break;
case LINUXSPI_GPIO_VALUE:
sprintf(fn, "/sys/class/gpio/gpio%d/value", gpio);
break;
default:
fprintf(stderr, "%s: linuxspi_gpio_op_wr(): Unknown op %d", progname, op);
return -1;
}
FILE* f = fopen(fn, "w");
int fopen_retries = 0;
while (!f && fopen_retries < 100)
{
usleep(20000);
f = fopen(fn, "w");
fopen_retries++;
}
if (!f)
{
fprintf(stderr, "%s: linuxspi_gpio_op_wr(): Unable to open file %s", progname, fn);
free(fn); //we no longer need the path
return -1;
}
if (fprintf(f, "%s", val) < 0)
{
fprintf(stderr, "%s: linuxspi_gpio_op_wr(): Unable to write file %s with %s", progname, fn, val);
free(fn); //we no longer need the path
return -1;
}
fclose(f);
free(fn); //we no longer need the path
return 0;
}
static void linuxspi_setup(PROGRAMMER* pgm)
{
if ((pgm->cookie = malloc(sizeof(struct pdata))) == 0)
{
fprintf(stderr, "%s: linuxspi_setup(): Unable to allocate private memory.\n", progname);
exit(1);
}
memset(pgm->cookie, 0, sizeof(struct pdata));
}
static void linuxspi_teardown(PROGRAMMER* pgm)
{
free(pgm->cookie);
}
static int linuxspi_open(PROGRAMMER* pgm, char* port)
{
char* buf;
if (port == 0 || strcmp(port, "unknown") == 0) //unknown port
{
fprintf(stderr, "%s: error: No port specified. Port should point to an SPI interface.\n", progname);
exit(1);
}
if (pgm->pinno[PIN_AVR_RESET] == 0)
{
fprintf(stderr, "%s: error: No pin assigned to AVR RESET.\n", progname);
exit(1);
}
//export reset pin
buf = malloc(32);
sprintf(buf, "%d", pgm->pinno[PIN_AVR_RESET] &~PIN_INVERSE);
if (linuxspi_gpio_op_wr(pgm, LINUXSPI_GPIO_EXPORT, pgm->pinno[PIN_AVR_RESET] &~PIN_INVERSE, buf) < 0)
{
free(buf);
return -1;
}
free(buf);
//set reset to output active and write initial value at same time
//this prevents glitches https://www.kernel.org/doc/Documentation/gpio/sysfs.txt
if (linuxspi_gpio_op_wr(pgm, LINUXSPI_GPIO_DIRECTION, pgm->pinno[PIN_AVR_RESET] &~PIN_INVERSE, pgm->pinno[PIN_AVR_RESET]&PIN_INVERSE ? "high" : "low") < 0)
{
return -1;
}
//save the port to our data
strcpy(pgm->port, port);
return 0;
}
static void linuxspi_close(PROGRAMMER* pgm)
{
char* buf;
//set reset to input
linuxspi_gpio_op_wr(pgm, LINUXSPI_GPIO_DIRECTION, pgm->pinno[PIN_AVR_RESET]&~PIN_INVERSE, "in");
//unexport reset
buf = malloc(32);
sprintf(buf, "%d", pgm->pinno[PIN_AVR_RESET]&~PIN_INVERSE);
linuxspi_gpio_op_wr(pgm, LINUXSPI_GPIO_UNEXPORT, pgm->pinno[PIN_AVR_RESET]&~PIN_INVERSE, buf);
}
static void linuxspi_disable(PROGRAMMER* pgm)
{
//do nothing
}
static void linuxspi_enable(PROGRAMMER* pgm)
{
//do nothing
}
static void linuxspi_display(PROGRAMMER* pgm, const char* p)
{
//do nothing
}
static int linuxspi_initialize(PROGRAMMER* pgm, AVRPART* p)
{
int tries, rc;
if (p->flags & AVRPART_HAS_TPI)
{
//we do not support tpi..this is a dedicated SPI thing
fprintf(stderr, "%s: error: Programmer %s does not support TPI\n", progname, pgm->type);
return -1;
}
//enable programming on the part
tries = 0;
do
{
rc = pgm->program_enable(pgm, p);
if (rc == 0 || rc == -1)
break;
tries++;
}
while(tries < 65);
if (rc)
{
fprintf(stderr, "%s: error: AVR device not responding\n", progname);
return -1;
}
return 0;
}
static int linuxspi_cmd(PROGRAMMER* pgm, const unsigned char *cmd, unsigned char *res)
{
return linuxspi_spi_duplex(pgm, cmd, res, 4);
}
static int linuxspi_program_enable(PROGRAMMER* pgm, AVRPART* p)
{
unsigned char cmd[4];
unsigned char res[4];
if (p->op[AVR_OP_PGM_ENABLE] == NULL)
{
fprintf(stderr, "%s: error: program enable instruction not defined for part \"%s\"\n", progname, p->desc);
return -1;
}
memset(cmd, 0, sizeof(cmd));
avr_set_bits(p->op[AVR_OP_PGM_ENABLE], cmd); //set the cmd
pgm->cmd(pgm, cmd, res);
if (res[2] != cmd[1])
return -2;
return 0;
}
static int linuxspi_chip_erase(PROGRAMMER* pgm, AVRPART* p)
{
unsigned char cmd[4];
unsigned char res[4];
if (p->op[AVR_OP_CHIP_ERASE] == NULL)
{
fprintf(stderr, "%s: error: chip erase instruction not defined for part \"%s\"\n", progname, p->desc);
return -1;
}
memset(cmd, 0, sizeof(cmd));
avr_set_bits(p->op[AVR_OP_CHIP_ERASE], cmd);
pgm->cmd(pgm, cmd, res);
usleep(p->chip_erase_delay);
pgm->initialize(pgm, p);
return 0;
}
void linuxspi_initpgm(PROGRAMMER * pgm)
{
strcpy(pgm->type, "linuxspi");
pgm_fill_old_pins(pgm); // TODO to be removed if old pin data no longer needed
/*
* mandatory functions
*/
pgm->initialize = linuxspi_initialize;
pgm->display = linuxspi_display;
pgm->enable = linuxspi_enable;
pgm->disable = linuxspi_disable;
pgm->program_enable = linuxspi_program_enable;
pgm->chip_erase = linuxspi_chip_erase;
pgm->cmd = linuxspi_cmd;
pgm->open = linuxspi_open;
pgm->close = linuxspi_close;
pgm->read_byte = avr_read_byte_default;
pgm->write_byte = avr_write_byte_default;
/*
* optional functions
*/
pgm->setup = linuxspi_setup;
pgm->teardown = linuxspi_teardown;
}
const char linuxspi_desc[] = "SPI using Linux spidev driver";
#else
void linuxspi_initpgm(PROGRAMMER * pgm)
{
fprintf(stderr,
"%s: Linux SPI driver not available in this configuration\n",
progname);
}
const char linuxspi_desc[] = "SPI using Linux spidev driver (not available)";
#endif