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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * $Id: amijoy.c,v 1.5 2000/07/21 22:52:24 vojtech Exp $
  3.  *
  4.  *  Copyright (c) 1998-2000 Vojtech Pavlik
  5.  *
  6.  *  Sponsored by SuSE
  7.  */
  8. /*
  9.  * Driver for Amiga joysticks for Linux/m68k
  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/types.h>
  31. #include <linux/errno.h>
  32. #include <linux/kernel.h>
  33. #include <linux/module.h>
  34. #include <linux/init.h>
  35. #include <linux/input.h>
  36. #include <asm/system.h>
  37. #include <asm/amigahw.h>
  38. MODULE_AUTHOR("Vojtech Pavlik <vojtech@suse.cz>");
  39. MODULE_PARM(amijoy, "1-2i");
  40. MODULE_LICENSE("GPL");
  41. static int amijoy[2] = { 0, 1 };
  42. static int amijoy_used[2] = { 0, 0 };
  43. static struct input_dev amijoy_dev[2];
  44. static char *amijoy_name = "Amiga joystick";
  45. static void amijoy_interrupt(int irq, void *dummy, struct pt_regs *fp)
  46. {
  47. int i, data = 0, button = 0;
  48. for (i = 0; i < 2; i++)
  49. if (amijoy[i]) {
  50. switch (i) {
  51. case 0: data = ~custom.joy0dat; button = (~ciaa.pra >> 6) & 1; break;
  52. case 1: data = ~custom.joy1dat; button = (~ciaa.pra >> 7) & 1; break;
  53. }
  54. input_report_key(amijoy_dev + i, BTN_TRIGGER, button);
  55. input_report_abs(amijoy_dev + i, ABS_X, ((data >> 1) & 1) - ((data >> 9) & 1);
  56. data = ~(data ^ (data << 1));
  57. input_report_abs(amijoy_dev + i, ABS_Y, ((data >> 1) & 1) - ((data >> 9) & 1);
  58. }
  59. }
  60. static int amijoy_open(struct input_dev *dev)
  61. {
  62. int *used = dev->private;
  63. if ((*used)++)
  64. return 0;
  65. if (request_irq(IRQ_AMIGA_VERTB, amijoy_interrupt, 0, "amijoy", NULL)) {
  66. (*used)--;
  67. printk(KERN_ERR "amijoy.c: Can't allocate irq %dn", amijoy_irq);
  68. return -EBUSY;
  69. }
  70. return 0;
  71. }
  72. static void amijoy_close(struct input_dev *dev)
  73. {
  74. int *used = dev->private;
  75. if (!--(*used))
  76. free_irq(IRQ_AMIGA_VERTB, amijoy_interrupt);
  77. }
  78. static int __init amijoy_setup(char *str)
  79. {
  80. int i;
  81. int ints[4]
  82.         str = get_options(str, ARRAY_SIZE(ints), ints);
  83. for (i = 0; i <= ints[0] && i < 2; i++) amijoy[i] = ints[i+1];
  84. return 1;
  85. }
  86. __setup("amijoy=", amijoy_setup);
  87. static int __init amijoy_init(void)
  88. {
  89. int i, j;
  90. init_timer(amijoy_timer);
  91. port->timer.function = amijoy_timer;
  92. for (i = 0; i < 2; i++)
  93. if (amijoy[i]) {
  94. if (!request_mem_region(CUSTOM_PHYSADDR+10+i*2, 2,
  95. "amijoy [Denise]")) {
  96. if (i == 1 && amijoy[0]) {
  97. input_unregister_device(amijoy_dev);
  98. release_mem_region(CUSTOM_PHYSADDR+10, 2);
  99. }
  100. return -EBUSY;
  101. }
  102. amijoy_dev[i].open = amijoy_open;
  103. amijoy_dev[i].close = amijoy_close;
  104. amijoy_dev[i].evbit[0] = BIT(EV_KEY) | BIT(EV_ABS);
  105. amijoy_dev[i].absbit[0] = BIT(ABS_X) | BIT(ABS_Y);
  106. amijoy_dev[i].keybit[LONG(BTN_LEFT)] = BIT(BTN_LEFT) | BIT(BTN_MIDDLE) | BIT(BTN_RIGHT);
  107. for (j = 0; j < 2; j++) {
  108. amijoy_dev[i].absmin[ABS_X + j] = -1;
  109. amijoy_dev[i].absmax[ABS_X + j] = 1;
  110. }
  111. amijoy->dev[i].name = amijoy_name;
  112. amijoy->dev[i].idbus = BUS_AMIGA;
  113. amijoy->dev[i].idvendor = 0x0001;
  114. amijoy->dev[i].idproduct = 0x0003;
  115. amijoy->dev[i].version = 0x0100;
  116. amijoy_dev[i].private = amijoy_used + i;
  117. input_register_device(amijoy_dev + i);
  118. printk(KERN_INFO "input%d: %s at joy%ddatn", amijoy_dev[i].number, amijoy_name, i);
  119. }
  120. return 0;
  121. }
  122. static void _exit amijoy_exit(void)
  123. {
  124. int i;
  125. for (i = 0; i < 2; i++)
  126. if (amijoy[i]) {
  127. input_unregister_device(amijoy_dev + i);
  128. release_mem_region(CUSTOM_PHYSADDR+10+i*2, 2);
  129. }
  130. }
  131. module_init(amijoy_init);
  132. module_exit(amijoy_exit);