q40kbd.c 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163
  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 <asm/io.h>
  38. #include <asm/uaccess.h>
  39. #include <asm/q40_master.h>
  40. #include <asm/irq.h>
  41. #include <asm/q40ints.h>
  42. MODULE_AUTHOR("Vojtech Pavlik <vojtech@ucw.cz>");
  43. MODULE_DESCRIPTION("Q40 PS/2 keyboard controller driver");
  44. MODULE_LICENSE("GPL");
  45. DEFINE_SPINLOCK(q40kbd_lock);
  46. static struct serio *q40kbd_port;
  47. static struct platform_device *q40kbd_device;
  48. static irqreturn_t q40kbd_interrupt(int irq, void *dev_id, struct pt_regs *regs)
  49. {
  50. unsigned long flags;
  51. spin_lock_irqsave(&q40kbd_lock, flags);
  52. if (Q40_IRQ_KEYB_MASK & master_inb(INTERRUPT_REG))
  53. serio_interrupt(q40kbd_port, master_inb(KEYCODE_REG), 0, regs);
  54. master_outb(-1, KEYBOARD_UNLOCK_REG);
  55. spin_unlock_irqrestore(&q40kbd_lock, flags);
  56. return IRQ_HANDLED;
  57. }
  58. /*
  59. * q40kbd_flush() flushes all data that may be in the keyboard buffers
  60. */
  61. static void q40kbd_flush(void)
  62. {
  63. int maxread = 100;
  64. unsigned long flags;
  65. spin_lock_irqsave(&q40kbd_lock, flags);
  66. while (maxread-- && (Q40_IRQ_KEYB_MASK & master_inb(INTERRUPT_REG)))
  67. master_inb(KEYCODE_REG);
  68. spin_unlock_irqrestore(&q40kbd_lock, flags);
  69. }
  70. /*
  71. * q40kbd_open() is called when a port is open by the higher layer.
  72. * It allocates the interrupt and enables in in the chip.
  73. */
  74. static int q40kbd_open(struct serio *port)
  75. {
  76. q40kbd_flush();
  77. if (request_irq(Q40_IRQ_KEYBOARD, q40kbd_interrupt, 0, "q40kbd", NULL)) {
  78. printk(KERN_ERR "q40kbd.c: Can't get irq %d.\n", Q40_IRQ_KEYBOARD);
  79. return -1;
  80. }
  81. /* off we go */
  82. master_outb(-1, KEYBOARD_UNLOCK_REG);
  83. master_outb(1, KEY_IRQ_ENABLE_REG);
  84. return 0;
  85. }
  86. static void q40kbd_close(struct serio *port)
  87. {
  88. master_outb(0, KEY_IRQ_ENABLE_REG);
  89. master_outb(-1, KEYBOARD_UNLOCK_REG);
  90. free_irq(Q40_IRQ_KEYBOARD, NULL);
  91. q40kbd_flush();
  92. }
  93. static struct serio * __init q40kbd_allocate_port(void)
  94. {
  95. struct serio *serio;
  96. serio = kmalloc(sizeof(struct serio), GFP_KERNEL);
  97. if (serio) {
  98. memset(serio, 0, sizeof(struct serio));
  99. serio->id.type = SERIO_8042;
  100. serio->open = q40kbd_open;
  101. serio->close = q40kbd_close;
  102. serio->dev.parent = &q40kbd_device->dev;
  103. strlcpy(serio->name, "Q40 Kbd Port", sizeof(serio->name));
  104. strlcpy(serio->phys, "Q40", sizeof(serio->phys));
  105. }
  106. return serio;
  107. }
  108. static int __init q40kbd_init(void)
  109. {
  110. if (!MACH_IS_Q40)
  111. return -EIO;
  112. q40kbd_device = platform_device_register_simple("q40kbd", -1, NULL, 0);
  113. if (IS_ERR(q40kbd_device))
  114. return PTR_ERR(q40kbd_device);
  115. if (!(q40kbd_port = q40kbd_allocate_port())) {
  116. platform_device_unregister(q40kbd_device);
  117. return -ENOMEM;
  118. }
  119. serio_register_port(q40kbd_port);
  120. printk(KERN_INFO "serio: Q40 kbd registered\n");
  121. return 0;
  122. }
  123. static void __exit q40kbd_exit(void)
  124. {
  125. serio_unregister_port(q40kbd_port);
  126. platform_device_unregister(q40kbd_device);
  127. }
  128. module_init(q40kbd_init);
  129. module_exit(q40kbd_exit);