1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
|
/*
* drivers/char/mac_keyb.c
*
* Keyboard driver for Power Macintosh computers.
*
* Adapted from drivers/char/keyboard.c by Paul Mackerras
* (see that file for its authors and contributors).
*
* Copyright (C) 1996 Paul Mackerras.
*/
#include <linux/sched.h>
#include <linux/interrupt.h>
#include <linux/tty.h>
#include <linux/mm.h>
#include <linux/signal.h>
#include <linux/ioport.h>
#include <asm/keyboard.h>
#include <asm/bitops.h>
#include <asm/adb.h>
#include <asm/cuda.h>
#include <linux/kbd_kern.h>
#include <linux/kbd_ll.h>
#define KEYB_KEYREG 0 /* register # for key up/down data */
#define KEYB_LEDREG 2 /* register # for leds on ADB keyboard */
#define MOUSE_DATAREG 0 /* reg# for movement/button codes from mouse */
static void kbd_repeat(unsigned long);
static struct timer_list repeat_timer = { NULL, NULL, 0, 0, kbd_repeat };
static int last_keycode;
static void keyboard_input(unsigned char *, int, struct pt_regs *, int);
static void input_keycode(int, int);
static void leds_done(struct adb_request *);
/* XXX: Hook for mouse driver */
void (*adb_mouse_interrupt_hook) (char *, int);
int adb_emulate_button2;
int adb_emulate_button3;
extern int console_loglevel;
extern struct kbd_struct kbd_table[];
extern void handle_scancode(unsigned char);
extern void put_queue(int);
/* this map indicates which keys shouldn't autorepeat. */
static unsigned char dont_repeat[128] = {
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, /* esc...option */
0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, /* num lock */
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, /* scroll lock */
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
};
int mackbd_setkeycode(unsigned int scancode, unsigned int keycode)
{
return -EINVAL;
}
int mackbd_getkeycode(unsigned int scancode)
{
return -EINVAL;
}
int mackbd_pretranslate(unsigned char scancode, char raw_mode)
{
return 1;
}
int mackbd_translate(unsigned char keycode, unsigned char *keycodep,
char raw_mode)
{
if (!raw_mode) {
/*
* Convert R-shift/control/option to L version.
*/
switch (keycode) {
case 0x7b: keycode = 0x38; break; /* R-shift */
case 0x7c: keycode = 0x3a; break; /* R-option */
case 0x7d: keycode = 0x36; break; /* R-control */
}
}
*keycodep = keycode;
return 1;
}
int mackbd_unexpected_up(unsigned char keycode)
{
return 0x80;
}
static void
keyboard_input(unsigned char *data, int nb, struct pt_regs *regs, int apoll)
{
/* first check this is from register 0 */
if (nb != 3 || (data[0] & 3) != KEYB_KEYREG)
return; /* ignore it */
kbd_pt_regs = regs;
input_keycode(data[1], 0);
if (!(data[2] == 0xff || (data[2] == 0x7f && data[1] == 0x7f)))
input_keycode(data[2], 0);
}
static void
input_keycode(int keycode, int repeat)
{
struct kbd_struct *kbd;
int up_flag;
kbd = kbd_table + fg_console;
up_flag = (keycode & 0x80);
keycode &= 0x7f;
if (!repeat)
del_timer(&repeat_timer);
/*
* XXX: Add mouse button 2+3 fake codes here if mouse open.
* Keep track of 'button' states here as we only send
* single up/down events!
* Really messy; might need to check if keyboard is in
* VC_RAW mode.
* Might also want to know how many buttons need to be emulated.
* -> hide this as function in arch/m68k/mac ?
*/
if (adb_mouse_interrupt_hook || console_loglevel == 10) {
unsigned char button, button2, button3, fake_event;
static unsigned char button2state=0, button3state=0; /* up */
/* faked ADB packet */
static char data[4] = { 0, 0x80, 0x80, 0x80 };
button = 0;
fake_event = 0;
switch (keycode) { /* which 'button' ? */
case 0x7c: /* R-option */
button2 = (!up_flag); /* new state */
if (button2 != button2state) /* change ? */
button = 2;
button2state = button2; /* save state */
fake_event = 2;
break;
case 0x7d: /* R-control */
button3 = (!up_flag); /* new state */
if (button3 != button3state) /* change ? */
button = 3;
button3state = button3; /* save state */
fake_event = 3;
break;
}
if (fake_event && console_loglevel >= 8)
printk("fake event: button2 %d button3 %d button %d\n",
button2state, button3state, button);
if (button) { /* there's been a button state change */
/* fake a mouse packet : send all bytes, change one! */
data[button] = (up_flag ? 0x80 : 0);
if (adb_mouse_interrupt_hook)
adb_mouse_interrupt_hook(data, -1);
else
printk("mouse_fake: data %x %x %x buttons %x \n",
data[1], data[2], data[3],
~( (data[1] & 0x80 ? 0 : 4)
| (data[2] & 0x80 ? 0 : 1)
| (data[3] & 0x80 ? 0 : 2) )&7 );
}
/*
* XXX: testing mouse emulation ... don't process fake keys!
*/
if (fake_event)
return;
}
if (kbd->kbdmode != VC_RAW) {
if (!up_flag && !dont_repeat[keycode]) {
last_keycode = keycode;
repeat_timer.expires = jiffies + (repeat? HZ/15: HZ/2);
add_timer(&repeat_timer);
}
/*
* adb kludge!! Imitate pc caps lock behaviour by
* generating an up/down event for each time caps
* is pressed/released. Also, makes sure that the
* LED are handled. atong@uiuc.edu
*/
switch (keycode) {
/*case 0xb9:*/
case 0x39:
handle_scancode(0x39);
handle_scancode(0xb9);
mark_bh(KEYBOARD_BH);
return;
case 0x47:
/*case 0xc7:*/
mark_bh(KEYBOARD_BH);
break;
}
}
handle_scancode(keycode + up_flag);
}
static void
kbd_repeat(unsigned long xxx)
{
unsigned long flags;
save_flags(flags);
cli();
input_keycode(last_keycode, 1);
restore_flags(flags);
}
static void
mouse_input(unsigned char *data, int nb, struct pt_regs *regs, int autopoll)
{
/* [ACA:23-Mar-97] Three button mouse support. This is designed to
function with MkLinux DR-2.1 style X servers. It only works with
three-button mice that conform to Apple's multi-button mouse
protocol. */
/*
The X server for MkLinux DR2.1 uses the following unused keycodes to
read the mouse:
0x7e This indicates that the next two keycodes should be interpreted
as mouse information. The first following byte's high bit
represents the state of the left button. The lower seven bits
represent the x-axis acceleration. The lower seven bits of the
second byte represent y-axis acceleration.
0x3f The x server interprets this keycode as a middle button
release.
0xbf The x server interprets this keycode as a middle button
depress.
0x40 The x server interprets this keycode as a right button
release.
0xc0 The x server interprets this keycode as a right button
depress.
NOTES: There should be a better way of handling mice in the X server.
The MOUSE_ESCAPE code (0x7e) should be followed by three bytes instead
of two. The three mouse buttons should then, in the X server, be read
as the high-bits of all three bytes. The x and y motions can still be
in the first two bytes. Maybe I'll do this...
*/
/*
Handler 4 -- Apple Extended mouse protocol.
For Apple's 3-button mouse protocol the data array will contain the
following values:
BITS COMMENTS
data[0] = 0000 0000 ADB packet identifer.
data[1] = 0100 0000 Extended protocol register.
Bits 6-7 are the device id, which should be 1.
Bits 4-5 are resolution which is in "units/inch".
The Logitech MouseMan returns these bits clear but it has
200/300cpi resolution.
Bits 0-3 are unique vendor id.
data[2] = 0011 1100 Bits 0-1 should be zero for a mouse device.
Bits 2-3 should be 8 + 4.
Bits 4-7 should be 3 for a mouse device.
data[3] = bxxx xxxx Left button and x-axis motion.
data[4] = byyy yyyy Second button and y-axis motion.
data[5] = byyy bxxx Third button and fourth button. Y is additional
high bits of y-axis motion. XY is additional
high bits of x-axis motion.
NOTE: data[0] and data[2] are confirmed by the parent function and
need not be checked here.
*/
/*
Handler 1 -- 100cpi original Apple mouse protocol.
Handler 2 -- 200cpi original Apple mouse protocol.
For Apple's standard one-button mouse protocol the data array will
contain the following values:
BITS COMMENTS
data[0] = 0000 0000 ADB packet identifer.
data[1] = ???? ???? (?)
data[2] = ???? ??00 Bits 0-1 should be zero for a mouse device.
data[3] = bxxx xxxx First button and x-axis motion.
data[4] = byyy yyyy Second button and y-axis motion.
NOTE: data[0] is confirmed by the parent function and need not be
checked here.
*/
struct kbd_struct *kbd;
if (adb_mouse_interrupt_hook)
adb_mouse_interrupt_hook(data, nb);
else
if (console_loglevel == 10)
printk("mouse_input: data %x %x %x buttons %x dx %d dy %d \n",
data[1], data[2], data[3],
~((data[1] & 0x80 ? 0 : 4)
| (data[2] & 0x80 ? 0 : 1)
| (data[3] & 0x80 ? 0 : 2))&7,
((data[2]&0x7f) < 64 ? (data[2]&0x7f) : (data[2]&0x7f)-128 ),
((data[1]&0x7f) < 64 ? -(data[1]&0x7f) : 128-(data[1]&0x7f) ) );
kbd = kbd_table + fg_console;
/* Only send mouse codes when keyboard is in raw mode. */
if (kbd->kbdmode == VC_RAW) {
static unsigned char uch_ButtonStateSecond = 0;
unsigned char uchButtonSecond;
/* Send first button, second button and movement. */
put_queue( 0x7e );
put_queue( data[1] );
put_queue( data[2] );
/* [ACA: Are there any two-button ADB mice that use handler 1 or 2?] */
/* Store the button state. */
uchButtonSecond = (data[2] & 0x80);
/* Send second button. */
if (uchButtonSecond != uch_ButtonStateSecond) {
put_queue( 0x3f | uchButtonSecond );
uch_ButtonStateSecond = uchButtonSecond;
}
/* Macintosh 3-button mouse (handler 4). */
if ((nb == 6) && autopoll /*?*/) {
static unsigned char uch_ButtonStateThird = 0;
unsigned char uchButtonThird;
/* Store the button state for speed. */
uchButtonThird = (data[3] & 0x80);
/* Send third button. */
if (uchButtonThird != uch_ButtonStateThird) {
put_queue( 0x40 | uchButtonThird );
uch_ButtonStateThird = uchButtonThird;
}
}
}
}
/* Map led flags as defined in kbd_kern.h to bits for Apple keyboard. */
static unsigned char mac_ledmap[8] = {
0, /* none */
4, /* scroll lock */
1, /* num lock */
5, /* scroll + num lock */
2, /* caps lock */
6, /* caps + scroll lock */
3, /* caps + num lock */
7, /* caps + num + scroll lock */
};
static struct adb_request led_request;
static int leds_pending;
void mackbd_leds(unsigned char leds)
{
if (led_request.complete) {
adb_request(&led_request, leds_done, 0, 3,
ADB_WRITEREG(ADB_KEYBOARD, KEYB_LEDREG),
0xff, ~mac_ledmap[leds]);
} else
leds_pending = leds | 0x100;
}
static void leds_done(struct adb_request *req)
{
int leds;
if (leds_pending) {
leds = leds_pending & 0xff;
leds_pending = 0;
mackbd_leds(leds);
}
}
void mackbd_init_hw(void)
{
struct adb_request req;
/* initialize mouse interrupt hook */
adb_mouse_interrupt_hook = NULL;
/* assume broken mouse :-) - should be adjusted based on
* result of the mouse setup !! (or passed as kernel option) */
adb_emulate_button2 = 1;
adb_emulate_button3 = 1;
adb_register(ADB_KEYBOARD, keyboard_input);
adb_register(ADB_MOUSE, mouse_input);
/* turn off all leds */
adb_request(&req, NULL, ADBREQ_SYNC, 3,
ADB_WRITEREG(ADB_KEYBOARD, KEYB_LEDREG), 0xff, 0xff);
/* get the keyboard to send separate codes for
left and right shift, control, option keys. */
adb_request(&req, NULL, ADBREQ_SYNC, 3,
ADB_WRITEREG(ADB_KEYBOARD, 3), 0, 3);
led_request.complete = 1;
/* Try to switch the mouse (id 3) to handler 4, for three-button
mode. (0x20 is Service Request Enable, 0x03 is Device ID). */
adb_request(&req, NULL, ADBREQ_SYNC, 3,
ADB_WRITEREG(ADB_MOUSE, 3), 0x23, 4 );
}
|