2 * Copyright (c) 1999-2001 Vojtech Pavlik
4 * Based on the work of:
10 * SpaceTec SpaceBall 2003/3003/4000 FLX driver for Linux
14 * This program is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License as published by
16 * the Free Software Foundation; either version 2 of the License, or
17 * (at your option) any later version.
19 * This program is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU General Public License for more details.
24 * You should have received a copy of the GNU General Public License
25 * along with this program; if not, write to the Free Software
26 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
28 * Should you need to contact me, the author, you can do so either by
30 * Vojtech Pavlik, Simunkova 1594, Prague 8, 182 00 Czech Republic
33 #include <linux/kernel.h>
34 #include <linux/slab.h>
35 #include <linux/module.h>
36 #include <linux/input.h>
37 #include <linux/serio.h>
39 #define DRIVER_DESC "SpaceTec SpaceBall 2003/3003/4000 FLX driver"
42 MODULE_DESCRIPTION(DRIVER_DESC);
43 MODULE_LICENSE("GPL");
49 #define SPACEBALL_MAX_LENGTH 128
50 #define SPACEBALL_MAX_ID 9
52 #define SPACEBALL_1003 1
53 #define SPACEBALL_2003B 3
54 #define SPACEBALL_2003C 4
55 #define SPACEBALL_3003C 7
56 #define SPACEBALL_4000FLX 8
57 #define SPACEBALL_4000FLX_L 9
59 static int spaceball_axes[] = { ABS_X, ABS_Z, ABS_Y, ABS_RX, ABS_RZ, ABS_RY };
60 static char *spaceball_names[] = {
61 "?", "SpaceTec SpaceBall 1003", "SpaceTec SpaceBall 2003", "SpaceTec SpaceBall 2003B",
62 "SpaceTec SpaceBall 2003C", "SpaceTec SpaceBall 3003", "SpaceTec SpaceBall SpaceController",
63 "SpaceTec SpaceBall 3003C", "SpaceTec SpaceBall 4000FLX", "SpaceTec SpaceBall 4000FLX Lefty" };
70 struct input_dev *dev;
73 unsigned char data[SPACEBALL_MAX_LENGTH];
78 * spaceball_process_packet() decodes packets the driver receives from the
82 static void spaceball_process_packet(struct spaceball* spaceball)
84 struct input_dev *dev = spaceball->dev;
85 unsigned char *data = spaceball->data;
88 if (spaceball->idx < 2) return;
90 switch (spaceball->data[0]) {
92 case 'D': /* Ball data */
93 if (spaceball->idx != 15) return;
94 for (i = 0; i < 6; i++)
95 input_report_abs(dev, spaceball_axes[i],
96 (__s16)((data[2 * i + 3] << 8) | data[2 * i + 2]));
99 case 'K': /* Button data */
100 if (spaceball->idx != 3) return;
101 input_report_key(dev, BTN_1, (data[2] & 0x01) || (data[2] & 0x20));
102 input_report_key(dev, BTN_2, data[2] & 0x02);
103 input_report_key(dev, BTN_3, data[2] & 0x04);
104 input_report_key(dev, BTN_4, data[2] & 0x08);
105 input_report_key(dev, BTN_5, data[1] & 0x01);
106 input_report_key(dev, BTN_6, data[1] & 0x02);
107 input_report_key(dev, BTN_7, data[1] & 0x04);
108 input_report_key(dev, BTN_8, data[1] & 0x10);
111 case '.': /* Advanced button data */
112 if (spaceball->idx != 3) return;
113 input_report_key(dev, BTN_1, data[2] & 0x01);
114 input_report_key(dev, BTN_2, data[2] & 0x02);
115 input_report_key(dev, BTN_3, data[2] & 0x04);
116 input_report_key(dev, BTN_4, data[2] & 0x08);
117 input_report_key(dev, BTN_5, data[2] & 0x10);
118 input_report_key(dev, BTN_6, data[2] & 0x20);
119 input_report_key(dev, BTN_7, data[2] & 0x80);
120 input_report_key(dev, BTN_8, data[1] & 0x01);
121 input_report_key(dev, BTN_9, data[1] & 0x02);
122 input_report_key(dev, BTN_A, data[1] & 0x04);
123 input_report_key(dev, BTN_B, data[1] & 0x08);
124 input_report_key(dev, BTN_C, data[1] & 0x10);
125 input_report_key(dev, BTN_MODE, data[1] & 0x20);
128 case 'E': /* Device error */
129 spaceball->data[spaceball->idx - 1] = 0;
130 printk(KERN_ERR "spaceball: Device error. [%s]\n", spaceball->data + 1);
133 case '?': /* Bad command packet */
134 spaceball->data[spaceball->idx - 1] = 0;
135 printk(KERN_ERR "spaceball: Bad command. [%s]\n", spaceball->data + 1);
143 * Spaceball 4000 FLX packets all start with a one letter packet-type decriptor,
144 * and end in 0x0d. It uses '^' as an escape for CR, XOFF and XON characters which
145 * can occur in the axis values.
148 static irqreturn_t spaceball_interrupt(struct serio *serio,
149 unsigned char data, unsigned int flags)
151 struct spaceball *spaceball = serio_get_drvdata(serio);
155 spaceball_process_packet(spaceball);
157 spaceball->escape = 0;
160 if (!spaceball->escape) {
161 spaceball->escape = 1;
164 spaceball->escape = 0;
168 if (spaceball->escape) {
169 spaceball->escape = 0;
173 if (spaceball->escape)
174 spaceball->escape = 0;
175 if (spaceball->idx < SPACEBALL_MAX_LENGTH)
176 spaceball->data[spaceball->idx++] = data;
183 * spaceball_disconnect() is the opposite of spaceball_connect()
186 static void spaceball_disconnect(struct serio *serio)
188 struct spaceball* spaceball = serio_get_drvdata(serio);
191 serio_set_drvdata(serio, NULL);
192 input_unregister_device(spaceball->dev);
197 * spaceball_connect() is the routine that is called when someone adds a
198 * new serio device that supports Spaceball protocol and registers it as
202 static int spaceball_connect(struct serio *serio, struct serio_driver *drv)
204 struct spaceball *spaceball;
205 struct input_dev *input_dev;
209 if ((id = serio->id.id) > SPACEBALL_MAX_ID)
212 spaceball = kmalloc(sizeof(struct spaceball), GFP_KERNEL);
213 input_dev = input_allocate_device();
214 if (!spaceball || !input_dev)
217 spaceball->dev = input_dev;
218 snprintf(spaceball->phys, sizeof(spaceball->phys), "%s/input0", serio->phys);
220 input_dev->name = spaceball_names[id];
221 input_dev->phys = spaceball->phys;
222 input_dev->id.bustype = BUS_RS232;
223 input_dev->id.vendor = SERIO_SPACEBALL;
224 input_dev->id.product = id;
225 input_dev->id.version = 0x0100;
226 input_dev->dev.parent = &serio->dev;
228 input_dev->evbit[0] = BIT_MASK(EV_KEY) | BIT_MASK(EV_ABS);
231 case SPACEBALL_4000FLX:
232 case SPACEBALL_4000FLX_L:
233 input_dev->keybit[BIT_WORD(BTN_0)] |= BIT_MASK(BTN_9);
234 input_dev->keybit[BIT_WORD(BTN_A)] |= BIT_MASK(BTN_A) |
235 BIT_MASK(BTN_B) | BIT_MASK(BTN_C) |
238 input_dev->keybit[BIT_WORD(BTN_0)] |= BIT_MASK(BTN_2) |
239 BIT_MASK(BTN_3) | BIT_MASK(BTN_4) |
240 BIT_MASK(BTN_5) | BIT_MASK(BTN_6) |
241 BIT_MASK(BTN_7) | BIT_MASK(BTN_8);
242 case SPACEBALL_3003C:
243 input_dev->keybit[BIT_WORD(BTN_0)] |= BIT_MASK(BTN_1) |
247 for (i = 0; i < 3; i++) {
248 input_set_abs_params(input_dev, ABS_X + i, -8000, 8000, 8, 40);
249 input_set_abs_params(input_dev, ABS_RX + i, -1600, 1600, 2, 8);
252 serio_set_drvdata(serio, spaceball);
254 err = serio_open(serio, drv);
258 err = input_register_device(spaceball->dev);
264 fail3: serio_close(serio);
265 fail2: serio_set_drvdata(serio, NULL);
266 fail1: input_free_device(input_dev);
272 * The serio driver structure.
275 static struct serio_device_id spaceball_serio_ids[] = {
278 .proto = SERIO_SPACEBALL,
285 MODULE_DEVICE_TABLE(serio, spaceball_serio_ids);
287 static struct serio_driver spaceball_drv = {
291 .description = DRIVER_DESC,
292 .id_table = spaceball_serio_ids,
293 .interrupt = spaceball_interrupt,
294 .connect = spaceball_connect,
295 .disconnect = spaceball_disconnect,
298 module_serio_driver(spaceball_drv);