gamecon.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:17k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * $Id: gamecon.c,v 1.14 2001/04/29 22:42:14 vojtech Exp $
  3.  *
  4.  *  Copyright (c) 1999-2001 Vojtech Pavlik
  5.  *
  6.  *  Based on the work of:
  7.  *   Andree Borrmann John Dahlstrom
  8.  *   David Kuder Nathan Hand
  9.  *
  10.  *  Sponsored by SuSE
  11.  */
  12. /*
  13.  * NES, SNES, N64, Multi1, Multi2, PSX gamepad driver for Linux
  14.  */
  15. /*
  16.  * This program is free software; you can redistribute it and/or modify
  17.  * it under the terms of the GNU General Public License as published by
  18.  * the Free Software Foundation; either version 2 of the License, or 
  19.  * (at your option) any later version.
  20.  * 
  21.  * This program is distributed in the hope that it will be useful,
  22.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  23.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  24.  * GNU General Public License for more details.
  25.  * 
  26.  * You should have received a copy of the GNU General Public License
  27.  * along with this program; if not, write to the Free Software
  28.  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  29.  *
  30.  * Should you need to contact me, the author, you can do so either by
  31.  * e-mail - mail your message to <vojtech@suse.cz>, or by paper mail:
  32.  * Vojtech Pavlik, Ucitelska 1576, Prague 8, 182 00 Czech Republic
  33.  */
  34. #include <linux/kernel.h>
  35. #include <linux/delay.h>
  36. #include <linux/module.h>
  37. #include <linux/init.h>
  38. #include <linux/parport.h>
  39. #include <linux/input.h>
  40. MODULE_AUTHOR("Vojtech Pavlik <vojtech@suse.cz>");
  41. MODULE_LICENSE("GPL");
  42. MODULE_PARM(gc, "2-6i");
  43. MODULE_PARM(gc_2,"2-6i");
  44. MODULE_PARM(gc_3,"2-6i");
  45. #define GC_SNES 1
  46. #define GC_NES 2
  47. #define GC_NES4 3
  48. #define GC_MULTI 4
  49. #define GC_MULTI2 5
  50. #define GC_N64 6
  51. #define GC_PSX 7
  52. #define GC_MAX 7
  53. #define GC_REFRESH_TIME HZ/100
  54.  
  55. struct gc {
  56. struct pardevice *pd;
  57. struct input_dev dev[5];
  58. struct timer_list timer;
  59. unsigned char pads[GC_MAX + 1];
  60. int used;
  61. };
  62. static struct gc *gc_base[3];
  63. static int gc[] __initdata = { -1, 0, 0, 0, 0, 0 };
  64. static int gc_2[] __initdata = { -1, 0, 0, 0, 0, 0 };
  65. static int gc_3[] __initdata = { -1, 0, 0, 0, 0, 0 };
  66. static int gc_status_bit[] = { 0x40, 0x80, 0x20, 0x10, 0x08 };
  67. static char *gc_names[] = { NULL, "SNES pad", "NES pad", "NES FourPort", "Multisystem joystick",
  68. "Multisystem 2-button joystick", "N64 controller", "PSX controller" };
  69. /*
  70.  * N64 support.
  71.  */
  72. static unsigned char gc_n64_bytes[] = { 0, 1, 13, 15, 14, 12, 10, 11, 2, 3 };
  73. static short gc_n64_btn[] = { BTN_A, BTN_B, BTN_C, BTN_X, BTN_Y, BTN_Z, BTN_TL, BTN_TR, BTN_TRIGGER, BTN_START };
  74. #define GC_N64_LENGTH 32 /* N64 bit length, not including stop bit */
  75. #define GC_N64_REQUEST_LENGTH 37 /* transmit request sequence is 9 bits long */
  76. #define GC_N64_DELAY 133 /* delay between transmit request, and response ready (us) */
  77. #define GC_N64_REQUEST 0x1dd1111111ULL /* the request data command (encoded for 000000011) */
  78. #define GC_N64_DWS 3 /* delay between write segments (required for sound playback because of ISA DMA) */
  79. /* GC_N64_DWS > 24 is known to fail */ 
  80. #define GC_N64_POWER_W 0xe2 /* power during write (transmit request) */
  81. #define GC_N64_POWER_R 0xfd /* power during read */
  82. #define GC_N64_OUT 0x1d /* output bits to the 4 pads */
  83. /* Reading the main axes of any N64 pad is known to fail if the corresponding bit */
  84. /* in GC_N64_OUT is pulled low on the output port (by any routine) for more */
  85. /* than 123 us */
  86. #define GC_N64_CLOCK 0x02 /* clock bits for read */
  87. /* 
  88.  * gc_n64_read_packet() reads an N64 packet. 
  89.  * Each pad uses one bit per byte. So all pads connected to this port are read in parallel.
  90.  */
  91. static void gc_n64_read_packet(struct gc *gc, unsigned char *data)
  92. {
  93. int i;
  94. unsigned long flags;
  95. /*
  96.  * Request the pad to transmit data
  97.  */
  98. __save_flags(flags);
  99. __cli();
  100. for (i = 0; i < GC_N64_REQUEST_LENGTH; i++) {
  101. parport_write_data(gc->pd->port, GC_N64_POWER_W | ((GC_N64_REQUEST >> i) & 1 ? GC_N64_OUT : 0));
  102. udelay(GC_N64_DWS);
  103. }
  104. __restore_flags(flags);
  105. /*
  106.  * Wait for the pad response to be loaded into the 33-bit register of the adapter
  107.  */
  108. udelay(GC_N64_DELAY);
  109. /*
  110.  * Grab data (ignoring the last bit, which is a stop bit)
  111.  */
  112. for (i = 0; i < GC_N64_LENGTH; i++) {
  113. parport_write_data(gc->pd->port, GC_N64_POWER_R);
  114. data[i] = parport_read_status(gc->pd->port);
  115. parport_write_data(gc->pd->port, GC_N64_POWER_R | GC_N64_CLOCK);
  116.  }
  117. /*
  118.  * We must wait 200 ms here for the controller to reinitialize before the next read request.
  119.  * No worries as long as gc_read is polled less frequently than this.
  120.  */
  121. }
  122. /*
  123.  * NES/SNES support.
  124.  */
  125. #define GC_NES_DELAY 6 /* Delay between bits - 6us */
  126. #define GC_NES_LENGTH 8 /* The NES pads use 8 bits of data */
  127. #define GC_SNES_LENGTH 12 /* The SNES true length is 16, but the last 4 bits are unused */
  128. #define GC_NES_POWER 0xfc
  129. #define GC_NES_CLOCK 0x01
  130. #define GC_NES_LATCH 0x02
  131. static unsigned char gc_nes_bytes[] = { 0, 1, 2, 3 };
  132. static unsigned char gc_snes_bytes[] = { 8, 0, 2, 3, 9, 1, 10, 11 };
  133. static short gc_snes_btn[] = { BTN_A, BTN_B, BTN_SELECT, BTN_START, BTN_X, BTN_Y, BTN_TL, BTN_TR };
  134. /*
  135.  * gc_nes_read_packet() reads a NES/SNES packet.
  136.  * Each pad uses one bit per byte. So all pads connected to
  137.  * this port are read in parallel.
  138.  */
  139. static void gc_nes_read_packet(struct gc *gc, int length, unsigned char *data)
  140. {
  141. int i;
  142. parport_write_data(gc->pd->port, GC_NES_POWER | GC_NES_CLOCK | GC_NES_LATCH);
  143. udelay(GC_NES_DELAY * 2);
  144. parport_write_data(gc->pd->port, GC_NES_POWER | GC_NES_CLOCK);
  145. for (i = 0; i < length; i++) {
  146. udelay(GC_NES_DELAY);
  147. parport_write_data(gc->pd->port, GC_NES_POWER);
  148. data[i] = parport_read_status(gc->pd->port) ^ 0x7f;
  149. udelay(GC_NES_DELAY);
  150. parport_write_data(gc->pd->port, GC_NES_POWER | GC_NES_CLOCK);
  151. }
  152. }
  153. /*
  154.  * Multisystem joystick support
  155.  */
  156. #define GC_MULTI_LENGTH 5 /* Multi system joystick packet length is 5 */
  157. #define GC_MULTI2_LENGTH 6 /* One more bit for one more button */
  158. /*
  159.  * gc_multi_read_packet() reads a Multisystem joystick packet.
  160.  */
  161. static void gc_multi_read_packet(struct gc *gc, int length, unsigned char *data)
  162. {
  163. int i;
  164. for (i = 0; i < length; i++) {
  165. parport_write_data(gc->pd->port, ~(1 << i));
  166. data[i] = parport_read_status(gc->pd->port) ^ 0x7f;
  167. }
  168. }
  169. /*
  170.  * PSX support
  171.  *
  172.  * See documentation at:
  173.  * http://www.dim.com/~mackys/psxmemcard/ps-eng2.txt
  174.  * http://www.gamesx.com/controldata/psxcont/psxcont.htm
  175.  * ftp://milano.usal.es/pablo/
  176.  *
  177.  */
  178. #define GC_PSX_DELAY 60 /* 60 usec */
  179. #define GC_PSX_LENGTH 8 /* talk to the controller in bytes */
  180. #define GC_PSX_MOUSE 1 /* Mouse */
  181. #define GC_PSX_NEGCON 2 /* NegCon */
  182. #define GC_PSX_NORMAL 4 /* Digital / Analog or Rumble in Digital mode  */
  183. #define GC_PSX_ANALOG 5 /* Analog in Analog mode / Rumble in Green mode */
  184. #define GC_PSX_RUMBLE 7 /* Rumble in Red mode */
  185. #define GC_PSX_CLOCK 0x04 /* Pin 4 */
  186. #define GC_PSX_COMMAND 0x01 /* Pin 1 */
  187. #define GC_PSX_POWER 0xf8 /* Pins 5-9 */
  188. #define GC_PSX_SELECT 0x02 /* Pin 3 */
  189. #define GC_PSX_ID(x) ((x) >> 4) /* High nibble is device type */
  190. #define GC_PSX_LEN(x) ((x) & 0xf) /* Low nibble is length in words */
  191. static short gc_psx_abs[] = { ABS_X, ABS_Y, ABS_RX, ABS_RY, ABS_HAT0X, ABS_HAT0Y };
  192. static short gc_psx_btn[] = { BTN_TL, BTN_TR, BTN_TL2, BTN_TR2, BTN_A, BTN_B, BTN_X, BTN_Y,
  193. BTN_START, BTN_SELECT, BTN_THUMBL, BTN_THUMBR };
  194. /*
  195.  * gc_psx_command() writes 8bit command and reads 8bit data from
  196.  * the psx pad.
  197.  */
  198. static int gc_psx_command(struct gc *gc, int b)
  199. {
  200. int i, cmd, data = 0;
  201. for (i = 0; i < 8; i++, b >>= 1) {
  202. cmd = (b & 1) ? GC_PSX_COMMAND : 0;
  203. parport_write_data(gc->pd->port, cmd | GC_PSX_POWER);
  204. udelay(GC_PSX_DELAY);
  205. data |= ((parport_read_status(gc->pd->port) ^ 0x80) & gc->pads[GC_PSX]) ? (1 << i) : 0;
  206. parport_write_data(gc->pd->port, cmd | GC_PSX_CLOCK | GC_PSX_POWER);
  207. udelay(GC_PSX_DELAY);
  208. }
  209. return data;
  210. }
  211. /*
  212.  * gc_psx_read_packet() reads a whole psx packet and returns
  213.  * device identifier code.
  214.  */
  215. static int gc_psx_read_packet(struct gc *gc, unsigned char *data)
  216. {
  217. int i, id;
  218. unsigned long flags;
  219. parport_write_data(gc->pd->port, GC_PSX_CLOCK | GC_PSX_SELECT | GC_PSX_POWER); /* Select pad */
  220. udelay(GC_PSX_DELAY * 2);
  221. parport_write_data(gc->pd->port, GC_PSX_CLOCK | GC_PSX_POWER); /* Deselect, begin command */
  222. udelay(GC_PSX_DELAY * 2);
  223. __save_flags(flags);
  224. __cli();
  225. gc_psx_command(gc, 0x01); /* Access pad */
  226. id = gc_psx_command(gc, 0x42); /* Get device id */
  227. if (gc_psx_command(gc, 0) == 0x5a) { /* Okay? */
  228. for (i = 0; i < GC_PSX_LEN(id) * 2; i++)
  229. data[i] = gc_psx_command(gc, 0);
  230. } else id = 0;
  231. __restore_flags(flags);
  232. parport_write_data(gc->pd->port, GC_PSX_CLOCK | GC_PSX_SELECT | GC_PSX_POWER);
  233. return GC_PSX_ID(id);
  234. }
  235. /*
  236.  * gc_timer() reads and analyzes console pads data.
  237.  */
  238. #define GC_MAX_LENGTH GC_N64_LENGTH
  239. static void gc_timer(unsigned long private)
  240. {
  241. struct gc *gc = (void *) private;
  242. struct input_dev *dev = gc->dev;
  243. unsigned char data[GC_MAX_LENGTH];
  244. int i, j, s;
  245. /*
  246.  * N64 pads - must be read first, any read confuses them for 200 us
  247.  */
  248. if (gc->pads[GC_N64]) {
  249. gc_n64_read_packet(gc, data);
  250. for (i = 0; i < 5; i++) {
  251. s = gc_status_bit[i];
  252. if (s & gc->pads[GC_N64] & ~(data[8] | data[9])) {
  253. signed char axes[2];
  254. axes[0] = axes[1] = 0;
  255. for (j = 0; j < 8; j++) {
  256. if (data[23 - j] & s) axes[0] |= 1 << j; 
  257. if (data[31 - j] & s) axes[1] |= 1 << j; 
  258. }
  259. input_report_abs(dev + i, ABS_X,  axes[0]);
  260. input_report_abs(dev + i, ABS_Y, -axes[1]);
  261. input_report_abs(dev + i, ABS_HAT0X, !(s & data[6]) - !(s & data[7]));
  262. input_report_abs(dev + i, ABS_HAT0Y, !(s & data[4]) - !(s & data[5]));
  263. for (j = 0; j < 10; j++)
  264. input_report_key(dev + i, gc_n64_btn[j], s & data[gc_n64_bytes[j]]);
  265. }
  266. }
  267. }
  268. /*
  269.  * NES and SNES pads
  270.  */
  271. if (gc->pads[GC_NES] || gc->pads[GC_SNES]) {
  272. gc_nes_read_packet(gc, gc->pads[GC_SNES] ? GC_SNES_LENGTH : GC_NES_LENGTH, data);
  273. for (i = 0; i < 5; i++) {
  274. s = gc_status_bit[i];
  275. if (s & (gc->pads[GC_NES] | gc->pads[GC_SNES])) {
  276. input_report_abs(dev + i, ABS_X, !(s & data[6]) - !(s & data[7]));
  277. input_report_abs(dev + i, ABS_Y, !(s & data[4]) - !(s & data[5]));
  278. }
  279. if (s & gc->pads[GC_NES])
  280. for (j = 0; j < 4; j++)
  281. input_report_key(dev + i, gc_snes_btn[j], s & data[gc_nes_bytes[j]]);
  282. if (s & gc->pads[GC_SNES])
  283. for (j = 0; j < 8; j++)
  284. input_report_key(dev + i, gc_snes_btn[j], s & data[gc_snes_bytes[j]]);
  285. }
  286. }
  287. /*
  288.  * Multi and Multi2 joysticks
  289.  */
  290. if (gc->pads[GC_MULTI] || gc->pads[GC_MULTI2]) {
  291. gc_multi_read_packet(gc, gc->pads[GC_MULTI2] ? GC_MULTI2_LENGTH : GC_MULTI_LENGTH, data);
  292. for (i = 0; i < 5; i++) {
  293. s = gc_status_bit[i];
  294. if (s & (gc->pads[GC_MULTI] | gc->pads[GC_MULTI2])) {
  295. input_report_abs(dev + i, ABS_X,  !(s & data[2]) - !(s & data[3]));
  296. input_report_abs(dev + i, ABS_Y,  !(s & data[0]) - !(s & data[1]));
  297. input_report_key(dev + i, BTN_TRIGGER, s & data[4]);
  298. }
  299. if (s & gc->pads[GC_MULTI2])
  300. input_report_key(dev + i, BTN_THUMB, s & data[5]);
  301. }
  302. }
  303. /*
  304.  * PSX controllers
  305.  */
  306. if (gc->pads[GC_PSX]) {
  307. for (i = 0; i < 5; i++)
  308.         if (gc->pads[GC_PSX] & gc_status_bit[i])
  309. break;
  310.   switch (gc_psx_read_packet(gc, data)) {
  311. case GC_PSX_RUMBLE:
  312. input_report_key(dev + i, BTN_THUMB,  ~data[0] & 0x04);
  313. input_report_key(dev + i, BTN_THUMB2, ~data[0] & 0x02);
  314. case GC_PSX_NEGCON:
  315. case GC_PSX_ANALOG:
  316. for (j = 0; j < 4; j++)
  317. input_report_abs(dev + i, gc_psx_abs[j], data[j + 2]);
  318. input_report_abs(dev + i, ABS_HAT0X, !(data[0] & 0x20) - !(data[0] & 0x80));
  319. input_report_abs(dev + i, ABS_HAT0Y, !(data[0] & 0x40) - !(data[0] & 0x10));
  320. for (j = 0; j < 8; j++)
  321. input_report_key(dev + i, gc_psx_btn[j], ~data[1] & (1 << j));
  322. input_report_key(dev + i, BTN_START,  ~data[0] & 0x08);
  323. input_report_key(dev + i, BTN_SELECT, ~data[0] & 0x01);
  324. break;
  325. case GC_PSX_NORMAL:
  326. input_report_abs(dev + i, ABS_X, 128 + !(data[0] & 0x20) * 127 - !(data[0] & 0x80) * 128);
  327. input_report_abs(dev + i, ABS_Y, 128 + !(data[0] & 0x40) * 127 - !(data[0] & 0x10) * 128);
  328. for (j = 0; j < 8; j++)
  329. input_report_key(dev + i, gc_psx_btn[j], ~data[1] & (1 << j));
  330. input_report_key(dev + i, BTN_START,  ~data[0] & 0x08);
  331. input_report_key(dev + i, BTN_SELECT, ~data[0] & 0x01);
  332. break;
  333. }
  334. }
  335. mod_timer(&gc->timer, jiffies + GC_REFRESH_TIME);
  336. }
  337. static int gc_open(struct input_dev *dev)
  338. {
  339. struct gc *gc = dev->private;
  340. if (!gc->used++) {
  341. parport_claim(gc->pd);
  342. parport_write_control(gc->pd->port, 0x04);
  343. mod_timer(&gc->timer, jiffies + GC_REFRESH_TIME);
  344. }
  345. return 0;
  346. }
  347. static void gc_close(struct input_dev *dev)
  348. {
  349. struct gc *gc = dev->private;
  350. if (!--gc->used) {
  351. del_timer(&gc->timer);
  352. parport_write_control(gc->pd->port, 0x00);
  353. parport_release(gc->pd);
  354. }
  355. }
  356. static struct gc __init *gc_probe(int *config)
  357. {
  358. struct gc *gc;
  359. struct parport *pp;
  360. int i, j, psx;
  361. unsigned char data[32];
  362. if (config[0] < 0)
  363. return NULL;
  364. for (pp = parport_enumerate(); pp && (config[0] > 0); pp = pp->next)
  365. config[0]--;
  366. if (!pp) {
  367. printk(KERN_ERR "gamecon.c: no such parportn");
  368. return NULL;
  369. }
  370. if (!(gc = kmalloc(sizeof(struct gc), GFP_KERNEL)))
  371. return NULL;
  372. memset(gc, 0, sizeof(struct gc));
  373. gc->pd = parport_register_device(pp, "gamecon", NULL, NULL, NULL, PARPORT_DEV_EXCL, NULL);
  374. if (!gc->pd) {
  375. printk(KERN_ERR "gamecon.c: parport busy already - lp.o loaded?n");
  376. kfree(gc);
  377. return NULL;
  378. }
  379. parport_claim(gc->pd);
  380. init_timer(&gc->timer);
  381. gc->timer.data = (long) gc;
  382. gc->timer.function = gc_timer;
  383. for (i = 0; i < 5; i++) {
  384. if (!config[i + 1])
  385. continue;
  386. if (config[i + 1] < 1 || config[i + 1] > GC_MAX) {
  387. printk(KERN_WARNING "gamecon.c: Pad type %d unknownn", config[i + 1]);
  388. continue;
  389. }
  390.                 gc->dev[i].private = gc;
  391.                 gc->dev[i].open = gc_open;
  392.                 gc->dev[i].close = gc_close;
  393.                 gc->dev[i].evbit[0] = BIT(EV_KEY) | BIT(EV_ABS);
  394. for (j = 0; j < 2; j++) {
  395. set_bit(ABS_X + j, gc->dev[i].absbit);
  396. gc->dev[i].absmin[ABS_X + j] = -1;
  397. gc->dev[i].absmax[ABS_X + j] =  1;
  398. }
  399. gc->pads[0] |= gc_status_bit[i];
  400. gc->pads[config[i + 1]] |= gc_status_bit[i];
  401. switch(config[i + 1]) {
  402. case GC_N64:
  403. for (j = 0; j < 10; j++)
  404. set_bit(gc_n64_btn[j], gc->dev[i].keybit);
  405. for (j = 0; j < 2; j++) {
  406. set_bit(ABS_X + j, gc->dev[i].absbit);
  407. gc->dev[i].absmin[ABS_X + j] = -127;
  408. gc->dev[i].absmax[ABS_X + j] =  126;
  409. gc->dev[i].absflat[ABS_X + j] = 2;
  410. set_bit(ABS_HAT0X + j, gc->dev[i].absbit);
  411. gc->dev[i].absmin[ABS_HAT0X + j] = -1;
  412. gc->dev[i].absmax[ABS_HAT0X + j] =  1;
  413. }
  414. break;
  415. case GC_SNES:
  416. for (j = 4; j < 8; j++)
  417. set_bit(gc_snes_btn[j], gc->dev[i].keybit);
  418. case GC_NES:
  419. for (j = 0; j < 4; j++)
  420. set_bit(gc_snes_btn[j], gc->dev[i].keybit);
  421. break;
  422. case GC_MULTI2:
  423. set_bit(BTN_THUMB, gc->dev[i].keybit);
  424. case GC_MULTI:
  425. set_bit(BTN_TRIGGER, gc->dev[i].keybit);
  426. break;
  427. case GC_PSX:
  428. psx = gc_psx_read_packet(gc, data);
  429. switch(psx) {
  430. case GC_PSX_NEGCON:
  431. case GC_PSX_NORMAL:
  432. case GC_PSX_ANALOG:
  433. case GC_PSX_RUMBLE:
  434. for (j = 0; j < 6; j++) {
  435. psx = gc_psx_abs[j];
  436. set_bit(psx, gc->dev[i].absbit);
  437. if (j < 4) {
  438. gc->dev[i].absmin[psx] = 4;
  439. gc->dev[i].absmax[psx] = 252;
  440. gc->dev[i].absflat[psx] = 2;
  441. } else {
  442. gc->dev[i].absmin[psx] = -1;
  443. gc->dev[i].absmax[psx] = 1;
  444. }
  445. }
  446. for (j = 0; j < 12; j++)
  447. set_bit(gc_psx_btn[j], gc->dev[i].keybit);
  448. break;
  449. case 0:
  450. gc->pads[GC_PSX] &= ~gc_status_bit[i];
  451. printk(KERN_ERR "gamecon.c: No PSX controller found.n");
  452. break;
  453. default:
  454. gc->pads[GC_PSX] &= ~gc_status_bit[i];
  455. printk(KERN_WARNING "gamecon.c: Unsupported PSX controller %#x,"
  456. " please report to <vojtech@suse.cz>.n", psx);
  457. }
  458. break;
  459. }
  460.                 gc->dev[i].name = gc_names[config[i + 1]];
  461.                 gc->dev[i].idbus = BUS_PARPORT;
  462.                 gc->dev[i].idvendor = 0x0001;
  463.                 gc->dev[i].idproduct = config[i + 1];
  464.                 gc->dev[i].idversion = 0x0100;
  465. }
  466. parport_release(gc->pd);
  467. if (!gc->pads[0]) {
  468. parport_unregister_device(gc->pd);
  469. kfree(gc);
  470. return NULL;
  471. }
  472. for (i = 0; i < 5; i++) 
  473. if (gc->pads[0] & gc_status_bit[i]) {
  474. input_register_device(gc->dev + i);
  475. printk(KERN_INFO "input%d: %s on %sn", gc->dev[i].number, gc->dev[i].name, gc->pd->port->name);
  476. }
  477. return gc;
  478. }
  479. #ifndef MODULE
  480. int __init gc_setup(char *str)
  481. {
  482. int i, ints[7];
  483. get_options(str, ARRAY_SIZE(ints), ints);
  484. for (i = 0; i <= ints[0] && i < 6; i++) gc[i] = ints[i + 1];
  485. return 1;
  486. }
  487. int __init gc_setup_2(char *str)
  488. {
  489. int i, ints[7];
  490. get_options(str, ARRAY_SIZE(ints), ints);
  491. for (i = 0; i <= ints[0] && i < 6; i++) gc_2[i] = ints[i + 1];
  492. return 1;
  493. }
  494. int __init gc_setup_3(char *str)
  495. {
  496. int i, ints[7];
  497. get_options(str, ARRAY_SIZE(ints), ints);
  498. for (i = 0; i <= ints[0] && i < 6; i++) gc_3[i] = ints[i + 1];
  499. return 1;
  500. }
  501. __setup("gc=", gc_setup);
  502. __setup("gc_2=", gc_setup_2);
  503. __setup("gc_3=", gc_setup_3);
  504. #endif
  505. int __init gc_init(void)
  506. {
  507. gc_base[0] = gc_probe(gc);
  508. gc_base[1] = gc_probe(gc_2);
  509. gc_base[2] = gc_probe(gc_3);
  510. if (gc_base[0] || gc_base[1] || gc_base[2])
  511. return 0;
  512. return -ENODEV;
  513. }
  514. void __exit gc_exit(void)
  515. {
  516. int i, j;
  517. for (i = 0; i < 3; i++)
  518. if (gc_base[i]) {
  519. for (j = 0; j < 5; j++)
  520. if (gc_base[i]->pads[0] & gc_status_bit[j])
  521. input_unregister_device(gc_base[i]->dev + j); 
  522. parport_unregister_device(gc_base[i]->pd);
  523. }
  524. }
  525. module_init(gc_init);
  526. module_exit(gc_exit);