source: mainline/kernel/genarch/src/kbd/i8042.c@ 7d60cf5

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 7d60cf5 was 4b44099d, checked in by Jakub Jermar <jakub@…>, 16 years ago

Kill arch/drivers/i8042.h.

  • Property mode set to 100644
File size: 6.1 KB
Line 
1/*
2 * Copyright (c) 2001-2004 Jakub Jermar
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
29/** @addtogroup genarch
30 * @{
31 */
32/**
33 * @file
34 * @brief i8042 processor driver.
35 *
36 * It takes care of low-level keyboard functions.
37 */
38
39#include <genarch/kbd/i8042.h>
40#include <arch/drivers/kbd.h>
41#include <genarch/kbd/key.h>
42#include <genarch/kbd/scanc.h>
43#include <genarch/kbd/scanc_pc.h>
44#include <cpu.h>
45#include <arch/asm.h>
46#include <arch.h>
47#include <console/chardev.h>
48#include <console/console.h>
49#include <interrupt.h>
50#include <sysinfo/sysinfo.h>
51#include <ipc/irq.h>
52
53#define i8042_DATA 0x60
54#define i8042_STATUS 0x64
55
56/* Keyboard commands. */
57#define KBD_ENABLE 0xf4
58#define KBD_DISABLE 0xf5
59#define KBD_ACK 0xfa
60
61/*
62 * 60 Write 8042 Command Byte: next data byte written to port 60h is
63 * placed in 8042 command register. Format:
64 *
65 * |7|6|5|4|3|2|1|0|8042 Command Byte
66 * | | | | | | | `---- 1=enable output register full interrupt
67 * | | | | | | `----- should be 0
68 * | | | | | `------ 1=set status register system, 0=clear
69 * | | | | `------- 1=override keyboard inhibit, 0=allow inhibit
70 * | | | `-------- disable keyboard I/O by driving clock line low
71 * | | `--------- disable auxiliary device, drives clock line low
72 * | `---------- IBM scancode translation 0=AT, 1=PC/XT
73 * `----------- reserved, should be 0
74 */
75
76#define i8042_SET_COMMAND 0x60
77#define i8042_COMMAND 0x69
78
79#define i8042_BUFFER_FULL_MASK 0x01
80#define i8042_WAIT_MASK 0x02
81#define i8042_MOUSE_DATA 0x20
82
83static void i8042_suspend(chardev_t *);
84static void i8042_resume(chardev_t *);
85
86static chardev_operations_t ops = {
87 .suspend = i8042_suspend,
88 .resume = i8042_resume,
89 .read = i8042_key_read
90};
91
92/** Structure for i8042's IRQ. */
93static irq_t i8042_kbd_irq;
94static irq_t i8042_mouse_irq;
95
96void i8042_grab(void)
97{
98 ipl_t ipl = interrupts_disable();
99
100 spinlock_lock(&i8042_kbd_irq.lock);
101 i8042_kbd_irq.notif_cfg.notify = false;
102 spinlock_unlock(&i8042_kbd_irq.lock);
103
104 spinlock_lock(&i8042_mouse_irq.lock);
105 i8042_mouse_irq.notif_cfg.notify = false;
106 spinlock_unlock(&i8042_mouse_irq.lock);
107
108 interrupts_restore(ipl);
109}
110
111void i8042_release(void)
112{
113 ipl_t ipl = interrupts_disable();
114
115 spinlock_lock(&i8042_kbd_irq.lock);
116 if (i8042_kbd_irq.notif_cfg.answerbox)
117 i8042_kbd_irq.notif_cfg.notify = true;
118 spinlock_unlock(&i8042_kbd_irq.lock);
119
120 spinlock_lock(&i8042_mouse_irq.lock);
121 if (i8042_mouse_irq.notif_cfg.answerbox)
122 i8042_mouse_irq.notif_cfg.notify = true;
123 spinlock_unlock(&i8042_mouse_irq.lock);
124
125 interrupts_restore(ipl);
126}
127
128static irq_ownership_t i8042_claim(void *instance)
129{
130 return IRQ_ACCEPT;
131}
132
133static void i8042_irq_handler(irq_t *irq)
134{
135 if (irq->notif_cfg.notify && irq->notif_cfg.answerbox)
136 ipc_irq_send_notif(irq);
137 else {
138 uint8_t data;
139 uint8_t status;
140
141 while (((status = pio_read_8(i8042_STATUS)) &
142 i8042_BUFFER_FULL_MASK)) {
143 data = pio_read_8(i8042_DATA);
144
145 if ((status & i8042_MOUSE_DATA))
146 continue;
147
148 if (data & KEY_RELEASE)
149 key_released(data ^ KEY_RELEASE);
150 else
151 key_pressed(data);
152 }
153 }
154}
155
156/** Initialize i8042. */
157void
158i8042_init(devno_t kbd_devno, inr_t kbd_inr, devno_t mouse_devno,
159 inr_t mouse_inr)
160{
161 chardev_initialize("i8042_kbd", &kbrd, &ops);
162 stdin = &kbrd;
163
164 irq_initialize(&i8042_kbd_irq);
165 i8042_kbd_irq.devno = kbd_devno;
166 i8042_kbd_irq.inr = kbd_inr;
167 i8042_kbd_irq.claim = i8042_claim;
168 i8042_kbd_irq.handler = i8042_irq_handler;
169 irq_register(&i8042_kbd_irq);
170
171 irq_initialize(&i8042_mouse_irq);
172 i8042_mouse_irq.devno = mouse_devno;
173 i8042_mouse_irq.inr = mouse_inr;
174 i8042_mouse_irq.claim = i8042_claim;
175 i8042_mouse_irq.handler = i8042_irq_handler;
176 irq_register(&i8042_mouse_irq);
177
178 trap_virtual_enable_irqs(1 << kbd_inr);
179 trap_virtual_enable_irqs(1 << mouse_inr);
180
181 /*
182 * Clear input buffer.
183 * Number of iterations is limited to prevent infinite looping.
184 */
185 int i;
186 for (i = 0; (pio_read_8(i8042_STATUS) & i8042_BUFFER_FULL_MASK) &&
187 i < 100; i++) {
188 (void) pio_read_8(i8042_DATA);
189 }
190
191 sysinfo_set_item_val("kbd", NULL, true);
192 sysinfo_set_item_val("kbd.devno", NULL, kbd_devno);
193 sysinfo_set_item_val("kbd.inr", NULL, kbd_inr);
194#ifdef KBD_LEGACY
195 sysinfo_set_item_val("kbd.type", NULL, KBD_LEGACY);
196#endif
197 sysinfo_set_item_val("mouse", NULL, true);
198 sysinfo_set_item_val("mouse.devno", NULL, mouse_devno);
199 sysinfo_set_item_val("mouse.inr", NULL, mouse_inr);
200
201 i8042_grab();
202}
203
204/* Called from getc(). */
205void i8042_resume(chardev_t *d)
206{
207}
208
209/* Called from getc(). */
210void i8042_suspend(chardev_t *d)
211{
212}
213
214char i8042_key_read(chardev_t *d)
215{
216 char ch;
217
218 while (!(ch = active_read_buff_read())) {
219 uint8_t x;
220
221 while (!(pio_read_8(i8042_STATUS) & i8042_BUFFER_FULL_MASK))
222 ;
223
224 x = pio_read_8(i8042_STATUS);
225 if (x & KEY_RELEASE)
226 key_released(x ^ KEY_RELEASE);
227 else
228 active_read_key_pressed(x);
229 }
230 return ch;
231}
232
233/** @}
234 */
Note: See TracBrowser for help on using the repository browser.