summaryrefslogtreecommitdiffstats
path: root/target/linux/danube/files/drivers/char/danube_gpio.c
blob: dbdb71e8fbe70c49b92e10e646ea2697ec244871 (plain)
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
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
/*
 *   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.
 *
 *   Copyright (C) 2005 infineon
 *   Copyright (C) 2007 John Crispin <blogic@openwrt.org> 
 *
 */

#include <linux/module.h>
#include <linux/types.h>
#include <linux/errno.h>
#include <linux/proc_fs.h>
#include <linux/init.h>
#include <linux/ioctl.h>
#include <asm/semaphore.h>
#include <asm/uaccess.h>
#include <asm/danube/danube.h>
#include <asm/danube/danube_ioctl.h>

#define MAX_PORTS			2
#define PINS_PER_PORT		16

static unsigned int danube_gpio_major = 0;

/* TODO do we need this ? */
static struct semaphore port_sem;

/* TODO do we really need this ? return in a define is forbidden by coding style */
#define DANUBE_GPIO_SANITY		{if (port > MAX_PORTS || pin > PINS_PER_PORT) return -EINVAL; }

int
danube_port_reserve_pin (unsigned int port, unsigned int pin)
{
	DANUBE_GPIO_SANITY;
	printk("%s : call to obseleted function\n", __func__);

	return 0;
}
EXPORT_SYMBOL(danube_port_reserve_pin);

int
danube_port_free_pin (unsigned int port, unsigned int pin)
{
	DANUBE_GPIO_SANITY;
	printk("%s : call to obseleted function\n", __func__);

	return 0;
}
EXPORT_SYMBOL(danube_port_free_pin);

int
danube_port_set_open_drain (unsigned int port, unsigned int pin)
{
	DANUBE_GPIO_SANITY;
	writel(readl(DANUBE_GPIO_P0_OD + (port * 0x30)) | (1 << pin), DANUBE_GPIO_P0_OD);

	return 0;
}
EXPORT_SYMBOL(danube_port_set_open_drain);

int
danube_port_clear_open_drain (unsigned int port, unsigned int pin)
{
	DANUBE_GPIO_SANITY;
	writel(readl(DANUBE_GPIO_P0_OD + (port * 0x30)) & ~(1 << pin), DANUBE_GPIO_P0_OD);

	return 0;
}
EXPORT_SYMBOL(danube_port_clear_open_drain);

int
danube_port_set_pudsel (unsigned int port, unsigned int pin)
{
    DANUBE_GPIO_SANITY;
	writel(readl(DANUBE_GPIO_P0_PUDSEL + (port * 0x30)) | (1 << pin), DANUBE_GPIO_P0_PUDSEL);

	return 0;
}
EXPORT_SYMBOL(danube_port_set_pudsel);

int
danube_port_clear_pudsel (unsigned int port, unsigned int pin)
{
    DANUBE_GPIO_SANITY;
	writel(readl(DANUBE_GPIO_P0_PUDSEL + (port * 0x30)) & ~(1 << pin), DANUBE_GPIO_P0_PUDSEL);

	return 0;
}
EXPORT_SYMBOL(danube_port_clear_pudsel);

int
danube_port_set_puden (unsigned int port, unsigned int pin)
{
    DANUBE_GPIO_SANITY;
	writel(readl(DANUBE_GPIO_P0_PUDEN + (port * 0x30)) | (1 << pin), DANUBE_GPIO_P0_PUDEN);

	return 0;
}
EXPORT_SYMBOL(danube_port_set_puden);

int
danube_port_clear_puden (unsigned int port, unsigned int pin)
{
    DANUBE_GPIO_SANITY;
	writel(readl(DANUBE_GPIO_P0_PUDEN + (port * 0x30)) & ~(1 << pin), DANUBE_GPIO_P0_PUDEN);

	return 0;
}
EXPORT_SYMBOL(danube_port_clear_puden);

int
danube_port_set_stoff (unsigned int port, unsigned int pin)
{
    DANUBE_GPIO_SANITY;
	writel(readl(DANUBE_GPIO_P0_STOFF + (port * 0x30)) | (1 << pin), DANUBE_GPIO_P0_STOFF);

	return 0;
}
EXPORT_SYMBOL(danube_port_set_stoff);

int
danube_port_clear_stoff (unsigned int port, unsigned int pin)
{
    DANUBE_GPIO_SANITY;
	writel(readl(DANUBE_GPIO_P0_STOFF + (port * 0x30)) & ~(1 << pin), DANUBE_GPIO_P0_STOFF);

	return 0;
}
EXPORT_SYMBOL(danube_port_clear_stoff);

int
danube_port_set_dir_out (unsigned int port, unsigned int pin)
{
    DANUBE_GPIO_SANITY;
	writel(readl(DANUBE_GPIO_P0_DIR + (port * 0x30)) | (1 << pin), DANUBE_GPIO_P0_DIR);

	return 0;
}
EXPORT_SYMBOL(danube_port_set_dir_out);

int
danube_port_set_dir_in (unsigned int port, unsigned int pin)
{
    DANUBE_GPIO_SANITY;
	writel(readl(DANUBE_GPIO_P0_DIR + (port * 0x30)) & ~(1 << pin), DANUBE_GPIO_P0_DIR);

	return 0;
}
EXPORT_SYMBOL(danube_port_set_dir_in);

int
danube_port_set_output (unsigned int port, unsigned int pin)
{
    DANUBE_GPIO_SANITY;
	writel(readl(DANUBE_GPIO_P0_OUT + (port * 0x30)) | (1 << pin), DANUBE_GPIO_P0_OUT);

	return 0;
}
EXPORT_SYMBOL(danube_port_set_output);

int
danube_port_clear_output (unsigned int port, unsigned int pin)
{
    DANUBE_GPIO_SANITY;
	writel(readl(DANUBE_GPIO_P0_OUT + (port * 0x30)) & ~(1 << pin), DANUBE_GPIO_P0_OUT);

	return 0;
}
EXPORT_SYMBOL(danube_port_clear_output);

int
danube_port_get_input (unsigned int port, unsigned int pin)
{
    DANUBE_GPIO_SANITY;

	if (readl(DANUBE_GPIO_P0_IN + (port * 0x30)) & (1 << pin))
		return 0;
	else
		return 1;
}
EXPORT_SYMBOL(danube_port_get_input);

int
danube_port_set_altsel0 (unsigned int port, unsigned int pin)
{
    DANUBE_GPIO_SANITY;
	writel(readl(DANUBE_GPIO_P0_ALTSEL0 + (port * 0x30)) | (1 << pin), DANUBE_GPIO_P0_ALTSEL0);

	return 0;
}
EXPORT_SYMBOL(danube_port_set_altsel0);

int
danube_port_clear_altsel0 (unsigned int port, unsigned int pin)
{
    DANUBE_GPIO_SANITY;
	writel(readl(DANUBE_GPIO_P0_ALTSEL0 + (port * 0x30)) & ~(1 << pin), DANUBE_GPIO_P0_ALTSEL0);

	return 0;
}
EXPORT_SYMBOL(danube_port_clear_altsel0);

int
danube_port_set_altsel1 (unsigned int port, unsigned int pin)
{
    DANUBE_GPIO_SANITY;
	writel(readl(DANUBE_GPIO_P0_ALTSEL1 + (port * 0x30)) | (1 << pin), DANUBE_GPIO_P0_ALTSEL1);

	return 0;
}
EXPORT_SYMBOL(danube_port_set_altsel1);

int
danube_port_clear_altsel1 (unsigned int port, unsigned int pin)
{
    DANUBE_GPIO_SANITY;
	writel(readl(DANUBE_GPIO_P0_ALTSEL1 + (port * 0x30)) & ~(1 << pin), DANUBE_GPIO_P0_ALTSEL1);

	return 0;
}
EXPORT_SYMBOL(danube_port_clear_altsel1);

long danube_port_read_procmem_helper(char* tag, u32* in_reg, char *buf)
{
	u32 reg, bit = 0;
	unsigned int len, t;

	len = sprintf(buf, "\n%s: ", tag);
	reg = readl(in_reg);
	bit = 0x80000000;
	for (t = 0; t < 32; t++) {
		if ((reg & bit) > 0)
			len = len + sprintf(buf + len, "X");
		else
			len = len + sprintf(buf + len, " ");
		bit = bit >> 1;
	}

	return len;
}

int
danube_port_read_procmem (char *buf, char **start, off_t offset, int count,
			  int *eof, void *data)
{
	long len = sprintf (buf, "\nDanube Port Settings\n");

	len += sprintf (buf + len,
			"         3         2         1         0\n");
	len += sprintf (buf + len,
			"        10987654321098765432109876543210\n");
	len += sprintf (buf + len,
			"----------------------------------------\n");

	len += danube_port_read_procmem_helper("P0-OUT", DANUBE_GPIO_P0_OUT, &buf[len]);
	len += danube_port_read_procmem_helper("P1-OUT", DANUBE_GPIO_P1_OUT, &buf[len]);
	len += danube_port_read_procmem_helper("P0-IN ", DANUBE_GPIO_P0_IN, &buf[len]);
	len += danube_port_read_procmem_helper("P1-IN ", DANUBE_GPIO_P1_IN, &buf[len]);
	len += danube_port_read_procmem_helper("P0-DIR", DANUBE_GPIO_P0_DIR, &buf[len]);
	len += danube_port_read_procmem_helper("P1-DIR", DANUBE_GPIO_P1_DIR, &buf[len]);
	len += danube_port_read_procmem_helper("P0-STO ", DANUBE_GPIO_P0_STOFF, &buf[len]);
	len += danube_port_read_procmem_helper("P1-STO ", DANUBE_GPIO_P1_STOFF, &buf[len]);
	len += danube_port_read_procmem_helper("P0-PUDE", DANUBE_GPIO_P0_PUDEN, &buf[len]);
	len += danube_port_read_procmem_helper("P1-PUDE", DANUBE_GPIO_P1_PUDEN, &buf[len]);
	len += danube_port_read_procmem_helper("P0-OD  ", DANUBE_GPIO_P0_OD, &buf[len]);
	len += danube_port_read_procmem_helper("P1-OD  ", DANUBE_GPIO_P1_OD, &buf[len]);
	len += danube_port_read_procmem_helper("P0-PUDS", DANUBE_GPIO_P0_PUDSEL, &buf[len]);
	len += danube_port_read_procmem_helper("P1-PUDS", DANUBE_GPIO_P1_PUDSEL, &buf[len]);
	len += danube_port_read_procmem_helper("P0-ALT0", DANUBE_GPIO_P0_ALTSEL0, &buf[len]);
	len += danube_port_read_procmem_helper("P1-ALT0", DANUBE_GPIO_P1_ALTSEL0, &buf[len]);
	len += danube_port_read_procmem_helper("P0-ALT1", DANUBE_GPIO_P0_ALTSEL1, &buf[len]);
	len += danube_port_read_procmem_helper("P1-ALT1", DANUBE_GPIO_P1_ALTSEL1, &buf[len]);
	len = len + sprintf (buf + len, "\n\n");

	*eof = 1;

	return len;
}

static int
danube_port_open (struct inode *inode, struct file *filep)
{
	return 0;
}

static int
danube_port_release (struct inode *inode, struct file *filelp)
{
	return 0;
}

static int
danube_port_ioctl (struct inode *inode, struct file *filp,
			unsigned int cmd, unsigned long arg)
{
	int ret = 0;
	volatile struct danube_port_ioctl_parm parm;

	if (_IOC_TYPE (cmd) != DANUBE_PORT_IOC_MAGIC)
		return -EINVAL;

	if (_IOC_DIR (cmd) & _IOC_WRITE) {
		if (!access_ok
		    (VERIFY_READ, arg,
		     sizeof (struct danube_port_ioctl_parm)))
			return -EFAULT;
		ret = copy_from_user ((void *) &parm, (void *) arg,
				      sizeof (struct danube_port_ioctl_parm));
	}
	if (_IOC_DIR (cmd) & _IOC_READ) {
		if (!access_ok
		    (VERIFY_WRITE, arg,
		     sizeof (struct danube_port_ioctl_parm)))
			return -EFAULT;
	}

	if (down_trylock (&port_sem) != 0)
		return -EBUSY;

	switch (cmd) {
	case DANUBE_PORT_IOCOD:
		if (parm.value == 0x00)
			danube_port_clear_open_drain(parm.port, parm.pin);
		else
			danube_port_set_open_drain(parm.port, parm.pin);
		break;

	case DANUBE_PORT_IOCPUDSEL:
		if (parm.value == 0x00)
			danube_port_clear_pudsel(parm.port, parm.pin);
		else
			danube_port_set_pudsel(parm.port, parm.pin);
		break;

	case DANUBE_PORT_IOCPUDEN:
		if (parm.value == 0x00)
			danube_port_clear_puden(parm.port, parm.pin);
		else
			danube_port_set_puden(parm.port, parm.pin);
		break;

	case DANUBE_PORT_IOCSTOFF:
		if (parm.value == 0x00)
			danube_port_clear_stoff(parm.port, parm.pin);
		else
			danube_port_set_stoff(parm.port, parm.pin);
		break;

	case DANUBE_PORT_IOCDIR:
		if (parm.value == 0x00)
			danube_port_set_dir_in(parm.port, parm.pin);
		else
			danube_port_set_dir_out(parm.port, parm.pin);
		break;

	case DANUBE_PORT_IOCOUTPUT:
		if (parm.value == 0x00)
			danube_port_clear_output(parm.port, parm.pin);
		else
			danube_port_set_output(parm.port, parm.pin);
		break;

	case DANUBE_PORT_IOCALTSEL0:
		if (parm.value == 0x00)
			danube_port_clear_altsel0(parm.port, parm.pin);
		else
			danube_port_set_altsel0(parm.port, parm.pin);
		break;

	case DANUBE_PORT_IOCALTSEL1:
		if (parm.value == 0x00)
			danube_port_clear_altsel1(parm.port, parm.pin);
		else
			danube_port_set_altsel1(parm.port, parm.pin);
		break;

	case DANUBE_PORT_IOCINPUT:
		parm.value = danube_port_get_input(parm.port, parm.pin);
		copy_to_user((void*)arg, (void*)&parm,
			sizeof(struct danube_port_ioctl_parm));
		break;

	default:
		ret = -EINVAL;
	}

	up (&port_sem);

	return ret;
}

static struct file_operations port_fops = {
      .open = danube_port_open,
      .release = danube_port_release,
      .ioctl = danube_port_ioctl
};

int __init
danube_gpio_init (void)
{
	int retval = 0;

	sema_init (&port_sem, 1);

	danube_gpio_major = register_chrdev(0, "danube_gpio", &port_fops);
	if (!danube_gpio_major)
	{
		printk("danube-port: Error! Could not register port device. #%d\n", danube_gpio_major);
		retval = -EINVAL;
		goto out;
	}

	create_proc_read_entry("danube_gpio", 0, NULL,
				danube_port_read_procmem, NULL);

	printk("registered danube gpio driver\n");

out:
	return retval;
}

void __exit
danube_gpio_exit (void)
{
	unregister_chrdev(danube_gpio_major, "danube_gpio");
	remove_proc_entry("danube_gpio", NULL);
}

module_init(danube_gpio_init);
module_exit(danube_gpio_exit);