ACPI / PM: Fix unused function warnings for CONFIG_PM_SLEEP
[deliverable/linux.git] / drivers / platform / x86 / hdaps.c
CommitLineData
860e1d6b 1/*
bd9fc3a7 2 * hdaps.c - driver for IBM's Hard Drive Active Protection System
860e1d6b
RL
3 *
4 * Copyright (C) 2005 Robert Love <rml@novell.com>
e4332e8e 5 * Copyright (C) 2005 Jesper Juhl <jj@chaosbits.net>
860e1d6b 6 *
4c87b74c
RL
7 * 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.
860e1d6b 10 *
393ad299 11 * This driver is based on the document by Mark A. Smith available at
860e1d6b
RL
12 * 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
611f5763
JP
29#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
30
860e1d6b 31#include <linux/delay.h>
d052d1be 32#include <linux/platform_device.h>
aefca8ba 33#include <linux/input-polldev.h>
860e1d6b 34#include <linux/kernel.h>
6acc369a 35#include <linux/mutex.h>
860e1d6b
RL
36#include <linux/module.h>
37#include <linux/timer.h>
38#include <linux/dmi.h>
914e2637 39#include <linux/jiffies.h>
6055fae8 40#include <linux/io.h>
860e1d6b
RL
41
42#define HDAPS_LOW_PORT 0x1600 /* first port used by hdaps */
393ad299 43#define HDAPS_NR_PORTS 0x30 /* number of ports: 0x1600 - 0x162f */
860e1d6b
RL
44
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 */
0a704681 48#define HDAPS_PORT_TEMP1 0x1616 /* device temperature, in Celsius */
860e1d6b
RL
49#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
393ad299 55#define STATE_FRESH 0x50 /* accelerometer data is fresh */
860e1d6b
RL
56
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
aefca8ba 65#define HDAPS_POLL_INTERVAL 50 /* poll for input every 1/20s (50 ms)*/
393ad299 66#define HDAPS_INPUT_FUZZ 4 /* input event threshold */
d12eb7e1 67#define HDAPS_INPUT_FLAT 4
393ad299 68
2b8cf3e8
FS
69#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
393ad299 73static struct platform_device *pdev;
aefca8ba 74static struct input_polled_dev *hdaps_idev;
860e1d6b
RL
75static unsigned int hdaps_invert;
76static u8 km_activity;
77static int rest_x;
78static int rest_y;
79
6acc369a 80static DEFINE_MUTEX(hdaps_mtx);
860e1d6b
RL
81
82/*
6acc369a 83 * __get_latch - Get the value from a given port. Callers must hold hdaps_mtx.
860e1d6b
RL
84 */
85static inline u8 __get_latch(u16 port)
86{
393ad299 87 return inb(port) & 0xff;
860e1d6b
RL
88}
89
90/*
393ad299 91 * __check_latch - Check a port latch for a given value. Returns zero if the
6acc369a 92 * port contains the given value. Callers must hold hdaps_mtx.
860e1d6b 93 */
393ad299 94static inline int __check_latch(u16 port, u8 val)
860e1d6b
RL
95{
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,
6acc369a 103 * returning zero if the value is obtained. Callers must hold hdaps_mtx.
860e1d6b 104 */
393ad299 105static int __wait_latch(u16 port, u8 val)
860e1d6b
RL
106{
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
393ad299 115 return -EIO;
860e1d6b
RL
116}
117
118/*
393ad299 119 * __device_refresh - request a refresh from the accelerometer. Does not wait
6acc369a 120 * for refresh to complete. Callers must hold hdaps_mtx.
860e1d6b 121 */
393ad299 122static void __device_refresh(void)
860e1d6b 123{
393ad299
RL
124 udelay(200);
125 if (inb(0x1604) != STATE_FRESH) {
126 outb(0x11, 0x1610);
127 outb(0x01, 0x161f);
128 }
129}
860e1d6b 130
393ad299
RL
131/*
132 * __device_refresh_sync - request a synchronous refresh from the
133 * accelerometer. We wait for the refresh to complete. Returns zero if
6acc369a 134 * successful and nonzero on error. Callers must hold hdaps_mtx.
393ad299
RL
135 */
136static int __device_refresh_sync(void)
137{
138 __device_refresh();
860e1d6b
RL
139 return __wait_latch(0x1604, STATE_FRESH);
140}
141
142/*
393ad299 143 * __device_complete - indicate to the accelerometer that we are done reading
6acc369a 144 * data, and then initiate an async refresh. Callers must hold hdaps_mtx.
860e1d6b
RL
145 */
146static inline void __device_complete(void)
147{
148 inb(0x161f);
149 inb(0x1604);
393ad299 150 __device_refresh();
860e1d6b
RL
151}
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
6acc369a 162 mutex_lock(&hdaps_mtx);
860e1d6b 163
393ad299
RL
164 /* 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:
6acc369a 173 mutex_unlock(&hdaps_mtx);
860e1d6b
RL
174 return ret;
175}
176
393ad299 177/* __hdaps_read_pair - internal lockless helper for hdaps_read_pair(). */
860e1d6b
RL
178static 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 */
393ad299 182 if (__device_refresh_sync())
860e1d6b
RL
183 return -EIO;
184
185 *y = inw(port2);
186 *x = inw(port1);
187 km_activity = inb(HDAPS_PORT_KMACT);
188 __device_complete();
189
2b8cf3e8
FS
190 /* hdaps_invert is a bitvector to negate the axes */
191 if (hdaps_invert & HDAPS_X_AXIS)
860e1d6b 192 *x = -*x;
2b8cf3e8 193 if (hdaps_invert & HDAPS_Y_AXIS)
860e1d6b 194 *y = -*y;
860e1d6b
RL
195
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
6acc369a 208 mutex_lock(&hdaps_mtx);
860e1d6b 209 ret = __hdaps_read_pair(port1, port2, val1, val2);
6acc369a 210 mutex_unlock(&hdaps_mtx);
860e1d6b
RL
211
212 return ret;
213}
214
393ad299
RL
215/*
216 * hdaps_device_init - initialize the accelerometer. Returns zero on success
217 * and negative error code on failure. Can sleep.
218 */
860e1d6b
RL
219static int hdaps_device_init(void)
220{
393ad299 221 int total, ret = -ENXIO;
860e1d6b 222
6acc369a 223 mutex_lock(&hdaps_mtx);
860e1d6b
RL
224
225 outb(0x13, 0x1610);
226 outb(0x01, 0x161f);
227 if (__wait_latch(0x161f, 0x00))
228 goto out;
229
230 /*
393ad299
RL
231 * Most ThinkPads return 0x01.
232 *
233 * Others--namely the R50p, T41p, and T42p--return 0x03. These laptops
234 * have "inverted" axises.
860e1d6b
RL
235 *
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
611f5763 243 printk(KERN_DEBUG "hdaps: initial latch check good (0x%02x)\n",
860e1d6b
RL
244 __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;
393ad299 269 if (__device_refresh_sync())
860e1d6b
RL
270 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 */
393ad299
RL
275 for (total = INIT_TIMEOUT_MSECS; total > 0; total -= INIT_WAIT_MSECS) {
276 int x, y;
860e1d6b
RL
277
278 /* a read of the device helps push it into action */
393ad299 279 __hdaps_read_pair(HDAPS_PORT_XPOS, HDAPS_PORT_YPOS, &x, &y);
860e1d6b
RL
280 if (!__wait_latch(0x1611, 0x02)) {
281 ret = 0;
282 break;
283 }
284
285 msleep(INIT_WAIT_MSECS);
860e1d6b
RL
286 }
287
288out:
6acc369a 289 mutex_unlock(&hdaps_mtx);
860e1d6b
RL
290 return ret;
291}
292
293
860e1d6b
RL
294/* Device model stuff */
295
3ae5eaec 296static int hdaps_probe(struct platform_device *dev)
860e1d6b
RL
297{
298 int ret;
299
300 ret = hdaps_device_init();
301 if (ret)
302 return ret;
303
611f5763 304 pr_info("device successfully initialized\n");
860e1d6b
RL
305 return 0;
306}
307
e25d5c11 308static int hdaps_resume(struct device *dev)
860e1d6b 309{
9480e307 310 return hdaps_device_init();
860e1d6b
RL
311}
312
e25d5c11
RW
313static SIMPLE_DEV_PM_OPS(hdaps_pm, NULL, hdaps_resume);
314
3ae5eaec 315static struct platform_driver hdaps_driver = {
860e1d6b 316 .probe = hdaps_probe,
3ae5eaec
RK
317 .driver = {
318 .name = "hdaps",
319 .owner = THIS_MODULE,
e25d5c11 320 .pm = &hdaps_pm,
3ae5eaec 321 },
860e1d6b
RL
322};
323
393ad299 324/*
6acc369a 325 * hdaps_calibrate - Set our "resting" values. Callers must hold hdaps_mtx.
393ad299
RL
326 */
327static void hdaps_calibrate(void)
328{
329 __hdaps_read_pair(HDAPS_PORT_XPOS, HDAPS_PORT_YPOS, &rest_x, &rest_y);
330}
331
aefca8ba 332static void hdaps_mousedev_poll(struct input_polled_dev *dev)
393ad299 333{
aefca8ba 334 struct input_dev *input_dev = dev->input;
393ad299
RL
335 int x, y;
336
aefca8ba 337 mutex_lock(&hdaps_mtx);
393ad299
RL
338
339 if (__hdaps_read_pair(HDAPS_PORT_XPOS, HDAPS_PORT_YPOS, &x, &y))
340 goto out;
341
aefca8ba
DT
342 input_report_abs(input_dev, ABS_X, x - rest_x);
343 input_report_abs(input_dev, ABS_Y, y - rest_y);
344 input_sync(input_dev);
393ad299
RL
345
346out:
6acc369a 347 mutex_unlock(&hdaps_mtx);
393ad299
RL
348}
349
860e1d6b
RL
350
351/* Sysfs Files */
352
353static ssize_t hdaps_position_show(struct device *dev,
354 struct device_attribute *attr, char *buf)
355{
356 int ret, x, y;
357
358 ret = hdaps_read_pair(HDAPS_PORT_XPOS, HDAPS_PORT_YPOS, &x, &y);
359 if (ret)
360 return ret;
361
362 return sprintf(buf, "(%d,%d)\n", x, y);
363}
364
365static ssize_t hdaps_variance_show(struct device *dev,
366 struct device_attribute *attr, char *buf)
367{
368 int ret, x, y;
369
370 ret = hdaps_read_pair(HDAPS_PORT_XVAR, HDAPS_PORT_YVAR, &x, &y);
371 if (ret)
372 return ret;
373
374 return sprintf(buf, "(%d,%d)\n", x, y);
375}
376
377static ssize_t hdaps_temp1_show(struct device *dev,
378 struct device_attribute *attr, char *buf)
379{
b94e88bc 380 u8 uninitialized_var(temp);
860e1d6b
RL
381 int ret;
382
383 ret = hdaps_readb_one(HDAPS_PORT_TEMP1, &temp);
a938406b 384 if (ret)
860e1d6b
RL
385 return ret;
386
387 return sprintf(buf, "%u\n", temp);
388}
389
390static ssize_t hdaps_temp2_show(struct device *dev,
391 struct device_attribute *attr, char *buf)
392{
b94e88bc 393 u8 uninitialized_var(temp);
860e1d6b
RL
394 int ret;
395
396 ret = hdaps_readb_one(HDAPS_PORT_TEMP2, &temp);
a938406b 397 if (ret)
860e1d6b
RL
398 return ret;
399
400 return sprintf(buf, "%u\n", temp);
401}
402
403static ssize_t hdaps_keyboard_activity_show(struct device *dev,
404 struct device_attribute *attr,
405 char *buf)
406{
407 return sprintf(buf, "%u\n", KEYBD_ISSET(km_activity));
408}
409
410static ssize_t hdaps_mouse_activity_show(struct device *dev,
411 struct device_attribute *attr,
412 char *buf)
413{
414 return sprintf(buf, "%u\n", MOUSE_ISSET(km_activity));
415}
416
417static ssize_t hdaps_calibrate_show(struct device *dev,
418 struct device_attribute *attr, char *buf)
419{
420 return sprintf(buf, "(%d,%d)\n", rest_x, rest_y);
421}
422
423static ssize_t hdaps_calibrate_store(struct device *dev,
424 struct device_attribute *attr,
425 const char *buf, size_t count)
426{
6acc369a 427 mutex_lock(&hdaps_mtx);
860e1d6b 428 hdaps_calibrate();
6acc369a 429 mutex_unlock(&hdaps_mtx);
860e1d6b
RL
430
431 return count;
432}
433
434static ssize_t hdaps_invert_show(struct device *dev,
435 struct device_attribute *attr, char *buf)
436{
437 return sprintf(buf, "%u\n", hdaps_invert);
438}
439
440static ssize_t hdaps_invert_store(struct device *dev,
441 struct device_attribute *attr,
442 const char *buf, size_t count)
443{
444 int invert;
445
2b8cf3e8
FS
446 if (sscanf(buf, "%d", &invert) != 1 ||
447 invert < 0 || invert > HDAPS_BOTH_AXES)
860e1d6b
RL
448 return -EINVAL;
449
450 hdaps_invert = invert;
451 hdaps_calibrate();
452
453 return count;
454}
455
860e1d6b
RL
456static DEVICE_ATTR(position, 0444, hdaps_position_show, NULL);
457static DEVICE_ATTR(variance, 0444, hdaps_variance_show, NULL);
458static DEVICE_ATTR(temp1, 0444, hdaps_temp1_show, NULL);
459static DEVICE_ATTR(temp2, 0444, hdaps_temp2_show, NULL);
460static DEVICE_ATTR(keyboard_activity, 0444, hdaps_keyboard_activity_show, NULL);
461static DEVICE_ATTR(mouse_activity, 0444, hdaps_mouse_activity_show, NULL);
462static DEVICE_ATTR(calibrate, 0644, hdaps_calibrate_show,hdaps_calibrate_store);
463static DEVICE_ATTR(invert, 0644, hdaps_invert_show, hdaps_invert_store);
860e1d6b
RL
464
465static struct attribute *hdaps_attributes[] = {
466 &dev_attr_position.attr,
467 &dev_attr_variance.attr,
468 &dev_attr_temp1.attr,
469 &dev_attr_temp2.attr,
470 &dev_attr_keyboard_activity.attr,
471 &dev_attr_mouse_activity.attr,
472 &dev_attr_calibrate.attr,
860e1d6b
RL
473 &dev_attr_invert.attr,
474 NULL,
475};
476
477static struct attribute_group hdaps_attribute_group = {
478 .attrs = hdaps_attributes,
479};
480
481
482/* Module stuff */
483
4c87b74c 484/* hdaps_dmi_match - found a match. return one, short-circuiting the hunt. */
1855256c 485static int __init hdaps_dmi_match(const struct dmi_system_id *id)
860e1d6b 486{
611f5763 487 pr_info("%s detected\n", id->ident);
4c87b74c 488 return 1;
860e1d6b
RL
489}
490
4c87b74c 491/* hdaps_dmi_match_invert - found an inverted match. */
1855256c 492static int __init hdaps_dmi_match_invert(const struct dmi_system_id *id)
860e1d6b 493{
2b8cf3e8 494 hdaps_invert = (unsigned long)id->driver_data;
611f5763 495 pr_info("inverting axis (%u) readings\n", hdaps_invert);
4c87b74c 496 return hdaps_dmi_match(id);
860e1d6b
RL
497}
498
2b8cf3e8 499#define HDAPS_DMI_MATCH_INVERT(vendor, model, axes) { \
509a5e85 500 .ident = vendor " " model, \
860e1d6b 501 .callback = hdaps_dmi_match_invert, \
2b8cf3e8 502 .driver_data = (void *)axes, \
860e1d6b 503 .matches = { \
509a5e85 504 DMI_MATCH(DMI_BOARD_VENDOR, vendor), \
860e1d6b
RL
505 DMI_MATCH(DMI_PRODUCT_VERSION, model) \
506 } \
507}
508
2b8cf3e8
FS
509#define HDAPS_DMI_MATCH_NORMAL(vendor, model) \
510 HDAPS_DMI_MATCH_INVERT(vendor, model, 0)
511
509a5e85 512/* Note that HDAPS_DMI_MATCH_NORMAL("ThinkPad T42") would match
0f23e50a
SB
513 "ThinkPad T42p", so the order of the entries matters.
514 If your ThinkPad is not recognized, please update to latest
515 BIOS. This is especially the case for some R52 ThinkPads. */
509a5e85 516static struct dmi_system_id __initdata hdaps_whitelist[] = {
2b8cf3e8 517 HDAPS_DMI_MATCH_INVERT("IBM", "ThinkPad R50p", HDAPS_BOTH_AXES),
509a5e85
JD
518 HDAPS_DMI_MATCH_NORMAL("IBM", "ThinkPad R50"),
519 HDAPS_DMI_MATCH_NORMAL("IBM", "ThinkPad R51"),
520 HDAPS_DMI_MATCH_NORMAL("IBM", "ThinkPad R52"),
2b8cf3e8
FS
521 HDAPS_DMI_MATCH_INVERT("LENOVO", "ThinkPad R61i", HDAPS_BOTH_AXES),
522 HDAPS_DMI_MATCH_INVERT("LENOVO", "ThinkPad R61", HDAPS_BOTH_AXES),
523 HDAPS_DMI_MATCH_INVERT("IBM", "ThinkPad T41p", HDAPS_BOTH_AXES),
509a5e85 524 HDAPS_DMI_MATCH_NORMAL("IBM", "ThinkPad T41"),
2b8cf3e8 525 HDAPS_DMI_MATCH_INVERT("IBM", "ThinkPad T42p", HDAPS_BOTH_AXES),
509a5e85
JD
526 HDAPS_DMI_MATCH_NORMAL("IBM", "ThinkPad T42"),
527 HDAPS_DMI_MATCH_NORMAL("IBM", "ThinkPad T43"),
5f1209a1 528 HDAPS_DMI_MATCH_INVERT("LENOVO", "ThinkPad T400", HDAPS_BOTH_AXES),
2b8cf3e8
FS
529 HDAPS_DMI_MATCH_INVERT("LENOVO", "ThinkPad T60", HDAPS_BOTH_AXES),
530 HDAPS_DMI_MATCH_INVERT("LENOVO", "ThinkPad T61p", HDAPS_BOTH_AXES),
531 HDAPS_DMI_MATCH_INVERT("LENOVO", "ThinkPad T61", HDAPS_BOTH_AXES),
509a5e85 532 HDAPS_DMI_MATCH_NORMAL("IBM", "ThinkPad X40"),
b6a33fe2 533 HDAPS_DMI_MATCH_INVERT("IBM", "ThinkPad X41", HDAPS_Y_AXIS),
2b8cf3e8
FS
534 HDAPS_DMI_MATCH_INVERT("LENOVO", "ThinkPad X60", HDAPS_BOTH_AXES),
535 HDAPS_DMI_MATCH_INVERT("LENOVO", "ThinkPad X61s", HDAPS_BOTH_AXES),
536 HDAPS_DMI_MATCH_INVERT("LENOVO", "ThinkPad X61", HDAPS_BOTH_AXES),
509a5e85 537 HDAPS_DMI_MATCH_NORMAL("IBM", "ThinkPad Z60m"),
2b8cf3e8
FS
538 HDAPS_DMI_MATCH_INVERT("LENOVO", "ThinkPad Z61m", HDAPS_BOTH_AXES),
539 HDAPS_DMI_MATCH_INVERT("LENOVO", "ThinkPad Z61p", HDAPS_BOTH_AXES),
509a5e85
JD
540 { .ident = NULL }
541};
0f6c840d 542
860e1d6b
RL
543static int __init hdaps_init(void)
544{
aefca8ba 545 struct input_dev *idev;
860e1d6b
RL
546 int ret;
547
860e1d6b 548 if (!dmi_check_system(hdaps_whitelist)) {
611f5763 549 pr_warn("supported laptop not found!\n");
b3f28a9a 550 ret = -ENODEV;
860e1d6b
RL
551 goto out;
552 }
553
554 if (!request_region(HDAPS_LOW_PORT, HDAPS_NR_PORTS, "hdaps")) {
555 ret = -ENXIO;
556 goto out;
557 }
558
3ae5eaec 559 ret = platform_driver_register(&hdaps_driver);
860e1d6b
RL
560 if (ret)
561 goto out_region;
562
563 pdev = platform_device_register_simple("hdaps", -1, NULL, 0);
564 if (IS_ERR(pdev)) {
565 ret = PTR_ERR(pdev);
566 goto out_driver;
567 }
568
569 ret = sysfs_create_group(&pdev->dev.kobj, &hdaps_attribute_group);
570 if (ret)
571 goto out_device;
572
aefca8ba 573 hdaps_idev = input_allocate_polled_device();
d12eb7e1
DT
574 if (!hdaps_idev) {
575 ret = -ENOMEM;
576 goto out_group;
577 }
578
aefca8ba
DT
579 hdaps_idev->poll = hdaps_mousedev_poll;
580 hdaps_idev->poll_interval = HDAPS_POLL_INTERVAL;
581
393ad299
RL
582 /* initial calibrate for the input device */
583 hdaps_calibrate();
584
585 /* initialize the input class */
aefca8ba
DT
586 idev = hdaps_idev->input;
587 idev->name = "hdaps";
d2fc60d6
DT
588 idev->phys = "isa1600/input0";
589 idev->id.bustype = BUS_ISA;
aefca8ba 590 idev->dev.parent = &pdev->dev;
7b19ada2 591 idev->evbit[0] = BIT_MASK(EV_ABS);
aefca8ba 592 input_set_abs_params(idev, ABS_X,
d12eb7e1 593 -256, 256, HDAPS_INPUT_FUZZ, HDAPS_INPUT_FLAT);
aefca8ba 594 input_set_abs_params(idev, ABS_Y,
d12eb7e1
DT
595 -256, 256, HDAPS_INPUT_FUZZ, HDAPS_INPUT_FLAT);
596
aefca8ba 597 ret = input_register_polled_device(hdaps_idev);
b25a1063
DT
598 if (ret)
599 goto out_idev;
393ad299 600
611f5763 601 pr_info("driver successfully loaded\n");
860e1d6b
RL
602 return 0;
603
b25a1063 604out_idev:
aefca8ba 605 input_free_polled_device(hdaps_idev);
d12eb7e1
DT
606out_group:
607 sysfs_remove_group(&pdev->dev.kobj, &hdaps_attribute_group);
860e1d6b
RL
608out_device:
609 platform_device_unregister(pdev);
610out_driver:
3ae5eaec 611 platform_driver_unregister(&hdaps_driver);
860e1d6b
RL
612out_region:
613 release_region(HDAPS_LOW_PORT, HDAPS_NR_PORTS);
614out:
611f5763 615 pr_warn("driver init failed (ret=%d)!\n", ret);
860e1d6b
RL
616 return ret;
617}
618
619static void __exit hdaps_exit(void)
620{
aefca8ba
DT
621 input_unregister_polled_device(hdaps_idev);
622 input_free_polled_device(hdaps_idev);
860e1d6b
RL
623 sysfs_remove_group(&pdev->dev.kobj, &hdaps_attribute_group);
624 platform_device_unregister(pdev);
3ae5eaec 625 platform_driver_unregister(&hdaps_driver);
860e1d6b
RL
626 release_region(HDAPS_LOW_PORT, HDAPS_NR_PORTS);
627
611f5763 628 pr_info("driver unloaded\n");
860e1d6b
RL
629}
630
631module_init(hdaps_init);
632module_exit(hdaps_exit);
633
2b8cf3e8
FS
634module_param_named(invert, hdaps_invert, int, 0);
635MODULE_PARM_DESC(invert, "invert data along each axis. 1 invert x-axis, "
636 "2 invert y-axis, 3 invert both axes.");
860e1d6b
RL
637
638MODULE_AUTHOR("Robert Love");
639MODULE_DESCRIPTION("IBM Hard Drive Active Protection System (HDAPS) driver");
640MODULE_LICENSE("GPL v2");
This page took 0.66664 seconds and 5 git commands to generate.