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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * $Id: cobra.c,v 1.10 2000/06/08 10:23:45 vojtech Exp $
  3.  *
  4.  *  Copyright (c) 1999-2000 Vojtech Pavlik
  5.  *
  6.  *  Sponsored by SuSE
  7.  */
  8. /*
  9.  * Creative Labd Blaster GamePad Cobra driver for Linux
  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@suse.cz>, or by paper mail:
  28.  * Vojtech Pavlik, Ucitelska 1576, Prague 8, 182 00 Czech Republic
  29.  */
  30. #include <linux/kernel.h>
  31. #include <linux/module.h>
  32. #include <linux/slab.h>
  33. #include <linux/init.h>
  34. #include <linux/gameport.h>
  35. #include <linux/input.h>
  36. #define COBRA_MAX_STROBE 45 /* 45 us max wait for first strobe */
  37. #define COBRA_REFRESH_TIME HZ/50 /* 20 ms between reads */
  38. #define COBRA_LENGTH 36
  39. static char* cobra_name = "Creative Labs Blaster GamePad Cobra";
  40. 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 };
  41. struct cobra {
  42. struct gameport *gameport;
  43. struct timer_list timer;
  44. struct input_dev dev[2];
  45. int used;
  46. int reads;
  47. int bads;
  48. unsigned char exists;
  49. };
  50. static unsigned char cobra_read_packet(struct gameport *gameport, unsigned int *data)
  51. {
  52. unsigned long flags;
  53. unsigned char u, v, w;
  54. __u64 buf[2];
  55. int r[2], t[2];
  56. int i, j, ret;
  57. int strobe = gameport_time(gameport, COBRA_MAX_STROBE);
  58. for (i = 0; i < 2; i++) {
  59. r[i] = buf[i] = 0;
  60. t[i] = COBRA_MAX_STROBE;
  61. }
  62. __save_flags(flags);
  63. __cli();
  64. u = gameport_read(gameport);
  65. do {
  66. t[0]--; t[1]--;
  67. v = gameport_read(gameport);
  68. for (i = 0, w = u ^ v; i < 2 && w; i++, w >>= 2)
  69. if (w & 0x30) {
  70. if ((w & 0x30) < 0x30 && r[i] < COBRA_LENGTH && t[i] > 0) {
  71. buf[i] |= (__u64)((w >> 5) & 1) << r[i]++;
  72. t[i] = strobe;
  73. u = v;
  74. } else t[i] = 0;
  75. }
  76. } while (t[0] > 0 || t[1] > 0);
  77. __restore_flags(flags);
  78. ret = 0;
  79. for (i = 0; i < 2; i++) {
  80. if (r[i] != COBRA_LENGTH) continue;
  81. for (j = 0; j < COBRA_LENGTH && (buf[i] & 0x04104107f) ^ 0x041041040; j++)
  82. buf[i] = (buf[i] >> 1) | ((__u64)(buf[i] & 1) << (COBRA_LENGTH - 1));
  83. if (j < COBRA_LENGTH) ret |= (1 << i);
  84. data[i] = ((buf[i] >>  7) & 0x000001f) | ((buf[i] >>  8) & 0x00003e0)
  85. | ((buf[i] >>  9) & 0x0007c00) | ((buf[i] >> 10) & 0x00f8000)
  86. | ((buf[i] >> 11) & 0x1f00000);
  87. }
  88. return ret;
  89. }
  90. static void cobra_timer(unsigned long private)
  91. {
  92. struct cobra *cobra = (void *) private;
  93. struct input_dev *dev;
  94. unsigned int data[2];
  95. int i, j, r;
  96. cobra->reads++;
  97. if ((r = cobra_read_packet(cobra->gameport, data)) != cobra->exists)
  98. cobra->bads++;
  99. for (i = 0; i < 2; i++)
  100. if (cobra->exists & r & (1 << i)) {
  101. dev = cobra->dev + i;
  102. input_report_abs(dev, ABS_X, ((data[i] >> 4) & 1) - ((data[i] >> 3) & 1));
  103. input_report_abs(dev, ABS_Y, ((data[i] >> 2) & 1) - ((data[i] >> 1) & 1));
  104. for (j = 0; cobra_btn[j]; j++)
  105. input_report_key(dev, cobra_btn[j], data[i] & (0x20 << j));
  106. }
  107. mod_timer(&cobra->timer, jiffies + COBRA_REFRESH_TIME);
  108. }
  109. static int cobra_open(struct input_dev *dev)
  110. {
  111. struct cobra *cobra = dev->private;
  112. if (!cobra->used++)
  113. mod_timer(&cobra->timer, jiffies + COBRA_REFRESH_TIME);
  114. return 0;
  115. }
  116. static void cobra_close(struct input_dev *dev)
  117. {
  118. struct cobra *cobra = dev->private;
  119. if (!--cobra->used)
  120. del_timer(&cobra->timer);
  121. }
  122. static void cobra_connect(struct gameport *gameport, struct gameport_dev *dev)
  123. {
  124. struct cobra *cobra;
  125. unsigned int data[2];
  126. int i, j;
  127. if (!(cobra = kmalloc(sizeof(struct cobra), GFP_KERNEL)))
  128. return;
  129. memset(cobra, 0, sizeof(struct cobra));
  130. gameport->private = cobra;
  131. cobra->gameport = gameport;
  132. init_timer(&cobra->timer);
  133. cobra->timer.data = (long) cobra;
  134. cobra->timer.function = cobra_timer;
  135. if (gameport_open(gameport, dev, GAMEPORT_MODE_RAW))
  136. goto fail1;
  137. cobra->exists = cobra_read_packet(gameport, data);
  138. for (i = 0; i < 2; i++) 
  139. if ((cobra->exists >> i) & data[i] & 1) {
  140. printk(KERN_WARNING "cobra.c: Device on gameport%d.%d has the Ext bit set. ID is: %d"
  141. " Contact vojtech@suse.czn", gameport->number, i, (data[i] >> 2) & 7);
  142. cobra->exists &= ~(1 << i);
  143. }
  144. if (!cobra->exists)
  145. goto fail2;
  146. for (i = 0; i < 2; i++)
  147. if ((cobra->exists >> i) & 1) {
  148. cobra->dev[i].private = cobra;
  149. cobra->dev[i].open = cobra_open;
  150. cobra->dev[i].close = cobra_close;
  151. cobra->dev[i].name = cobra_name;
  152. cobra->dev[i].idbus = BUS_GAMEPORT;
  153. cobra->dev[i].idvendor = GAMEPORT_ID_VENDOR_CREATIVE;
  154. cobra->dev[i].idproduct = 0x0008;
  155. cobra->dev[i].idversion = 0x0100;
  156. cobra->dev[i].evbit[0] = BIT(EV_KEY) | BIT(EV_ABS);
  157. cobra->dev[i].absbit[0] = BIT(ABS_X) | BIT(ABS_Y);
  158. for (j = 0; cobra_btn[j]; j++)
  159. set_bit(cobra_btn[j], cobra->dev[i].keybit);
  160. cobra->dev[i].absmin[ABS_X] = -1; cobra->dev[i].absmax[ABS_X] = 1;
  161. cobra->dev[i].absmin[ABS_Y] = -1; cobra->dev[i].absmax[ABS_Y] = 1;
  162. input_register_device(cobra->dev + i);
  163. printk(KERN_INFO "input%d: %s on gameport%d.%dn",
  164. cobra->dev[i].number, cobra_name, gameport->number, i);
  165. }
  166. return;
  167. fail2: gameport_close(gameport);
  168. fail1: kfree(cobra);
  169. }
  170. static void cobra_disconnect(struct gameport *gameport)
  171. {
  172. int i;
  173. struct cobra *cobra = gameport->private;
  174. for (i = 0; i < 2; i++)
  175. if ((cobra->exists >> i) & 1)
  176. input_unregister_device(cobra->dev + i);
  177. gameport_close(gameport);
  178. kfree(cobra);
  179. }
  180. static struct gameport_dev cobra_dev = {
  181. connect: cobra_connect,
  182. disconnect: cobra_disconnect,
  183. };
  184. int __init cobra_init(void)
  185. {
  186. gameport_register_device(&cobra_dev);
  187. return 0;
  188. }
  189. void __exit cobra_exit(void)
  190. {
  191. gameport_unregister_device(&cobra_dev);
  192. }
  193. module_init(cobra_init);
  194. module_exit(cobra_exit);
  195. MODULE_LICENSE("GPL");