blob: 7387f97a294194b607115096510f2119d76902d0 [file] [log] [blame]
Robert Love860e1d62005-08-31 23:57:59 -04001/*
Jean Delvarebd9fc3a2010-10-05 12:08:57 +02002 * hdaps.c - driver for IBM's Hard Drive Active Protection System
Robert Love860e1d62005-08-31 23:57:59 -04003 *
4 * Copyright (C) 2005 Robert Love <rml@novell.com>
5 * Copyright (C) 2005 Jesper Juhl <jesper.juhl@gmail.com>
6 *
Robert Love4c87b742005-09-22 21:44:00 -07007 * The HardDisk Active Protection System (hdaps) is present in IBM ThinkPads
8 * starting with the R40, T41, and X40. It provides a basic two-axis
9 * accelerometer and other data, such as the device's temperature.
Robert Love860e1d62005-08-31 23:57:59 -040010 *
Robert Love393ad292005-09-16 19:28:07 -070011 * This driver is based on the document by Mark A. Smith available at
Robert Love860e1d62005-08-31 23:57:59 -040012 * http://www.almaden.ibm.com/cs/people/marksmith/tpaps.html and a lot of trial
13 * and error.
14 *
15 * This program is free software; you can redistribute it and/or modify it
16 * under the terms of the GNU General Public License v2 as published by the
17 * Free Software Foundation.
18 *
19 * This program is distributed in the hope that it will be useful, but WITHOUT
20 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
21 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
22 * more details.
23 *
24 * You should have received a copy of the GNU General Public License along with
25 * this program; if not, write to the Free Software Foundation, Inc.,
26 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
27 */
28
Joe Perches611f5762011-03-29 15:21:40 -070029#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
30
Robert Love860e1d62005-08-31 23:57:59 -040031#include <linux/delay.h>
Russell Kingd052d1b2005-10-29 19:07:23 +010032#include <linux/platform_device.h>
Dmitry Torokhovaefca8b2007-10-12 21:30:36 -040033#include <linux/input-polldev.h>
Robert Love860e1d62005-08-31 23:57:59 -040034#include <linux/kernel.h>
Matthias Kaehlcke6acc3692007-05-08 00:32:05 -070035#include <linux/mutex.h>
Robert Love860e1d62005-08-31 23:57:59 -040036#include <linux/module.h>
37#include <linux/timer.h>
38#include <linux/dmi.h>
Al Viro914e2632006-10-18 13:55:46 -040039#include <linux/jiffies.h>
H Hartley Sweeten6055fae2009-09-15 17:18:13 +020040#include <linux/io.h>
Robert Love860e1d62005-08-31 23:57:59 -040041
42#define HDAPS_LOW_PORT 0x1600 /* first port used by hdaps */
Robert Love393ad292005-09-16 19:28:07 -070043#define HDAPS_NR_PORTS 0x30 /* number of ports: 0x1600 - 0x162f */
Robert Love860e1d62005-08-31 23:57:59 -040044
45#define HDAPS_PORT_STATE 0x1611 /* device state */
46#define HDAPS_PORT_YPOS 0x1612 /* y-axis position */
47#define HDAPS_PORT_XPOS 0x1614 /* x-axis position */
Jean Delvare0a704682006-06-04 20:10:55 +020048#define HDAPS_PORT_TEMP1 0x1616 /* device temperature, in Celsius */
Robert Love860e1d62005-08-31 23:57:59 -040049#define HDAPS_PORT_YVAR 0x1617 /* y-axis variance (what is this?) */
50#define HDAPS_PORT_XVAR 0x1619 /* x-axis variance (what is this?) */
51#define HDAPS_PORT_TEMP2 0x161b /* device temperature (again?) */
52#define HDAPS_PORT_UNKNOWN 0x161c /* what is this? */
53#define HDAPS_PORT_KMACT 0x161d /* keyboard or mouse activity */
54
Robert Love393ad292005-09-16 19:28:07 -070055#define STATE_FRESH 0x50 /* accelerometer data is fresh */
Robert Love860e1d62005-08-31 23:57:59 -040056
57#define KEYBD_MASK 0x20 /* set if keyboard activity */
58#define MOUSE_MASK 0x40 /* set if mouse activity */
59#define KEYBD_ISSET(n) (!! (n & KEYBD_MASK)) /* keyboard used? */
60#define MOUSE_ISSET(n) (!! (n & MOUSE_MASK)) /* mouse used? */
61
62#define INIT_TIMEOUT_MSECS 4000 /* wait up to 4s for device init ... */
63#define INIT_WAIT_MSECS 200 /* ... in 200ms increments */
64
Dmitry Torokhovaefca8b2007-10-12 21:30:36 -040065#define HDAPS_POLL_INTERVAL 50 /* poll for input every 1/20s (50 ms)*/
Robert Love393ad292005-09-16 19:28:07 -070066#define HDAPS_INPUT_FUZZ 4 /* input event threshold */
Dmitry Torokhovd12eb7e2005-11-10 22:10:55 -050067#define HDAPS_INPUT_FLAT 4
Robert Love393ad292005-09-16 19:28:07 -070068
Frank Seidel2b8cf3e2009-03-30 21:46:41 +020069#define HDAPS_X_AXIS (1 << 0)
70#define HDAPS_Y_AXIS (1 << 1)
71#define HDAPS_BOTH_AXES (HDAPS_X_AXIS | HDAPS_Y_AXIS)
72
Robert Love393ad292005-09-16 19:28:07 -070073static struct platform_device *pdev;
Dmitry Torokhovaefca8b2007-10-12 21:30:36 -040074static struct input_polled_dev *hdaps_idev;
Robert Love860e1d62005-08-31 23:57:59 -040075static unsigned int hdaps_invert;
76static u8 km_activity;
77static int rest_x;
78static int rest_y;
79
Matthias Kaehlcke6acc3692007-05-08 00:32:05 -070080static DEFINE_MUTEX(hdaps_mtx);
Robert Love860e1d62005-08-31 23:57:59 -040081
82/*
Matthias Kaehlcke6acc3692007-05-08 00:32:05 -070083 * __get_latch - Get the value from a given port. Callers must hold hdaps_mtx.
Robert Love860e1d62005-08-31 23:57:59 -040084 */
85static inline u8 __get_latch(u16 port)
86{
Robert Love393ad292005-09-16 19:28:07 -070087 return inb(port) & 0xff;
Robert Love860e1d62005-08-31 23:57:59 -040088}
89
90/*
Robert Love393ad292005-09-16 19:28:07 -070091 * __check_latch - Check a port latch for a given value. Returns zero if the
Matthias Kaehlcke6acc3692007-05-08 00:32:05 -070092 * port contains the given value. Callers must hold hdaps_mtx.
Robert Love860e1d62005-08-31 23:57:59 -040093 */
Robert Love393ad292005-09-16 19:28:07 -070094static inline int __check_latch(u16 port, u8 val)
Robert Love860e1d62005-08-31 23:57:59 -040095{
96 if (__get_latch(port) == val)
97 return 0;
98 return -EINVAL;
99}
100
101/*
102 * __wait_latch - Wait up to 100us for a port latch to get a certain value,
Matthias Kaehlcke6acc3692007-05-08 00:32:05 -0700103 * returning zero if the value is obtained. Callers must hold hdaps_mtx.
Robert Love860e1d62005-08-31 23:57:59 -0400104 */
Robert Love393ad292005-09-16 19:28:07 -0700105static int __wait_latch(u16 port, u8 val)
Robert Love860e1d62005-08-31 23:57:59 -0400106{
107 unsigned int i;
108
109 for (i = 0; i < 20; i++) {
110 if (!__check_latch(port, val))
111 return 0;
112 udelay(5);
113 }
114
Robert Love393ad292005-09-16 19:28:07 -0700115 return -EIO;
Robert Love860e1d62005-08-31 23:57:59 -0400116}
117
118/*
Robert Love393ad292005-09-16 19:28:07 -0700119 * __device_refresh - request a refresh from the accelerometer. Does not wait
Matthias Kaehlcke6acc3692007-05-08 00:32:05 -0700120 * for refresh to complete. Callers must hold hdaps_mtx.
Robert Love860e1d62005-08-31 23:57:59 -0400121 */
Robert Love393ad292005-09-16 19:28:07 -0700122static void __device_refresh(void)
Robert Love860e1d62005-08-31 23:57:59 -0400123{
Robert Love393ad292005-09-16 19:28:07 -0700124 udelay(200);
125 if (inb(0x1604) != STATE_FRESH) {
126 outb(0x11, 0x1610);
127 outb(0x01, 0x161f);
128 }
129}
Robert Love860e1d62005-08-31 23:57:59 -0400130
Robert Love393ad292005-09-16 19:28:07 -0700131/*
132 * __device_refresh_sync - request a synchronous refresh from the
133 * accelerometer. We wait for the refresh to complete. Returns zero if
Matthias Kaehlcke6acc3692007-05-08 00:32:05 -0700134 * successful and nonzero on error. Callers must hold hdaps_mtx.
Robert Love393ad292005-09-16 19:28:07 -0700135 */
136static int __device_refresh_sync(void)
137{
138 __device_refresh();
Robert Love860e1d62005-08-31 23:57:59 -0400139 return __wait_latch(0x1604, STATE_FRESH);
140}
141
142/*
Robert Love393ad292005-09-16 19:28:07 -0700143 * __device_complete - indicate to the accelerometer that we are done reading
Matthias Kaehlcke6acc3692007-05-08 00:32:05 -0700144 * data, and then initiate an async refresh. Callers must hold hdaps_mtx.
Robert Love860e1d62005-08-31 23:57:59 -0400145 */
146static inline void __device_complete(void)
147{
148 inb(0x161f);
149 inb(0x1604);
Robert Love393ad292005-09-16 19:28:07 -0700150 __device_refresh();
Robert Love860e1d62005-08-31 23:57:59 -0400151}
152
153/*
154 * hdaps_readb_one - reads a byte from a single I/O port, placing the value in
155 * the given pointer. Returns zero on success or a negative error on failure.
156 * Can sleep.
157 */
158static int hdaps_readb_one(unsigned int port, u8 *val)
159{
160 int ret;
161
Matthias Kaehlcke6acc3692007-05-08 00:32:05 -0700162 mutex_lock(&hdaps_mtx);
Robert Love860e1d62005-08-31 23:57:59 -0400163
Robert Love393ad292005-09-16 19:28:07 -0700164 /* do a sync refresh -- we need to be sure that we read fresh data */
165 ret = __device_refresh_sync();
166 if (ret)
167 goto out;
168
169 *val = inb(port);
170 __device_complete();
171
172out:
Matthias Kaehlcke6acc3692007-05-08 00:32:05 -0700173 mutex_unlock(&hdaps_mtx);
Robert Love860e1d62005-08-31 23:57:59 -0400174 return ret;
175}
176
Robert Love393ad292005-09-16 19:28:07 -0700177/* __hdaps_read_pair - internal lockless helper for hdaps_read_pair(). */
Robert Love860e1d62005-08-31 23:57:59 -0400178static int __hdaps_read_pair(unsigned int port1, unsigned int port2,
179 int *x, int *y)
180{
181 /* do a sync refresh -- we need to be sure that we read fresh data */
Robert Love393ad292005-09-16 19:28:07 -0700182 if (__device_refresh_sync())
Robert Love860e1d62005-08-31 23:57:59 -0400183 return -EIO;
184
185 *y = inw(port2);
186 *x = inw(port1);
187 km_activity = inb(HDAPS_PORT_KMACT);
188 __device_complete();
189
Frank Seidel2b8cf3e2009-03-30 21:46:41 +0200190 /* hdaps_invert is a bitvector to negate the axes */
191 if (hdaps_invert & HDAPS_X_AXIS)
Robert Love860e1d62005-08-31 23:57:59 -0400192 *x = -*x;
Frank Seidel2b8cf3e2009-03-30 21:46:41 +0200193 if (hdaps_invert & HDAPS_Y_AXIS)
Robert Love860e1d62005-08-31 23:57:59 -0400194 *y = -*y;
Robert Love860e1d62005-08-31 23:57:59 -0400195
196 return 0;
197}
198
199/*
200 * hdaps_read_pair - reads the values from a pair of ports, placing the values
201 * in the given pointers. Returns zero on success. Can sleep.
202 */
203static int hdaps_read_pair(unsigned int port1, unsigned int port2,
204 int *val1, int *val2)
205{
206 int ret;
207
Matthias Kaehlcke6acc3692007-05-08 00:32:05 -0700208 mutex_lock(&hdaps_mtx);
Robert Love860e1d62005-08-31 23:57:59 -0400209 ret = __hdaps_read_pair(port1, port2, val1, val2);
Matthias Kaehlcke6acc3692007-05-08 00:32:05 -0700210 mutex_unlock(&hdaps_mtx);
Robert Love860e1d62005-08-31 23:57:59 -0400211
212 return ret;
213}
214
Robert Love393ad292005-09-16 19:28:07 -0700215/*
216 * hdaps_device_init - initialize the accelerometer. Returns zero on success
217 * and negative error code on failure. Can sleep.
218 */
Robert Love860e1d62005-08-31 23:57:59 -0400219static int hdaps_device_init(void)
220{
Robert Love393ad292005-09-16 19:28:07 -0700221 int total, ret = -ENXIO;
Robert Love860e1d62005-08-31 23:57:59 -0400222
Matthias Kaehlcke6acc3692007-05-08 00:32:05 -0700223 mutex_lock(&hdaps_mtx);
Robert Love860e1d62005-08-31 23:57:59 -0400224
225 outb(0x13, 0x1610);
226 outb(0x01, 0x161f);
227 if (__wait_latch(0x161f, 0x00))
228 goto out;
229
230 /*
Robert Love393ad292005-09-16 19:28:07 -0700231 * Most ThinkPads return 0x01.
232 *
233 * Others--namely the R50p, T41p, and T42p--return 0x03. These laptops
234 * have "inverted" axises.
Robert Love860e1d62005-08-31 23:57:59 -0400235 *
236 * The 0x02 value occurs when the chip has been previously initialized.
237 */
238 if (__check_latch(0x1611, 0x03) &&
239 __check_latch(0x1611, 0x02) &&
240 __check_latch(0x1611, 0x01))
241 goto out;
242
Joe Perches611f5762011-03-29 15:21:40 -0700243 printk(KERN_DEBUG "hdaps: initial latch check good (0x%02x)\n",
Robert Love860e1d62005-08-31 23:57:59 -0400244 __get_latch(0x1611));
245
246 outb(0x17, 0x1610);
247 outb(0x81, 0x1611);
248 outb(0x01, 0x161f);
249 if (__wait_latch(0x161f, 0x00))
250 goto out;
251 if (__wait_latch(0x1611, 0x00))
252 goto out;
253 if (__wait_latch(0x1612, 0x60))
254 goto out;
255 if (__wait_latch(0x1613, 0x00))
256 goto out;
257 outb(0x14, 0x1610);
258 outb(0x01, 0x1611);
259 outb(0x01, 0x161f);
260 if (__wait_latch(0x161f, 0x00))
261 goto out;
262 outb(0x10, 0x1610);
263 outb(0xc8, 0x1611);
264 outb(0x00, 0x1612);
265 outb(0x02, 0x1613);
266 outb(0x01, 0x161f);
267 if (__wait_latch(0x161f, 0x00))
268 goto out;
Robert Love393ad292005-09-16 19:28:07 -0700269 if (__device_refresh_sync())
Robert Love860e1d62005-08-31 23:57:59 -0400270 goto out;
271 if (__wait_latch(0x1611, 0x00))
272 goto out;
273
274 /* we have done our dance, now let's wait for the applause */
Robert Love393ad292005-09-16 19:28:07 -0700275 for (total = INIT_TIMEOUT_MSECS; total > 0; total -= INIT_WAIT_MSECS) {
276 int x, y;
Robert Love860e1d62005-08-31 23:57:59 -0400277
278 /* a read of the device helps push it into action */
Robert Love393ad292005-09-16 19:28:07 -0700279 __hdaps_read_pair(HDAPS_PORT_XPOS, HDAPS_PORT_YPOS, &x, &y);
Robert Love860e1d62005-08-31 23:57:59 -0400280 if (!__wait_latch(0x1611, 0x02)) {
281 ret = 0;
282 break;
283 }
284
285 msleep(INIT_WAIT_MSECS);
Robert Love860e1d62005-08-31 23:57:59 -0400286 }
287
288out:
Matthias Kaehlcke6acc3692007-05-08 00:32:05 -0700289 mutex_unlock(&hdaps_mtx);
Robert Love860e1d62005-08-31 23:57:59 -0400290 return ret;
291}
292
293
Robert Love860e1d62005-08-31 23:57:59 -0400294/* Device model stuff */
295
Russell King3ae5eae2005-11-09 22:32:44 +0000296static int hdaps_probe(struct platform_device *dev)
Robert Love860e1d62005-08-31 23:57:59 -0400297{
298 int ret;
299
300 ret = hdaps_device_init();
301 if (ret)
302 return ret;
303
Joe Perches611f5762011-03-29 15:21:40 -0700304 pr_info("device successfully initialized\n");
Robert Love860e1d62005-08-31 23:57:59 -0400305 return 0;
306}
307
Russell King3ae5eae2005-11-09 22:32:44 +0000308static int hdaps_resume(struct platform_device *dev)
Robert Love860e1d62005-08-31 23:57:59 -0400309{
Russell King9480e302005-10-28 09:52:56 -0700310 return hdaps_device_init();
Robert Love860e1d62005-08-31 23:57:59 -0400311}
312
Russell King3ae5eae2005-11-09 22:32:44 +0000313static struct platform_driver hdaps_driver = {
Robert Love860e1d62005-08-31 23:57:59 -0400314 .probe = hdaps_probe,
Russell King3ae5eae2005-11-09 22:32:44 +0000315 .resume = hdaps_resume,
316 .driver = {
317 .name = "hdaps",
318 .owner = THIS_MODULE,
319 },
Robert Love860e1d62005-08-31 23:57:59 -0400320};
321
Robert Love393ad292005-09-16 19:28:07 -0700322/*
Matthias Kaehlcke6acc3692007-05-08 00:32:05 -0700323 * hdaps_calibrate - Set our "resting" values. Callers must hold hdaps_mtx.
Robert Love393ad292005-09-16 19:28:07 -0700324 */
325static void hdaps_calibrate(void)
326{
327 __hdaps_read_pair(HDAPS_PORT_XPOS, HDAPS_PORT_YPOS, &rest_x, &rest_y);
328}
329
Dmitry Torokhovaefca8b2007-10-12 21:30:36 -0400330static void hdaps_mousedev_poll(struct input_polled_dev *dev)
Robert Love393ad292005-09-16 19:28:07 -0700331{
Dmitry Torokhovaefca8b2007-10-12 21:30:36 -0400332 struct input_dev *input_dev = dev->input;
Robert Love393ad292005-09-16 19:28:07 -0700333 int x, y;
334
Dmitry Torokhovaefca8b2007-10-12 21:30:36 -0400335 mutex_lock(&hdaps_mtx);
Robert Love393ad292005-09-16 19:28:07 -0700336
337 if (__hdaps_read_pair(HDAPS_PORT_XPOS, HDAPS_PORT_YPOS, &x, &y))
338 goto out;
339
Dmitry Torokhovaefca8b2007-10-12 21:30:36 -0400340 input_report_abs(input_dev, ABS_X, x - rest_x);
341 input_report_abs(input_dev, ABS_Y, y - rest_y);
342 input_sync(input_dev);
Robert Love393ad292005-09-16 19:28:07 -0700343
344out:
Matthias Kaehlcke6acc3692007-05-08 00:32:05 -0700345 mutex_unlock(&hdaps_mtx);
Robert Love393ad292005-09-16 19:28:07 -0700346}
347
Robert Love860e1d62005-08-31 23:57:59 -0400348
349/* Sysfs Files */
350
351static ssize_t hdaps_position_show(struct device *dev,
352 struct device_attribute *attr, char *buf)
353{
354 int ret, x, y;
355
356 ret = hdaps_read_pair(HDAPS_PORT_XPOS, HDAPS_PORT_YPOS, &x, &y);
357 if (ret)
358 return ret;
359
360 return sprintf(buf, "(%d,%d)\n", x, y);
361}
362
363static ssize_t hdaps_variance_show(struct device *dev,
364 struct device_attribute *attr, char *buf)
365{
366 int ret, x, y;
367
368 ret = hdaps_read_pair(HDAPS_PORT_XVAR, HDAPS_PORT_YVAR, &x, &y);
369 if (ret)
370 return ret;
371
372 return sprintf(buf, "(%d,%d)\n", x, y);
373}
374
375static ssize_t hdaps_temp1_show(struct device *dev,
376 struct device_attribute *attr, char *buf)
377{
Borislav Petkovb94e88b2011-11-24 15:01:31 +0100378 u8 uninitialized_var(temp);
Robert Love860e1d62005-08-31 23:57:59 -0400379 int ret;
380
381 ret = hdaps_readb_one(HDAPS_PORT_TEMP1, &temp);
Danny Kukawkaa9384062012-01-30 23:00:11 +0100382 if (ret)
Robert Love860e1d62005-08-31 23:57:59 -0400383 return ret;
384
385 return sprintf(buf, "%u\n", temp);
386}
387
388static ssize_t hdaps_temp2_show(struct device *dev,
389 struct device_attribute *attr, char *buf)
390{
Borislav Petkovb94e88b2011-11-24 15:01:31 +0100391 u8 uninitialized_var(temp);
Robert Love860e1d62005-08-31 23:57:59 -0400392 int ret;
393
394 ret = hdaps_readb_one(HDAPS_PORT_TEMP2, &temp);
Danny Kukawkaa9384062012-01-30 23:00:11 +0100395 if (ret)
Robert Love860e1d62005-08-31 23:57:59 -0400396 return ret;
397
398 return sprintf(buf, "%u\n", temp);
399}
400
401static ssize_t hdaps_keyboard_activity_show(struct device *dev,
402 struct device_attribute *attr,
403 char *buf)
404{
405 return sprintf(buf, "%u\n", KEYBD_ISSET(km_activity));
406}
407
408static ssize_t hdaps_mouse_activity_show(struct device *dev,
409 struct device_attribute *attr,
410 char *buf)
411{
412 return sprintf(buf, "%u\n", MOUSE_ISSET(km_activity));
413}
414
415static ssize_t hdaps_calibrate_show(struct device *dev,
416 struct device_attribute *attr, char *buf)
417{
418 return sprintf(buf, "(%d,%d)\n", rest_x, rest_y);
419}
420
421static ssize_t hdaps_calibrate_store(struct device *dev,
422 struct device_attribute *attr,
423 const char *buf, size_t count)
424{
Matthias Kaehlcke6acc3692007-05-08 00:32:05 -0700425 mutex_lock(&hdaps_mtx);
Robert Love860e1d62005-08-31 23:57:59 -0400426 hdaps_calibrate();
Matthias Kaehlcke6acc3692007-05-08 00:32:05 -0700427 mutex_unlock(&hdaps_mtx);
Robert Love860e1d62005-08-31 23:57:59 -0400428
429 return count;
430}
431
432static ssize_t hdaps_invert_show(struct device *dev,
433 struct device_attribute *attr, char *buf)
434{
435 return sprintf(buf, "%u\n", hdaps_invert);
436}
437
438static ssize_t hdaps_invert_store(struct device *dev,
439 struct device_attribute *attr,
440 const char *buf, size_t count)
441{
442 int invert;
443
Frank Seidel2b8cf3e2009-03-30 21:46:41 +0200444 if (sscanf(buf, "%d", &invert) != 1 ||
445 invert < 0 || invert > HDAPS_BOTH_AXES)
Robert Love860e1d62005-08-31 23:57:59 -0400446 return -EINVAL;
447
448 hdaps_invert = invert;
449 hdaps_calibrate();
450
451 return count;
452}
453
Robert Love860e1d62005-08-31 23:57:59 -0400454static DEVICE_ATTR(position, 0444, hdaps_position_show, NULL);
455static DEVICE_ATTR(variance, 0444, hdaps_variance_show, NULL);
456static DEVICE_ATTR(temp1, 0444, hdaps_temp1_show, NULL);
457static DEVICE_ATTR(temp2, 0444, hdaps_temp2_show, NULL);
458static DEVICE_ATTR(keyboard_activity, 0444, hdaps_keyboard_activity_show, NULL);
459static DEVICE_ATTR(mouse_activity, 0444, hdaps_mouse_activity_show, NULL);
460static DEVICE_ATTR(calibrate, 0644, hdaps_calibrate_show,hdaps_calibrate_store);
461static DEVICE_ATTR(invert, 0644, hdaps_invert_show, hdaps_invert_store);
Robert Love860e1d62005-08-31 23:57:59 -0400462
463static struct attribute *hdaps_attributes[] = {
464 &dev_attr_position.attr,
465 &dev_attr_variance.attr,
466 &dev_attr_temp1.attr,
467 &dev_attr_temp2.attr,
468 &dev_attr_keyboard_activity.attr,
469 &dev_attr_mouse_activity.attr,
470 &dev_attr_calibrate.attr,
Robert Love860e1d62005-08-31 23:57:59 -0400471 &dev_attr_invert.attr,
472 NULL,
473};
474
475static struct attribute_group hdaps_attribute_group = {
476 .attrs = hdaps_attributes,
477};
478
479
480/* Module stuff */
481
Robert Love4c87b742005-09-22 21:44:00 -0700482/* hdaps_dmi_match - found a match. return one, short-circuiting the hunt. */
Jeff Garzik18552562007-10-03 15:15:40 -0400483static int __init hdaps_dmi_match(const struct dmi_system_id *id)
Robert Love860e1d62005-08-31 23:57:59 -0400484{
Joe Perches611f5762011-03-29 15:21:40 -0700485 pr_info("%s detected\n", id->ident);
Robert Love4c87b742005-09-22 21:44:00 -0700486 return 1;
Robert Love860e1d62005-08-31 23:57:59 -0400487}
488
Robert Love4c87b742005-09-22 21:44:00 -0700489/* hdaps_dmi_match_invert - found an inverted match. */
Jeff Garzik18552562007-10-03 15:15:40 -0400490static int __init hdaps_dmi_match_invert(const struct dmi_system_id *id)
Robert Love860e1d62005-08-31 23:57:59 -0400491{
Frank Seidel2b8cf3e2009-03-30 21:46:41 +0200492 hdaps_invert = (unsigned long)id->driver_data;
Joe Perches611f5762011-03-29 15:21:40 -0700493 pr_info("inverting axis (%u) readings\n", hdaps_invert);
Robert Love4c87b742005-09-22 21:44:00 -0700494 return hdaps_dmi_match(id);
Robert Love860e1d62005-08-31 23:57:59 -0400495}
496
Frank Seidel2b8cf3e2009-03-30 21:46:41 +0200497#define HDAPS_DMI_MATCH_INVERT(vendor, model, axes) { \
Jean Delvare509a5e82006-12-12 18:18:28 +0100498 .ident = vendor " " model, \
Frank Seidel2b8cf3e2009-03-30 21:46:41 +0200499 .callback = hdaps_dmi_match_invert, \
500 .driver_data = (void *)axes, \
Robert Love860e1d62005-08-31 23:57:59 -0400501 .matches = { \
Jean Delvare509a5e82006-12-12 18:18:28 +0100502 DMI_MATCH(DMI_BOARD_VENDOR, vendor), \
Robert Love860e1d62005-08-31 23:57:59 -0400503 DMI_MATCH(DMI_PRODUCT_VERSION, model) \
504 } \
505}
506
Frank Seidel2b8cf3e2009-03-30 21:46:41 +0200507#define HDAPS_DMI_MATCH_NORMAL(vendor, model) \
508 HDAPS_DMI_MATCH_INVERT(vendor, model, 0)
Robert Love860e1d62005-08-31 23:57:59 -0400509
Jean Delvare509a5e82006-12-12 18:18:28 +0100510/* Note that HDAPS_DMI_MATCH_NORMAL("ThinkPad T42") would match
Stephan Berberig0f23e502006-12-12 18:18:28 +0100511 "ThinkPad T42p", so the order of the entries matters.
512 If your ThinkPad is not recognized, please update to latest
513 BIOS. This is especially the case for some R52 ThinkPads. */
Jean Delvare509a5e82006-12-12 18:18:28 +0100514static struct dmi_system_id __initdata hdaps_whitelist[] = {
Frank Seidel2b8cf3e2009-03-30 21:46:41 +0200515 HDAPS_DMI_MATCH_INVERT("IBM", "ThinkPad R50p", HDAPS_BOTH_AXES),
Jean Delvare509a5e82006-12-12 18:18:28 +0100516 HDAPS_DMI_MATCH_NORMAL("IBM", "ThinkPad R50"),
517 HDAPS_DMI_MATCH_NORMAL("IBM", "ThinkPad R51"),
518 HDAPS_DMI_MATCH_NORMAL("IBM", "ThinkPad R52"),
Frank Seidel2b8cf3e2009-03-30 21:46:41 +0200519 HDAPS_DMI_MATCH_INVERT("LENOVO", "ThinkPad R61i", HDAPS_BOTH_AXES),
520 HDAPS_DMI_MATCH_INVERT("LENOVO", "ThinkPad R61", HDAPS_BOTH_AXES),
521 HDAPS_DMI_MATCH_INVERT("IBM", "ThinkPad T41p", HDAPS_BOTH_AXES),
Jean Delvare509a5e82006-12-12 18:18:28 +0100522 HDAPS_DMI_MATCH_NORMAL("IBM", "ThinkPad T41"),
Frank Seidel2b8cf3e2009-03-30 21:46:41 +0200523 HDAPS_DMI_MATCH_INVERT("IBM", "ThinkPad T42p", HDAPS_BOTH_AXES),
Jean Delvare509a5e82006-12-12 18:18:28 +0100524 HDAPS_DMI_MATCH_NORMAL("IBM", "ThinkPad T42"),
525 HDAPS_DMI_MATCH_NORMAL("IBM", "ThinkPad T43"),
Ritesh Raj Sarraf5f1209a2010-08-09 17:21:04 -0700526 HDAPS_DMI_MATCH_INVERT("LENOVO", "ThinkPad T400", HDAPS_BOTH_AXES),
Frank Seidel2b8cf3e2009-03-30 21:46:41 +0200527 HDAPS_DMI_MATCH_INVERT("LENOVO", "ThinkPad T60", HDAPS_BOTH_AXES),
528 HDAPS_DMI_MATCH_INVERT("LENOVO", "ThinkPad T61p", HDAPS_BOTH_AXES),
529 HDAPS_DMI_MATCH_INVERT("LENOVO", "ThinkPad T61", HDAPS_BOTH_AXES),
Jean Delvare509a5e82006-12-12 18:18:28 +0100530 HDAPS_DMI_MATCH_NORMAL("IBM", "ThinkPad X40"),
Frank Seidelb6a33fe2009-03-30 21:46:42 +0200531 HDAPS_DMI_MATCH_INVERT("IBM", "ThinkPad X41", HDAPS_Y_AXIS),
Frank Seidel2b8cf3e2009-03-30 21:46:41 +0200532 HDAPS_DMI_MATCH_INVERT("LENOVO", "ThinkPad X60", HDAPS_BOTH_AXES),
533 HDAPS_DMI_MATCH_INVERT("LENOVO", "ThinkPad X61s", HDAPS_BOTH_AXES),
534 HDAPS_DMI_MATCH_INVERT("LENOVO", "ThinkPad X61", HDAPS_BOTH_AXES),
Jean Delvare509a5e82006-12-12 18:18:28 +0100535 HDAPS_DMI_MATCH_NORMAL("IBM", "ThinkPad Z60m"),
Frank Seidel2b8cf3e2009-03-30 21:46:41 +0200536 HDAPS_DMI_MATCH_INVERT("LENOVO", "ThinkPad Z61m", HDAPS_BOTH_AXES),
537 HDAPS_DMI_MATCH_INVERT("LENOVO", "ThinkPad Z61p", HDAPS_BOTH_AXES),
Jean Delvare509a5e82006-12-12 18:18:28 +0100538 { .ident = NULL }
539};
Robert Love0f6c8402006-04-10 22:54:11 -0700540
Robert Love860e1d62005-08-31 23:57:59 -0400541static int __init hdaps_init(void)
542{
Dmitry Torokhovaefca8b2007-10-12 21:30:36 -0400543 struct input_dev *idev;
Robert Love860e1d62005-08-31 23:57:59 -0400544 int ret;
545
Robert Love860e1d62005-08-31 23:57:59 -0400546 if (!dmi_check_system(hdaps_whitelist)) {
Joe Perches611f5762011-03-29 15:21:40 -0700547 pr_warn("supported laptop not found!\n");
Andrew Mortonb3f28a92006-04-10 22:54:32 -0700548 ret = -ENODEV;
Robert Love860e1d62005-08-31 23:57:59 -0400549 goto out;
550 }
551
552 if (!request_region(HDAPS_LOW_PORT, HDAPS_NR_PORTS, "hdaps")) {
553 ret = -ENXIO;
554 goto out;
555 }
556
Russell King3ae5eae2005-11-09 22:32:44 +0000557 ret = platform_driver_register(&hdaps_driver);
Robert Love860e1d62005-08-31 23:57:59 -0400558 if (ret)
559 goto out_region;
560
561 pdev = platform_device_register_simple("hdaps", -1, NULL, 0);
562 if (IS_ERR(pdev)) {
563 ret = PTR_ERR(pdev);
564 goto out_driver;
565 }
566
567 ret = sysfs_create_group(&pdev->dev.kobj, &hdaps_attribute_group);
568 if (ret)
569 goto out_device;
570
Dmitry Torokhovaefca8b2007-10-12 21:30:36 -0400571 hdaps_idev = input_allocate_polled_device();
Dmitry Torokhovd12eb7e2005-11-10 22:10:55 -0500572 if (!hdaps_idev) {
573 ret = -ENOMEM;
574 goto out_group;
575 }
576
Dmitry Torokhovaefca8b2007-10-12 21:30:36 -0400577 hdaps_idev->poll = hdaps_mousedev_poll;
578 hdaps_idev->poll_interval = HDAPS_POLL_INTERVAL;
579
Robert Love393ad292005-09-16 19:28:07 -0700580 /* initial calibrate for the input device */
581 hdaps_calibrate();
582
583 /* initialize the input class */
Dmitry Torokhovaefca8b2007-10-12 21:30:36 -0400584 idev = hdaps_idev->input;
585 idev->name = "hdaps";
Dmitry Torokhovd2fc60d2008-05-05 11:53:45 -0400586 idev->phys = "isa1600/input0";
587 idev->id.bustype = BUS_ISA;
Dmitry Torokhovaefca8b2007-10-12 21:30:36 -0400588 idev->dev.parent = &pdev->dev;
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700589 idev->evbit[0] = BIT_MASK(EV_ABS);
Dmitry Torokhovaefca8b2007-10-12 21:30:36 -0400590 input_set_abs_params(idev, ABS_X,
Dmitry Torokhovd12eb7e2005-11-10 22:10:55 -0500591 -256, 256, HDAPS_INPUT_FUZZ, HDAPS_INPUT_FLAT);
Dmitry Torokhovaefca8b2007-10-12 21:30:36 -0400592 input_set_abs_params(idev, ABS_Y,
Dmitry Torokhovd12eb7e2005-11-10 22:10:55 -0500593 -256, 256, HDAPS_INPUT_FUZZ, HDAPS_INPUT_FLAT);
594
Dmitry Torokhovaefca8b2007-10-12 21:30:36 -0400595 ret = input_register_polled_device(hdaps_idev);
Dmitry Torokhovb25a1062006-08-28 14:21:42 +0200596 if (ret)
597 goto out_idev;
Robert Love393ad292005-09-16 19:28:07 -0700598
Joe Perches611f5762011-03-29 15:21:40 -0700599 pr_info("driver successfully loaded\n");
Robert Love860e1d62005-08-31 23:57:59 -0400600 return 0;
601
Dmitry Torokhovb25a1062006-08-28 14:21:42 +0200602out_idev:
Dmitry Torokhovaefca8b2007-10-12 21:30:36 -0400603 input_free_polled_device(hdaps_idev);
Dmitry Torokhovd12eb7e2005-11-10 22:10:55 -0500604out_group:
605 sysfs_remove_group(&pdev->dev.kobj, &hdaps_attribute_group);
Robert Love860e1d62005-08-31 23:57:59 -0400606out_device:
607 platform_device_unregister(pdev);
608out_driver:
Russell King3ae5eae2005-11-09 22:32:44 +0000609 platform_driver_unregister(&hdaps_driver);
Robert Love860e1d62005-08-31 23:57:59 -0400610out_region:
611 release_region(HDAPS_LOW_PORT, HDAPS_NR_PORTS);
612out:
Joe Perches611f5762011-03-29 15:21:40 -0700613 pr_warn("driver init failed (ret=%d)!\n", ret);
Robert Love860e1d62005-08-31 23:57:59 -0400614 return ret;
615}
616
617static void __exit hdaps_exit(void)
618{
Dmitry Torokhovaefca8b2007-10-12 21:30:36 -0400619 input_unregister_polled_device(hdaps_idev);
620 input_free_polled_device(hdaps_idev);
Robert Love860e1d62005-08-31 23:57:59 -0400621 sysfs_remove_group(&pdev->dev.kobj, &hdaps_attribute_group);
622 platform_device_unregister(pdev);
Russell King3ae5eae2005-11-09 22:32:44 +0000623 platform_driver_unregister(&hdaps_driver);
Robert Love860e1d62005-08-31 23:57:59 -0400624 release_region(HDAPS_LOW_PORT, HDAPS_NR_PORTS);
625
Joe Perches611f5762011-03-29 15:21:40 -0700626 pr_info("driver unloaded\n");
Robert Love860e1d62005-08-31 23:57:59 -0400627}
628
629module_init(hdaps_init);
630module_exit(hdaps_exit);
631
Frank Seidel2b8cf3e2009-03-30 21:46:41 +0200632module_param_named(invert, hdaps_invert, int, 0);
633MODULE_PARM_DESC(invert, "invert data along each axis. 1 invert x-axis, "
634 "2 invert y-axis, 3 invert both axes.");
Robert Love860e1d62005-08-31 23:57:59 -0400635
636MODULE_AUTHOR("Robert Love");
637MODULE_DESCRIPTION("IBM Hard Drive Active Protection System (HDAPS) driver");
638MODULE_LICENSE("GPL v2");