blob: 36e57deacd03543b885c79c67601d206a56e290a [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * ICS MK712 touchscreen controller driver
3 *
4 * Copyright (c) 1999-2002 Transmeta Corporation
5 * Copyright (c) 2005 Rick Koch <n1gp@hotmail.com>
6 * Copyright (c) 2005 Vojtech Pavlik <vojtech@suse.cz>
7 */
8
9/*
10 * This program is free software; you can redistribute it and/or modify it
11 * under the terms of the GNU General Public License version 2 as published by
12 * the Free Software Foundation.
13 */
14
15/*
16 * This driver supports the ICS MicroClock MK712 TouchScreen controller,
17 * found in Gateway AOL Connected Touchpad computers.
18 *
19 * Documentation for ICS MK712 can be found at:
Justin P. Mattock631dd1a2010-10-18 11:03:14 +020020 * http://www.idt.com/products/getDoc.cfm?docID=18713923
Linus Torvalds1da177e2005-04-16 15:20:36 -070021 */
22
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 * 2005-01-18: Ported to 2.6 from 2.4.28, Rick Koch
34 * 2005-02-05: Rewritten for the input layer, Vojtech Pavlik
35 *
36 */
37
38#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <linux/kernel.h>
40#include <linux/init.h>
41#include <linux/errno.h>
42#include <linux/delay.h>
43#include <linux/ioport.h>
44#include <linux/interrupt.h>
45#include <linux/input.h>
46#include <asm/io.h>
47
48MODULE_AUTHOR("Daniel Quinlan <quinlan@pathname.com>, Vojtech Pavlik <vojtech@suse.cz>");
49MODULE_DESCRIPTION("ICS MicroClock MK712 TouchScreen driver");
50MODULE_LICENSE("GPL");
51
52static unsigned int mk712_io = 0x260; /* Also 0x200, 0x208, 0x300 */
53module_param_named(io, mk712_io, uint, 0);
54MODULE_PARM_DESC(io, "I/O base address of MK712 touchscreen controller");
55
56static unsigned int mk712_irq = 10; /* Also 12, 14, 15 */
57module_param_named(irq, mk712_irq, uint, 0);
58MODULE_PARM_DESC(irq, "IRQ of MK712 touchscreen controller");
59
60/* eight 8-bit registers */
61#define MK712_STATUS 0
62#define MK712_X 2
63#define MK712_Y 4
64#define MK712_CONTROL 6
65#define MK712_RATE 7
66
67/* status */
68#define MK712_STATUS_TOUCH 0x10
69#define MK712_CONVERSION_COMPLETE 0x80
70
71/* control */
72#define MK712_ENABLE_INT 0x01
73#define MK712_INT_ON_CONVERSION_COMPLETE 0x02
74#define MK712_INT_ON_CHANGE_IN_TOUCH_STATUS 0x04
75#define MK712_ENABLE_PERIODIC_CONVERSIONS 0x10
76#define MK712_READ_ONE_POINT 0x20
77#define MK712_POWERUP 0x40
78
Dmitry Torokhoveca1ed12005-09-15 02:01:46 -050079static struct input_dev *mk712_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -070080static DEFINE_SPINLOCK(mk712_lock);
81
David Howells7d12e782006-10-05 14:55:46 +010082static irqreturn_t mk712_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -070083{
84 unsigned char status;
85 static int debounce = 1;
86 static unsigned short last_x;
87 static unsigned short last_y;
88
89 spin_lock(&mk712_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
91 status = inb(mk712_io + MK712_STATUS);
92
93 if (~status & MK712_CONVERSION_COMPLETE) {
94 debounce = 1;
95 goto end;
96 }
97
Dmitry Torokhov52c1f572006-11-05 22:40:03 -050098 if (~status & MK712_STATUS_TOUCH) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 debounce = 1;
Dmitry Torokhoveca1ed12005-09-15 02:01:46 -0500100 input_report_key(mk712_dev, BTN_TOUCH, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 goto end;
102 }
103
Dmitry Torokhov52c1f572006-11-05 22:40:03 -0500104 if (debounce) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 debounce = 0;
106 goto end;
107 }
108
Dmitry Torokhoveca1ed12005-09-15 02:01:46 -0500109 input_report_key(mk712_dev, BTN_TOUCH, 1);
110 input_report_abs(mk712_dev, ABS_X, last_x);
111 input_report_abs(mk712_dev, ABS_Y, last_y);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112
Dmitry Torokhov52c1f572006-11-05 22:40:03 -0500113 end:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 last_x = inw(mk712_io + MK712_X) & 0x0fff;
115 last_y = inw(mk712_io + MK712_Y) & 0x0fff;
Dmitry Torokhoveca1ed12005-09-15 02:01:46 -0500116 input_sync(mk712_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 spin_unlock(&mk712_lock);
118 return IRQ_HANDLED;
119}
120
121static int mk712_open(struct input_dev *dev)
122{
123 unsigned long flags;
124
125 spin_lock_irqsave(&mk712_lock, flags);
126
Dmitry Torokhovaf246042005-05-29 02:29:45 -0500127 outb(0, mk712_io + MK712_CONTROL); /* Reset */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128
Dmitry Torokhovaf246042005-05-29 02:29:45 -0500129 outb(MK712_ENABLE_INT | MK712_INT_ON_CONVERSION_COMPLETE |
130 MK712_INT_ON_CHANGE_IN_TOUCH_STATUS |
131 MK712_ENABLE_PERIODIC_CONVERSIONS |
132 MK712_POWERUP, mk712_io + MK712_CONTROL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
Dmitry Torokhovaf246042005-05-29 02:29:45 -0500134 outb(10, mk712_io + MK712_RATE); /* 187 points per second */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
136 spin_unlock_irqrestore(&mk712_lock, flags);
137
138 return 0;
139}
140
141static void mk712_close(struct input_dev *dev)
142{
143 unsigned long flags;
144
145 spin_lock_irqsave(&mk712_lock, flags);
146
Dmitry Torokhovaf246042005-05-29 02:29:45 -0500147 outb(0, mk712_io + MK712_CONTROL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
149 spin_unlock_irqrestore(&mk712_lock, flags);
150}
151
Adrian Bunkffc6b5292006-01-29 21:51:07 -0500152static int __init mk712_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153{
Dmitry Torokhoveca1ed12005-09-15 02:01:46 -0500154 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155
Dmitry Torokhoveca1ed12005-09-15 02:01:46 -0500156 if (!request_region(mk712_io, 8, "mk712")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 printk(KERN_WARNING "mk712: unable to get IO region\n");
158 return -ENODEV;
159 }
160
161 outb(0, mk712_io + MK712_CONTROL);
162
163 if ((inw(mk712_io + MK712_X) & 0xf000) || /* Sanity check */
164 (inw(mk712_io + MK712_Y) & 0xf000) ||
165 (inw(mk712_io + MK712_STATUS) & 0xf333)) {
166 printk(KERN_WARNING "mk712: device not present\n");
Dmitry Torokhoveca1ed12005-09-15 02:01:46 -0500167 err = -ENODEV;
Dmitry Torokhov52c1f572006-11-05 22:40:03 -0500168 goto fail1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 }
170
Dmitry Torokhov52c1f572006-11-05 22:40:03 -0500171 mk712_dev = input_allocate_device();
172 if (!mk712_dev) {
Dmitry Torokhoveca1ed12005-09-15 02:01:46 -0500173 printk(KERN_ERR "mk712: not enough memory\n");
174 err = -ENOMEM;
Dmitry Torokhov52c1f572006-11-05 22:40:03 -0500175 goto fail1;
Dmitry Torokhoveca1ed12005-09-15 02:01:46 -0500176 }
177
178 mk712_dev->name = "ICS MicroClock MK712 TouchScreen";
179 mk712_dev->phys = "isa0260/input0";
180 mk712_dev->id.bustype = BUS_ISA;
181 mk712_dev->id.vendor = 0x0005;
182 mk712_dev->id.product = 0x0001;
183 mk712_dev->id.version = 0x0100;
184
185 mk712_dev->open = mk712_open;
186 mk712_dev->close = mk712_close;
187
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700188 mk712_dev->evbit[0] = BIT_MASK(EV_KEY) | BIT_MASK(EV_ABS);
189 mk712_dev->keybit[BIT_WORD(BTN_TOUCH)] = BIT_MASK(BTN_TOUCH);
Dmitry Torokhoveca1ed12005-09-15 02:01:46 -0500190 input_set_abs_params(mk712_dev, ABS_X, 0, 0xfff, 88, 0);
191 input_set_abs_params(mk712_dev, ABS_Y, 0, 0xfff, 88, 0);
192
193 if (request_irq(mk712_irq, mk712_interrupt, 0, "mk712", mk712_dev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 printk(KERN_WARNING "mk712: unable to get IRQ\n");
Dmitry Torokhoveca1ed12005-09-15 02:01:46 -0500195 err = -EBUSY;
Dmitry Torokhov52c1f572006-11-05 22:40:03 -0500196 goto fail1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 }
198
Dmitry Torokhov52c1f572006-11-05 22:40:03 -0500199 err = input_register_device(mk712_dev);
200 if (err)
201 goto fail2;
202
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 return 0;
Dmitry Torokhoveca1ed12005-09-15 02:01:46 -0500204
Dmitry Torokhov52c1f572006-11-05 22:40:03 -0500205 fail2: free_irq(mk712_irq, mk712_dev);
206 fail1: input_free_device(mk712_dev);
Dmitry Torokhoveca1ed12005-09-15 02:01:46 -0500207 release_region(mk712_io, 8);
208 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209}
210
211static void __exit mk712_exit(void)
212{
Dmitry Torokhoveca1ed12005-09-15 02:01:46 -0500213 input_unregister_device(mk712_dev);
214 free_irq(mk712_irq, mk712_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 release_region(mk712_io, 8);
216}
217
218module_init(mk712_init);
219module_exit(mk712_exit);