[f761f1eb] | 1 | /*
|
---|
[df4ed85] | 2 | * Copyright (c) 2001-2004 Jakub Jermar
|
---|
[f761f1eb] | 3 | * All rights reserved.
|
---|
| 4 | *
|
---|
| 5 | * Redistribution and use in source and binary forms, with or without
|
---|
| 6 | * modification, are permitted provided that the following conditions
|
---|
| 7 | * are met:
|
---|
| 8 | *
|
---|
| 9 | * - Redistributions of source code must retain the above copyright
|
---|
| 10 | * notice, this list of conditions and the following disclaimer.
|
---|
| 11 | * - Redistributions in binary form must reproduce the above copyright
|
---|
| 12 | * notice, this list of conditions and the following disclaimer in the
|
---|
| 13 | * documentation and/or other materials provided with the distribution.
|
---|
| 14 | * - The name of the author may not be used to endorse or promote products
|
---|
| 15 | * derived from this software without specific prior written permission.
|
---|
| 16 | *
|
---|
| 17 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
---|
| 18 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
---|
| 19 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
---|
| 20 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
---|
| 21 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
---|
| 22 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
---|
| 23 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
---|
| 24 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
---|
| 25 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
---|
| 26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
---|
| 27 | */
|
---|
| 28 |
|
---|
[3c5006a0] | 29 | /** @addtogroup genarch
|
---|
[b45c443] | 30 | * @{
|
---|
| 31 | */
|
---|
[3c5006a0] | 32 | /**
|
---|
[cc73a8a1] | 33 | * @file
|
---|
[3c5006a0] | 34 | * @brief i8042 processor driver.
|
---|
| 35 | *
|
---|
| 36 | * It takes care of low-level keyboard functions.
|
---|
[b45c443] | 37 | */
|
---|
| 38 |
|
---|
[287920f] | 39 | #include <genarch/kbd/i8042.h>
|
---|
[d46c6ecd] | 40 | #include <genarch/kbd/key.h>
|
---|
[287920f] | 41 | #include <genarch/kbd/scanc.h>
|
---|
| 42 | #include <genarch/kbd/scanc_pc.h>
|
---|
[02f441c0] | 43 | #include <arch/drivers/i8042.h>
|
---|
[f761f1eb] | 44 | #include <cpu.h>
|
---|
| 45 | #include <arch/asm.h>
|
---|
| 46 | #include <arch.h>
|
---|
[607c5f9] | 47 | #include <console/chardev.h>
|
---|
| 48 | #include <console/console.h>
|
---|
[fcfac420] | 49 | #include <interrupt.h>
|
---|
[cea12e9] | 50 | #include <sysinfo/sysinfo.h>
|
---|
[b3f8fb7] | 51 | #include <ipc/irq.h>
|
---|
[f761f1eb] | 52 |
|
---|
[3c5006a0] | 53 | /* Keyboard commands. */
|
---|
[a83a802] | 54 | #define KBD_ENABLE 0xf4
|
---|
| 55 | #define KBD_DISABLE 0xf5
|
---|
| 56 | #define KBD_ACK 0xfa
|
---|
| 57 |
|
---|
[6ccb238] | 58 | /*
|
---|
[481c520] | 59 | * 60 Write 8042 Command Byte: next data byte written to port 60h is
|
---|
[30ab05f] | 60 | * placed in 8042 command register. Format:
|
---|
[481c520] | 61 | *
|
---|
| 62 | * |7|6|5|4|3|2|1|0|8042 Command Byte
|
---|
| 63 | * | | | | | | | `---- 1=enable output register full interrupt
|
---|
| 64 | * | | | | | | `----- should be 0
|
---|
| 65 | * | | | | | `------ 1=set status register system, 0=clear
|
---|
| 66 | * | | | | `------- 1=override keyboard inhibit, 0=allow inhibit
|
---|
| 67 | * | | | `-------- disable keyboard I/O by driving clock line low
|
---|
| 68 | * | | `--------- disable auxiliary device, drives clock line low
|
---|
| 69 | * | `---------- IBM scancode translation 0=AT, 1=PC/XT
|
---|
| 70 | * `----------- reserved, should be 0
|
---|
| 71 | */
|
---|
[6ccb238] | 72 |
|
---|
[481c520] | 73 | #define i8042_SET_COMMAND 0x60
|
---|
[a832dd7] | 74 | #define i8042_COMMAND 0x69
|
---|
[02f441c0] | 75 |
|
---|
| 76 | #define i8042_BUFFER_FULL_MASK 0x01
|
---|
[ddf1255] | 77 | #define i8042_WAIT_MASK 0x02
|
---|
| 78 | #define i8042_MOUSE_DATA 0x20
|
---|
[6ccb238] | 79 |
|
---|
[973be64e] | 80 | static void i8042_suspend(chardev_t *);
|
---|
| 81 | static void i8042_resume(chardev_t *);
|
---|
[607c5f9] | 82 |
|
---|
| 83 | static chardev_operations_t ops = {
|
---|
| 84 | .suspend = i8042_suspend,
|
---|
[578aebf7] | 85 | .resume = i8042_resume,
|
---|
[28ecadb] | 86 | .read = i8042_key_read
|
---|
[607c5f9] | 87 | };
|
---|
| 88 |
|
---|
[cea12e9] | 89 | /** Structure for i8042's IRQ. */
|
---|
[16d71f41] | 90 | static irq_t i8042_kbd_irq;
|
---|
| 91 | static irq_t i8042_mouse_irq;
|
---|
[cea12e9] | 92 |
|
---|
[41d33ac] | 93 | void i8042_grab(void)
|
---|
[f761f1eb] | 94 | {
|
---|
[cea12e9] | 95 | ipl_t ipl = interrupts_disable();
|
---|
| 96 |
|
---|
[16d71f41] | 97 | spinlock_lock(&i8042_kbd_irq.lock);
|
---|
| 98 | i8042_kbd_irq.notif_cfg.notify = false;
|
---|
| 99 | spinlock_unlock(&i8042_kbd_irq.lock);
|
---|
| 100 |
|
---|
| 101 | spinlock_lock(&i8042_mouse_irq.lock);
|
---|
| 102 | i8042_mouse_irq.notif_cfg.notify = false;
|
---|
| 103 | spinlock_unlock(&i8042_mouse_irq.lock);
|
---|
| 104 |
|
---|
[cea12e9] | 105 | interrupts_restore(ipl);
|
---|
[41d33ac] | 106 | }
|
---|
[cea12e9] | 107 |
|
---|
[41d33ac] | 108 | void i8042_release(void)
|
---|
| 109 | {
|
---|
[cea12e9] | 110 | ipl_t ipl = interrupts_disable();
|
---|
[16d71f41] | 111 |
|
---|
| 112 | spinlock_lock(&i8042_kbd_irq.lock);
|
---|
| 113 | if (i8042_kbd_irq.notif_cfg.answerbox)
|
---|
| 114 | i8042_kbd_irq.notif_cfg.notify = true;
|
---|
| 115 | spinlock_unlock(&i8042_kbd_irq.lock);
|
---|
| 116 |
|
---|
| 117 | spinlock_lock(&i8042_mouse_irq.lock);
|
---|
| 118 | if (i8042_mouse_irq.notif_cfg.answerbox)
|
---|
| 119 | i8042_mouse_irq.notif_cfg.notify = true;
|
---|
| 120 | spinlock_unlock(&i8042_mouse_irq.lock);
|
---|
| 121 |
|
---|
[cea12e9] | 122 | interrupts_restore(ipl);
|
---|
[41d33ac] | 123 | }
|
---|
| 124 |
|
---|
[cea12e9] | 125 | static irq_ownership_t i8042_claim(void)
|
---|
[41d33ac] | 126 | {
|
---|
[cea12e9] | 127 | return IRQ_ACCEPT;
|
---|
| 128 | }
|
---|
[41d33ac] | 129 |
|
---|
[ddf1255] | 130 | static void i8042_irq_handler(irq_t *irq, void *arg, ...)
|
---|
[cea12e9] | 131 | {
|
---|
| 132 | if (irq->notif_cfg.notify && irq->notif_cfg.answerbox)
|
---|
| 133 | ipc_irq_send_notif(irq);
|
---|
| 134 | else {
|
---|
[ddf1255] | 135 | uint8_t data;
|
---|
[cea12e9] | 136 | uint8_t status;
|
---|
| 137 |
|
---|
| 138 | while (((status = i8042_status_read()) & i8042_BUFFER_FULL_MASK)) {
|
---|
[ddf1255] | 139 | data = i8042_data_read();
|
---|
[cea12e9] | 140 |
|
---|
| 141 | if ((status & i8042_MOUSE_DATA))
|
---|
| 142 | continue;
|
---|
[ddf1255] | 143 |
|
---|
| 144 | if (data & KEY_RELEASE)
|
---|
| 145 | key_released(data ^ KEY_RELEASE);
|
---|
[cea12e9] | 146 | else
|
---|
[ddf1255] | 147 | key_pressed(data);
|
---|
[cea12e9] | 148 | }
|
---|
| 149 | }
|
---|
| 150 | }
|
---|
[6ccb238] | 151 |
|
---|
[cea12e9] | 152 | /** Initialize i8042. */
|
---|
[16d71f41] | 153 | void i8042_init(devno_t kbd_devno, inr_t kbd_inr, devno_t mouse_devno, inr_t mouse_inr)
|
---|
[cea12e9] | 154 | {
|
---|
[973be64e] | 155 | chardev_initialize("i8042_kbd", &kbrd, &ops);
|
---|
[607c5f9] | 156 | stdin = &kbrd;
|
---|
[cea12e9] | 157 |
|
---|
[16d71f41] | 158 | irq_initialize(&i8042_kbd_irq);
|
---|
| 159 | i8042_kbd_irq.devno = kbd_devno;
|
---|
| 160 | i8042_kbd_irq.inr = kbd_inr;
|
---|
| 161 | i8042_kbd_irq.claim = i8042_claim;
|
---|
[ddf1255] | 162 | i8042_kbd_irq.handler = i8042_irq_handler;
|
---|
[16d71f41] | 163 | irq_register(&i8042_kbd_irq);
|
---|
| 164 |
|
---|
| 165 | irq_initialize(&i8042_mouse_irq);
|
---|
| 166 | i8042_mouse_irq.devno = mouse_devno;
|
---|
| 167 | i8042_mouse_irq.inr = mouse_inr;
|
---|
| 168 | i8042_mouse_irq.claim = i8042_claim;
|
---|
[ddf1255] | 169 | i8042_mouse_irq.handler = i8042_irq_handler;
|
---|
[16d71f41] | 170 | irq_register(&i8042_mouse_irq);
|
---|
[cea12e9] | 171 |
|
---|
[16d71f41] | 172 | trap_virtual_enable_irqs(1 << kbd_inr);
|
---|
| 173 | trap_virtual_enable_irqs(1 << mouse_inr);
|
---|
[cea12e9] | 174 |
|
---|
[8b473ce] | 175 | /*
|
---|
[c624b96] | 176 | * Clear input buffer.
|
---|
| 177 | * Number of iterations is limited to prevent infinite looping.
|
---|
| 178 | */
|
---|
[cea12e9] | 179 | int i;
|
---|
[c624b96] | 180 | for (i = 0; (i8042_status_read() & i8042_BUFFER_FULL_MASK) && i < 100; i++) {
|
---|
[8b473ce] | 181 | i8042_data_read();
|
---|
[30ab05f] | 182 | }
|
---|
[cea12e9] | 183 |
|
---|
| 184 | sysinfo_set_item_val("kbd", NULL, true);
|
---|
[16d71f41] | 185 | sysinfo_set_item_val("kbd.devno", NULL, kbd_devno);
|
---|
| 186 | sysinfo_set_item_val("kbd.inr", NULL, kbd_inr);
|
---|
| 187 |
|
---|
| 188 | sysinfo_set_item_val("mouse", NULL, true);
|
---|
| 189 | sysinfo_set_item_val("mouse.devno", NULL, mouse_devno);
|
---|
| 190 | sysinfo_set_item_val("mouse.inr", NULL, mouse_inr);
|
---|
[cea12e9] | 191 |
|
---|
| 192 | i8042_grab();
|
---|
[30ab05f] | 193 | }
|
---|
| 194 |
|
---|
[607c5f9] | 195 | /* Called from getc(). */
|
---|
[973be64e] | 196 | void i8042_resume(chardev_t *d)
|
---|
[607c5f9] | 197 | {
|
---|
| 198 | }
|
---|
| 199 |
|
---|
| 200 | /* Called from getc(). */
|
---|
[973be64e] | 201 | void i8042_suspend(chardev_t *d)
|
---|
[607c5f9] | 202 | {
|
---|
| 203 | }
|
---|
[578aebf7] | 204 |
|
---|
[28ecadb] | 205 | char i8042_key_read(chardev_t *d)
|
---|
[578aebf7] | 206 | {
|
---|
| 207 | char ch;
|
---|
| 208 |
|
---|
[02f441c0] | 209 | while(!(ch = active_read_buff_read())) {
|
---|
[7f1c620] | 210 | uint8_t x;
|
---|
[f260256] | 211 | while (!(i8042_status_read() & i8042_BUFFER_FULL_MASK))
|
---|
[02f441c0] | 212 | ;
|
---|
| 213 | x = i8042_data_read();
|
---|
[287920f] | 214 | if (x & KEY_RELEASE)
|
---|
| 215 | key_released(x ^ KEY_RELEASE);
|
---|
| 216 | else
|
---|
| 217 | active_read_key_pressed(x);
|
---|
[578aebf7] | 218 | }
|
---|
| 219 | return ch;
|
---|
| 220 | }
|
---|
[30ab05f] | 221 |
|
---|
| 222 | /** Poll for key press and release events.
|
---|
| 223 | *
|
---|
| 224 | * This function can be used to implement keyboard polling.
|
---|
| 225 | */
|
---|
| 226 | void i8042_poll(void)
|
---|
| 227 | {
|
---|
[7f1c620] | 228 | uint8_t x;
|
---|
[30ab05f] | 229 |
|
---|
| 230 | while (((x = i8042_status_read() & i8042_BUFFER_FULL_MASK))) {
|
---|
| 231 | x = i8042_data_read();
|
---|
[287920f] | 232 | if (x & KEY_RELEASE)
|
---|
| 233 | key_released(x ^ KEY_RELEASE);
|
---|
| 234 | else
|
---|
| 235 | key_pressed(x);
|
---|
[30ab05f] | 236 | }
|
---|
| 237 | }
|
---|
[b45c443] | 238 |
|
---|
[3c5006a0] | 239 | /** @}
|
---|
[b45c443] | 240 | */
|
---|