Linux 2.3.7pre1
[davej-history.git] / drivers / char / qpmouse.c
blobe6076d926cda5d4677f43914ef31a6565439f3f9
1 /*
2 * linux/drivers/char/qpmouse.c
4 * Driver for a 82C710 C&T mouse interface chip.
6 * Based on the PS/2 driver by Johan Myreen.
8 * Corrections in device setup for some laptop mice & trackballs.
9 * 02Feb93 (troyer@saifr00.cfsat.Honeywell.COM,mch@wimsey.bc.ca)
11 * Modified by Johan Myreen (jem@iki.fi) 04Aug93
12 * to include support for QuickPort mouse.
14 * Changed references to "QuickPort" with "82C710" since "QuickPort"
15 * is not what this driver is all about -- QuickPort is just a
16 * connector type, and this driver is for the mouse port on the Chips
17 * & Technologies 82C710 interface chip. 15Nov93 jem@iki.fi
19 * Added support for SIGIO. 28Jul95 jem@iki.fi
21 * Rearranged SIGIO support to use code from tty_io. 9Sept95 ctm@ardi.com
23 * Modularised 8-Sep-95 Philip Blundell <pjb27@cam.ac.uk>
26 #include <linux/module.h>
28 #include <linux/sched.h>
29 #include <linux/kernel.h>
30 #include <linux/interrupt.h>
31 #include <linux/fcntl.h>
32 #include <linux/errno.h>
33 #include <linux/timer.h>
34 #include <linux/malloc.h>
35 #include <linux/miscdevice.h>
36 #include <linux/random.h>
37 #include <linux/poll.h>
38 #include <linux/init.h>
40 #include <asm/io.h>
41 #include <asm/uaccess.h>
42 #include <asm/system.h>
43 #include <asm/semaphore.h>
45 #include "pc_keyb.h" /* mouse enable command.. */
49 * We use the same minor number as the PS/2 mouse for (bad) historical
50 * reasons..
52 #define PSMOUSE_MINOR 1 /* Minor device # for this mouse */
53 #define QP_BUF_SIZE 2048
55 struct qp_queue {
56 unsigned long head;
57 unsigned long tail;
58 wait_queue_head_t proc_list;
59 struct fasync_struct *fasync;
60 unsigned char buf[QP_BUF_SIZE];
63 static struct qp_queue *queue;
65 static unsigned int get_from_queue(void)
67 unsigned int result;
68 unsigned long flags;
70 save_flags(flags);
71 cli();
72 result = queue->buf[queue->tail];
73 queue->tail = (queue->tail + 1) & (QP_BUF_SIZE-1);
74 restore_flags(flags);
75 return result;
79 static inline int queue_empty(void)
81 return queue->head == queue->tail;
84 static int fasync_qp(int fd, struct file *filp, int on)
86 int retval;
88 retval = fasync_helper(fd, filp, on, &queue->fasync);
89 if (retval < 0)
90 return retval;
91 return 0;
95 * 82C710 Interface
98 #define QP_DATA 0x310 /* Data Port I/O Address */
99 #define QP_STATUS 0x311 /* Status Port I/O Address */
101 #define QP_DEV_IDLE 0x01 /* Device Idle */
102 #define QP_RX_FULL 0x02 /* Device Char received */
103 #define QP_TX_IDLE 0x04 /* Device XMIT Idle */
104 #define QP_RESET 0x08 /* Device Reset */
105 #define QP_INTS_ON 0x10 /* Device Interrupt On */
106 #define QP_ERROR_FLAG 0x20 /* Device Error */
107 #define QP_CLEAR 0x40 /* Device Clear */
108 #define QP_ENABLE 0x80 /* Device Enable */
110 #define QP_IRQ 12
112 static int qp_present = 0;
113 static int qp_count = 0;
114 static int qp_data = QP_DATA;
115 static int qp_status = QP_STATUS;
117 static int poll_qp_status(void);
118 static int probe_qp(void);
121 * Interrupt handler for the 82C710 mouse port. A character
122 * is waiting in the 82C710.
125 static void qp_interrupt(int cpl, void *dev_id, struct pt_regs * regs)
127 int head = queue->head;
128 int maxhead = (queue->tail-1) & (QP_BUF_SIZE-1);
130 add_mouse_randomness(queue->buf[head] = inb(qp_data));
131 if (head != maxhead) {
132 head++;
133 head &= QP_BUF_SIZE-1;
135 queue->head = head;
136 if (queue->fasync)
137 kill_fasync(queue->fasync, SIGIO);
138 wake_up_interruptible(&queue->proc_list);
141 static int release_qp(struct inode * inode, struct file * file)
143 unsigned char status;
145 fasync_qp(-1, file, 0);
146 if (!--qp_count) {
147 if (!poll_qp_status())
148 printk("Warning: Mouse device busy in release_qp()\n");
149 status = inb_p(qp_status);
150 outb_p(status & ~(QP_ENABLE|QP_INTS_ON), qp_status);
151 if (!poll_qp_status())
152 printk("Warning: Mouse device busy in release_qp()\n");
153 free_irq(QP_IRQ, NULL);
154 MOD_DEC_USE_COUNT;
156 return 0;
160 * Install interrupt handler.
161 * Enable the device, enable interrupts.
164 static int open_qp(struct inode * inode, struct file * file)
166 unsigned char status;
168 if (!qp_present)
169 return -EINVAL;
171 if (qp_count++)
172 return 0;
174 if (request_irq(QP_IRQ, qp_interrupt, 0, "PS/2 Mouse", NULL)) {
175 qp_count--;
176 return -EBUSY;
179 status = inb_p(qp_status);
180 status |= (QP_ENABLE|QP_RESET);
181 outb_p(status, qp_status);
182 status &= ~(QP_RESET);
183 outb_p(status, qp_status);
185 queue->head = queue->tail = 0; /* Flush input queue */
186 status |= QP_INTS_ON;
187 outb_p(status, qp_status); /* Enable interrupts */
189 while (!poll_qp_status()) {
190 printk("Error: Mouse device busy in open_qp()\n");
191 qp_count--;
192 status &= ~(QP_ENABLE|QP_INTS_ON);
193 outb_p(status, qp_status);
194 free_irq(QP_IRQ, NULL);
195 return -EBUSY;
198 outb_p(AUX_ENABLE_DEV, qp_data); /* Wake up mouse */
199 MOD_INC_USE_COUNT;
200 return 0;
204 * Write to the 82C710 mouse device.
207 static ssize_t write_qp(struct file * file, const char * buffer,
208 size_t count, loff_t *ppos)
210 ssize_t i = count;
212 while (i--) {
213 char c;
214 if (!poll_qp_status())
215 return -EIO;
216 get_user(c, buffer++);
217 outb_p(c, qp_data);
219 file->f_dentry->d_inode->i_mtime = CURRENT_TIME;
220 return count;
223 static unsigned int poll_qp(struct file *file, poll_table * wait)
225 poll_wait(file, &queue->proc_list, wait);
226 if (!queue_empty())
227 return POLLIN | POLLRDNORM;
228 return 0;
232 * Wait for device to send output char and flush any input char.
235 #define MAX_RETRIES (60)
237 static int poll_qp_status(void)
239 int retries=0;
241 while ((inb(qp_status)&(QP_RX_FULL|QP_TX_IDLE|QP_DEV_IDLE))
242 != (QP_DEV_IDLE|QP_TX_IDLE)
243 && retries < MAX_RETRIES) {
245 if (inb_p(qp_status)&(QP_RX_FULL))
246 inb_p(qp_data);
247 current->state = TASK_INTERRUPTIBLE;
248 schedule_timeout((5*HZ + 99) / 100);
249 retries++;
251 return !(retries==MAX_RETRIES);
255 * Put bytes from input queue to buffer.
258 static ssize_t read_qp(struct file * file, char * buffer,
259 size_t count, loff_t *ppos)
261 DECLARE_WAITQUEUE(wait, current);
262 ssize_t i = count;
263 unsigned char c;
265 if (queue_empty()) {
266 if (file->f_flags & O_NONBLOCK)
267 return -EAGAIN;
268 add_wait_queue(&queue->proc_list, &wait);
269 repeat:
270 current->state = TASK_INTERRUPTIBLE;
271 if (queue_empty() && !signal_pending(current)) {
272 schedule();
273 goto repeat;
275 current->state = TASK_RUNNING;
276 remove_wait_queue(&queue->proc_list, &wait);
278 while (i > 0 && !queue_empty()) {
279 c = get_from_queue();
280 put_user(c, buffer++);
281 i--;
283 if (count-i) {
284 file->f_dentry->d_inode->i_atime = CURRENT_TIME;
285 return count-i;
287 if (signal_pending(current))
288 return -ERESTARTSYS;
289 return 0;
292 struct file_operations qp_fops = {
293 NULL, /* seek */
294 read_qp,
295 write_qp,
296 NULL, /* readdir */
297 poll_qp,
298 NULL, /* ioctl */
299 NULL, /* mmap */
300 open_qp,
301 NULL, /* flush */
302 release_qp,
303 NULL,
304 fasync_qp,
308 * Initialize driver.
310 static struct miscdevice qp_mouse = {
311 PSMOUSE_MINOR, "QPmouse", &qp_fops
315 * Function to read register in 82C710.
318 static inline unsigned char read_710(unsigned char index)
320 outb_p(index, 0x390); /* Write index */
321 return inb_p(0x391); /* Read the data */
326 * See if we can find a 82C710 device. Read mouse address.
329 static int __init probe_qp(void)
331 outb_p(0x55, 0x2fa); /* Any value except 9, ff or 36 */
332 outb_p(0xaa, 0x3fa); /* Inverse of 55 */
333 outb_p(0x36, 0x3fa); /* Address the chip */
334 outb_p(0xe4, 0x3fa); /* 390/4; 390 = config address */
335 outb_p(0x1b, 0x2fa); /* Inverse of e4 */
336 if (read_710(0x0f) != 0xe4) /* Config address found? */
337 return 0; /* No: no 82C710 here */
338 qp_data = read_710(0x0d)*4; /* Get mouse I/O address */
339 qp_status = qp_data+1;
340 outb_p(0x0f, 0x390);
341 outb_p(0x0f, 0x391); /* Close config mode */
342 return 1;
345 int __init qpmouse_init(void)
347 if (!probe_qp())
348 return -EIO;
350 printk(KERN_INFO "82C710 type pointing device detected -- driver installed.\n");
351 /* printk("82C710 address = %x (should be 0x310)\n", qp_data); */
352 qp_present = 1;
353 misc_register(&qp_mouse);
354 queue = (struct qp_queue *) kmalloc(sizeof(*queue), GFP_KERNEL);
355 memset(queue, 0, sizeof(*queue));
356 queue->head = queue->tail = 0;
357 init_waitqueue_head(&queue->proc_list);
359 return 0;
362 #ifdef MODULE
363 int init_module(void)
365 return qpmouse_init();
368 void cleanup_module(void)
370 misc_deregister(&qp_mouse);
371 kfree(queue);
373 #endif