-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmouse.c
68 lines (64 loc) · 1.47 KB
/
mouse.c
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
#include "bootpack.h"
struct FIFO32 *mousefifo;
int mousedata0;
void inthandler2c(int *esp)
{
/* from mouse */
int data;
io_out8(PIC1_OCW2, 0x64); // IRQ-12受付完了
io_out8(PIC0_OCW2, 0x62); // IRQ-02受付完了
data = io_in8(PORT_KEYDAT);
fifo32_put(mousefifo, data + mousedata0);
return;
}
void enable_mouse(struct FIFO32 *fifo, int data0, struct MOUSE_DEC *mdec)
{
mousefifo = fifo;
mousedata0 = data0;
// enable
wait_KBC_sendready();
io_out8(PORT_KEYCMD, KEYCMD_SENDTO_MOUSE);
wait_KBC_sendready();
io_out8(PORT_KEYDAT, MOUSECMD_ENABLE);
mdec->phase = 0;
return;
}
int mouse_decode(struct MOUSE_DEC *mdec, unsigned char data)
{
if (mdec->phase == 0)
{
if (data == 0xfa)
mdec->phase = 1;
return 0;
}
if (mdec->phase == 1)
{
if ((data & 0xc8) == 0x08)
{
mdec->buf[0] = data;
mdec->phase = 2;
}
return 0;
}
if (mdec->phase == 2)
{
mdec->buf[1] = data;
mdec->phase = 3;
return 0;
}
if (mdec->phase == 3)
{
mdec->buf[2] = data;
mdec->phase = 1;
mdec->btn = mdec->buf[0] & 0x07;
mdec->x = mdec->buf[1];
mdec->y = mdec->buf[2];
if ((mdec->buf[0] & 0x10) != 0)
mdec->x |= 0xffffff00;
if ((mdec->buf[0] & 0x20) != 0)
mdec->y |= 0xffffff00;
mdec->y = -mdec->y;
return 1;
}
return -1;
}