q40kbd.c 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189
  1. /*
  2. * $Id: q40kbd.c,v 1.12 2002/02/02 22:26:44 vojtech Exp $
  3. *
  4. * Copyright (c) 2000-2001 Vojtech Pavlik
  5. *
  6. * Based on the work of:
  7. * Richard Zidlicky <Richard.Zidlicky@stud.informatik.uni-erlangen.de>
  8. */
  9. /*
  10. * Q40 PS/2 keyboard controller driver for Linux/m68k
  11. */
  12. /*
  13. * This program is free software; you can redistribute it and/or modify
  14. * it under the terms of the GNU General Public License as published by
  15. * the Free Software Foundation; either version 2 of the License, or
  16. * (at your option) any later version.
  17. *
  18. * This program is distributed in the hope that it will be useful,
  19. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  20. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  21. * GNU General Public License for more details.
  22. *
  23. * You should have received a copy of the GNU General Public License
  24. * along with this program; if not, write to the Free Software
  25. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  26. *
  27. * Should you need to contact me, the author, you can do so either by
  28. * e-mail - mail your message to <vojtech@ucw.cz>, or by paper mail:
  29. * Vojtech Pavlik, Simunkova 1594, Prague 8, 182 00 Czech Republic
  30. */
  31. #include <linux/module.h>
  32. #include <linux/init.h>
  33. #include <linux/serio.h>
  34. #include <linux/interrupt.h>
  35. #include <linux/err.h>
  36. #include <linux/bitops.h>
  37. #include <linux/platform_device.h>
  38. #include <asm/io.h>
  39. #include <asm/uaccess.h>
  40. #include <asm/q40_master.h>
  41. #include <asm/irq.h>
  42. #include <asm/q40ints.h>
  43. MODULE_AUTHOR("Vojtech Pavlik <vojtech@ucw.cz>");
  44. MODULE_DESCRIPTION("Q40 PS/2 keyboard controller driver");
  45. MODULE_LICENSE("GPL");
  46. DEFINE_SPINLOCK(q40kbd_lock);
  47. static struct serio *q40kbd_port;
  48. static struct platform_device *q40kbd_device;
  49. static irqreturn_t q40kbd_interrupt(int irq, void *dev_id, struct pt_regs *regs)
  50. {
  51. unsigned long flags;
  52. spin_lock_irqsave(&q40kbd_lock, flags);
  53. if (Q40_IRQ_KEYB_MASK & master_inb(INTERRUPT_REG))
  54. serio_interrupt(q40kbd_port, master_inb(KEYCODE_REG), 0, regs);
  55. master_outb(-1, KEYBOARD_UNLOCK_REG);
  56. spin_unlock_irqrestore(&q40kbd_lock, flags);
  57. return IRQ_HANDLED;
  58. }
  59. /*
  60. * q40kbd_flush() flushes all data that may be in the keyboard buffers
  61. */
  62. static void q40kbd_flush(void)
  63. {
  64. int maxread = 100;
  65. unsigned long flags;
  66. spin_lock_irqsave(&q40kbd_lock, flags);
  67. while (maxread-- && (Q40_IRQ_KEYB_MASK & master_inb(INTERRUPT_REG)))
  68. master_inb(KEYCODE_REG);
  69. spin_unlock_irqrestore(&q40kbd_lock, flags);
  70. }
  71. /*
  72. * q40kbd_open() is called when a port is open by the higher layer.
  73. * It allocates the interrupt and enables in in the chip.
  74. */
  75. static int q40kbd_open(struct serio *port)
  76. {
  77. q40kbd_flush();
  78. if (request_irq(Q40_IRQ_KEYBOARD, q40kbd_interrupt, 0, "q40kbd", NULL)) {
  79. printk(KERN_ERR "q40kbd.c: Can't get irq %d.\n", Q40_IRQ_KEYBOARD);
  80. return -EBUSY;
  81. }
  82. /* off we go */
  83. master_outb(-1, KEYBOARD_UNLOCK_REG);
  84. master_outb(1, KEY_IRQ_ENABLE_REG);
  85. return 0;
  86. }
  87. static void q40kbd_close(struct serio *port)
  88. {
  89. master_outb(0, KEY_IRQ_ENABLE_REG);
  90. master_outb(-1, KEYBOARD_UNLOCK_REG);
  91. free_irq(Q40_IRQ_KEYBOARD, NULL);
  92. q40kbd_flush();
  93. }
  94. static int __devinit q40kbd_probe(struct platform_device *dev)
  95. {
  96. q40kbd_port = kzalloc(sizeof(struct serio), GFP_KERNEL);
  97. if (!q40kbd_port)
  98. return -ENOMEM;
  99. q40kbd_port->id.type = SERIO_8042;
  100. q40kbd_port->open = q40kbd_open;
  101. q40kbd_port->close = q40kbd_close;
  102. q40kbd_port->dev.parent = &dev->dev;
  103. strlcpy(q40kbd_port->name, "Q40 Kbd Port", sizeof(q40kbd_port->name));
  104. strlcpy(q40kbd_port->phys, "Q40", sizeof(q40kbd_port->phys));
  105. serio_register_port(q40kbd_port);
  106. printk(KERN_INFO "serio: Q40 kbd registered\n");
  107. return 0;
  108. }
  109. static int __devexit q40kbd_remove(struct platform_device *dev)
  110. {
  111. serio_unregister_port(q40kbd_port);
  112. return 0;
  113. }
  114. static struct platform_driver q40kbd_driver = {
  115. .driver = {
  116. .name = "q40kbd",
  117. .owner = THIS_MODULE,
  118. },
  119. .probe = q40kbd_probe,
  120. .remove = __devexit_p(q40kbd_remove),
  121. };
  122. static int __init q40kbd_init(void)
  123. {
  124. int error;
  125. if (!MACH_IS_Q40)
  126. return -EIO;
  127. error = platform_driver_register(&q40kbd_driver);
  128. if (error)
  129. return error;
  130. q40kbd_device = platform_device_alloc("q40kbd", -1);
  131. if (!q40kbd_device)
  132. goto err_unregister_driver;
  133. error = platform_device_add(q40kbd_device);
  134. if (error)
  135. goto err_free_device;
  136. return 0;
  137. err_free_device:
  138. platform_device_put(q40kbd_device);
  139. err_unregister_driver:
  140. platform_driver_unregister(&q40kbd_driver);
  141. return error;
  142. }
  143. static void __exit q40kbd_exit(void)
  144. {
  145. platform_device_unregister(q40kbd_device);
  146. platform_driver_unregister(&q40kbd_driver);
  147. }
  148. module_init(q40kbd_init);
  149. module_exit(q40kbd_exit);