/* * Logitech Bus Mouse Driver for Linux * by James Banks * * Heavily modified by David Giller * changed from queue- to counter- driven * hacked out a (probably incorrect) mouse_select * * Modified again by Nathan Laredo to interface with * 0.96c-pl1 IRQ handling changes (13JUL92) * didn't bother touching select code. * * Modified the select() code blindly to conform to the VFS * requirements. 92.07.14 - Linus. Somebody should test it out. * * Modified by Johan Myreen to make room for other mice (9AUG92) * removed assignment chr_fops[10] = &mouse_fops; see mouse.c * renamed mouse_fops => bus_mouse_fops, made bus_mouse_fops public. * renamed this file mouse.c => busmouse.c */ #include #include #include #include #include #include #include #include #include #include static struct mouse_status mouse; static int mouse_irq = MOUSE_IRQ; void bmouse_setup(char *str, int *ints) { if (ints[0] > 0) mouse_irq=ints[1]; } static void mouse_interrupt(int unused) { char dx, dy, buttons; MSE_INT_OFF(); outb(MSE_READ_X_LOW, MSE_CONTROL_PORT); dx = (inb(MSE_DATA_PORT) & 0xf); outb(MSE_READ_X_HIGH, MSE_CONTROL_PORT); dx |= (inb(MSE_DATA_PORT) & 0xf) << 4; outb(MSE_READ_Y_LOW, MSE_CONTROL_PORT ); dy = (inb(MSE_DATA_PORT) & 0xf); outb(MSE_READ_Y_HIGH, MSE_CONTROL_PORT); buttons = inb(MSE_DATA_PORT); dy |= (buttons & 0xf) << 4; buttons = ((buttons >> 5) & 0x07); if (dx != 0 || dy != 0 || buttons != mouse.buttons) { mouse.buttons = buttons; mouse.dx += dx; mouse.dy += dy; mouse.ready = 1; wake_up_interruptible(&mouse.wait); } MSE_INT_ON(); } static void release_mouse(struct inode * inode, struct file * file) { MSE_INT_OFF(); mouse.active = 0; mouse.ready = 0; free_irq(mouse_irq); } static int open_mouse(struct inode * inode, struct file * file) { if (!mouse.present) return -EINVAL; if (mouse.active) return -EBUSY; mouse.active = 1; mouse.ready = 0; mouse.dx = 0; mouse.dy = 0; mouse.buttons = 0x87; if (request_irq(mouse_irq, mouse_interrupt)) { mouse.active = 0; return -EBUSY; } MSE_INT_ON(); return 0; } static int write_mouse(struct inode * inode, struct file * file, char * buffer, int count) { return -EINVAL; } static int read_mouse(struct inode * inode, struct file * file, char * buffer, int count) { int i; if (count < 3) return -EINVAL; if (!mouse.ready) return -EAGAIN; MSE_INT_OFF(); put_fs_byte(mouse.buttons | 0x80, buffer); if (mouse.dx < -127) mouse.dx = -127; if (mouse.dx > 127) mouse.dx = 127; put_fs_byte((char)mouse.dx, buffer + 1); if (mouse.dy < -127) mouse.dy = -127; if (mouse.dy > 127) mouse.dy = 127; put_fs_byte((char) -mouse.dy, buffer + 2); for (i = 3; i < count; i++) put_fs_byte(0x00, buffer + i); mouse.dx = 0; mouse.dy = 0; mouse.ready = 0; MSE_INT_ON(); return i; } static int mouse_select(struct inode *inode, struct file *file, int sel_type, select_table * wait) { if (sel_type != SEL_IN) return 0; if (mouse.ready) return 1; select_wait(&mouse.wait, wait); return 0; } struct file_operations bus_mouse_fops = { NULL, /* mouse_seek */ read_mouse, write_mouse, NULL, /* mouse_readdir */ mouse_select, /* mouse_select */ NULL, /* mouse_ioctl */ NULL, /* mouse_mmap */ open_mouse, release_mouse, }; unsigned long bus_mouse_init(unsigned long kmem_start) { int i; outb(MSE_CONFIG_BYTE, MSE_CONFIG_PORT); outb(MSE_SIGNATURE_BYTE, MSE_SIGNATURE_PORT); for (i = 0; i < 100000; i++) /* busy loop */; if (inb(MSE_SIGNATURE_PORT) != MSE_SIGNATURE_BYTE) { mouse.present = 0; return kmem_start; } outb(MSE_DEFAULT_MODE, MSE_CONFIG_PORT); MSE_INT_OFF(); mouse.present = 1; mouse.active = 0; mouse.ready = 0; mouse.buttons = 0x87; mouse.dx = 0; mouse.dy = 0; mouse.wait = NULL; printk("Logitech Bus mouse detected and installed.\n"); return kmem_start; }