GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / drivers / input / serio / libps2.c
blob71502d0e669eef0989db6aad1097c336ec80dae6
1 /*
2 * PS/2 driver library
4 * Copyright (c) 1999-2002 Vojtech Pavlik
5 * Copyright (c) 2004 Dmitry Torokhov
6 */
8 /*
9 * This program is free software; you can redistribute it and/or modify it
10 * under the terms of the GNU General Public License version 2 as published by
11 * the Free Software Foundation.
14 #include <linux/delay.h>
15 #include <linux/module.h>
16 #include <linux/sched.h>
17 #include <linux/interrupt.h>
18 #include <linux/input.h>
19 #include <linux/serio.h>
20 #include <linux/i8042.h>
21 #include <linux/init.h>
22 #include <linux/libps2.h>
24 #define DRIVER_DESC "PS/2 driver library"
26 MODULE_AUTHOR("Dmitry Torokhov <dtor@mail.ru>");
27 MODULE_DESCRIPTION("PS/2 driver library");
28 MODULE_LICENSE("GPL");
31 * ps2_sendbyte() sends a byte to the device and waits for acknowledge.
32 * It doesn't handle retransmission, though it could - because if there
33 * is a need for retransmissions device has to be replaced anyway.
35 * ps2_sendbyte() can only be called from a process context.
38 int ps2_sendbyte(struct ps2dev *ps2dev, unsigned char byte, int timeout)
40 serio_pause_rx(ps2dev->serio);
41 ps2dev->nak = 1;
42 ps2dev->flags |= PS2_FLAG_ACK;
43 serio_continue_rx(ps2dev->serio);
45 if (serio_write(ps2dev->serio, byte) == 0)
46 wait_event_timeout(ps2dev->wait,
47 !(ps2dev->flags & PS2_FLAG_ACK),
48 msecs_to_jiffies(timeout));
50 serio_pause_rx(ps2dev->serio);
51 ps2dev->flags &= ~PS2_FLAG_ACK;
52 serio_continue_rx(ps2dev->serio);
54 return -ps2dev->nak;
56 EXPORT_SYMBOL(ps2_sendbyte);
58 void ps2_begin_command(struct ps2dev *ps2dev)
60 mutex_lock(&ps2dev->cmd_mutex);
62 if (i8042_check_port_owner(ps2dev->serio))
63 i8042_lock_chip();
65 EXPORT_SYMBOL(ps2_begin_command);
67 void ps2_end_command(struct ps2dev *ps2dev)
69 if (i8042_check_port_owner(ps2dev->serio))
70 i8042_unlock_chip();
72 mutex_unlock(&ps2dev->cmd_mutex);
74 EXPORT_SYMBOL(ps2_end_command);
77 * ps2_drain() waits for device to transmit requested number of bytes
78 * and discards them.
81 void ps2_drain(struct ps2dev *ps2dev, int maxbytes, int timeout)
83 if (maxbytes > sizeof(ps2dev->cmdbuf)) {
84 WARN_ON(1);
85 maxbytes = sizeof(ps2dev->cmdbuf);
88 ps2_begin_command(ps2dev);
90 serio_pause_rx(ps2dev->serio);
91 ps2dev->flags = PS2_FLAG_CMD;
92 ps2dev->cmdcnt = maxbytes;
93 serio_continue_rx(ps2dev->serio);
95 wait_event_timeout(ps2dev->wait,
96 !(ps2dev->flags & PS2_FLAG_CMD),
97 msecs_to_jiffies(timeout));
99 ps2_end_command(ps2dev);
101 EXPORT_SYMBOL(ps2_drain);
104 * ps2_is_keyboard_id() checks received ID byte against the list of
105 * known keyboard IDs.
108 int ps2_is_keyboard_id(char id_byte)
110 static const char keyboard_ids[] = {
111 0xab, /* Regular keyboards */
112 0xac, /* NCD Sun keyboard */
113 0x2b, /* Trust keyboard, translated */
114 0x5d, /* Trust keyboard */
115 0x60, /* NMB SGI keyboard, translated */
116 0x47, /* NMB SGI keyboard */
119 return memchr(keyboard_ids, id_byte, sizeof(keyboard_ids)) != NULL;
121 EXPORT_SYMBOL(ps2_is_keyboard_id);
124 * ps2_adjust_timeout() is called after receiving 1st byte of command
125 * response and tries to reduce remaining timeout to speed up command
126 * completion.
129 static int ps2_adjust_timeout(struct ps2dev *ps2dev, int command, int timeout)
131 switch (command) {
132 case PS2_CMD_RESET_BAT:
134 * Device has sent the first response byte after
135 * reset command, reset is thus done, so we can
136 * shorten the timeout.
137 * The next byte will come soon (keyboard) or not
138 * at all (mouse).
140 if (timeout > msecs_to_jiffies(100))
141 timeout = msecs_to_jiffies(100);
142 break;
144 case PS2_CMD_GETID:
146 * Microsoft Natural Elite keyboard responds to
147 * the GET ID command as it were a mouse, with
148 * a single byte. Fail the command so atkbd will
149 * use alternative probe to detect it.
151 if (ps2dev->cmdbuf[1] == 0xaa) {
152 serio_pause_rx(ps2dev->serio);
153 ps2dev->flags = 0;
154 serio_continue_rx(ps2dev->serio);
155 timeout = 0;
159 * If device behind the port is not a keyboard there
160 * won't be 2nd byte of ID response.
162 if (!ps2_is_keyboard_id(ps2dev->cmdbuf[1])) {
163 serio_pause_rx(ps2dev->serio);
164 ps2dev->flags = ps2dev->cmdcnt = 0;
165 serio_continue_rx(ps2dev->serio);
166 timeout = 0;
168 break;
170 default:
171 break;
174 return timeout;
178 * ps2_command() sends a command and its parameters to the mouse,
179 * then waits for the response and puts it in the param array.
181 * ps2_command() can only be called from a process context
184 int __ps2_command(struct ps2dev *ps2dev, unsigned char *param, int command)
186 int timeout;
187 int send = (command >> 12) & 0xf;
188 int receive = (command >> 8) & 0xf;
189 int rc = -1;
190 int i;
192 if (receive > sizeof(ps2dev->cmdbuf)) {
193 WARN_ON(1);
194 return -1;
197 if (send && !param) {
198 WARN_ON(1);
199 return -1;
202 serio_pause_rx(ps2dev->serio);
203 ps2dev->flags = command == PS2_CMD_GETID ? PS2_FLAG_WAITID : 0;
204 ps2dev->cmdcnt = receive;
205 if (receive && param)
206 for (i = 0; i < receive; i++)
207 ps2dev->cmdbuf[(receive - 1) - i] = param[i];
208 serio_continue_rx(ps2dev->serio);
211 * Some devices (Synaptics) peform the reset before
212 * ACKing the reset command, and so it can take a long
213 * time before the ACK arrrives.
215 if (ps2_sendbyte(ps2dev, command & 0xff,
216 command == PS2_CMD_RESET_BAT ? 1000 : 200))
217 goto out;
219 for (i = 0; i < send; i++)
220 if (ps2_sendbyte(ps2dev, param[i], 200))
221 goto out;
224 * The reset command takes a long time to execute.
226 timeout = msecs_to_jiffies(command == PS2_CMD_RESET_BAT ? 4000 : 500);
228 timeout = wait_event_timeout(ps2dev->wait,
229 !(ps2dev->flags & PS2_FLAG_CMD1), timeout);
231 if (ps2dev->cmdcnt && !(ps2dev->flags & PS2_FLAG_CMD1)) {
233 timeout = ps2_adjust_timeout(ps2dev, command, timeout);
234 wait_event_timeout(ps2dev->wait,
235 !(ps2dev->flags & PS2_FLAG_CMD), timeout);
238 if (param)
239 for (i = 0; i < receive; i++)
240 param[i] = ps2dev->cmdbuf[(receive - 1) - i];
242 if (ps2dev->cmdcnt && (command != PS2_CMD_RESET_BAT || ps2dev->cmdcnt != 1))
243 goto out;
245 rc = 0;
247 out:
248 serio_pause_rx(ps2dev->serio);
249 ps2dev->flags = 0;
250 serio_continue_rx(ps2dev->serio);
252 return rc;
254 EXPORT_SYMBOL(__ps2_command);
256 int ps2_command(struct ps2dev *ps2dev, unsigned char *param, int command)
258 int rc;
260 ps2_begin_command(ps2dev);
261 rc = __ps2_command(ps2dev, param, command);
262 ps2_end_command(ps2dev);
264 return rc;
266 EXPORT_SYMBOL(ps2_command);
269 * ps2_init() initializes ps2dev structure
272 void ps2_init(struct ps2dev *ps2dev, struct serio *serio)
274 mutex_init(&ps2dev->cmd_mutex);
275 lockdep_set_subclass(&ps2dev->cmd_mutex, serio->depth);
276 init_waitqueue_head(&ps2dev->wait);
277 ps2dev->serio = serio;
279 EXPORT_SYMBOL(ps2_init);
282 * ps2_handle_ack() is supposed to be used in interrupt handler
283 * to properly process ACK/NAK of a command from a PS/2 device.
286 int ps2_handle_ack(struct ps2dev *ps2dev, unsigned char data)
288 switch (data) {
289 case PS2_RET_ACK:
290 ps2dev->nak = 0;
291 break;
293 case PS2_RET_NAK:
294 ps2dev->flags |= PS2_FLAG_NAK;
295 ps2dev->nak = PS2_RET_NAK;
296 break;
298 case PS2_RET_ERR:
299 if (ps2dev->flags & PS2_FLAG_NAK) {
300 ps2dev->flags &= ~PS2_FLAG_NAK;
301 ps2dev->nak = PS2_RET_ERR;
302 break;
305 case 0x00:
306 case 0x03:
307 case 0x04:
308 if (ps2dev->flags & PS2_FLAG_WAITID) {
309 ps2dev->nak = 0;
310 break;
312 /* Fall through */
313 default:
314 return 0;
318 if (!ps2dev->nak) {
319 ps2dev->flags &= ~PS2_FLAG_NAK;
320 if (ps2dev->cmdcnt)
321 ps2dev->flags |= PS2_FLAG_CMD | PS2_FLAG_CMD1;
324 ps2dev->flags &= ~PS2_FLAG_ACK;
325 wake_up(&ps2dev->wait);
327 if (data != PS2_RET_ACK)
328 ps2_handle_response(ps2dev, data);
330 return 1;
332 EXPORT_SYMBOL(ps2_handle_ack);
335 * ps2_handle_response() is supposed to be used in interrupt handler
336 * to properly store device's response to a command and notify process
337 * waiting for completion of the command.
340 int ps2_handle_response(struct ps2dev *ps2dev, unsigned char data)
342 if (ps2dev->cmdcnt)
343 ps2dev->cmdbuf[--ps2dev->cmdcnt] = data;
345 if (ps2dev->flags & PS2_FLAG_CMD1) {
346 ps2dev->flags &= ~PS2_FLAG_CMD1;
347 if (ps2dev->cmdcnt)
348 wake_up(&ps2dev->wait);
351 if (!ps2dev->cmdcnt) {
352 ps2dev->flags &= ~PS2_FLAG_CMD;
353 wake_up(&ps2dev->wait);
356 return 1;
358 EXPORT_SYMBOL(ps2_handle_response);
360 void ps2_cmd_aborted(struct ps2dev *ps2dev)
362 if (ps2dev->flags & PS2_FLAG_ACK)
363 ps2dev->nak = 1;
365 if (ps2dev->flags & (PS2_FLAG_ACK | PS2_FLAG_CMD))
366 wake_up(&ps2dev->wait);
368 /* reset all flags except last nack */
369 ps2dev->flags &= PS2_FLAG_NAK;
371 EXPORT_SYMBOL(ps2_cmd_aborted);