amijoy.c 4.5 KB

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