2011-12-11 03:34:10 +04:00
|
|
|
/* vim: tabstop=4 shiftwidth=4 noexpandtab
|
|
|
|
* Mouse driver
|
|
|
|
*/
|
2011-10-29 09:33:45 +04:00
|
|
|
#include <system.h>
|
2011-12-15 05:43:14 +04:00
|
|
|
#include <logging.h>
|
2012-02-03 02:16:29 +04:00
|
|
|
#include <pipe.h>
|
|
|
|
#include <mouse.h>
|
2011-10-29 09:33:45 +04:00
|
|
|
|
|
|
|
uint8_t mouse_cycle = 0;
|
|
|
|
int8_t mouse_byte[3];
|
|
|
|
|
2012-02-03 06:37:50 +04:00
|
|
|
#define PACKETS_IN_PIPE 64
|
|
|
|
#define DISCARD_POINT 32
|
|
|
|
|
2012-02-05 08:29:46 +04:00
|
|
|
#define MOUSE_IRQ 12
|
2011-10-29 09:33:45 +04:00
|
|
|
|
2012-02-05 08:29:46 +04:00
|
|
|
#define MOUSE_PORT 0x60
|
|
|
|
#define MOUSE_STATUS 0x64
|
|
|
|
#define MOUSE_ABIT 0x02
|
|
|
|
#define MOUSE_BBIT 0x01
|
|
|
|
#define MOUSE_WRITE 0xD4
|
|
|
|
#define MOUSE_F_BIT 0x20
|
2012-12-01 07:32:38 +04:00
|
|
|
#define MOUSE_V_BIT 0x08
|
2012-02-03 06:37:50 +04:00
|
|
|
|
2012-02-05 08:29:46 +04:00
|
|
|
fs_node_t * mouse_pipe;
|
2011-10-29 09:33:45 +04:00
|
|
|
|
|
|
|
void mouse_wait(uint8_t a_type) {
|
|
|
|
uint32_t timeout = 100000;
|
|
|
|
if (!a_type) {
|
|
|
|
while (--timeout) {
|
2012-02-05 08:29:46 +04:00
|
|
|
if ((inportb(MOUSE_STATUS) & MOUSE_BBIT) == 1) {
|
2011-10-29 09:33:45 +04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2012-02-05 08:29:46 +04:00
|
|
|
kprintf("[mouse] timeout\n");
|
2011-10-29 09:33:45 +04:00
|
|
|
return;
|
|
|
|
} else {
|
|
|
|
while (--timeout) {
|
2012-02-05 08:29:46 +04:00
|
|
|
if (!((inportb(MOUSE_STATUS) & MOUSE_ABIT))) {
|
2011-10-29 09:33:45 +04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2012-02-05 08:29:46 +04:00
|
|
|
kprintf("[mouse] timeout\n");
|
2011-10-29 09:33:45 +04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void mouse_write(uint8_t write) {
|
|
|
|
mouse_wait(1);
|
2012-02-05 08:29:46 +04:00
|
|
|
outportb(MOUSE_STATUS, MOUSE_WRITE);
|
2011-10-29 09:33:45 +04:00
|
|
|
mouse_wait(1);
|
2012-02-05 08:29:46 +04:00
|
|
|
outportb(MOUSE_PORT, write);
|
2011-10-29 09:33:45 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
uint8_t mouse_read() {
|
|
|
|
mouse_wait(0);
|
2012-02-05 08:29:46 +04:00
|
|
|
char t = inportb(MOUSE_PORT);
|
2011-10-31 10:30:48 +04:00
|
|
|
return t;
|
2011-10-29 09:33:45 +04:00
|
|
|
}
|
|
|
|
|
2012-02-05 08:29:46 +04:00
|
|
|
|
|
|
|
void mouse_handler(struct regs *r) {
|
|
|
|
uint8_t status = inportb(MOUSE_STATUS);
|
|
|
|
while (status & MOUSE_BBIT) {
|
|
|
|
int8_t mouse_in = inportb(MOUSE_PORT);
|
|
|
|
if (status & MOUSE_F_BIT) {
|
|
|
|
switch (mouse_cycle) {
|
|
|
|
case 0:
|
|
|
|
mouse_byte[0] = mouse_in;
|
2012-12-01 07:32:38 +04:00
|
|
|
if (!(mouse_in & MOUSE_V_BIT)) return;
|
2012-02-05 08:29:46 +04:00
|
|
|
++mouse_cycle;
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
mouse_byte[1] = mouse_in;
|
|
|
|
++mouse_cycle;
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
mouse_byte[2] = mouse_in;
|
|
|
|
/* We now have a full mouse packet ready to use */
|
|
|
|
if (mouse_byte[0] & 0x80 || mouse_byte[0] & 0x40) {
|
|
|
|
/* x/y overflow? bad packet! */
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
mouse_device_packet_t packet;
|
|
|
|
packet.magic = MOUSE_MAGIC;
|
|
|
|
packet.x_difference = mouse_byte[1];
|
|
|
|
packet.y_difference = mouse_byte[2];
|
|
|
|
packet.buttons = 0;
|
|
|
|
if (mouse_byte[0] & 0x01) {
|
|
|
|
packet.buttons |= LEFT_CLICK;
|
|
|
|
}
|
|
|
|
if (mouse_byte[0] & 0x02) {
|
|
|
|
packet.buttons |= RIGHT_CLICK;
|
|
|
|
}
|
|
|
|
if (mouse_byte[0] & 0x04) {
|
|
|
|
packet.buttons |= MIDDLE_CLICK;
|
|
|
|
}
|
|
|
|
mouse_cycle = 0;
|
|
|
|
|
|
|
|
mouse_device_packet_t bitbucket;
|
|
|
|
while (pipe_size(mouse_pipe) > (DISCARD_POINT * sizeof(packet))) {
|
|
|
|
read_fs(mouse_pipe, 0, sizeof(packet), (uint8_t *)&bitbucket);
|
|
|
|
}
|
|
|
|
write_fs(mouse_pipe, 0, sizeof(packet), (uint8_t *)&packet);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
status = inportb(MOUSE_STATUS);
|
|
|
|
}
|
|
|
|
irq_ack(MOUSE_IRQ);
|
|
|
|
}
|
|
|
|
|
2011-10-29 09:33:45 +04:00
|
|
|
void mouse_install() {
|
2011-12-15 05:43:14 +04:00
|
|
|
LOG(INFO, "Initializing mouse cursor driver");
|
2011-10-29 09:33:45 +04:00
|
|
|
uint8_t status;
|
2011-10-31 10:30:48 +04:00
|
|
|
IRQ_OFF;
|
2012-02-03 06:37:50 +04:00
|
|
|
mouse_pipe = make_pipe(sizeof(mouse_device_packet_t) * PACKETS_IN_PIPE);
|
2011-10-29 09:33:45 +04:00
|
|
|
mouse_wait(1);
|
2012-02-05 08:29:46 +04:00
|
|
|
outportb(MOUSE_STATUS, 0xA8);
|
2011-10-29 09:33:45 +04:00
|
|
|
mouse_wait(1);
|
2012-02-05 08:29:46 +04:00
|
|
|
outportb(MOUSE_STATUS, 0x20);
|
2011-10-29 09:33:45 +04:00
|
|
|
mouse_wait(0);
|
|
|
|
status = inportb(0x60) | 2;
|
|
|
|
mouse_wait(1);
|
2012-02-05 08:29:46 +04:00
|
|
|
outportb(MOUSE_STATUS, 0x60);
|
2011-10-29 09:33:45 +04:00
|
|
|
mouse_wait(1);
|
2012-02-05 08:29:46 +04:00
|
|
|
outportb(MOUSE_PORT, status);
|
2011-10-29 09:33:45 +04:00
|
|
|
mouse_write(0xF6);
|
|
|
|
mouse_read();
|
|
|
|
mouse_write(0xF4);
|
|
|
|
mouse_read();
|
2012-01-25 10:19:52 +04:00
|
|
|
IRQ_RES;
|
2012-02-05 08:29:46 +04:00
|
|
|
irq_install_handler(MOUSE_IRQ, mouse_handler);
|
2011-10-29 09:33:45 +04:00
|
|
|
}
|