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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * $Id: stinger.c,v 1.4 2001/05/23 09:25:02 vojtech Exp $
  3.  *
  4.  *  Copyright (c) 2000-2001 Vojtech Pavlik
  5.  *  Copyright (c) 2000 Mark Fletcher
  6.  *
  7.  *  Sponsored by SuSE
  8.  */
  9. /*
  10.  * Gravis Stinger gamepad driver for Linux
  11.  */
  12. /*
  13.  * This program is free warftware; you can redistribute it and/or modify
  14.  * it under the terms of the GNU General Public License as published by
  15.  * the Free Software Foundation; either version 2 of the License, or
  16.  * (at your option) any later version.
  17.  *
  18.  * This program is distributed in the hope that it will be useful,
  19.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  20.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  21.  * GNU General Public License for more details.
  22.  *
  23.  * You should have received a copy of the GNU General Public License
  24.  * along with this program; if not, write to the Free Software
  25.  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  26.  *
  27.  *  Should you need to contact me, the author, you can do so either by
  28.  * e-mail - mail your message to <vojtech@ucw.cz>, or by paper mail:
  29.  * Vojtech Pavlik, Ucitelska 1576, Prague 8, 182 00 Czech Republic
  30.  */
  31. #include <linux/kernel.h>
  32. #include <linux/module.h>
  33. #include <linux/slab.h>
  34. #include <linux/input.h>
  35. #include <linux/serio.h>
  36. #include <linux/init.h>
  37. /*
  38.  * Constants.
  39.  */
  40. #define STINGER_MAX_LENGTH 8
  41. static char *stinger_name = "Gravis Stinger";
  42. /*
  43.  * Per-Stinger data.
  44.  */
  45. struct stinger {
  46. struct input_dev dev;
  47. int idx;
  48. unsigned char data[STINGER_MAX_LENGTH];
  49. };
  50. /*
  51.  * stinger_process_packet() decodes packets the driver receives from the
  52.  * Stinger. It updates the data accordingly.
  53.  */
  54. static void stinger_process_packet(struct stinger *stinger)
  55. {
  56. struct input_dev *dev = &stinger->dev;
  57. unsigned char *data = stinger->data;
  58. if (!stinger->idx) return;
  59. input_report_key(dev, BTN_A,   ((data[0] & 0x20) >> 5));
  60. input_report_key(dev, BTN_B,   ((data[0] & 0x10) >> 4));
  61. input_report_key(dev, BTN_C,   ((data[0] & 0x08) >> 3));
  62. input_report_key(dev, BTN_X,   ((data[0] & 0x04) >> 2));
  63. input_report_key(dev, BTN_Y,   ((data[3] & 0x20) >> 5));
  64. input_report_key(dev, BTN_Z,   ((data[3] & 0x10) >> 4));
  65. input_report_key(dev, BTN_TL,     ((data[3] & 0x08) >> 3));
  66. input_report_key(dev, BTN_TR,     ((data[3] & 0x04) >> 2));
  67. input_report_key(dev, BTN_SELECT, ((data[3] & 0x02) >> 1));
  68. input_report_key(dev, BTN_START,   (data[3] & 0x01));
  69. input_report_abs(dev, ABS_X, (data[1] & 0x3F) - ((data[0] & 0x01) << 6));
  70. input_report_abs(dev, ABS_Y, ((data[0] & 0x02) << 5) - (data[2] & 0x3F));
  71. return;
  72. }
  73. /*
  74.  * stinger_interrupt() is called by the low level driver when characters
  75.  * are ready for us. We then buffer them for further processing, or call the
  76.  * packet processing routine.
  77.  */
  78. static void stinger_interrupt(struct serio *serio, unsigned char data, unsigned int flags)
  79. {
  80. struct stinger* stinger = serio->private;
  81. /* All Stinger packets are 4 bytes */
  82. if (stinger->idx < STINGER_MAX_LENGTH)
  83. stinger->data[stinger->idx++] = data;
  84. if (stinger->idx == 4) {
  85. stinger_process_packet(stinger);
  86. stinger->idx = 0;
  87. }
  88. return;
  89. }
  90. /*
  91.  * stinger_disconnect() is the opposite of stinger_connect()
  92.  */
  93. static void stinger_disconnect(struct serio *serio)
  94. {
  95. struct stinger* stinger = serio->private;
  96. input_unregister_device(&stinger->dev);
  97. serio_close(serio);
  98. kfree(stinger);
  99. }
  100. /*
  101.  * stinger_connect() is the routine that is called when someone adds a
  102.  * new serio device. It looks for the Stinger, and if found, registers
  103.  * it as an input device.
  104.  */
  105. static void stinger_connect(struct serio *serio, struct serio_dev *dev)
  106. {
  107. struct stinger *stinger;
  108. int i;
  109. if (serio->type != (SERIO_RS232 | SERIO_STINGER))
  110. return;
  111. if (!(stinger = kmalloc(sizeof(struct stinger), GFP_KERNEL)))
  112. return;
  113. memset(stinger, 0, sizeof(struct stinger));
  114. stinger->dev.evbit[0] = BIT(EV_KEY) | BIT(EV_ABS);
  115. stinger->dev.keybit[LONG(BTN_A)] = BIT(BTN_A) | BIT(BTN_B) | BIT(BTN_C) | BIT(BTN_X) | 
  116.    BIT(BTN_Y) | BIT(BTN_Z) | BIT(BTN_TL) | BIT(BTN_TR) | 
  117.    BIT(BTN_START) | BIT(BTN_SELECT);
  118. stinger->dev.absbit[0] = BIT(ABS_X) | BIT(ABS_Y);
  119. stinger->dev.name = stinger_name;
  120. stinger->dev.idbus = BUS_RS232;
  121. stinger->dev.idvendor = SERIO_STINGER;
  122. stinger->dev.idproduct = 0x0001;
  123. stinger->dev.idversion = 0x0100;
  124. for (i = 0; i < 2; i++) {
  125. stinger->dev.absmax[ABS_X+i] =  64;
  126. stinger->dev.absmin[ABS_X+i] = -64;
  127. stinger->dev.absflat[ABS_X+i] = 4;
  128. }
  129. stinger->dev.private = stinger;
  130. serio->private = stinger;
  131. if (serio_open(serio, dev)) {
  132. kfree(stinger);
  133. return;
  134. }
  135. input_register_device(&stinger->dev);
  136. printk(KERN_INFO "input%d: %s on serio%dn", stinger->dev.number, stinger_name, serio->number);
  137. }
  138. /*
  139.  * The serio device structure.
  140.  */
  141. static struct serio_dev stinger_dev = {
  142. interrupt: stinger_interrupt,
  143. connect: stinger_connect,
  144. disconnect: stinger_disconnect,
  145. };
  146. /*
  147.  * The functions for inserting/removing us as a module.
  148.  */
  149. int __init stinger_init(void)
  150. {
  151. serio_register_device(&stinger_dev);
  152. return 0;
  153. }
  154. void __exit stinger_exit(void)
  155. {
  156. serio_unregister_device(&stinger_dev);
  157. }
  158. module_init(stinger_init);
  159. module_exit(stinger_exit);
  160. MODULE_LICENSE("GPL");