amijoy.c 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176
  1. /*
  2. * Copyright (c) 1998-2001 Vojtech Pavlik
  3. */
  4. /*
  5. * Driver for Amiga joysticks for Linux/m68k
  6. */
  7. /*
  8. * This program is free software; you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License as published by
  10. * the Free Software Foundation; either version 2 of the License, or
  11. * (at your option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program; if not, write to the Free Software
  20. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  21. *
  22. * Should you need to contact me, the author, you can do so either by
  23. * e-mail - mail your message to <vojtech@ucw.cz>, or by paper mail:
  24. * Vojtech Pavlik, Simunkova 1594, Prague 8, 182 00 Czech Republic
  25. */
  26. #include <linux/types.h>
  27. #include <linux/errno.h>
  28. #include <linux/kernel.h>
  29. #include <linux/module.h>
  30. #include <linux/init.h>
  31. #include <linux/input.h>
  32. #include <linux/interrupt.h>
  33. #include <linux/mutex.h>
  34. #include <asm/amigahw.h>
  35. #include <asm/amigaints.h>
  36. MODULE_AUTHOR("Vojtech Pavlik <vojtech@ucw.cz>");
  37. MODULE_DESCRIPTION("Driver for Amiga joysticks");
  38. MODULE_LICENSE("GPL");
  39. static int amijoy[2] = { 0, 1 };
  40. module_param_array_named(map, amijoy, uint, NULL, 0);
  41. MODULE_PARM_DESC(map, "Map of attached joysticks in form of <a>,<b> (default is 0,1)");
  42. static int amijoy_used;
  43. static DEFINE_MUTEX(amijoy_mutex);
  44. static struct input_dev *amijoy_dev[2];
  45. static char *amijoy_phys[2] = { "amijoy/input0", "amijoy/input1" };
  46. static irqreturn_t amijoy_interrupt(int irq, void *dummy)
  47. {
  48. int i, data = 0, button = 0;
  49. for (i = 0; i < 2; i++)
  50. if (amijoy[i]) {
  51. switch (i) {
  52. case 0: data = ~amiga_custom.joy0dat; button = (~ciaa.pra >> 6) & 1; break;
  53. case 1: data = ~amiga_custom.joy1dat; button = (~ciaa.pra >> 7) & 1; break;
  54. }
  55. input_report_key(amijoy_dev[i], BTN_TRIGGER, button);
  56. input_report_abs(amijoy_dev[i], ABS_X, ((data >> 1) & 1) - ((data >> 9) & 1));
  57. data = ~(data ^ (data << 1));
  58. input_report_abs(amijoy_dev[i], ABS_Y, ((data >> 1) & 1) - ((data >> 9) & 1));
  59. input_sync(amijoy_dev[i]);
  60. }
  61. return IRQ_HANDLED;
  62. }
  63. static int amijoy_open(struct input_dev *dev)
  64. {
  65. int err;
  66. err = mutex_lock_interruptible(&amijoy_mutex);
  67. if (err)
  68. return err;
  69. if (!amijoy_used && request_irq(IRQ_AMIGA_VERTB, amijoy_interrupt, 0, "amijoy", amijoy_interrupt)) {
  70. printk(KERN_ERR "amijoy.c: Can't allocate irq %d\n", IRQ_AMIGA_VERTB);
  71. err = -EBUSY;
  72. goto out;
  73. }
  74. amijoy_used++;
  75. out:
  76. mutex_unlock(&amijoy_mutex);
  77. return err;
  78. }
  79. static void amijoy_close(struct input_dev *dev)
  80. {
  81. mutex_lock(&amijoy_mutex);
  82. if (!--amijoy_used)
  83. free_irq(IRQ_AMIGA_VERTB, amijoy_interrupt);
  84. mutex_unlock(&amijoy_mutex);
  85. }
  86. static int __init amijoy_init(void)
  87. {
  88. int i, j;
  89. int err;
  90. if (!MACH_IS_AMIGA)
  91. return -ENODEV;
  92. for (i = 0; i < 2; i++) {
  93. if (!amijoy[i])
  94. continue;
  95. amijoy_dev[i] = input_allocate_device();
  96. if (!amijoy_dev[i]) {
  97. err = -ENOMEM;
  98. goto fail;
  99. }
  100. if (!request_mem_region(CUSTOM_PHYSADDR + 10 + i * 2, 2, "amijoy [Denise]")) {
  101. input_free_device(amijoy_dev[i]);
  102. err = -EBUSY;
  103. goto fail;
  104. }
  105. amijoy_dev[i]->name = "Amiga joystick";
  106. amijoy_dev[i]->phys = amijoy_phys[i];
  107. amijoy_dev[i]->id.bustype = BUS_AMIGA;
  108. amijoy_dev[i]->id.vendor = 0x0001;
  109. amijoy_dev[i]->id.product = 0x0003;
  110. amijoy_dev[i]->id.version = 0x0100;
  111. amijoy_dev[i]->open = amijoy_open;
  112. amijoy_dev[i]->close = amijoy_close;
  113. amijoy_dev[i]->evbit[0] = BIT_MASK(EV_KEY) | BIT_MASK(EV_ABS);
  114. amijoy_dev[i]->absbit[0] = BIT_MASK(ABS_X) | BIT_MASK(ABS_Y);
  115. amijoy_dev[i]->keybit[BIT_WORD(BTN_LEFT)] = BIT_MASK(BTN_LEFT) |
  116. BIT_MASK(BTN_MIDDLE) | BIT_MASK(BTN_RIGHT);
  117. for (j = 0; j < 2; j++) {
  118. input_set_abs_params(amijoy_dev[i], ABS_X + j,
  119. -1, 1, 0, 0);
  120. }
  121. err = input_register_device(amijoy_dev[i]);
  122. if (err) {
  123. input_free_device(amijoy_dev[i]);
  124. goto fail;
  125. }
  126. }
  127. return 0;
  128. fail: while (--i >= 0)
  129. if (amijoy[i]) {
  130. input_unregister_device(amijoy_dev[i]);
  131. release_mem_region(CUSTOM_PHYSADDR + 10 + i * 2, 2);
  132. }
  133. return err;
  134. }
  135. static void __exit amijoy_exit(void)
  136. {
  137. int i;
  138. for (i = 0; i < 2; i++)
  139. if (amijoy[i]) {
  140. input_unregister_device(amijoy_dev[i]);
  141. release_mem_region(CUSTOM_PHYSADDR + 10 + i * 2, 2);
  142. }
  143. }
  144. module_init(amijoy_init);
  145. module_exit(amijoy_exit);