amijoy.c 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172
  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. #include <linux/types.h>
  23. #include <linux/errno.h>
  24. #include <linux/kernel.h>
  25. #include <linux/module.h>
  26. #include <linux/init.h>
  27. #include <linux/input.h>
  28. #include <linux/interrupt.h>
  29. #include <linux/mutex.h>
  30. #include <asm/amigahw.h>
  31. #include <asm/amigaints.h>
  32. MODULE_AUTHOR("Vojtech Pavlik <vojtech@ucw.cz>");
  33. MODULE_DESCRIPTION("Driver for Amiga joysticks");
  34. MODULE_LICENSE("GPL");
  35. static int amijoy[2] = { 0, 1 };
  36. module_param_array_named(map, amijoy, uint, NULL, 0);
  37. MODULE_PARM_DESC(map, "Map of attached joysticks in form of <a>,<b> (default is 0,1)");
  38. static int amijoy_used;
  39. static DEFINE_MUTEX(amijoy_mutex);
  40. static struct input_dev *amijoy_dev[2];
  41. static char *amijoy_phys[2] = { "amijoy/input0", "amijoy/input1" };
  42. static irqreturn_t amijoy_interrupt(int irq, void *dummy)
  43. {
  44. int i, data = 0, button = 0;
  45. for (i = 0; i < 2; i++)
  46. if (amijoy[i]) {
  47. switch (i) {
  48. case 0: data = ~amiga_custom.joy0dat; button = (~ciaa.pra >> 6) & 1; break;
  49. case 1: data = ~amiga_custom.joy1dat; button = (~ciaa.pra >> 7) & 1; break;
  50. }
  51. input_report_key(amijoy_dev[i], BTN_TRIGGER, button);
  52. input_report_abs(amijoy_dev[i], ABS_X, ((data >> 1) & 1) - ((data >> 9) & 1));
  53. data = ~(data ^ (data << 1));
  54. input_report_abs(amijoy_dev[i], ABS_Y, ((data >> 1) & 1) - ((data >> 9) & 1));
  55. input_sync(amijoy_dev[i]);
  56. }
  57. return IRQ_HANDLED;
  58. }
  59. static int amijoy_open(struct input_dev *dev)
  60. {
  61. int err;
  62. err = mutex_lock_interruptible(&amijoy_mutex);
  63. if (err)
  64. return err;
  65. if (!amijoy_used && request_irq(IRQ_AMIGA_VERTB, amijoy_interrupt, 0, "amijoy", amijoy_interrupt)) {
  66. printk(KERN_ERR "amijoy.c: Can't allocate irq %d\n", IRQ_AMIGA_VERTB);
  67. err = -EBUSY;
  68. goto out;
  69. }
  70. amijoy_used++;
  71. out:
  72. mutex_unlock(&amijoy_mutex);
  73. return err;
  74. }
  75. static void amijoy_close(struct input_dev *dev)
  76. {
  77. mutex_lock(&amijoy_mutex);
  78. if (!--amijoy_used)
  79. free_irq(IRQ_AMIGA_VERTB, amijoy_interrupt);
  80. mutex_unlock(&amijoy_mutex);
  81. }
  82. static int __init amijoy_init(void)
  83. {
  84. int i, j;
  85. int err;
  86. if (!MACH_IS_AMIGA)
  87. return -ENODEV;
  88. for (i = 0; i < 2; i++) {
  89. if (!amijoy[i])
  90. continue;
  91. amijoy_dev[i] = input_allocate_device();
  92. if (!amijoy_dev[i]) {
  93. err = -ENOMEM;
  94. goto fail;
  95. }
  96. if (!request_mem_region(CUSTOM_PHYSADDR + 10 + i * 2, 2, "amijoy [Denise]")) {
  97. input_free_device(amijoy_dev[i]);
  98. err = -EBUSY;
  99. goto fail;
  100. }
  101. amijoy_dev[i]->name = "Amiga joystick";
  102. amijoy_dev[i]->phys = amijoy_phys[i];
  103. amijoy_dev[i]->id.bustype = BUS_AMIGA;
  104. amijoy_dev[i]->id.vendor = 0x0001;
  105. amijoy_dev[i]->id.product = 0x0003;
  106. amijoy_dev[i]->id.version = 0x0100;
  107. amijoy_dev[i]->open = amijoy_open;
  108. amijoy_dev[i]->close = amijoy_close;
  109. amijoy_dev[i]->evbit[0] = BIT_MASK(EV_KEY) | BIT_MASK(EV_ABS);
  110. amijoy_dev[i]->absbit[0] = BIT_MASK(ABS_X) | BIT_MASK(ABS_Y);
  111. amijoy_dev[i]->keybit[BIT_WORD(BTN_LEFT)] = BIT_MASK(BTN_LEFT) |
  112. BIT_MASK(BTN_MIDDLE) | BIT_MASK(BTN_RIGHT);
  113. for (j = 0; j < 2; j++) {
  114. input_set_abs_params(amijoy_dev[i], ABS_X + j,
  115. -1, 1, 0, 0);
  116. }
  117. err = input_register_device(amijoy_dev[i]);
  118. if (err) {
  119. input_free_device(amijoy_dev[i]);
  120. goto fail;
  121. }
  122. }
  123. return 0;
  124. fail: while (--i >= 0)
  125. if (amijoy[i]) {
  126. input_unregister_device(amijoy_dev[i]);
  127. release_mem_region(CUSTOM_PHYSADDR + 10 + i * 2, 2);
  128. }
  129. return err;
  130. }
  131. static void __exit amijoy_exit(void)
  132. {
  133. int i;
  134. for (i = 0; i < 2; i++)
  135. if (amijoy[i]) {
  136. input_unregister_device(amijoy_dev[i]);
  137. release_mem_region(CUSTOM_PHYSADDR + 10 + i * 2, 2);
  138. }
  139. }
  140. module_init(amijoy_init);
  141. module_exit(amijoy_exit);