1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * Copyright (c) 1999-2001 Vojtech Pavlik
7 * Creative Labs Blaster GamePad Cobra driver for Linux
13 #include <linux/kernel.h>
14 #include <linux/module.h>
15 #include <linux/slab.h>
16 #include <linux/gameport.h>
17 #include <linux/input.h>
18 #include <linux/jiffies.h>
20 #define DRIVER_DESC "Creative Labs Blaster GamePad Cobra driver"
22 MODULE_AUTHOR("Vojtech Pavlik <vojtech@ucw.cz>");
23 MODULE_DESCRIPTION(DRIVER_DESC
);
24 MODULE_LICENSE("GPL");
26 #define COBRA_MAX_STROBE 45 /* 45 us max wait for first strobe */
27 #define COBRA_LENGTH 36
29 static int cobra_btn
[] = { BTN_START
, BTN_SELECT
, BTN_TL
, BTN_TR
, BTN_X
, BTN_Y
, BTN_Z
, BTN_A
, BTN_B
, BTN_C
, BTN_TL2
, BTN_TR2
, 0 };
32 struct gameport
*gameport
;
33 struct input_dev
*dev
[2];
40 static unsigned char cobra_read_packet(struct gameport
*gameport
, unsigned int *data
)
43 unsigned char u
, v
, w
;
48 int strobe
= gameport_time(gameport
, COBRA_MAX_STROBE
);
50 for (i
= 0; i
< 2; i
++) {
52 t
[i
] = COBRA_MAX_STROBE
;
55 local_irq_save(flags
);
57 u
= gameport_read(gameport
);
61 v
= gameport_read(gameport
);
62 for (i
= 0, w
= u
^ v
; i
< 2 && w
; i
++, w
>>= 2)
64 if ((w
& 0x30) < 0x30 && r
[i
] < COBRA_LENGTH
&& t
[i
] > 0) {
65 buf
[i
] |= (__u64
)((w
>> 5) & 1) << r
[i
]++;
70 } while (t
[0] > 0 || t
[1] > 0);
72 local_irq_restore(flags
);
76 for (i
= 0; i
< 2; i
++) {
78 if (r
[i
] != COBRA_LENGTH
) continue;
80 for (j
= 0; j
< COBRA_LENGTH
&& (buf
[i
] & 0x04104107f) ^ 0x041041040; j
++)
81 buf
[i
] = (buf
[i
] >> 1) | ((__u64
)(buf
[i
] & 1) << (COBRA_LENGTH
- 1));
83 if (j
< COBRA_LENGTH
) ret
|= (1 << i
);
85 data
[i
] = ((buf
[i
] >> 7) & 0x000001f) | ((buf
[i
] >> 8) & 0x00003e0)
86 | ((buf
[i
] >> 9) & 0x0007c00) | ((buf
[i
] >> 10) & 0x00f8000)
87 | ((buf
[i
] >> 11) & 0x1f00000);
94 static void cobra_poll(struct gameport
*gameport
)
96 struct cobra
*cobra
= gameport_get_drvdata(gameport
);
97 struct input_dev
*dev
;
103 if ((r
= cobra_read_packet(gameport
, data
)) != cobra
->exists
) {
108 for (i
= 0; i
< 2; i
++)
109 if (cobra
->exists
& r
& (1 << i
)) {
113 input_report_abs(dev
, ABS_X
, ((data
[i
] >> 4) & 1) - ((data
[i
] >> 3) & 1));
114 input_report_abs(dev
, ABS_Y
, ((data
[i
] >> 2) & 1) - ((data
[i
] >> 1) & 1));
116 for (j
= 0; cobra_btn
[j
]; j
++)
117 input_report_key(dev
, cobra_btn
[j
], data
[i
] & (0x20 << j
));
124 static int cobra_open(struct input_dev
*dev
)
126 struct cobra
*cobra
= input_get_drvdata(dev
);
128 gameport_start_polling(cobra
->gameport
);
132 static void cobra_close(struct input_dev
*dev
)
134 struct cobra
*cobra
= input_get_drvdata(dev
);
136 gameport_stop_polling(cobra
->gameport
);
139 static int cobra_connect(struct gameport
*gameport
, struct gameport_driver
*drv
)
142 struct input_dev
*input_dev
;
143 unsigned int data
[2];
147 cobra
= kzalloc(sizeof(struct cobra
), GFP_KERNEL
);
151 cobra
->gameport
= gameport
;
153 gameport_set_drvdata(gameport
, cobra
);
155 err
= gameport_open(gameport
, drv
, GAMEPORT_MODE_RAW
);
159 cobra
->exists
= cobra_read_packet(gameport
, data
);
161 for (i
= 0; i
< 2; i
++)
162 if ((cobra
->exists
>> i
) & data
[i
] & 1) {
163 printk(KERN_WARNING
"cobra.c: Device %d on %s has the Ext bit set. ID is: %d"
164 " Contact vojtech@ucw.cz\n", i
, gameport
->phys
, (data
[i
] >> 2) & 7);
165 cobra
->exists
&= ~(1 << i
);
168 if (!cobra
->exists
) {
173 gameport_set_poll_handler(gameport
, cobra_poll
);
174 gameport_set_poll_interval(gameport
, 20);
176 for (i
= 0; i
< 2; i
++) {
177 if (~(cobra
->exists
>> i
) & 1)
180 cobra
->dev
[i
] = input_dev
= input_allocate_device();
186 snprintf(cobra
->phys
[i
], sizeof(cobra
->phys
[i
]),
187 "%s/input%d", gameport
->phys
, i
);
189 input_dev
->name
= "Creative Labs Blaster GamePad Cobra";
190 input_dev
->phys
= cobra
->phys
[i
];
191 input_dev
->id
.bustype
= BUS_GAMEPORT
;
192 input_dev
->id
.vendor
= GAMEPORT_ID_VENDOR_CREATIVE
;
193 input_dev
->id
.product
= 0x0008;
194 input_dev
->id
.version
= 0x0100;
195 input_dev
->dev
.parent
= &gameport
->dev
;
197 input_set_drvdata(input_dev
, cobra
);
199 input_dev
->open
= cobra_open
;
200 input_dev
->close
= cobra_close
;
202 input_dev
->evbit
[0] = BIT_MASK(EV_KEY
) | BIT_MASK(EV_ABS
);
203 input_set_abs_params(input_dev
, ABS_X
, -1, 1, 0, 0);
204 input_set_abs_params(input_dev
, ABS_Y
, -1, 1, 0, 0);
205 for (j
= 0; cobra_btn
[j
]; j
++)
206 set_bit(cobra_btn
[j
], input_dev
->keybit
);
208 err
= input_register_device(cobra
->dev
[i
]);
215 fail4
: input_free_device(cobra
->dev
[i
]);
216 fail3
: while (--i
>= 0)
218 input_unregister_device(cobra
->dev
[i
]);
219 fail2
: gameport_close(gameport
);
220 fail1
: gameport_set_drvdata(gameport
, NULL
);
225 static void cobra_disconnect(struct gameport
*gameport
)
227 struct cobra
*cobra
= gameport_get_drvdata(gameport
);
230 for (i
= 0; i
< 2; i
++)
231 if ((cobra
->exists
>> i
) & 1)
232 input_unregister_device(cobra
->dev
[i
]);
233 gameport_close(gameport
);
234 gameport_set_drvdata(gameport
, NULL
);
238 static struct gameport_driver cobra_drv
= {
242 .description
= DRIVER_DESC
,
243 .connect
= cobra_connect
,
244 .disconnect
= cobra_disconnect
,
247 module_gameport_driver(cobra_drv
);