mk712.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:13k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* -*- c -*- --------------------------------------------------------- *
  2.  *
  3.  * linux/drivers/char/mk712.c
  4.  *
  5.  * Copyright 1999-2002 Transmeta Corporation
  6.  *
  7.  * This program is free software; you can redistribute it and/or modify
  8.  * it under the terms of the GNU General Public License as published by
  9.  * the Free Software Foundation; either version 2 of the License, or
  10.  * (at your option) any later version.
  11.  *
  12.  * This program is distributed in the hope that it will be useful,
  13.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15.  * GNU General Public License for more details.
  16.  *
  17.  * You should have received a copy of the GNU General Public License
  18.  * along with this program; if not, write to the Free Software
  19.  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  20.  *
  21.  * This driver supports the MK712 touch screen.
  22.  * based on busmouse.c, pc_keyb.c, and other mouse drivers
  23.  *
  24.  * 1999-12-18: original version, Daniel Quinlan
  25.  * 1999-12-19: added anti-jitter code, report pen-up events, fixed mk712_poll
  26.  *             to use queue_empty, Nathan Laredo
  27.  * 1999-12-20: improved random point rejection, Nathan Laredo
  28.  * 2000-01-05: checked in new anti-jitter code, changed mouse protocol, fixed
  29.  *             queue code, added module options, other fixes, Daniel Quinlan
  30.  * 2002-03-15: Clean up for kernel merge <alan@redhat.com>
  31.  *        Fixed multi open race, fixed memory checks, fixed resource
  32.  *        allocation, fixed close/powerdown bug, switched to new init
  33.  *
  34.  * ------------------------------------------------------------------------- */
  35. #include <linux/module.h>
  36. #include <linux/kernel.h>
  37. #include <linux/sched.h>
  38. #include <linux/init.h>
  39. #include <linux/signal.h>
  40. #include <linux/errno.h>
  41. #include <linux/mm.h>
  42. #include <linux/poll.h>
  43. #include <linux/miscdevice.h>
  44. #include <linux/random.h>
  45. #include <linux/delay.h>
  46. #include <linux/ioport.h>
  47. #include <linux/slab.h>
  48. #include <linux/interrupt.h>
  49. #include <asm/io.h>
  50. #include <asm/uaccess.h>
  51. #include <asm/system.h>
  52. #include <asm/irq.h>
  53. #define DEBUG(x) x
  54. #define SQUARE(x) ((x)*(x))
  55. #define MK712_DEFAULT_IO 0x260 /* demo board: 0x200, 0x208, 0x300 */
  56. #define MK712_DEFAULT_IRQ 10 /* demo board: 10, 12, 14 or 15  */
  57. /* eight 8-bit registers */
  58. #define MK712_STATUS_LOW 0 /* READ */
  59. #define MK712_STATUS_HIGH 1 /* READ */
  60. #define MK712_X_LOW 2 /* READ */
  61. #define MK712_X_HIGH 3 /* READ */
  62. #define MK712_Y_LOW 4 /* READ */
  63. #define MK712_Y_HIGH 5 /* READ */
  64. #define MK712_CONTROL 6 /* R/W */
  65. #define MK712_RATE 7 /* R/W */
  66. /* status */
  67. #define MK712_STATUS_TOUCH 0x10
  68. #define MK712_CONVERSION_COMPLETE 0x80
  69. #define MK712_ENABLE_INT 0x01 /* enable interrupts */
  70. #define MK712_INT_ON_CONVERSION_COMPLETE 0x02 /* if bit 0 = 1 */
  71. #define MK712_INT_ON_CHANGE_IN_TOUCH_STATUS_A 0x04 /* if bit 0 = 1 */
  72. #define MK712_INT_ON_CHANGE_IN_TOUCH_STATUS_B 0x08 /* if bit 0 = 1 */
  73. #define MK712_ENABLE_PERIODIC_CONVERSIONS 0x10
  74. #define MK712_READ_ONE_POINT 0x20
  75. #define MK712_POWERDOWN_A 0x40
  76. #define MK712_POWERDOWN_B 0x80
  77. #define MK712_BUF_SIZE 256      /* a page */
  78. struct mk712_packet {
  79.         unsigned int header;
  80.         unsigned int x;
  81.         unsigned int y;
  82.         unsigned int reserved;
  83. };
  84. struct mk712_queue {
  85. unsigned long head;
  86. unsigned long tail;
  87. wait_queue_head_t proc_list;
  88. struct fasync_struct *fasync;
  89. struct mk712_packet buf[256];
  90. };
  91. #ifdef MODULE
  92. static int io = 0;
  93. static int irq = 0;
  94. #endif
  95. static int mk712_io = MK712_DEFAULT_IO;
  96. static int mk712_irq = MK712_DEFAULT_IRQ;
  97. static int mk712_users = 0;
  98. static spinlock_t mk712_lock = SPIN_LOCK_UNLOCKED;
  99. static struct mk712_queue *queue; /* mouse data buffer */
  100. static struct mk712_packet get_from_queue(void)
  101. {
  102. struct mk712_packet result;
  103. unsigned long flags;
  104. spin_lock_irqsave(&mk712_lock, flags);
  105. result = queue->buf[queue->tail];
  106. queue->tail = (queue->tail + 1) & (MK712_BUF_SIZE-1);
  107. spin_unlock_irqrestore(&mk712_lock, flags);
  108. return result;
  109. }
  110. static inline int queue_empty(void)
  111. {
  112. return queue->head == queue->tail;
  113. }
  114. static int mk712_fasync(int fd, struct file *filp, int on)
  115. {
  116. int retval;
  117. retval = fasync_helper(fd, filp, on, &queue->fasync);
  118. if (retval < 0)
  119. return retval;
  120. return 0;
  121. }
  122. static void mk712_output_packet(struct mk712_packet data)
  123. {
  124.         int head = queue->head;
  125.         queue->buf[head] = data;
  126.         head = (head + 1) & (MK712_BUF_SIZE-1);
  127.         if (head != queue->tail) {
  128.                 queue->head = head;
  129.                 kill_fasync(&queue->fasync, SIGIO, POLL_IN);
  130.                 wake_up_interruptible(&queue->proc_list);
  131.         }
  132. }
  133. static int points = 0;          /* number of stored points */
  134. static int output_point = 0;    /* did I output a point since last release? */
  135. static void mk712_output_point(int x, int y)
  136. {
  137.         struct mk712_packet t;
  138.         t.header = 0;
  139.         t.x = x;
  140.         t.y = y;
  141.         t.reserved = 0;
  142.         mk712_output_packet(t);
  143.         output_point = 1;
  144. }
  145. static void mk712_store_point(int x_new, int y_new)
  146. {
  147.         static int x[3], y[3];
  148.         int x_out, y_out;
  149.         x[points] = x_new;
  150.         y[points] = y_new;
  151.         if (points == 1 && abs(x[0] - x[1]) < 88 && abs(y[0] - y[1]) < 88)
  152. {
  153. x_out = (x[0] + x[1]) >> 1;
  154.                 y_out = (y[0] + y[1]) >> 1;
  155.                 mk712_output_point(x_out, y_out);
  156.         }
  157.         if (points == 2) {
  158.                 if ((abs(x[1] - x[2]) < 88 && abs(y[1] - y[2]) < 88) &&
  159.                     (abs(x[0] - x[1]) < 88 && abs(y[0] - y[1]) < 88))
  160.                 {
  161.                         x_out = (x[0] + x[1] + x[2]) / 3;
  162.                         y_out = (y[0] + y[1] + y[2]) / 3;
  163.                         mk712_output_point(x_out, y_out);
  164.                 }
  165.                 else if (abs(x[1] - x[2]) < 88 && abs(y[1] - y[2]) < 88)
  166.                 {
  167.                         x_out = (x[1] + x[2]) >> 1;
  168.                         y_out = (y[1] + y[2]) >> 1;
  169.                         mk712_output_point(x_out, y_out);
  170.                 }
  171.                 else
  172.                 {
  173.                         int x_avg, y_avg, d0, d1, d2;
  174.                         x_avg = (x[0] + x[1] + x[2]) / 3;
  175.                         y_avg = (y[0] + y[1] + y[2]) / 3;
  176.                         d0 = SQUARE(x[0] - x_avg) + SQUARE(y[0] - y_avg);
  177.                         d1 = SQUARE(x[1] - x_avg) + SQUARE(y[1] - y_avg);
  178.                         d2 = SQUARE(x[2] - x_avg) + SQUARE(y[2] - y_avg);
  179.                         if (d2 > d1 && d2 > d0)
  180. {
  181.                                 x_out = (x[0] + x[1]) >> 1;
  182.                                 y_out = (y[0] + y[1]) >> 1;
  183.                         }
  184.                         if (d1 > d0 && d1 > d2)
  185. {
  186.                                 x_out = (x[0] + x[2]) >> 1;
  187.                                 y_out = (y[0] + y[2]) >> 1;
  188.                         }
  189.                         else
  190.                         {
  191.                                 x_out = (x[1] + x[2]) >> 1;
  192.                                 y_out = (y[1] + y[2]) >> 1;
  193.                         }
  194.                         mk712_output_point(x_out, y_out);
  195.                         x[0] = x[1];
  196.                         x[1] = x[2];
  197.                         y[0] = y[1];
  198.                         y[1] = y[2];
  199.                 }
  200.         }
  201.         else
  202. {
  203.                 points++;
  204.         }
  205. }
  206. static void mk712_release_event(void)
  207. {
  208.         struct mk712_packet t;
  209.         if (!output_point) {
  210.                 points = 0;
  211.                 return;
  212.         }
  213.         output_point = 0;
  214.         t.header = 1;
  215.         t.x = t.y = t.reserved = 0;
  216.         mk712_output_packet(t);
  217.         points = 0;
  218. }
  219. #define MK712_FILTER
  220. static void mk712_interrupt(int irq, void *dev_id, struct pt_regs *regs)
  221. {
  222. unsigned short x;
  223. unsigned short y;
  224.         unsigned char status;
  225. unsigned long flags;
  226. #ifdef MK712_FILTER
  227.         static int drop_next = 1;
  228. #endif
  229. spin_lock_irqsave(&mk712_lock, flags);
  230.         status = inb(mk712_io + MK712_STATUS_LOW);
  231. if (!(status & MK712_CONVERSION_COMPLETE)) {
  232. #ifdef MK712_FILTER
  233.                 drop_next = 1;
  234. #endif
  235. return;
  236. }
  237. if (!(status & MK712_STATUS_TOUCH)) /* release event */
  238. {
  239. #ifdef MK712_FILTER
  240.                 drop_next = 1;
  241. #endif
  242.                 mk712_release_event();
  243.                 spin_unlock_irqrestore(&mk712_lock, flags);
  244.                 wake_up_interruptible(&queue->proc_list);
  245. return;
  246. }
  247.         x = inw(mk712_io + MK712_X_LOW) & 0x0fff;
  248.         y = inw(mk712_io + MK712_Y_LOW) & 0x0fff;
  249. #ifdef MK712_FILTER
  250.         if (drop_next)
  251.         {
  252.                 drop_next = 0;
  253.                 spin_unlock_irqrestore(&mk712_lock, flags);
  254.                 wake_up_interruptible(&queue->proc_list);
  255.                 return;
  256.         }
  257. #endif
  258.         x = inw(mk712_io + MK712_X_LOW) & 0x0fff;
  259. y = inw(mk712_io + MK712_Y_LOW) & 0x0fff;
  260.         mk712_store_point(x, y);
  261.         spin_unlock_irqrestore(&mk712_lock, flags);
  262.         wake_up_interruptible(&queue->proc_list);
  263. }
  264. static int mk712_open(struct inode *inode, struct file *file) 
  265. {
  266. unsigned char control;
  267. unsigned long flags;
  268. control = 0;
  269. spin_lock_irqsave(&mk712_lock, flags);
  270. if(!mk712_users++)
  271. {
  272. outb(0, mk712_io + MK712_CONTROL);
  273. control |= (MK712_ENABLE_INT |
  274.                     MK712_INT_ON_CONVERSION_COMPLETE |
  275.                     MK712_INT_ON_CHANGE_IN_TOUCH_STATUS_B |
  276.                     MK712_ENABLE_PERIODIC_CONVERSIONS |
  277.                     MK712_POWERDOWN_A);
  278. outb(control, mk712_io + MK712_CONTROL);
  279.         outb(10, mk712_io + MK712_RATE); /* default count = 10 */
  280. queue->head = queue->tail = 0;          /* Flush input queue */
  281. }
  282. spin_unlock_irqrestore(&mk712_lock, flags);
  283. return 0;
  284. }
  285. static int mk712_close(struct inode * inode, struct file * file) {
  286.         /* power down controller */
  287.         unsigned long flags;
  288.         spin_lock_irqsave(&mk712_lock, flags);
  289. if(--mk712_users==0)
  290. outb(0, mk712_io + MK712_CONTROL);
  291. spin_unlock_irqrestore(&mk712_lock, flags);
  292. return 0;
  293. }
  294. static unsigned int mk712_poll(struct file *file, poll_table *wait)
  295. {
  296. poll_wait(file, &queue->proc_list, wait);
  297. if(!queue_empty())
  298. return POLLIN | POLLRDNORM;
  299. return 0;
  300. }
  301. static int mk712_ioctl(struct inode *inode, struct file * file,
  302. unsigned int cmd, unsigned long arg)
  303. {
  304. if (!inode)
  305. BUG();
  306. return -ENOTTY;
  307. }
  308. static ssize_t mk712_read(struct file *file, char *buffer,
  309.   size_t count, loff_t *pos)
  310. {
  311. DECLARE_WAITQUEUE(wait, current);
  312. ssize_t bytes_read = 0;
  313. struct mk712_packet p;
  314. /* wait for an event */
  315. if (queue_empty()) {
  316. if (file->f_flags & O_NONBLOCK)
  317. return -EAGAIN;
  318. add_wait_queue(&queue->proc_list, &wait);
  319. repeat:
  320. set_current_state(TASK_INTERRUPTIBLE);
  321. if (queue_empty() && !signal_pending(current)) {
  322. schedule();
  323. goto repeat;
  324. }
  325. current->state = TASK_RUNNING;
  326. remove_wait_queue(&queue->proc_list, &wait);
  327. }
  328. while (bytes_read < count && !queue_empty()) {
  329. p = get_from_queue();
  330. if (copy_to_user (buffer+bytes_read, (void *) &p, sizeof(p)))
  331. {
  332. bytes_read = -EFAULT;
  333. break;
  334. }
  335. bytes_read += sizeof(p);
  336. }
  337.         if (bytes_read > 0)
  338.         {
  339.                 file->f_dentry->d_inode->i_atime = CURRENT_TIME;
  340.                 return bytes_read;
  341.         }
  342. if (signal_pending(current))
  343. return -ERESTARTSYS;
  344. return bytes_read;
  345. }
  346. static ssize_t mk712_write(struct file *file, const char *buffer, size_t count,
  347.    loff_t *ppos)
  348. {
  349. return -EINVAL;
  350. }
  351. struct file_operations mk712_fops = {
  352. owner: THIS_MODULE,
  353. read: mk712_read,
  354. write: mk712_write,
  355. poll: mk712_poll,
  356. ioctl: mk712_ioctl,
  357. open: mk712_open,
  358. release: mk712_close,
  359. fasync: mk712_fasync,
  360. };
  361. static struct miscdevice mk712_touchscreen = {
  362. MK712_MINOR, "mk712_touchscreen", &mk712_fops
  363. };
  364. int __init mk712_init(void)
  365. {
  366. #ifdef MODULE
  367.         if (io)
  368.                 mk712_io = io;
  369.         if (irq)
  370.                 mk712_irq = irq;
  371. #endif
  372. if(!request_region(mk712_io, 8, "mk712_touchscreen"))
  373. {
  374. printk("mk712: unable to get IO regionn");
  375. return -ENODEV;
  376. }
  377. /* set up wait queue */
  378. queue = (struct mk712_queue *) kmalloc(sizeof(*queue), GFP_KERNEL);
  379. if(queue == NULL)
  380. {
  381. release_region(mk712_io, 8);
  382. return -ENOMEM;
  383. }
  384. memset(queue, 0, sizeof(*queue));
  385. queue->head = queue->tail = 0;
  386. init_waitqueue_head(&queue->proc_list);
  387.         /* The MK712 is ISA and hard-coded to a particular IRQ, so the
  388.            driver should keep the IRQ as long as it is loaded. */
  389. if(request_irq(mk712_irq, mk712_interrupt, 0, "mk712_touchscreen",
  390.        queue))
  391. {
  392. printk("mk712: unable to get IRQn");
  393. release_region(mk712_io, 8);
  394. kfree(queue);
  395. return -EBUSY;
  396. }
  397.         /* register misc device */
  398. if(misc_register(&mk712_touchscreen)<0)
  399. {
  400. release_region(mk712_io, 8);
  401. kfree(queue);
  402. free_irq(mk712_irq, queue);
  403. return -ENODEV;
  404. }
  405. return 0;
  406. }
  407. static void __exit mk712_exit(void)
  408. {
  409. misc_deregister(&mk712_touchscreen);
  410. release_region(mk712_io, 8);
  411. free_irq(mk712_irq, queue);
  412. kfree(queue);
  413. printk(KERN_INFO "mk712 touchscreen uninstalledn");
  414. }
  415. MODULE_AUTHOR("Daniel Quinlan");
  416. MODULE_DESCRIPTION("MK712 touch screen driver");
  417. MODULE_PARM(io, "i");
  418. MODULE_PARM_DESC(io, "I/O base address of MK712 touch screen controller");
  419. MODULE_PARM(irq, "i");
  420. MODULE_PARM_DESC(irq, "IRQ of MK712 touch screen controller");
  421. MODULE_LICENSE("GPL");
  422. module_init(mk712_init);
  423. module_exit(mk712_exit);
  424. /*
  425.  * Local variables:
  426.  * c-file-style: "linux"
  427.  * End:
  428.  */