Blame view

Documentation/spi/spidev_test.c 4.31 KB
22b238bdb   Anton Vorontsov   spidev_test utility
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
  /*
   * SPI testing utility (using spidev driver)
   *
   * Copyright (c) 2007  MontaVista Software, Inc.
   * Copyright (c) 2007  Anton Vorontsov <avorontsov@ru.mvista.com>
   *
   * 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.
   *
   * Cross-compile with cross-gcc -I/path/to/cross-kernel/include
   */
  
  #include <stdint.h>
  #include <unistd.h>
  #include <stdio.h>
  #include <stdlib.h>
  #include <getopt.h>
  #include <fcntl.h>
  #include <sys/ioctl.h>
  #include <linux/types.h>
  #include <linux/spi/spidev.h>
  
  #define ARRAY_SIZE(a) (sizeof(a) / sizeof((a)[0]))
  
  static void pabort(const char *s)
  {
  	perror(s);
  	abort();
  }
cd58310d7   WANG Cong   Documentation/spi...
31
  static const char *device = "/dev/spidev1.1";
22b238bdb   Anton Vorontsov   spidev_test utility
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
  static uint8_t mode;
  static uint8_t bits = 8;
  static uint32_t speed = 500000;
  static uint16_t delay;
  
  static void transfer(int fd)
  {
  	int ret;
  	uint8_t tx[] = {
  		0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF,
  		0x40, 0x00, 0x00, 0x00, 0x00, 0x95,
  		0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF,
  		0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF,
  		0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF,
  		0xDE, 0xAD, 0xBE, 0xEF, 0xBA, 0xAD,
  		0xF0, 0x0D,
  	};
  	uint8_t rx[ARRAY_SIZE(tx)] = {0, };
  	struct spi_ioc_transfer tr = {
  		.tx_buf = (unsigned long)tx,
  		.rx_buf = (unsigned long)rx,
  		.len = ARRAY_SIZE(tx),
  		.delay_usecs = delay,
  		.speed_hz = speed,
  		.bits_per_word = bits,
  	};
  
  	ret = ioctl(fd, SPI_IOC_MESSAGE(1), &tr);
95b1ed2ac   Hector Palacios   spi: spidev_test ...
60
  	if (ret < 1)
22b238bdb   Anton Vorontsov   spidev_test utility
61
62
63
64
65
66
67
68
69
  		pabort("can't send spi message");
  
  	for (ret = 0; ret < ARRAY_SIZE(tx); ret++) {
  		if (!(ret % 6))
  			puts("");
  		printf("%.2X ", rx[ret]);
  	}
  	puts("");
  }
b7ed698cc   Ladinu Chandrasinghe   Documentation/: f...
70
  static void print_usage(const char *prog)
22b238bdb   Anton Vorontsov   spidev_test utility
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
  {
  	printf("Usage: %s [-DsbdlHOLC3]
  ", prog);
  	puts("  -D --device   device to use (default /dev/spidev1.1)
  "
  	     "  -s --speed    max speed (Hz)
  "
  	     "  -d --delay    delay (usec)
  "
  	     "  -b --bpw      bits per word 
  "
  	     "  -l --loop     loopback
  "
  	     "  -H --cpha     clock phase
  "
  	     "  -O --cpol     clock polarity
  "
  	     "  -L --lsb      least significant bit first
  "
  	     "  -C --cs-high  chip select active high
  "
  	     "  -3 --3wire    SI/SO signals shared
  ");
  	exit(1);
  }
b7ed698cc   Ladinu Chandrasinghe   Documentation/: f...
96
  static void parse_opts(int argc, char *argv[])
22b238bdb   Anton Vorontsov   spidev_test utility
97
98
  {
  	while (1) {
cd58310d7   WANG Cong   Documentation/spi...
99
  		static const struct option lopts[] = {
22b238bdb   Anton Vorontsov   spidev_test utility
100
101
102
103
104
105
106
107
108
109
  			{ "device",  1, 0, 'D' },
  			{ "speed",   1, 0, 's' },
  			{ "delay",   1, 0, 'd' },
  			{ "bpw",     1, 0, 'b' },
  			{ "loop",    0, 0, 'l' },
  			{ "cpha",    0, 0, 'H' },
  			{ "cpol",    0, 0, 'O' },
  			{ "lsb",     0, 0, 'L' },
  			{ "cs-high", 0, 0, 'C' },
  			{ "3wire",   0, 0, '3' },
b55f627fe   David Brownell   spi: new spi->mod...
110
111
  			{ "no-cs",   0, 0, 'N' },
  			{ "ready",   0, 0, 'R' },
22b238bdb   Anton Vorontsov   spidev_test utility
112
113
114
  			{ NULL, 0, 0, 0 },
  		};
  		int c;
b55f627fe   David Brownell   spi: new spi->mod...
115
  		c = getopt_long(argc, argv, "D:s:d:b:lHOLC3NR", lopts, NULL);
22b238bdb   Anton Vorontsov   spidev_test utility
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
  
  		if (c == -1)
  			break;
  
  		switch (c) {
  		case 'D':
  			device = optarg;
  			break;
  		case 's':
  			speed = atoi(optarg);
  			break;
  		case 'd':
  			delay = atoi(optarg);
  			break;
  		case 'b':
  			bits = atoi(optarg);
  			break;
  		case 'l':
  			mode |= SPI_LOOP;
  			break;
  		case 'H':
  			mode |= SPI_CPHA;
  			break;
  		case 'O':
  			mode |= SPI_CPOL;
  			break;
  		case 'L':
  			mode |= SPI_LSB_FIRST;
  			break;
  		case 'C':
  			mode |= SPI_CS_HIGH;
  			break;
  		case '3':
  			mode |= SPI_3WIRE;
  			break;
b55f627fe   David Brownell   spi: new spi->mod...
151
152
153
154
155
156
  		case 'N':
  			mode |= SPI_NO_CS;
  			break;
  		case 'R':
  			mode |= SPI_READY;
  			break;
22b238bdb   Anton Vorontsov   spidev_test utility
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
  		default:
  			print_usage(argv[0]);
  			break;
  		}
  	}
  }
  
  int main(int argc, char *argv[])
  {
  	int ret = 0;
  	int fd;
  
  	parse_opts(argc, argv);
  
  	fd = open(device, O_RDWR);
  	if (fd < 0)
  		pabort("can't open device");
  
  	/*
  	 * spi mode
  	 */
  	ret = ioctl(fd, SPI_IOC_WR_MODE, &mode);
  	if (ret == -1)
  		pabort("can't set spi mode");
  
  	ret = ioctl(fd, SPI_IOC_RD_MODE, &mode);
  	if (ret == -1)
  		pabort("can't get spi mode");
  
  	/*
  	 * bits per word
  	 */
  	ret = ioctl(fd, SPI_IOC_WR_BITS_PER_WORD, &bits);
  	if (ret == -1)
  		pabort("can't set bits per word");
  
  	ret = ioctl(fd, SPI_IOC_RD_BITS_PER_WORD, &bits);
  	if (ret == -1)
  		pabort("can't get bits per word");
  
  	/*
  	 * max speed hz
  	 */
  	ret = ioctl(fd, SPI_IOC_WR_MAX_SPEED_HZ, &speed);
  	if (ret == -1)
  		pabort("can't set max speed hz");
  
  	ret = ioctl(fd, SPI_IOC_RD_MAX_SPEED_HZ, &speed);
  	if (ret == -1)
  		pabort("can't get max speed hz");
  
  	printf("spi mode: %d
  ", mode);
  	printf("bits per word: %d
  ", bits);
  	printf("max speed: %d Hz (%d KHz)
  ", speed, speed/1000);
  
  	transfer(fd);
  
  	close(fd);
  
  	return ret;
  }