pio.c 9.34 KB
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*
 * (C) Copyright 2011 Henrik Nordstrom <henrik@henriknordstrom.net>
 *
 * 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
 */

20
/* needs _BSD_SOURCE for htole and letoh  */
21
22
/* glibc 2.20+ also requires _DEFAULT_SOURCE */
#define _DEFAULT_SOURCE
23
24
25
26
27
28
29
#define _BSD_SOURCE

#include <errno.h>
#include <stdio.h>
#include <stdint.h>
#include <string.h>
#include <unistd.h>
Henrik Nordstrom's avatar
Henrik Nordstrom committed
30
#include <stdlib.h>
31
#include <errno.h>
Henrik Nordstrom's avatar
Henrik Nordstrom committed
32
33
34
35
#include <sys/mman.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
36

37
#include "endian_compat.h"
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52

#define PIO_REG_SIZE 0x228 /*0x300*/
#define PIO_PORT_SIZE 0x24

struct pio_status {
	int mul_sel;
	int pull;
	int drv_level;
	int data;
};

#define PIO_REG_CFG(B, N, I)	((B) + (N)*0x24 + ((I)<<2) + 0x00)
#define PIO_REG_DLEVEL(B, N, I)	((B) + (N)*0x24 + ((I)<<2) + 0x14)
#define PIO_REG_PULL(B, N, I)	((B) + (N)*0x24 + ((I)<<2) + 0x1C)
#define PIO_REG_DATA(B, N)	((B) + (N)*0x24 + 0x10)
Henrik Nordstrom's avatar
Henrik Nordstrom committed
53
#define PIO_NR_PORTS		9 /* A-I */
54
55
56
57
58
59
60
61
62
63

#define LE32TOH(X)		le32toh(*((uint32_t*)(X)))

static int pio_get(const char *buf, uint32_t port, uint32_t port_num, struct pio_status *pio)
{
	uint32_t val;
	uint32_t port_num_func, port_num_pull;
	uint32_t offset_func, offset_pull;

	port_num_func = port_num >> 3;
64
	offset_func = ((port_num & 0x07) << 2);
65
66

	port_num_pull = port_num >> 4;
67
	offset_pull = ((port_num & 0x0f) << 1);
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84

	/* func */
	val = LE32TOH(PIO_REG_CFG(buf, port, port_num_func));
	pio->mul_sel = (val>>offset_func) & 0x07;

	/* pull */
	val = LE32TOH(PIO_REG_PULL(buf, port, port_num_pull));
	pio->pull = (val>>offset_pull) & 0x03;

	/* dlevel */
	val = LE32TOH(PIO_REG_DLEVEL(buf, port, port_num_pull));
	pio->drv_level = (val>>offset_pull) & 0x03;

	/* i/o data */
	if (pio->mul_sel > 1)
		pio->data = -1;
	else {
85
		val = LE32TOH(PIO_REG_DATA(buf, port));
86
87
88
89
90
		pio->data = (val >> port_num) & 0x01;
	}
	return 1;
}

Alejandro Mery's avatar
Alejandro Mery committed
91
92
93
94
95
96
97
static int pio_set(char *buf, uint32_t port, uint32_t port_num, struct pio_status *pio)
{
	uint32_t *addr, val;
	uint32_t port_num_func, port_num_pull;
	uint32_t offset_func, offset_pull;

	port_num_func = port_num >> 3;
98
	offset_func = ((port_num & 0x07) << 2);
Alejandro Mery's avatar
Alejandro Mery committed
99
100

	port_num_pull = port_num >> 4;
101
	offset_pull = ((port_num & 0x0f) << 1);
Alejandro Mery's avatar
Alejandro Mery committed
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125

	/* func */
	if (pio->mul_sel >= 0) {
		addr = (uint32_t*)PIO_REG_CFG(buf, port, port_num_func);
		val = le32toh(*addr);
		val &= ~(0x07 << offset_func);
		val |=  (pio->mul_sel & 0x07) << offset_func;
		*addr = htole32(val);
	}

	/* pull */
	if (pio->pull >= 0) {
		addr = (uint32_t*)PIO_REG_PULL(buf, port, port_num_pull);
		val = le32toh(*addr);
		val &= ~(0x03 << offset_pull);
		val |=  (pio->pull & 0x03) << offset_pull;
		*addr = htole32(val);
	}

	/* dlevel */
	if (pio->drv_level >= 0) {
		addr = (uint32_t*)PIO_REG_DLEVEL(buf, port, port_num_pull);
		val = le32toh(*addr);
		val &= ~(0x03 << offset_pull);
126
		val |=  (pio->drv_level & 0x03) << offset_pull;
Alejandro Mery's avatar
Alejandro Mery committed
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
		*addr = htole32(val);
	}

	/* data */
	if (pio->data >= 0) {
		addr = (uint32_t*)PIO_REG_DATA(buf, port);
		val = le32toh(*addr);
		if (pio->data)
			val |= (0x01 << port_num);
		else
			val &= ~(0x01 << port_num);
		*addr = htole32(val);
	}

	return 1;
}

Henrik Nordstrom's avatar
Henrik Nordstrom committed
144
145
146
147
148
149
150
151
152
153
154
static void pio_print(int port, int port_nr, struct pio_status *pio)
{
	printf("P%c%d", 'A'+port, port_nr);
	printf("<%x>", pio->mul_sel);
	printf("<%x>", pio->pull);
	printf("<%x>", pio->drv_level);
	if (pio->data >= 0)
		printf("<%x>", pio->data);
	fputc('\n', stdout);
}

155
156
157
158
static void print(const char *buf)
{
	int port, i;
	struct pio_status pio;
Henrik Nordstrom's avatar
Henrik Nordstrom committed
159
160
	for (port=0; port < PIO_NR_PORTS; port++) {
		for (i=0; i<32; i++) {
161
			if (pio_get(buf, port, i, &pio)) {
Henrik Nordstrom's avatar
Henrik Nordstrom committed
162
				pio_print(port, i, &pio);
163
164
165
166
			}
		}
	}
}
Henrik Nordstrom's avatar
Henrik Nordstrom committed
167
168
169
170

static const char *argv0;

static void usage(int rc )
171
{
172
173
174
175
176

	fprintf(stderr, "usage: %s -m|-i input [-o output] pin..\n", argv0);
	fprintf(stderr," -m				mmap - read pin state from system\n");
	fprintf(stderr," -i				read pin state from file\n");
	fprintf(stderr," -o				save pin state data to file\n");
177
178
179
180
	fprintf(stderr," print				Show all pins\n");
	fprintf(stderr," Pxx				Show pin\n");
	fprintf(stderr," Pxx<mode><pull><drive><data>	Configure pin\n");
	fprintf(stderr," Pxx=data,drive			Configure GPIO output\n");
Henrik Nordstrom's avatar
Henrik Nordstrom committed
181
	fprintf(stderr," Pxx*count			Oscillate GPIO output (mmap mode only)\n");
182
183
	fprintf(stderr," Pxx?pull			Configure GPIO input\n");
	fprintf(stderr," clean				Clean input pins\n");
184
	fprintf(stderr, "\n	mode 0-7, 0=input, 1=ouput, 2-7 I/O function\n");
Henrik Nordstrom's avatar
Henrik Nordstrom committed
185
186
	fprintf(stderr, "	pull 0=none, 1=up, 2=down\n");
	fprintf(stderr, "	drive 0-3, I/O drive level\n");
187

Henrik Nordstrom's avatar
Henrik Nordstrom committed
188
189
	exit(rc);
}
190

Henrik Nordstrom's avatar
Henrik Nordstrom committed
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
static void parse_pin(int *port, int *pin, const char *name)
{
	if (*name == 'P') name++;
	*port = *name++ - 'A';
	*pin = atoi(name);
}

static void cmd_show_pin(char *buf, const char *pin)
{
	int port, port_nr;
	struct pio_status pio;
	parse_pin(&port, &port_nr, pin);
	if (!pio_get(buf, port, port_nr, &pio))
		usage(1);
    	pio_print(port, port_nr, &pio);
}

208
209
210
211
212
213
214
215
216
217
218
219
220
static int parse_int(int *dst, const char *in)
{
	int value;
	char *next;
	errno = 0;
	value = strtol(in, &next, 0);
	if (!errno && next != in) {
		*dst = value;
		return 0;
	}
	return -1;
}

Henrik Nordstrom's avatar
Henrik Nordstrom committed
221
222
223
224
225
226
227
228
static void cmd_set_pin(char *buf, const char *pin)
{
	int port, port_nr;
	const char *t = pin;
	struct pio_status pio;
	parse_pin(&port, &port_nr, pin);
	if (!pio_get(buf, port, port_nr, &pio))
		usage(1);
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
	if ((t = strchr(pin, '='))) {
		pio.mul_sel = 1;
		if (t) {
			t++;
			parse_int(&pio.data, t);
		}
		if (t)
			t = strchr(t, ',');
		if (t) {
			t++;
			parse_int(&pio.drv_level, t);
		}
	} else if ((t = strchr(pin, '?'))) {
		pio.mul_sel = 0;
		pio.data = 0;
		pio.drv_level = 0;
		if (t) {
			t++;
			parse_int(&pio.pull, t);
		}
	} else if ((t = strchr(pin, '<'))) {
		if (t) {
			t++;
			parse_int(&pio.mul_sel, t);
		}
		if (t)
			t = strchr(t, '<');
		if (t) {
			t++;
			parse_int(&pio.pull, t);
		}
		if (t)
			t = strchr(t, '<');
		if (t) {
			t++;
			parse_int(&pio.drv_level, t);
		}
		if (t)
			t = strchr(t, '<');
		if (t) {
			t++;
			parse_int(&pio.data, t);
		}
Henrik Nordstrom's avatar
Henrik Nordstrom committed
272
273
274
275
	}
	pio_set(buf, port, port_nr, &pio);
}

Henrik Nordstrom's avatar
Henrik Nordstrom committed
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
static void cmd_oscillate(char *buf, const char *pin)
{
	int port, port_nr;
	const char *t = pin;
	int i, n = 0;
	uint32_t *addr, val;

	parse_pin(&port, &port_nr, pin);
	{
		struct pio_status pio;
		if (!pio_get(buf, port, port_nr, &pio))
			usage(1);
		pio.mul_sel = 1;
		pio_set(buf, port, port_nr, &pio);
	}

	addr = (uint32_t*)PIO_REG_DATA(buf, port);
	t = strchr(pin, '*');
	parse_int(&n, t+1);
	val = le32toh(*addr);
	for (i = 0; i < n; i++) {
		val ^= 1 << port_nr;
		*addr = htole32(val);
	}
}

Henrik Nordstrom's avatar
Henrik Nordstrom committed
302
303
304
305
306
307
308
309
310
311
312
313
314
static void cmd_clean(char *buf)
{
	int port, i;
	struct pio_status pio;
	for (port=0; port < PIO_NR_PORTS; port++) {
		for (i=0; i<32; i++) {
			if (pio_get(buf, port, i, &pio)) {
				if (pio.mul_sel == 0) {
					pio.data = 0;
					pio_set(buf, port, i, &pio);
				}
			}
		}
315
316
317
	}
}

Henrik Nordstrom's avatar
Henrik Nordstrom committed
318
static int do_command(char *buf, const char **args, int argc)
319
{
Henrik Nordstrom's avatar
Henrik Nordstrom committed
320
	const char *command = args[0];
321
322
323
324
325
326
327
	if (*command == 'P') {
		if (strchr(command, '<'))
			cmd_set_pin(buf, command);
		else if (strchr(command, '='))
			cmd_set_pin(buf, command);
		else if (strchr(command, '?'))
			cmd_set_pin(buf, command);
Henrik Nordstrom's avatar
Henrik Nordstrom committed
328
329
		else if (strchr(command, '*'))
			cmd_oscillate(buf, command);
330
331
332
		else
			cmd_show_pin(buf, command);
	}
Henrik Nordstrom's avatar
Henrik Nordstrom committed
333
334
335
336
337
	else if (strcmp(command, "print") == 0)
		print(buf);
	else if (strcmp(command, "clean") == 0)
		cmd_clean(buf);
	else	usage(1);
338
339
340
341
342
	return 1;
}

int main(int argc, char **argv)
{
Henrik Nordstrom's avatar
Henrik Nordstrom committed
343
344
345
346
347
	int opt;
	FILE *in = NULL;
	FILE *out = NULL;
	const char *in_name = NULL;
	const char *out_name = NULL;
Henrik Nordstrom's avatar
Henrik Nordstrom committed
348
349
350
	char buf_[PIO_REG_SIZE];
	char *buf = buf_;
	int do_mmap = 0;
Henrik Nordstrom's avatar
Henrik Nordstrom committed
351
352

	argv0 = argv[0];
353

Henrik Nordstrom's avatar
Henrik Nordstrom committed
354
	while ((opt = getopt(argc, argv, "i:o:m")) != -1) {
Henrik Nordstrom's avatar
Henrik Nordstrom committed
355
356
357
		switch(opt) {
		case '?':
			usage(0);
Henrik Nordstrom's avatar
Henrik Nordstrom committed
358
359
360
		case 'm':
			do_mmap = 1;
			break;
Henrik Nordstrom's avatar
Henrik Nordstrom committed
361
362
363
364
365
366
367
368
		case 'i':
			in_name = optarg;
			break;
		case 'o':
			out_name = optarg;
			break;
		}
	}
Henrik Nordstrom's avatar
Henrik Nordstrom committed
369
	if (!in_name && !do_mmap)
Henrik Nordstrom's avatar
Henrik Nordstrom committed
370
		usage(1);
Henrik Nordstrom's avatar
Henrik Nordstrom committed
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
	if (do_mmap) {
		int pagesize = sysconf(_SC_PAGESIZE);
		int fd = open("/dev/mem",O_RDWR);
		int addr = 0x01c20800 & ~(pagesize-1);
		int offset = 0x01c20800 & (pagesize-1);
		if (fd == -1) {
			perror("open /dev/mem");
			exit(1);
		}
		buf = mmap(NULL, (0x800 + pagesize - 1) & ~(pagesize-1), PROT_WRITE|PROT_READ, MAP_SHARED, fd, addr);
		if (!buf) {
			perror("mmap PIO");
			exit(1);
		}
		close(fd);
		buf += offset;
	}
Henrik Nordstrom's avatar
Henrik Nordstrom committed
388
389
390
391
392
393
394
395
396
397
398
	if (in_name) {
		if (strcmp(in_name, "-") == 0) {
			in = stdin;
		} else {
			in = fopen(in_name, "rb");
			if (!in) {
				perror("open input");
				exit(1);
			}
		}
	}
Henrik Nordstrom's avatar
Henrik Nordstrom committed
399
	if (in) {
Angus Gratton's avatar
Angus Gratton committed
400
		if (fread(buf, PIO_REG_SIZE, 1, in) != 1) {
Henrik Nordstrom's avatar
Henrik Nordstrom committed
401
402
403
404
405
			perror("read input");
			exit(1);
		}
		if (in != stdin)
			fclose(in);
Henrik Nordstrom's avatar
Henrik Nordstrom committed
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
	}

	while(optind < argc) {
		optind += do_command(buf, (const char **)(argv + optind), argc - optind);
	}

	if (out_name) {
		if (strcmp(out_name, "-") == 0) {
			out = stdout;
		} else {
			out = fopen(out_name, "wb");
			if (!out) {
				perror("open output");
				exit(1);
			}
		}
Angus Gratton's avatar
Angus Gratton committed
422
		if (fwrite(buf, PIO_REG_SIZE, 1, out) != 1) {
Henrik Nordstrom's avatar
Henrik Nordstrom committed
423
424
425
426
427
			perror("write output");
			exit(1);
		}
	}
}