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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * $Id: spaceball.c,v 1.8 2000/11/23 11:42:39 vojtech Exp $
  3.  *
  4.  *  Copyright (c) 1999-2000 Vojtech Pavlik
  5.  *
  6.  *  Based on the work of:
  7.  *   David Thompson
  8.  *   Joseph Krahn
  9.  *
  10.  *  Sponsored by SuSE
  11.  */
  12. /*
  13.  * SpaceTec SpaceBall 4000 FLX 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/slab.h>
  36. #include <linux/module.h>
  37. #include <linux/init.h>
  38. #include <linux/input.h>
  39. #include <linux/serio.h>
  40. /*
  41.  * Constants.
  42.  */
  43. #define JS_SBALL_MAX_LENGTH 128
  44. static int spaceball_axes[] = { ABS_X, ABS_Z, ABS_Y, ABS_RX, ABS_RZ, ABS_RY };
  45. static char *spaceball_name = "SpaceTec SpaceBall 4000 FLX"; 
  46. /*
  47.  * Per-Ball data.
  48.  */
  49. struct spaceball {
  50. struct input_dev dev;
  51. struct serio *serio;
  52. int idx;
  53. int escape;
  54. unsigned char data[JS_SBALL_MAX_LENGTH];
  55. };
  56. /*
  57.  * spaceball_process_packet() decodes packets the driver receives from the
  58.  * SpaceBall.
  59.  */
  60. static void spaceball_process_packet(struct spaceball* spaceball)
  61. {
  62. struct input_dev *dev = &spaceball->dev;
  63. unsigned char *data = spaceball->data;
  64. int i;
  65. if (spaceball->idx < 2) return;
  66. printk("%c %dn", spaceball->data[0], spaceball->idx);
  67. switch (spaceball->data[0]) {
  68. case '@': /* Reset packet */
  69. spaceball->data[spaceball->idx - 1] = 0;
  70. for (i = 1; i < spaceball->idx && spaceball->data[i] == ' '; i++);
  71. printk(KERN_INFO "input%d: %s [%s] on serio%dn",
  72. spaceball->dev.number, spaceball_name, spaceball->data + i, spaceball->serio->number);
  73. break;
  74. case 'D': /* Ball data */
  75. if (spaceball->idx != 15) return;
  76. for (i = 0; i < 6; i++) {
  77. input_report_abs(dev, spaceball_axes[i], 
  78. (__s16)((data[2 * i + 3] << 8) | data[2 * i + 2]));
  79. }
  80. break;
  81. case '.': /* Button data, part2 */
  82. if (spaceball->idx != 3) return;
  83. input_report_key(dev, BTN_0,  data[2] & 1);
  84. input_report_key(dev, BTN_1, data[2] & 2);
  85. break;
  86. case '?': /* Error packet */
  87. spaceball->data[spaceball->idx - 1] = 0;
  88. printk(KERN_ERR "spaceball: Device error. [%s]n", spaceball->data + 1);
  89. break;
  90. }
  91. }
  92. /*
  93.  * Spaceball 4000 FLX packets all start with a one letter packet-type decriptor,
  94.  * and end in 0x0d. It uses '^' as an escape for CR, XOFF and XON characters which
  95.  * can occur in the axis values.
  96.  */
  97. static void spaceball_interrupt(struct serio *serio, unsigned char data, unsigned int flags)
  98. {
  99. struct spaceball *spaceball = serio->private;
  100. switch (data) {
  101. case 0xd:
  102. spaceball_process_packet(spaceball);
  103. spaceball->idx = 0;
  104. spaceball->escape = 0;
  105. return;
  106. case '^':
  107. if (!spaceball->escape) {
  108. spaceball->escape = 1;
  109. return;
  110. }
  111. spaceball->escape = 0;
  112. case 'M':
  113. case 'Q':
  114. case 'S':
  115. if (spaceball->escape) {
  116. spaceball->escape = 0;
  117. data &= 0x1f;
  118. }
  119. default:
  120. if (spaceball->escape) {
  121. spaceball->escape = 0;
  122. printk(KERN_WARNING "spaceball.c: Unknown escaped character: %#x (%c)n", data, data);
  123. }
  124. if (spaceball->idx < JS_SBALL_MAX_LENGTH)
  125. spaceball->data[spaceball->idx++] = data;
  126. return;
  127. }
  128. }
  129. /*
  130.  * spaceball_disconnect() is the opposite of spaceball_connect()
  131.  */
  132. static void spaceball_disconnect(struct serio *serio)
  133. {
  134. struct spaceball* spaceball = serio->private;
  135. input_unregister_device(&spaceball->dev);
  136. serio_close(serio);
  137. kfree(spaceball);
  138. }
  139. /*
  140.  * spaceball_connect() is the routine that is called when someone adds a
  141.  * new serio device. It looks for the Magellan, and if found, registers
  142.  * it as an input device.
  143.  */
  144. static void spaceball_connect(struct serio *serio, struct serio_dev *dev)
  145. {
  146. struct spaceball *spaceball;
  147. int i, t;
  148. if (serio->type != (SERIO_RS232 | SERIO_SPACEBALL))
  149. return;
  150. if (!(spaceball = kmalloc(sizeof(struct spaceball), GFP_KERNEL)))
  151. return;
  152. memset(spaceball, 0, sizeof(struct spaceball));
  153. spaceball->dev.evbit[0] = BIT(EV_KEY) | BIT(EV_ABS);
  154. spaceball->dev.keybit[LONG(BTN_0)] = BIT(BTN_0) | BIT(BTN_1);
  155. for (i = 0; i < 6; i++) {
  156. t = spaceball_axes[i];
  157. set_bit(t, spaceball->dev.absbit);
  158. spaceball->dev.absmin[t] = i < 3 ? -8000 : -1600;
  159. spaceball->dev.absmax[t] = i < 3 ?  8000 :  1600;
  160. spaceball->dev.absflat[t] = i < 3 ? 40 : 8;
  161. spaceball->dev.absfuzz[t] = i < 3 ? 8 : 2;
  162. }
  163. spaceball->serio = serio;
  164. spaceball->dev.private = spaceball;
  165. spaceball->dev.name = spaceball_name;
  166. spaceball->dev.idbus = BUS_RS232;
  167. spaceball->dev.idvendor = SERIO_SPACEBALL;
  168. spaceball->dev.idproduct = 0x0001;
  169. spaceball->dev.idversion = 0x0100;
  170. serio->private = spaceball;
  171. if (serio_open(serio, dev)) {
  172. kfree(spaceball);
  173. return;
  174. }
  175. input_register_device(&spaceball->dev);
  176. }
  177. /*
  178.  * The serio device structure.
  179.  */
  180. static struct serio_dev spaceball_dev = {
  181. interrupt: spaceball_interrupt,
  182. connect: spaceball_connect,
  183. disconnect: spaceball_disconnect,
  184. };
  185. /*
  186.  * The functions for inserting/removing us as a module.
  187.  */
  188. int __init spaceball_init(void)
  189. {
  190. serio_register_device(&spaceball_dev);
  191. return 0;
  192. }
  193. void __exit spaceball_exit(void)
  194. {
  195. serio_unregister_device(&spaceball_dev);
  196. }
  197. module_init(spaceball_init);
  198. module_exit(spaceball_exit);
  199. MODULE_LICENSE("GPL");