forked from scottellis/spiloop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathspiloop.c
237 lines (183 loc) · 5.15 KB
/
spiloop.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
/*
* spidev loopback test
*/
#include <stdint.h>
#include <unistd.h>
#include <stdio.h>
#include <stdlib.h>
#include <getopt.h>
#include <fcntl.h>
#include <string.h>
#include <time.h>
#include <signal.h>
#include <errno.h>
#include <limits.h>
#include <sys/ioctl.h>
#include <linux/types.h>
#include <linux/spi/spidev.h>
#define DEFAULT_DEVICE "/dev/spidev1.0"
#define MAX_SPIDEV_DATA 4096
#define DEFAULT_TRANSFER_BYTES 32
#define DEFAULT_ITERATIONS 1
void usage();
void summarize(int count, struct timespec *start, struct timespec *end);
void dump_data(char *prompt, uint8_t *buff, int count);
void register_sig_handler();
void sigint_handler(int sig);
volatile int abort_transfers = 0;
void usage()
{
printf("\nUsage: spiloop [-s <speed>] [-d <device>] [-c <count>] [-i <iterations>] [-vh]\n");
printf(" -s <speed> Set SPI bus speed in Hz\n");
printf(" -d <device> Device, defaults to /dev/spidev1.0\n");
printf(" -b <bytes> Number of bytes per transfer, default 32, min 1, max 4096\n");
printf(" -i <iterations> Number of times to repeat, default is 1, 0 means forever\n");
printf(" -v Be verbose\n");
printf(" -h Show this help\n\n");
printf("Use Ctrl-C to stop.\n\n");
exit(1);
}
int main(int argc, char *argv[])
{
int opt, fd;
uint32_t speed = 0;
int iterations = DEFAULT_ITERATIONS;
int bytes = DEFAULT_TRANSFER_BYTES;
int verbose = 0;
uint8_t tx[MAX_SPIDEV_DATA];
uint8_t rx[MAX_SPIDEV_DATA];
int i;
struct spi_ioc_transfer tr;
char device[32];
struct timespec start;
struct timespec end;
memset(device, 0, sizeof(device));
strcpy(device, DEFAULT_DEVICE);
while ((opt = getopt(argc, argv, "s:d:b:i:vh")) != -1) {
switch (opt) {
case 's':
speed = atoi(optarg);
if (speed < 100000 || speed > 24000000) {
printf("\nInvalid speed: %s\n", optarg);
usage();
}
break;
case 'd':
if (strlen(optarg) == 0 || strlen(optarg) > sizeof(device) - 1) {
printf("\nInvalid device: %s\n", optarg);
usage();
}
strcpy(device, optarg);
break;
case 'b':
bytes = atoi(optarg);
if (bytes < 1 || bytes > MAX_SPIDEV_DATA) {
printf("\nInvalid byte count: %s\n", optarg);
usage();
}
break;
case 'i':
iterations = atoi(optarg);
if (iterations < 0) {
printf("\nInvalid iterations: %s\n", optarg);
usage();
}
break;
case 'v':
verbose = 1;
break;
case 'h':
default:
usage();
break;
}
}
fd = open(device, O_RDWR);
if (fd < 0) {
perror("open");
exit(1);
}
if (speed) {
if (ioctl(fd, SPI_IOC_WR_MAX_SPEED_HZ, &speed) == -1) {
perror("ioctl(SPI_IOC_WR_MAX_SPEED_HZ)");
exit(1);
}
if (verbose) {
if (ioctl(fd, SPI_IOC_RD_MAX_SPEED_HZ, &speed) == -1) {
perror("ioctl(SPI_IOC_RD_MAX_SPEED_HZ)");
exit(1);
}
printf("Using speed: %u Hz\n", speed);
}
}
register_sig_handler();
memset(&tr, 0, sizeof(tr));
tr.tx_buf = (unsigned long)tx;
tr.rx_buf = (unsigned long)rx;
tr.len = bytes;
clock_gettime(CLOCK_MONOTONIC, &start);
i = 0;
memset(rx, 0, bytes);
while (!abort_transfers) {
memset(tx, (i & 0xff), bytes);
if (verbose)
dump_data("tx", tx, bytes);
if (ioctl(fd, SPI_IOC_MESSAGE(1), &tr) < 1)
perror("ioctl(SPI_IOC_MESSAGE)");
else if (verbose)
dump_data("rx", rx, bytes);
i++;
if (iterations != 0) {
if (i >= iterations)
break;
}
}
clock_gettime(CLOCK_MONOTONIC, &end);
summarize(i, &start, &end);
close(fd);
return 0;
}
void summarize(int count, struct timespec *start, struct timespec *end)
{
double diff;
double rate;
if (end->tv_nsec > start->tv_nsec) {
diff = end->tv_nsec - start->tv_nsec;
}
else {
diff = (1000000000 + end->tv_nsec) - start->tv_nsec;
end->tv_sec--;
}
diff /= 1000000000.0;
diff += end->tv_sec - start->tv_sec;
if (diff > 0.0)
rate = count / diff;
else
rate = 0.0;
printf("\nElapsed : %0.2lf seconds\n", diff);
printf("Transfers : %d\n", count);
printf("Rate : %0.2lf transfers/sec\n\n", rate);
}
void dump_data(char *prompt, uint8_t *buff, int count)
{
int i;
if (prompt)
printf("%s: ", prompt);
for (i = 0; i < count; i++)
printf("%02X ", buff[i]);
printf("\n");
}
void register_sig_handler()
{
struct sigaction sia;
bzero(&sia, sizeof(sia));
sia.sa_handler = sigint_handler;
if (sigaction(SIGINT, &sia, NULL) < 0) {
perror("sigaction(SIGINT)");
exit(1);
}
}
void sigint_handler(int sig)
{
abort_transfers = 1;
}