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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * Atari Mouse Driver for Linux
  3.  * by Robert de Vries (robert@and.nl) 19Jul93
  4.  *
  5.  * 16 Nov 1994 Andreas Schwab
  6.  * Compatibility with busmouse
  7.  * Support for three button mouse (shamelessly stolen from MiNT)
  8.  * third button wired to one of the joystick directions on joystick 1
  9.  *
  10.  * 1996/02/11 Andreas Schwab
  11.  * Module support
  12.  * Allow multiple open's
  13.  *
  14.  * Converted to use new generic busmouse code.  5 Apr 1998
  15.  *   Russell King <rmk@arm.uk.linux.org>
  16.  */
  17. #include <linux/module.h>
  18. #include <linux/sched.h>
  19. #include <linux/errno.h>
  20. #include <linux/miscdevice.h>
  21. #include <linux/mm.h>
  22. #include <linux/random.h>
  23. #include <linux/poll.h>
  24. #include <linux/init.h>
  25. #include <linux/logibusmouse.h>
  26. #include <asm/setup.h>
  27. #include <asm/atarikb.h>
  28. #include <asm/uaccess.h>
  29. #include "busmouse.h"
  30. static int msedev;
  31. static int mouse_threshold[2] = {2,2};
  32. MODULE_PARM(mouse_threshold, "2i");
  33. extern int atari_mouse_buttons;
  34. static void atari_mouse_interrupt(char *buf)
  35. {
  36. int buttons;
  37. /* ikbd_mouse_disable(); */
  38. buttons = ((buf[0] & 1)
  39.        | ((buf[0] & 2) << 1)
  40.        | (atari_mouse_buttons & 2));
  41. atari_mouse_buttons = buttons;
  42. busmouse_add_movementbuttons(msedev, buf[1], -buf[2], buttons ^ 7);
  43. /* ikbd_mouse_rel_pos(); */
  44. }
  45. static int release_mouse(struct inode *inode, struct file *file)
  46. {
  47. ikbd_mouse_disable();
  48. atari_mouse_interrupt_hook = NULL;
  49. return 0;
  50. }
  51. static int open_mouse(struct inode *inode, struct file *file)
  52. {
  53. atari_mouse_buttons = 0;
  54. ikbd_mouse_y0_top ();
  55. ikbd_mouse_thresh (mouse_threshold[0], mouse_threshold[1]);
  56. ikbd_mouse_rel_pos();
  57. atari_mouse_interrupt_hook = atari_mouse_interrupt;
  58. return 0;
  59. }
  60. static struct busmouse atarimouse = {
  61. ATARIMOUSE_MINOR, "atarimouse", THIS_MODULE, open_mouse, release_mouse, 0
  62. };
  63. static int __init atari_mouse_init(void)
  64. {
  65. if (!MACH_IS_ATARI)
  66. return -ENODEV;
  67. msedev = register_busmouse(&atarimouse);
  68. if (msedev < 0)
  69.      printk(KERN_WARNING "Unable to register Atari mouse driver.n");
  70. else
  71. printk(KERN_INFO "Atari mouse installed.n");
  72. return msedev < 0 ? msedev : 0;
  73. }
  74. #ifndef MODULE
  75. #define MIN_THRESHOLD 1
  76. #define MAX_THRESHOLD 20 /* more seems not reasonable... */
  77. static int __init atari_mouse_setup( char *str )
  78. {
  79.     int ints[8];
  80.     str = get_options(str, ARRAY_SIZE(ints), ints);
  81.     if (ints[0] < 1) {
  82. printk(KERN_ERR "atari_mouse_setup: no arguments!n" );
  83. return 0;
  84.     }
  85.     else if (ints[0] > 2) {
  86. printk(KERN_WARNING "atari_mouse_setup: too many argumentsn" );
  87.     }
  88.     if (ints[1] < MIN_THRESHOLD || ints[1] > MAX_THRESHOLD)
  89. printk(KERN_WARNING "atari_mouse_setup: bad threshold value (ignored)n" );
  90.     else {
  91. mouse_threshold[0] = ints[1];
  92. mouse_threshold[1] = ints[1];
  93. if (ints[0] > 1) {
  94.     if (ints[2] < MIN_THRESHOLD || ints[2] > MAX_THRESHOLD)
  95. printk(KERN_WARNING "atari_mouse_setup: bad threshold value (ignored)n" );
  96.     else
  97. mouse_threshold[1] = ints[2];
  98. }
  99.     }
  100.     return 1;
  101. }
  102. __setup("atarimouse=",atari_mouse_setup);
  103. #endif /* !MODULE */
  104. static void __exit atari_mouse_cleanup (void)
  105. {
  106. unregister_busmouse(msedev);
  107. }
  108. module_init(atari_mouse_init);
  109. module_exit(atari_mouse_cleanup);
  110. MODULE_LICENSE("GPL");