blob: b0f5541ec3e6849725955c655cbb4c5ea1f6559c [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * $Id: amijoy.c,v 1.13 2002/01/22 20:26:32 vojtech Exp $
3 *
4 * Copyright (c) 1998-2001 Vojtech Pavlik
5 */
6
7/*
8 * Driver for Amiga joysticks for Linux/m68k
9 */
10
11/*
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2 of the License, or
15 * (at your option) any later version.
16 *
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software
24 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
25 *
26 * Should you need to contact me, the author, you can do so either by
27 * e-mail - mail your message to <vojtech@ucw.cz>, or by paper mail:
28 * Vojtech Pavlik, Simunkova 1594, Prague 8, 182 00 Czech Republic
29 */
30
31#include <linux/types.h>
32#include <linux/errno.h>
33#include <linux/kernel.h>
34#include <linux/module.h>
35#include <linux/moduleparam.h>
36#include <linux/init.h>
37#include <linux/input.h>
38#include <linux/interrupt.h>
Ingo Molnar72ba9f02006-02-19 00:22:30 -050039#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
41#include <asm/system.h>
42#include <asm/amigahw.h>
43#include <asm/amigaints.h>
44
45MODULE_AUTHOR("Vojtech Pavlik <vojtech@ucw.cz>");
46MODULE_DESCRIPTION("Driver for Amiga joysticks");
47MODULE_LICENSE("GPL");
48
49static int amijoy[2] = { 0, 1 };
50module_param_array_named(map, amijoy, uint, NULL, 0);
51MODULE_PARM_DESC(map, "Map of attached joysticks in form of <a>,<b> (default is 0,1)");
52
Dmitry Torokhov8b1a1982005-05-29 02:29:52 -050053static int amijoy_used;
Ingo Molnar72ba9f02006-02-19 00:22:30 -050054static DEFINE_MUTEX(amijoy_mutex);
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -050055static struct input_dev *amijoy_dev[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -070056static char *amijoy_phys[2] = { "amijoy/input0", "amijoy/input1" };
57
David Howells7d12e782006-10-05 14:55:46 +010058static irqreturn_t amijoy_interrupt(int irq, void *dummy)
Linus Torvalds1da177e2005-04-16 15:20:36 -070059{
60 int i, data = 0, button = 0;
61
62 for (i = 0; i < 2; i++)
63 if (amijoy[i]) {
64
65 switch (i) {
Al Virob4290a22006-01-12 01:06:12 -080066 case 0: data = ~amiga_custom.joy0dat; button = (~ciaa.pra >> 6) & 1; break;
67 case 1: data = ~amiga_custom.joy1dat; button = (~ciaa.pra >> 7) & 1; break;
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 }
69
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -050070 input_report_key(amijoy_dev[i], BTN_TRIGGER, button);
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -050072 input_report_abs(amijoy_dev[i], ABS_X, ((data >> 1) & 1) - ((data >> 9) & 1));
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 data = ~(data ^ (data << 1));
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -050074 input_report_abs(amijoy_dev[i], ABS_Y, ((data >> 1) & 1) - ((data >> 9) & 1));
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -050076 input_sync(amijoy_dev[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 }
78 return IRQ_HANDLED;
79}
80
81static int amijoy_open(struct input_dev *dev)
82{
Dmitry Torokhov8b1a1982005-05-29 02:29:52 -050083 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070084
Ingo Molnar72ba9f02006-02-19 00:22:30 -050085 err = mutex_lock_interruptible(&amijoy_mutex);
Dmitry Torokhov8b1a1982005-05-29 02:29:52 -050086 if (err)
87 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070088
Dmitry Torokhov8b1a1982005-05-29 02:29:52 -050089 if (!amijoy_used && request_irq(IRQ_AMIGA_VERTB, amijoy_interrupt, 0, "amijoy", amijoy_interrupt)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 printk(KERN_ERR "amijoy.c: Can't allocate irq %d\n", IRQ_AMIGA_VERTB);
Dmitry Torokhov8b1a1982005-05-29 02:29:52 -050091 err = -EBUSY;
92 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 }
94
Dmitry Torokhov8b1a1982005-05-29 02:29:52 -050095 amijoy_used++;
96out:
Ingo Molnar72ba9f02006-02-19 00:22:30 -050097 mutex_unlock(&amijoy_mutex);
Dmitry Torokhov8b1a1982005-05-29 02:29:52 -050098 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070099}
100
101static void amijoy_close(struct input_dev *dev)
102{
Ingo Molnar72ba9f02006-02-19 00:22:30 -0500103 mutex_lock(&amijoy_mutex);
Dmitry Torokhov8b1a1982005-05-29 02:29:52 -0500104 if (!--amijoy_used)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 free_irq(IRQ_AMIGA_VERTB, amijoy_interrupt);
Ingo Molnar72ba9f02006-02-19 00:22:30 -0500106 mutex_unlock(&amijoy_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107}
108
109static int __init amijoy_init(void)
110{
111 int i, j;
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500112 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500114 for (i = 0; i < 2; i++) {
115 if (!amijoy[i])
116 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500118 amijoy_dev[i] = input_allocate_device();
119 if (!amijoy_dev[i]) {
120 err = -ENOMEM;
121 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 }
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500123
124 if (!request_mem_region(CUSTOM_PHYSADDR + 10 + i * 2, 2, "amijoy [Denise]")) {
125 input_free_device(amijoy_dev[i]);
126 err = -EBUSY;
127 goto fail;
128 }
129
130 amijoy_dev[i]->name = "Amiga joystick";
131 amijoy_dev[i]->phys = amijoy_phys[i];
132 amijoy_dev[i]->id.bustype = BUS_AMIGA;
133 amijoy_dev[i]->id.vendor = 0x0001;
134 amijoy_dev[i]->id.product = 0x0003;
135 amijoy_dev[i]->id.version = 0x0100;
136
137 amijoy_dev[i]->open = amijoy_open;
138 amijoy_dev[i]->close = amijoy_close;
139
140 amijoy_dev[i]->evbit[0] = BIT(EV_KEY) | BIT(EV_ABS);
141 amijoy_dev[i]->absbit[0] = BIT(ABS_X) | BIT(ABS_Y);
142 amijoy_dev[i]->keybit[LONG(BTN_LEFT)] = BIT(BTN_LEFT) | BIT(BTN_MIDDLE) | BIT(BTN_RIGHT);
143 for (j = 0; j < 2; j++) {
144 amijoy_dev[i]->absmin[ABS_X + j] = -1;
145 amijoy_dev[i]->absmax[ABS_X + j] = 1;
146 }
147
Dmitry Torokhov127278c2006-11-05 22:40:09 -0500148 err = input_register_device(amijoy_dev[i]);
149 if (err) {
150 input_free_device(amijoy_dev[i]);
151 goto fail;
152 }
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500153 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 return 0;
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500155
156 fail: while (--i >= 0)
157 if (amijoy[i]) {
158 input_unregister_device(amijoy_dev[i]);
159 release_mem_region(CUSTOM_PHYSADDR + 10 + i * 2, 2);
160 }
161 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162}
163
164static void __exit amijoy_exit(void)
165{
166 int i;
167
168 for (i = 0; i < 2; i++)
169 if (amijoy[i]) {
Dmitry Torokhov17dd3f02005-09-15 02:01:52 -0500170 input_unregister_device(amijoy_dev[i]);
171 release_mem_region(CUSTOM_PHYSADDR + 10 + i * 2, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 }
173}
174
175module_init(amijoy_init);
176module_exit(amijoy_exit);