blob: a596c2775d1ad7eb86a74ec3294394821781c18e [file] [log] [blame]
Joonyoung Shim4cf51c32010-07-14 21:55:30 -07001/*
Iiro Valkonen7686b102011-02-02 23:21:58 -08002 * Atmel maXTouch Touchscreen driver
Joonyoung Shim4cf51c32010-07-14 21:55:30 -07003 *
4 * Copyright (C) 2010 Samsung Electronics Co.Ltd
5 * Author: Joonyoung Shim <jy0922.shim@samsung.com>
6 *
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the
9 * Free Software Foundation; either version 2 of the License, or (at your
10 * option) any later version.
11 *
12 */
13
14#include <linux/module.h>
15#include <linux/init.h>
16#include <linux/delay.h>
17#include <linux/firmware.h>
18#include <linux/i2c.h>
Dmitry Torokhov964de522011-02-02 23:21:58 -080019#include <linux/i2c/atmel_mxt_ts.h>
Joonyoung Shim8b86c1c2011-04-12 23:18:59 -070020#include <linux/input/mt.h>
Joonyoung Shim4cf51c32010-07-14 21:55:30 -070021#include <linux/interrupt.h>
22#include <linux/slab.h>
23
24/* Version */
Iiro Valkonen7686b102011-02-02 23:21:58 -080025#define MXT_VER_20 20
26#define MXT_VER_21 21
27#define MXT_VER_22 22
Joonyoung Shim4cf51c32010-07-14 21:55:30 -070028
29/* Slave addresses */
Iiro Valkonen7686b102011-02-02 23:21:58 -080030#define MXT_APP_LOW 0x4a
31#define MXT_APP_HIGH 0x4b
32#define MXT_BOOT_LOW 0x24
33#define MXT_BOOT_HIGH 0x25
Joonyoung Shim4cf51c32010-07-14 21:55:30 -070034
35/* Firmware */
Iiro Valkonen7686b102011-02-02 23:21:58 -080036#define MXT_FW_NAME "maxtouch.fw"
Joonyoung Shim4cf51c32010-07-14 21:55:30 -070037
38/* Registers */
Iiro Valkonen7686b102011-02-02 23:21:58 -080039#define MXT_FAMILY_ID 0x00
40#define MXT_VARIANT_ID 0x01
41#define MXT_VERSION 0x02
42#define MXT_BUILD 0x03
43#define MXT_MATRIX_X_SIZE 0x04
44#define MXT_MATRIX_Y_SIZE 0x05
45#define MXT_OBJECT_NUM 0x06
46#define MXT_OBJECT_START 0x07
Joonyoung Shim4cf51c32010-07-14 21:55:30 -070047
Iiro Valkonen7686b102011-02-02 23:21:58 -080048#define MXT_OBJECT_SIZE 6
Joonyoung Shim4cf51c32010-07-14 21:55:30 -070049
50/* Object types */
Iiro Valkonen81c88a72011-07-04 03:08:25 -070051#define MXT_DEBUG_DIAGNOSTIC_T37 37
52#define MXT_GEN_MESSAGE_T5 5
53#define MXT_GEN_COMMAND_T6 6
54#define MXT_GEN_POWER_T7 7
55#define MXT_GEN_ACQUIRE_T8 8
56#define MXT_GEN_DATASOURCE_T53 53
57#define MXT_TOUCH_MULTI_T9 9
58#define MXT_TOUCH_KEYARRAY_T15 15
59#define MXT_TOUCH_PROXIMITY_T23 23
60#define MXT_TOUCH_PROXKEY_T52 52
61#define MXT_PROCI_GRIPFACE_T20 20
62#define MXT_PROCG_NOISE_T22 22
63#define MXT_PROCI_ONETOUCH_T24 24
64#define MXT_PROCI_TWOTOUCH_T27 27
65#define MXT_PROCI_GRIP_T40 40
66#define MXT_PROCI_PALM_T41 41
67#define MXT_PROCI_TOUCHSUPPRESSION_T42 42
68#define MXT_PROCI_STYLUS_T47 47
69#define MXT_PROCG_NOISESUPPRESSION_T48 48
70#define MXT_SPT_COMMSCONFIG_T18 18
71#define MXT_SPT_GPIOPWM_T19 19
72#define MXT_SPT_SELFTEST_T25 25
73#define MXT_SPT_CTECONFIG_T28 28
74#define MXT_SPT_USERDATA_T38 38
75#define MXT_SPT_DIGITIZER_T43 43
76#define MXT_SPT_MESSAGECOUNT_T44 44
77#define MXT_SPT_CTECONFIG_T46 46
Joonyoung Shim4cf51c32010-07-14 21:55:30 -070078
Iiro Valkonen81c88a72011-07-04 03:08:25 -070079/* MXT_GEN_COMMAND_T6 field */
Iiro Valkonen7686b102011-02-02 23:21:58 -080080#define MXT_COMMAND_RESET 0
81#define MXT_COMMAND_BACKUPNV 1
82#define MXT_COMMAND_CALIBRATE 2
83#define MXT_COMMAND_REPORTALL 3
84#define MXT_COMMAND_DIAGNOSTIC 5
Joonyoung Shim4cf51c32010-07-14 21:55:30 -070085
Iiro Valkonen81c88a72011-07-04 03:08:25 -070086/* MXT_GEN_POWER_T7 field */
Iiro Valkonen7686b102011-02-02 23:21:58 -080087#define MXT_POWER_IDLEACQINT 0
88#define MXT_POWER_ACTVACQINT 1
89#define MXT_POWER_ACTV2IDLETO 2
Joonyoung Shim4cf51c32010-07-14 21:55:30 -070090
Iiro Valkonen81c88a72011-07-04 03:08:25 -070091/* MXT_GEN_ACQUIRE_T8 field */
Iiro Valkonen7686b102011-02-02 23:21:58 -080092#define MXT_ACQUIRE_CHRGTIME 0
93#define MXT_ACQUIRE_TCHDRIFT 2
94#define MXT_ACQUIRE_DRIFTST 3
95#define MXT_ACQUIRE_TCHAUTOCAL 4
96#define MXT_ACQUIRE_SYNC 5
97#define MXT_ACQUIRE_ATCHCALST 6
98#define MXT_ACQUIRE_ATCHCALSTHR 7
Joonyoung Shim4cf51c32010-07-14 21:55:30 -070099
Iiro Valkonen81c88a72011-07-04 03:08:25 -0700100/* MXT_TOUCH_MULTI_T9 field */
Iiro Valkonen7686b102011-02-02 23:21:58 -0800101#define MXT_TOUCH_CTRL 0
102#define MXT_TOUCH_XORIGIN 1
103#define MXT_TOUCH_YORIGIN 2
104#define MXT_TOUCH_XSIZE 3
105#define MXT_TOUCH_YSIZE 4
106#define MXT_TOUCH_BLEN 6
107#define MXT_TOUCH_TCHTHR 7
108#define MXT_TOUCH_TCHDI 8
109#define MXT_TOUCH_ORIENT 9
110#define MXT_TOUCH_MOVHYSTI 11
111#define MXT_TOUCH_MOVHYSTN 12
112#define MXT_TOUCH_NUMTOUCH 14
113#define MXT_TOUCH_MRGHYST 15
114#define MXT_TOUCH_MRGTHR 16
115#define MXT_TOUCH_AMPHYST 17
116#define MXT_TOUCH_XRANGE_LSB 18
117#define MXT_TOUCH_XRANGE_MSB 19
118#define MXT_TOUCH_YRANGE_LSB 20
119#define MXT_TOUCH_YRANGE_MSB 21
120#define MXT_TOUCH_XLOCLIP 22
121#define MXT_TOUCH_XHICLIP 23
122#define MXT_TOUCH_YLOCLIP 24
123#define MXT_TOUCH_YHICLIP 25
124#define MXT_TOUCH_XEDGECTRL 26
125#define MXT_TOUCH_XEDGEDIST 27
126#define MXT_TOUCH_YEDGECTRL 28
127#define MXT_TOUCH_YEDGEDIST 29
Joonyoung Shim979a72d2011-03-14 21:41:34 -0700128#define MXT_TOUCH_JUMPLIMIT 30
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700129
Iiro Valkonen81c88a72011-07-04 03:08:25 -0700130/* MXT_PROCI_GRIPFACE_T20 field */
Iiro Valkonen7686b102011-02-02 23:21:58 -0800131#define MXT_GRIPFACE_CTRL 0
132#define MXT_GRIPFACE_XLOGRIP 1
133#define MXT_GRIPFACE_XHIGRIP 2
134#define MXT_GRIPFACE_YLOGRIP 3
135#define MXT_GRIPFACE_YHIGRIP 4
136#define MXT_GRIPFACE_MAXTCHS 5
137#define MXT_GRIPFACE_SZTHR1 7
138#define MXT_GRIPFACE_SZTHR2 8
139#define MXT_GRIPFACE_SHPTHR1 9
140#define MXT_GRIPFACE_SHPTHR2 10
141#define MXT_GRIPFACE_SUPEXTTO 11
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700142
Iiro Valkonen7686b102011-02-02 23:21:58 -0800143/* MXT_PROCI_NOISE field */
144#define MXT_NOISE_CTRL 0
145#define MXT_NOISE_OUTFLEN 1
146#define MXT_NOISE_GCAFUL_LSB 3
147#define MXT_NOISE_GCAFUL_MSB 4
148#define MXT_NOISE_GCAFLL_LSB 5
149#define MXT_NOISE_GCAFLL_MSB 6
150#define MXT_NOISE_ACTVGCAFVALID 7
151#define MXT_NOISE_NOISETHR 8
152#define MXT_NOISE_FREQHOPSCALE 10
153#define MXT_NOISE_FREQ0 11
154#define MXT_NOISE_FREQ1 12
155#define MXT_NOISE_FREQ2 13
156#define MXT_NOISE_FREQ3 14
157#define MXT_NOISE_FREQ4 15
158#define MXT_NOISE_IDLEGCAFVALID 16
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700159
Iiro Valkonen81c88a72011-07-04 03:08:25 -0700160/* MXT_SPT_COMMSCONFIG_T18 */
Iiro Valkonen7686b102011-02-02 23:21:58 -0800161#define MXT_COMMS_CTRL 0
162#define MXT_COMMS_CMD 1
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700163
Iiro Valkonen81c88a72011-07-04 03:08:25 -0700164/* MXT_SPT_CTECONFIG_T28 field */
Iiro Valkonen7686b102011-02-02 23:21:58 -0800165#define MXT_CTE_CTRL 0
166#define MXT_CTE_CMD 1
167#define MXT_CTE_MODE 2
168#define MXT_CTE_IDLEGCAFDEPTH 3
169#define MXT_CTE_ACTVGCAFDEPTH 4
Joonyoung Shim979a72d2011-03-14 21:41:34 -0700170#define MXT_CTE_VOLTAGE 5
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700171
Iiro Valkonen7686b102011-02-02 23:21:58 -0800172#define MXT_VOLTAGE_DEFAULT 2700000
173#define MXT_VOLTAGE_STEP 10000
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700174
Iiro Valkonen81c88a72011-07-04 03:08:25 -0700175/* Define for MXT_GEN_COMMAND_T6 */
Iiro Valkonen7686b102011-02-02 23:21:58 -0800176#define MXT_BOOT_VALUE 0xa5
177#define MXT_BACKUP_VALUE 0x55
178#define MXT_BACKUP_TIME 25 /* msec */
179#define MXT_RESET_TIME 65 /* msec */
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700180
Iiro Valkonen7686b102011-02-02 23:21:58 -0800181#define MXT_FWRESET_TIME 175 /* msec */
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700182
183/* Command to unlock bootloader */
Iiro Valkonen7686b102011-02-02 23:21:58 -0800184#define MXT_UNLOCK_CMD_MSB 0xaa
185#define MXT_UNLOCK_CMD_LSB 0xdc
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700186
187/* Bootloader mode status */
Iiro Valkonen7686b102011-02-02 23:21:58 -0800188#define MXT_WAITING_BOOTLOAD_CMD 0xc0 /* valid 7 6 bit only */
189#define MXT_WAITING_FRAME_DATA 0x80 /* valid 7 6 bit only */
190#define MXT_FRAME_CRC_CHECK 0x02
191#define MXT_FRAME_CRC_FAIL 0x03
192#define MXT_FRAME_CRC_PASS 0x04
193#define MXT_APP_CRC_FAIL 0x40 /* valid 7 8 bit only */
194#define MXT_BOOT_STATUS_MASK 0x3f
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700195
196/* Touch status */
Iiro Valkonen7686b102011-02-02 23:21:58 -0800197#define MXT_SUPPRESS (1 << 1)
198#define MXT_AMP (1 << 2)
199#define MXT_VECTOR (1 << 3)
200#define MXT_MOVE (1 << 4)
201#define MXT_RELEASE (1 << 5)
202#define MXT_PRESS (1 << 6)
203#define MXT_DETECT (1 << 7)
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700204
Joonyoung Shim910d8052011-04-12 23:14:38 -0700205/* Touch orient bits */
206#define MXT_XY_SWITCH (1 << 0)
207#define MXT_X_INVERT (1 << 1)
208#define MXT_Y_INVERT (1 << 2)
209
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700210/* Touchscreen absolute values */
Iiro Valkonen7686b102011-02-02 23:21:58 -0800211#define MXT_MAX_AREA 0xff
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700212
Iiro Valkonen7686b102011-02-02 23:21:58 -0800213#define MXT_MAX_FINGER 10
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700214
Iiro Valkonen7686b102011-02-02 23:21:58 -0800215struct mxt_info {
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700216 u8 family_id;
217 u8 variant_id;
218 u8 version;
219 u8 build;
220 u8 matrix_xsize;
221 u8 matrix_ysize;
222 u8 object_num;
223};
224
Iiro Valkonen7686b102011-02-02 23:21:58 -0800225struct mxt_object {
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700226 u8 type;
227 u16 start_address;
228 u8 size;
229 u8 instances;
230 u8 num_report_ids;
231
232 /* to map object and message */
233 u8 max_reportid;
234};
235
Iiro Valkonen7686b102011-02-02 23:21:58 -0800236struct mxt_message {
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700237 u8 reportid;
238 u8 message[7];
239 u8 checksum;
240};
241
Iiro Valkonen7686b102011-02-02 23:21:58 -0800242struct mxt_finger {
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700243 int status;
244 int x;
245 int y;
246 int area;
Yufeng Shen28ac2932011-08-16 00:40:54 -0700247 int pressure;
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700248};
249
250/* Each client has this additional data */
Iiro Valkonen7686b102011-02-02 23:21:58 -0800251struct mxt_data {
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700252 struct i2c_client *client;
253 struct input_dev *input_dev;
Iiro Valkonen7686b102011-02-02 23:21:58 -0800254 const struct mxt_platform_data *pdata;
255 struct mxt_object *object_table;
256 struct mxt_info info;
257 struct mxt_finger finger[MXT_MAX_FINGER];
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700258 unsigned int irq;
Joonyoung Shim910d8052011-04-12 23:14:38 -0700259 unsigned int max_x;
260 unsigned int max_y;
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700261};
262
Iiro Valkonen7686b102011-02-02 23:21:58 -0800263static bool mxt_object_readable(unsigned int type)
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700264{
265 switch (type) {
Iiro Valkonen81c88a72011-07-04 03:08:25 -0700266 case MXT_GEN_MESSAGE_T5:
267 case MXT_GEN_COMMAND_T6:
268 case MXT_GEN_POWER_T7:
269 case MXT_GEN_ACQUIRE_T8:
270 case MXT_GEN_DATASOURCE_T53:
271 case MXT_TOUCH_MULTI_T9:
272 case MXT_TOUCH_KEYARRAY_T15:
273 case MXT_TOUCH_PROXIMITY_T23:
274 case MXT_TOUCH_PROXKEY_T52:
275 case MXT_PROCI_GRIPFACE_T20:
276 case MXT_PROCG_NOISE_T22:
277 case MXT_PROCI_ONETOUCH_T24:
278 case MXT_PROCI_TWOTOUCH_T27:
279 case MXT_PROCI_GRIP_T40:
280 case MXT_PROCI_PALM_T41:
281 case MXT_PROCI_TOUCHSUPPRESSION_T42:
282 case MXT_PROCI_STYLUS_T47:
283 case MXT_PROCG_NOISESUPPRESSION_T48:
284 case MXT_SPT_COMMSCONFIG_T18:
285 case MXT_SPT_GPIOPWM_T19:
286 case MXT_SPT_SELFTEST_T25:
287 case MXT_SPT_CTECONFIG_T28:
288 case MXT_SPT_USERDATA_T38:
289 case MXT_SPT_DIGITIZER_T43:
290 case MXT_SPT_CTECONFIG_T46:
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700291 return true;
292 default:
293 return false;
294 }
295}
296
Iiro Valkonen7686b102011-02-02 23:21:58 -0800297static bool mxt_object_writable(unsigned int type)
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700298{
299 switch (type) {
Iiro Valkonen81c88a72011-07-04 03:08:25 -0700300 case MXT_GEN_COMMAND_T6:
301 case MXT_GEN_POWER_T7:
302 case MXT_GEN_ACQUIRE_T8:
303 case MXT_TOUCH_MULTI_T9:
304 case MXT_TOUCH_KEYARRAY_T15:
305 case MXT_TOUCH_PROXIMITY_T23:
306 case MXT_TOUCH_PROXKEY_T52:
307 case MXT_PROCI_GRIPFACE_T20:
308 case MXT_PROCG_NOISE_T22:
309 case MXT_PROCI_ONETOUCH_T24:
310 case MXT_PROCI_TWOTOUCH_T27:
311 case MXT_PROCI_GRIP_T40:
312 case MXT_PROCI_PALM_T41:
313 case MXT_PROCI_TOUCHSUPPRESSION_T42:
314 case MXT_PROCI_STYLUS_T47:
315 case MXT_PROCG_NOISESUPPRESSION_T48:
316 case MXT_SPT_COMMSCONFIG_T18:
317 case MXT_SPT_GPIOPWM_T19:
318 case MXT_SPT_SELFTEST_T25:
319 case MXT_SPT_CTECONFIG_T28:
320 case MXT_SPT_DIGITIZER_T43:
321 case MXT_SPT_CTECONFIG_T46:
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700322 return true;
323 default:
324 return false;
325 }
326}
327
Iiro Valkonen7686b102011-02-02 23:21:58 -0800328static void mxt_dump_message(struct device *dev,
329 struct mxt_message *message)
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700330{
331 dev_dbg(dev, "reportid:\t0x%x\n", message->reportid);
332 dev_dbg(dev, "message1:\t0x%x\n", message->message[0]);
333 dev_dbg(dev, "message2:\t0x%x\n", message->message[1]);
334 dev_dbg(dev, "message3:\t0x%x\n", message->message[2]);
335 dev_dbg(dev, "message4:\t0x%x\n", message->message[3]);
336 dev_dbg(dev, "message5:\t0x%x\n", message->message[4]);
337 dev_dbg(dev, "message6:\t0x%x\n", message->message[5]);
338 dev_dbg(dev, "message7:\t0x%x\n", message->message[6]);
339 dev_dbg(dev, "checksum:\t0x%x\n", message->checksum);
340}
341
Iiro Valkonen7686b102011-02-02 23:21:58 -0800342static int mxt_check_bootloader(struct i2c_client *client,
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700343 unsigned int state)
344{
345 u8 val;
346
347recheck:
348 if (i2c_master_recv(client, &val, 1) != 1) {
349 dev_err(&client->dev, "%s: i2c recv failed\n", __func__);
350 return -EIO;
351 }
352
353 switch (state) {
Iiro Valkonen7686b102011-02-02 23:21:58 -0800354 case MXT_WAITING_BOOTLOAD_CMD:
355 case MXT_WAITING_FRAME_DATA:
356 val &= ~MXT_BOOT_STATUS_MASK;
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700357 break;
Iiro Valkonen7686b102011-02-02 23:21:58 -0800358 case MXT_FRAME_CRC_PASS:
359 if (val == MXT_FRAME_CRC_CHECK)
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700360 goto recheck;
361 break;
362 default:
363 return -EINVAL;
364 }
365
366 if (val != state) {
367 dev_err(&client->dev, "Unvalid bootloader mode state\n");
368 return -EINVAL;
369 }
370
371 return 0;
372}
373
Iiro Valkonen7686b102011-02-02 23:21:58 -0800374static int mxt_unlock_bootloader(struct i2c_client *client)
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700375{
376 u8 buf[2];
377
Iiro Valkonen7686b102011-02-02 23:21:58 -0800378 buf[0] = MXT_UNLOCK_CMD_LSB;
379 buf[1] = MXT_UNLOCK_CMD_MSB;
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700380
381 if (i2c_master_send(client, buf, 2) != 2) {
382 dev_err(&client->dev, "%s: i2c send failed\n", __func__);
383 return -EIO;
384 }
385
386 return 0;
387}
388
Iiro Valkonen7686b102011-02-02 23:21:58 -0800389static int mxt_fw_write(struct i2c_client *client,
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700390 const u8 *data, unsigned int frame_size)
391{
392 if (i2c_master_send(client, data, frame_size) != frame_size) {
393 dev_err(&client->dev, "%s: i2c send failed\n", __func__);
394 return -EIO;
395 }
396
397 return 0;
398}
399
Iiro Valkonen7686b102011-02-02 23:21:58 -0800400static int __mxt_read_reg(struct i2c_client *client,
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700401 u16 reg, u16 len, void *val)
402{
403 struct i2c_msg xfer[2];
404 u8 buf[2];
405
406 buf[0] = reg & 0xff;
407 buf[1] = (reg >> 8) & 0xff;
408
409 /* Write register */
410 xfer[0].addr = client->addr;
411 xfer[0].flags = 0;
412 xfer[0].len = 2;
413 xfer[0].buf = buf;
414
415 /* Read data */
416 xfer[1].addr = client->addr;
417 xfer[1].flags = I2C_M_RD;
418 xfer[1].len = len;
419 xfer[1].buf = val;
420
421 if (i2c_transfer(client->adapter, xfer, 2) != 2) {
422 dev_err(&client->dev, "%s: i2c transfer failed\n", __func__);
423 return -EIO;
424 }
425
426 return 0;
427}
428
Iiro Valkonen7686b102011-02-02 23:21:58 -0800429static int mxt_read_reg(struct i2c_client *client, u16 reg, u8 *val)
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700430{
Iiro Valkonen7686b102011-02-02 23:21:58 -0800431 return __mxt_read_reg(client, reg, 1, val);
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700432}
433
Iiro Valkonen7686b102011-02-02 23:21:58 -0800434static int mxt_write_reg(struct i2c_client *client, u16 reg, u8 val)
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700435{
436 u8 buf[3];
437
438 buf[0] = reg & 0xff;
439 buf[1] = (reg >> 8) & 0xff;
440 buf[2] = val;
441
442 if (i2c_master_send(client, buf, 3) != 3) {
443 dev_err(&client->dev, "%s: i2c send failed\n", __func__);
444 return -EIO;
445 }
446
447 return 0;
448}
449
Iiro Valkonen7686b102011-02-02 23:21:58 -0800450static int mxt_read_object_table(struct i2c_client *client,
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700451 u16 reg, u8 *object_buf)
452{
Iiro Valkonen7686b102011-02-02 23:21:58 -0800453 return __mxt_read_reg(client, reg, MXT_OBJECT_SIZE,
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700454 object_buf);
455}
456
Iiro Valkonen7686b102011-02-02 23:21:58 -0800457static struct mxt_object *
458mxt_get_object(struct mxt_data *data, u8 type)
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700459{
Iiro Valkonen7686b102011-02-02 23:21:58 -0800460 struct mxt_object *object;
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700461 int i;
462
463 for (i = 0; i < data->info.object_num; i++) {
464 object = data->object_table + i;
465 if (object->type == type)
466 return object;
467 }
468
469 dev_err(&data->client->dev, "Invalid object type\n");
470 return NULL;
471}
472
Iiro Valkonen7686b102011-02-02 23:21:58 -0800473static int mxt_read_message(struct mxt_data *data,
474 struct mxt_message *message)
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700475{
Iiro Valkonen7686b102011-02-02 23:21:58 -0800476 struct mxt_object *object;
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700477 u16 reg;
478
Iiro Valkonen81c88a72011-07-04 03:08:25 -0700479 object = mxt_get_object(data, MXT_GEN_MESSAGE_T5);
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700480 if (!object)
481 return -EINVAL;
482
483 reg = object->start_address;
Iiro Valkonen7686b102011-02-02 23:21:58 -0800484 return __mxt_read_reg(data->client, reg,
485 sizeof(struct mxt_message), message);
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700486}
487
Iiro Valkonen7686b102011-02-02 23:21:58 -0800488static int mxt_read_object(struct mxt_data *data,
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700489 u8 type, u8 offset, u8 *val)
490{
Iiro Valkonen7686b102011-02-02 23:21:58 -0800491 struct mxt_object *object;
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700492 u16 reg;
493
Iiro Valkonen7686b102011-02-02 23:21:58 -0800494 object = mxt_get_object(data, type);
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700495 if (!object)
496 return -EINVAL;
497
498 reg = object->start_address;
Iiro Valkonen7686b102011-02-02 23:21:58 -0800499 return __mxt_read_reg(data->client, reg + offset, 1, val);
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700500}
501
Iiro Valkonen7686b102011-02-02 23:21:58 -0800502static int mxt_write_object(struct mxt_data *data,
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700503 u8 type, u8 offset, u8 val)
504{
Iiro Valkonen7686b102011-02-02 23:21:58 -0800505 struct mxt_object *object;
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700506 u16 reg;
507
Iiro Valkonen7686b102011-02-02 23:21:58 -0800508 object = mxt_get_object(data, type);
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700509 if (!object)
510 return -EINVAL;
511
512 reg = object->start_address;
Iiro Valkonen7686b102011-02-02 23:21:58 -0800513 return mxt_write_reg(data->client, reg + offset, val);
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700514}
515
Iiro Valkonen7686b102011-02-02 23:21:58 -0800516static void mxt_input_report(struct mxt_data *data, int single_id)
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700517{
Iiro Valkonen7686b102011-02-02 23:21:58 -0800518 struct mxt_finger *finger = data->finger;
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700519 struct input_dev *input_dev = data->input_dev;
520 int status = finger[single_id].status;
521 int finger_num = 0;
522 int id;
523
Iiro Valkonen7686b102011-02-02 23:21:58 -0800524 for (id = 0; id < MXT_MAX_FINGER; id++) {
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700525 if (!finger[id].status)
526 continue;
527
Joonyoung Shim8b86c1c2011-04-12 23:18:59 -0700528 input_mt_slot(input_dev, id);
529 input_mt_report_slot_state(input_dev, MT_TOOL_FINGER,
530 finger[id].status != MXT_RELEASE);
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700531
Joonyoung Shim8b86c1c2011-04-12 23:18:59 -0700532 if (finger[id].status != MXT_RELEASE) {
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700533 finger_num++;
Joonyoung Shim8b86c1c2011-04-12 23:18:59 -0700534 input_report_abs(input_dev, ABS_MT_TOUCH_MAJOR,
535 finger[id].area);
536 input_report_abs(input_dev, ABS_MT_POSITION_X,
537 finger[id].x);
538 input_report_abs(input_dev, ABS_MT_POSITION_Y,
539 finger[id].y);
Yufeng Shen28ac2932011-08-16 00:40:54 -0700540 input_report_abs(input_dev, ABS_MT_PRESSURE,
541 finger[id].pressure);
Joonyoung Shim8b86c1c2011-04-12 23:18:59 -0700542 } else {
543 finger[id].status = 0;
544 }
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700545 }
546
547 input_report_key(input_dev, BTN_TOUCH, finger_num > 0);
548
Iiro Valkonen7686b102011-02-02 23:21:58 -0800549 if (status != MXT_RELEASE) {
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700550 input_report_abs(input_dev, ABS_X, finger[single_id].x);
551 input_report_abs(input_dev, ABS_Y, finger[single_id].y);
Yufeng Shen28ac2932011-08-16 00:40:54 -0700552 input_report_abs(input_dev,
553 ABS_PRESSURE, finger[single_id].pressure);
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700554 }
555
556 input_sync(input_dev);
557}
558
Iiro Valkonen7686b102011-02-02 23:21:58 -0800559static void mxt_input_touchevent(struct mxt_data *data,
560 struct mxt_message *message, int id)
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700561{
Iiro Valkonen7686b102011-02-02 23:21:58 -0800562 struct mxt_finger *finger = data->finger;
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700563 struct device *dev = &data->client->dev;
564 u8 status = message->message[0];
565 int x;
566 int y;
567 int area;
Yufeng Shen28ac2932011-08-16 00:40:54 -0700568 int pressure;
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700569
570 /* Check the touch is present on the screen */
Iiro Valkonen7686b102011-02-02 23:21:58 -0800571 if (!(status & MXT_DETECT)) {
572 if (status & MXT_RELEASE) {
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700573 dev_dbg(dev, "[%d] released\n", id);
574
Iiro Valkonen7686b102011-02-02 23:21:58 -0800575 finger[id].status = MXT_RELEASE;
576 mxt_input_report(data, id);
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700577 }
578 return;
579 }
580
581 /* Check only AMP detection */
Iiro Valkonen7686b102011-02-02 23:21:58 -0800582 if (!(status & (MXT_PRESS | MXT_MOVE)))
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700583 return;
584
Joonyoung Shim910d8052011-04-12 23:14:38 -0700585 x = (message->message[1] << 4) | ((message->message[3] >> 4) & 0xf);
586 y = (message->message[2] << 4) | ((message->message[3] & 0xf));
587 if (data->max_x < 1024)
588 x = x >> 2;
589 if (data->max_y < 1024)
590 y = y >> 2;
591
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700592 area = message->message[4];
Yufeng Shen28ac2932011-08-16 00:40:54 -0700593 pressure = message->message[5];
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700594
595 dev_dbg(dev, "[%d] %s x: %d, y: %d, area: %d\n", id,
Iiro Valkonen7686b102011-02-02 23:21:58 -0800596 status & MXT_MOVE ? "moved" : "pressed",
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700597 x, y, area);
598
Iiro Valkonen7686b102011-02-02 23:21:58 -0800599 finger[id].status = status & MXT_MOVE ?
600 MXT_MOVE : MXT_PRESS;
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700601 finger[id].x = x;
602 finger[id].y = y;
603 finger[id].area = area;
Yufeng Shen28ac2932011-08-16 00:40:54 -0700604 finger[id].pressure = pressure;
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700605
Iiro Valkonen7686b102011-02-02 23:21:58 -0800606 mxt_input_report(data, id);
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700607}
608
Iiro Valkonen7686b102011-02-02 23:21:58 -0800609static irqreturn_t mxt_interrupt(int irq, void *dev_id)
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700610{
Iiro Valkonen7686b102011-02-02 23:21:58 -0800611 struct mxt_data *data = dev_id;
612 struct mxt_message message;
613 struct mxt_object *object;
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700614 struct device *dev = &data->client->dev;
615 int id;
616 u8 reportid;
617 u8 max_reportid;
618 u8 min_reportid;
619
620 do {
Iiro Valkonen7686b102011-02-02 23:21:58 -0800621 if (mxt_read_message(data, &message)) {
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700622 dev_err(dev, "Failed to read message\n");
623 goto end;
624 }
625
626 reportid = message.reportid;
627
Iiro Valkonen81c88a72011-07-04 03:08:25 -0700628 /* whether reportid is thing of MXT_TOUCH_MULTI_T9 */
629 object = mxt_get_object(data, MXT_TOUCH_MULTI_T9);
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700630 if (!object)
631 goto end;
632
633 max_reportid = object->max_reportid;
634 min_reportid = max_reportid - object->num_report_ids + 1;
635 id = reportid - min_reportid;
636
637 if (reportid >= min_reportid && reportid <= max_reportid)
Iiro Valkonen7686b102011-02-02 23:21:58 -0800638 mxt_input_touchevent(data, &message, id);
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700639 else
Iiro Valkonen7686b102011-02-02 23:21:58 -0800640 mxt_dump_message(dev, &message);
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700641 } while (reportid != 0xff);
642
643end:
644 return IRQ_HANDLED;
645}
646
Iiro Valkonen7686b102011-02-02 23:21:58 -0800647static int mxt_check_reg_init(struct mxt_data *data)
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700648{
Iiro Valkonen71749f52011-02-15 13:36:52 -0800649 const struct mxt_platform_data *pdata = data->pdata;
Iiro Valkonen7686b102011-02-02 23:21:58 -0800650 struct mxt_object *object;
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700651 struct device *dev = &data->client->dev;
652 int index = 0;
Iiro Valkonen71749f52011-02-15 13:36:52 -0800653 int i, j, config_offset;
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700654
Iiro Valkonen71749f52011-02-15 13:36:52 -0800655 if (!pdata->config) {
656 dev_dbg(dev, "No cfg data defined, skipping reg init\n");
657 return 0;
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700658 }
659
660 for (i = 0; i < data->info.object_num; i++) {
661 object = data->object_table + i;
662
Iiro Valkonen7686b102011-02-02 23:21:58 -0800663 if (!mxt_object_writable(object->type))
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700664 continue;
665
Iiro Valkonena93d4f22011-07-04 03:16:25 -0700666 for (j = 0;
667 j < (object->size + 1) * (object->instances + 1);
668 j++) {
Iiro Valkonen71749f52011-02-15 13:36:52 -0800669 config_offset = index + j;
670 if (config_offset > pdata->config_length) {
671 dev_err(dev, "Not enough config data!\n");
672 return -EINVAL;
673 }
Iiro Valkonen7686b102011-02-02 23:21:58 -0800674 mxt_write_object(data, object->type, j,
Iiro Valkonen71749f52011-02-15 13:36:52 -0800675 pdata->config[config_offset]);
676 }
Iiro Valkonena93d4f22011-07-04 03:16:25 -0700677 index += (object->size + 1) * (object->instances + 1);
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700678 }
679
680 return 0;
681}
682
Iiro Valkonen7686b102011-02-02 23:21:58 -0800683static int mxt_make_highchg(struct mxt_data *data)
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700684{
685 struct device *dev = &data->client->dev;
Iiro Valkonen26cdb1a2011-02-04 00:51:05 -0800686 struct mxt_message message;
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700687 int count = 10;
688 int error;
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700689
690 /* Read dummy message to make high CHG pin */
691 do {
Iiro Valkonen26cdb1a2011-02-04 00:51:05 -0800692 error = mxt_read_message(data, &message);
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700693 if (error)
694 return error;
Iiro Valkonen26cdb1a2011-02-04 00:51:05 -0800695 } while (message.reportid != 0xff && --count);
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700696
697 if (!count) {
698 dev_err(dev, "CHG pin isn't cleared\n");
699 return -EBUSY;
700 }
701
702 return 0;
703}
704
Iiro Valkonen7686b102011-02-02 23:21:58 -0800705static void mxt_handle_pdata(struct mxt_data *data)
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700706{
Iiro Valkonen7686b102011-02-02 23:21:58 -0800707 const struct mxt_platform_data *pdata = data->pdata;
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700708 u8 voltage;
709
710 /* Set touchscreen lines */
Iiro Valkonen81c88a72011-07-04 03:08:25 -0700711 mxt_write_object(data, MXT_TOUCH_MULTI_T9, MXT_TOUCH_XSIZE,
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700712 pdata->x_line);
Iiro Valkonen81c88a72011-07-04 03:08:25 -0700713 mxt_write_object(data, MXT_TOUCH_MULTI_T9, MXT_TOUCH_YSIZE,
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700714 pdata->y_line);
715
716 /* Set touchscreen orient */
Iiro Valkonen81c88a72011-07-04 03:08:25 -0700717 mxt_write_object(data, MXT_TOUCH_MULTI_T9, MXT_TOUCH_ORIENT,
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700718 pdata->orient);
719
720 /* Set touchscreen burst length */
Iiro Valkonen81c88a72011-07-04 03:08:25 -0700721 mxt_write_object(data, MXT_TOUCH_MULTI_T9,
Iiro Valkonen7686b102011-02-02 23:21:58 -0800722 MXT_TOUCH_BLEN, pdata->blen);
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700723
724 /* Set touchscreen threshold */
Iiro Valkonen81c88a72011-07-04 03:08:25 -0700725 mxt_write_object(data, MXT_TOUCH_MULTI_T9,
Iiro Valkonen7686b102011-02-02 23:21:58 -0800726 MXT_TOUCH_TCHTHR, pdata->threshold);
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700727
728 /* Set touchscreen resolution */
Iiro Valkonen81c88a72011-07-04 03:08:25 -0700729 mxt_write_object(data, MXT_TOUCH_MULTI_T9,
Iiro Valkonen7686b102011-02-02 23:21:58 -0800730 MXT_TOUCH_XRANGE_LSB, (pdata->x_size - 1) & 0xff);
Iiro Valkonen81c88a72011-07-04 03:08:25 -0700731 mxt_write_object(data, MXT_TOUCH_MULTI_T9,
Iiro Valkonen7686b102011-02-02 23:21:58 -0800732 MXT_TOUCH_XRANGE_MSB, (pdata->x_size - 1) >> 8);
Iiro Valkonen81c88a72011-07-04 03:08:25 -0700733 mxt_write_object(data, MXT_TOUCH_MULTI_T9,
Iiro Valkonen7686b102011-02-02 23:21:58 -0800734 MXT_TOUCH_YRANGE_LSB, (pdata->y_size - 1) & 0xff);
Iiro Valkonen81c88a72011-07-04 03:08:25 -0700735 mxt_write_object(data, MXT_TOUCH_MULTI_T9,
Iiro Valkonen7686b102011-02-02 23:21:58 -0800736 MXT_TOUCH_YRANGE_MSB, (pdata->y_size - 1) >> 8);
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700737
738 /* Set touchscreen voltage */
Joonyoung Shim979a72d2011-03-14 21:41:34 -0700739 if (pdata->voltage) {
Iiro Valkonen7686b102011-02-02 23:21:58 -0800740 if (pdata->voltage < MXT_VOLTAGE_DEFAULT) {
741 voltage = (MXT_VOLTAGE_DEFAULT - pdata->voltage) /
742 MXT_VOLTAGE_STEP;
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700743 voltage = 0xff - voltage + 1;
744 } else
Iiro Valkonen7686b102011-02-02 23:21:58 -0800745 voltage = (pdata->voltage - MXT_VOLTAGE_DEFAULT) /
746 MXT_VOLTAGE_STEP;
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700747
Iiro Valkonen81c88a72011-07-04 03:08:25 -0700748 mxt_write_object(data, MXT_SPT_CTECONFIG_T28,
Iiro Valkonen7686b102011-02-02 23:21:58 -0800749 MXT_CTE_VOLTAGE, voltage);
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700750 }
751}
752
Iiro Valkonen7686b102011-02-02 23:21:58 -0800753static int mxt_get_info(struct mxt_data *data)
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700754{
755 struct i2c_client *client = data->client;
Iiro Valkonen7686b102011-02-02 23:21:58 -0800756 struct mxt_info *info = &data->info;
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700757 int error;
758 u8 val;
759
Iiro Valkonen7686b102011-02-02 23:21:58 -0800760 error = mxt_read_reg(client, MXT_FAMILY_ID, &val);
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700761 if (error)
762 return error;
763 info->family_id = val;
764
Iiro Valkonen7686b102011-02-02 23:21:58 -0800765 error = mxt_read_reg(client, MXT_VARIANT_ID, &val);
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700766 if (error)
767 return error;
768 info->variant_id = val;
769
Iiro Valkonen7686b102011-02-02 23:21:58 -0800770 error = mxt_read_reg(client, MXT_VERSION, &val);
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700771 if (error)
772 return error;
773 info->version = val;
774
Iiro Valkonen7686b102011-02-02 23:21:58 -0800775 error = mxt_read_reg(client, MXT_BUILD, &val);
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700776 if (error)
777 return error;
778 info->build = val;
779
Iiro Valkonen7686b102011-02-02 23:21:58 -0800780 error = mxt_read_reg(client, MXT_OBJECT_NUM, &val);
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700781 if (error)
782 return error;
783 info->object_num = val;
784
785 return 0;
786}
787
Iiro Valkonen7686b102011-02-02 23:21:58 -0800788static int mxt_get_object_table(struct mxt_data *data)
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700789{
790 int error;
791 int i;
792 u16 reg;
793 u8 reportid = 0;
Iiro Valkonen7686b102011-02-02 23:21:58 -0800794 u8 buf[MXT_OBJECT_SIZE];
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700795
796 for (i = 0; i < data->info.object_num; i++) {
Iiro Valkonen7686b102011-02-02 23:21:58 -0800797 struct mxt_object *object = data->object_table + i;
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700798
Iiro Valkonen7686b102011-02-02 23:21:58 -0800799 reg = MXT_OBJECT_START + MXT_OBJECT_SIZE * i;
800 error = mxt_read_object_table(data->client, reg, buf);
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700801 if (error)
802 return error;
803
804 object->type = buf[0];
805 object->start_address = (buf[2] << 8) | buf[1];
806 object->size = buf[3];
807 object->instances = buf[4];
808 object->num_report_ids = buf[5];
809
810 if (object->num_report_ids) {
811 reportid += object->num_report_ids *
812 (object->instances + 1);
813 object->max_reportid = reportid;
814 }
815 }
816
817 return 0;
818}
819
Iiro Valkonen7686b102011-02-02 23:21:58 -0800820static int mxt_initialize(struct mxt_data *data)
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700821{
822 struct i2c_client *client = data->client;
Iiro Valkonen7686b102011-02-02 23:21:58 -0800823 struct mxt_info *info = &data->info;
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700824 int error;
825 u8 val;
826
Iiro Valkonen7686b102011-02-02 23:21:58 -0800827 error = mxt_get_info(data);
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700828 if (error)
829 return error;
830
831 data->object_table = kcalloc(info->object_num,
Iiro Valkonen7686b102011-02-02 23:21:58 -0800832 sizeof(struct mxt_object),
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700833 GFP_KERNEL);
834 if (!data->object_table) {
835 dev_err(&client->dev, "Failed to allocate memory\n");
836 return -ENOMEM;
837 }
838
839 /* Get object table information */
Iiro Valkonen7686b102011-02-02 23:21:58 -0800840 error = mxt_get_object_table(data);
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700841 if (error)
842 return error;
843
844 /* Check register init values */
Iiro Valkonen7686b102011-02-02 23:21:58 -0800845 error = mxt_check_reg_init(data);
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700846 if (error)
847 return error;
848
Iiro Valkonen7686b102011-02-02 23:21:58 -0800849 mxt_handle_pdata(data);
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700850
851 /* Backup to memory */
Iiro Valkonen81c88a72011-07-04 03:08:25 -0700852 mxt_write_object(data, MXT_GEN_COMMAND_T6,
Iiro Valkonen7686b102011-02-02 23:21:58 -0800853 MXT_COMMAND_BACKUPNV,
854 MXT_BACKUP_VALUE);
855 msleep(MXT_BACKUP_TIME);
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700856
857 /* Soft reset */
Iiro Valkonen81c88a72011-07-04 03:08:25 -0700858 mxt_write_object(data, MXT_GEN_COMMAND_T6,
Iiro Valkonen7686b102011-02-02 23:21:58 -0800859 MXT_COMMAND_RESET, 1);
860 msleep(MXT_RESET_TIME);
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700861
862 /* Update matrix size at info struct */
Iiro Valkonen7686b102011-02-02 23:21:58 -0800863 error = mxt_read_reg(client, MXT_MATRIX_X_SIZE, &val);
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700864 if (error)
865 return error;
866 info->matrix_xsize = val;
867
Iiro Valkonen7686b102011-02-02 23:21:58 -0800868 error = mxt_read_reg(client, MXT_MATRIX_Y_SIZE, &val);
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700869 if (error)
870 return error;
871 info->matrix_ysize = val;
872
873 dev_info(&client->dev,
874 "Family ID: %d Variant ID: %d Version: %d Build: %d\n",
875 info->family_id, info->variant_id, info->version,
876 info->build);
877
878 dev_info(&client->dev,
879 "Matrix X Size: %d Matrix Y Size: %d Object Num: %d\n",
880 info->matrix_xsize, info->matrix_ysize,
881 info->object_num);
882
883 return 0;
884}
885
Joonyoung Shim910d8052011-04-12 23:14:38 -0700886static void mxt_calc_resolution(struct mxt_data *data)
887{
888 unsigned int max_x = data->pdata->x_size - 1;
889 unsigned int max_y = data->pdata->y_size - 1;
890
891 if (data->pdata->orient & MXT_XY_SWITCH) {
892 data->max_x = max_y;
893 data->max_y = max_x;
894 } else {
895 data->max_x = max_x;
896 data->max_y = max_y;
897 }
898}
899
Iiro Valkonen7686b102011-02-02 23:21:58 -0800900static ssize_t mxt_object_show(struct device *dev,
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700901 struct device_attribute *attr, char *buf)
902{
Iiro Valkonen7686b102011-02-02 23:21:58 -0800903 struct mxt_data *data = dev_get_drvdata(dev);
904 struct mxt_object *object;
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700905 int count = 0;
906 int i, j;
907 int error;
908 u8 val;
909
910 for (i = 0; i < data->info.object_num; i++) {
911 object = data->object_table + i;
912
Daniel Kurtz626af862011-10-06 15:43:20 -0700913 count += snprintf(buf + count, PAGE_SIZE - count,
914 "Object[%d] (Type %d)\n",
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700915 i + 1, object->type);
Daniel Kurtz626af862011-10-06 15:43:20 -0700916 if (count >= PAGE_SIZE)
917 return PAGE_SIZE - 1;
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700918
Iiro Valkonen7686b102011-02-02 23:21:58 -0800919 if (!mxt_object_readable(object->type)) {
Daniel Kurtz626af862011-10-06 15:43:20 -0700920 count += snprintf(buf + count, PAGE_SIZE - count,
921 "\n");
922 if (count >= PAGE_SIZE)
923 return PAGE_SIZE - 1;
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700924 continue;
925 }
926
927 for (j = 0; j < object->size + 1; j++) {
Iiro Valkonen7686b102011-02-02 23:21:58 -0800928 error = mxt_read_object(data,
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700929 object->type, j, &val);
930 if (error)
931 return error;
932
Daniel Kurtz626af862011-10-06 15:43:20 -0700933 count += snprintf(buf + count, PAGE_SIZE - count,
934 "\t[%2d]: %02x (%d)\n", j, val, val);
935 if (count >= PAGE_SIZE)
936 return PAGE_SIZE - 1;
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700937 }
938
Daniel Kurtz626af862011-10-06 15:43:20 -0700939 count += snprintf(buf + count, PAGE_SIZE - count, "\n");
940 if (count >= PAGE_SIZE)
941 return PAGE_SIZE - 1;
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700942 }
943
944 return count;
945}
946
Iiro Valkonen7686b102011-02-02 23:21:58 -0800947static int mxt_load_fw(struct device *dev, const char *fn)
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700948{
Iiro Valkonen7686b102011-02-02 23:21:58 -0800949 struct mxt_data *data = dev_get_drvdata(dev);
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700950 struct i2c_client *client = data->client;
951 const struct firmware *fw = NULL;
952 unsigned int frame_size;
953 unsigned int pos = 0;
954 int ret;
955
956 ret = request_firmware(&fw, fn, dev);
957 if (ret) {
958 dev_err(dev, "Unable to open firmware %s\n", fn);
959 return ret;
960 }
961
962 /* Change to the bootloader mode */
Iiro Valkonen81c88a72011-07-04 03:08:25 -0700963 mxt_write_object(data, MXT_GEN_COMMAND_T6,
Iiro Valkonen7686b102011-02-02 23:21:58 -0800964 MXT_COMMAND_RESET, MXT_BOOT_VALUE);
965 msleep(MXT_RESET_TIME);
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700966
967 /* Change to slave address of bootloader */
Iiro Valkonen7686b102011-02-02 23:21:58 -0800968 if (client->addr == MXT_APP_LOW)
969 client->addr = MXT_BOOT_LOW;
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700970 else
Iiro Valkonen7686b102011-02-02 23:21:58 -0800971 client->addr = MXT_BOOT_HIGH;
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700972
Iiro Valkonen7686b102011-02-02 23:21:58 -0800973 ret = mxt_check_bootloader(client, MXT_WAITING_BOOTLOAD_CMD);
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700974 if (ret)
975 goto out;
976
977 /* Unlock bootloader */
Iiro Valkonen7686b102011-02-02 23:21:58 -0800978 mxt_unlock_bootloader(client);
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700979
980 while (pos < fw->size) {
Iiro Valkonen7686b102011-02-02 23:21:58 -0800981 ret = mxt_check_bootloader(client,
982 MXT_WAITING_FRAME_DATA);
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700983 if (ret)
984 goto out;
985
986 frame_size = ((*(fw->data + pos) << 8) | *(fw->data + pos + 1));
987
988 /* We should add 2 at frame size as the the firmware data is not
989 * included the CRC bytes.
990 */
991 frame_size += 2;
992
993 /* Write one frame to device */
Iiro Valkonen7686b102011-02-02 23:21:58 -0800994 mxt_fw_write(client, fw->data + pos, frame_size);
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700995
Iiro Valkonen7686b102011-02-02 23:21:58 -0800996 ret = mxt_check_bootloader(client,
997 MXT_FRAME_CRC_PASS);
Joonyoung Shim4cf51c32010-07-14 21:55:30 -0700998 if (ret)
999 goto out;
1000
1001 pos += frame_size;
1002
1003 dev_dbg(dev, "Updated %d bytes / %zd bytes\n", pos, fw->size);
1004 }
1005
1006out:
1007 release_firmware(fw);
1008
1009 /* Change to slave address of application */
Iiro Valkonen7686b102011-02-02 23:21:58 -08001010 if (client->addr == MXT_BOOT_LOW)
1011 client->addr = MXT_APP_LOW;
Joonyoung Shim4cf51c32010-07-14 21:55:30 -07001012 else
Iiro Valkonen7686b102011-02-02 23:21:58 -08001013 client->addr = MXT_APP_HIGH;
Joonyoung Shim4cf51c32010-07-14 21:55:30 -07001014
1015 return ret;
1016}
1017
Iiro Valkonen7686b102011-02-02 23:21:58 -08001018static ssize_t mxt_update_fw_store(struct device *dev,
Joonyoung Shim4cf51c32010-07-14 21:55:30 -07001019 struct device_attribute *attr,
1020 const char *buf, size_t count)
1021{
Iiro Valkonen7686b102011-02-02 23:21:58 -08001022 struct mxt_data *data = dev_get_drvdata(dev);
Joonyoung Shim4cf51c32010-07-14 21:55:30 -07001023 int error;
1024
Joonyoung Shim4cf51c32010-07-14 21:55:30 -07001025 disable_irq(data->irq);
1026
Iiro Valkonen7686b102011-02-02 23:21:58 -08001027 error = mxt_load_fw(dev, MXT_FW_NAME);
Joonyoung Shim4cf51c32010-07-14 21:55:30 -07001028 if (error) {
1029 dev_err(dev, "The firmware update failed(%d)\n", error);
1030 count = error;
1031 } else {
1032 dev_dbg(dev, "The firmware update succeeded\n");
1033
1034 /* Wait for reset */
Iiro Valkonen7686b102011-02-02 23:21:58 -08001035 msleep(MXT_FWRESET_TIME);
Joonyoung Shim4cf51c32010-07-14 21:55:30 -07001036
1037 kfree(data->object_table);
1038 data->object_table = NULL;
1039
Iiro Valkonen7686b102011-02-02 23:21:58 -08001040 mxt_initialize(data);
Joonyoung Shim4cf51c32010-07-14 21:55:30 -07001041 }
1042
1043 enable_irq(data->irq);
1044
Iiro Valkonen08960a02011-04-12 23:16:40 -07001045 error = mxt_make_highchg(data);
1046 if (error)
1047 return error;
1048
Joonyoung Shim4cf51c32010-07-14 21:55:30 -07001049 return count;
1050}
1051
Iiro Valkonen7686b102011-02-02 23:21:58 -08001052static DEVICE_ATTR(object, 0444, mxt_object_show, NULL);
1053static DEVICE_ATTR(update_fw, 0664, NULL, mxt_update_fw_store);
Joonyoung Shim4cf51c32010-07-14 21:55:30 -07001054
Iiro Valkonen7686b102011-02-02 23:21:58 -08001055static struct attribute *mxt_attrs[] = {
Joonyoung Shim4cf51c32010-07-14 21:55:30 -07001056 &dev_attr_object.attr,
1057 &dev_attr_update_fw.attr,
1058 NULL
1059};
1060
Iiro Valkonen7686b102011-02-02 23:21:58 -08001061static const struct attribute_group mxt_attr_group = {
1062 .attrs = mxt_attrs,
Joonyoung Shim4cf51c32010-07-14 21:55:30 -07001063};
1064
Iiro Valkonen7686b102011-02-02 23:21:58 -08001065static void mxt_start(struct mxt_data *data)
Joonyoung Shim4cf51c32010-07-14 21:55:30 -07001066{
1067 /* Touch enable */
Iiro Valkonen7686b102011-02-02 23:21:58 -08001068 mxt_write_object(data,
Iiro Valkonen81c88a72011-07-04 03:08:25 -07001069 MXT_TOUCH_MULTI_T9, MXT_TOUCH_CTRL, 0x83);
Joonyoung Shim4cf51c32010-07-14 21:55:30 -07001070}
1071
Iiro Valkonen7686b102011-02-02 23:21:58 -08001072static void mxt_stop(struct mxt_data *data)
Joonyoung Shim4cf51c32010-07-14 21:55:30 -07001073{
1074 /* Touch disable */
Iiro Valkonen7686b102011-02-02 23:21:58 -08001075 mxt_write_object(data,
Iiro Valkonen81c88a72011-07-04 03:08:25 -07001076 MXT_TOUCH_MULTI_T9, MXT_TOUCH_CTRL, 0);
Joonyoung Shim4cf51c32010-07-14 21:55:30 -07001077}
1078
Iiro Valkonen7686b102011-02-02 23:21:58 -08001079static int mxt_input_open(struct input_dev *dev)
Joonyoung Shim4cf51c32010-07-14 21:55:30 -07001080{
Iiro Valkonen7686b102011-02-02 23:21:58 -08001081 struct mxt_data *data = input_get_drvdata(dev);
Joonyoung Shim4cf51c32010-07-14 21:55:30 -07001082
Iiro Valkonen7686b102011-02-02 23:21:58 -08001083 mxt_start(data);
Joonyoung Shim4cf51c32010-07-14 21:55:30 -07001084
1085 return 0;
1086}
1087
Iiro Valkonen7686b102011-02-02 23:21:58 -08001088static void mxt_input_close(struct input_dev *dev)
Joonyoung Shim4cf51c32010-07-14 21:55:30 -07001089{
Iiro Valkonen7686b102011-02-02 23:21:58 -08001090 struct mxt_data *data = input_get_drvdata(dev);
Joonyoung Shim4cf51c32010-07-14 21:55:30 -07001091
Iiro Valkonen7686b102011-02-02 23:21:58 -08001092 mxt_stop(data);
Joonyoung Shim4cf51c32010-07-14 21:55:30 -07001093}
1094
Iiro Valkonen7686b102011-02-02 23:21:58 -08001095static int __devinit mxt_probe(struct i2c_client *client,
Joonyoung Shim4cf51c32010-07-14 21:55:30 -07001096 const struct i2c_device_id *id)
1097{
Iiro Valkonen919ed892011-02-15 13:36:52 -08001098 const struct mxt_platform_data *pdata = client->dev.platform_data;
Iiro Valkonen7686b102011-02-02 23:21:58 -08001099 struct mxt_data *data;
Joonyoung Shim4cf51c32010-07-14 21:55:30 -07001100 struct input_dev *input_dev;
1101 int error;
1102
Iiro Valkonen919ed892011-02-15 13:36:52 -08001103 if (!pdata)
Joonyoung Shim4cf51c32010-07-14 21:55:30 -07001104 return -EINVAL;
1105
Iiro Valkonen7686b102011-02-02 23:21:58 -08001106 data = kzalloc(sizeof(struct mxt_data), GFP_KERNEL);
Joonyoung Shim4cf51c32010-07-14 21:55:30 -07001107 input_dev = input_allocate_device();
1108 if (!data || !input_dev) {
1109 dev_err(&client->dev, "Failed to allocate memory\n");
1110 error = -ENOMEM;
1111 goto err_free_mem;
1112 }
1113
Iiro Valkonen7686b102011-02-02 23:21:58 -08001114 input_dev->name = "Atmel maXTouch Touchscreen";
Joonyoung Shim4cf51c32010-07-14 21:55:30 -07001115 input_dev->id.bustype = BUS_I2C;
1116 input_dev->dev.parent = &client->dev;
Iiro Valkonen7686b102011-02-02 23:21:58 -08001117 input_dev->open = mxt_input_open;
1118 input_dev->close = mxt_input_close;
Joonyoung Shim4cf51c32010-07-14 21:55:30 -07001119
Joonyoung Shim910d8052011-04-12 23:14:38 -07001120 data->client = client;
1121 data->input_dev = input_dev;
1122 data->pdata = pdata;
1123 data->irq = client->irq;
1124
1125 mxt_calc_resolution(data);
1126
Joonyoung Shim4cf51c32010-07-14 21:55:30 -07001127 __set_bit(EV_ABS, input_dev->evbit);
1128 __set_bit(EV_KEY, input_dev->evbit);
1129 __set_bit(BTN_TOUCH, input_dev->keybit);
1130
1131 /* For single touch */
1132 input_set_abs_params(input_dev, ABS_X,
Joonyoung Shim910d8052011-04-12 23:14:38 -07001133 0, data->max_x, 0, 0);
Joonyoung Shim4cf51c32010-07-14 21:55:30 -07001134 input_set_abs_params(input_dev, ABS_Y,
Joonyoung Shim910d8052011-04-12 23:14:38 -07001135 0, data->max_y, 0, 0);
Yufeng Shen28ac2932011-08-16 00:40:54 -07001136 input_set_abs_params(input_dev, ABS_PRESSURE,
1137 0, 255, 0, 0);
Joonyoung Shim4cf51c32010-07-14 21:55:30 -07001138
1139 /* For multi touch */
Joonyoung Shim8b86c1c2011-04-12 23:18:59 -07001140 input_mt_init_slots(input_dev, MXT_MAX_FINGER);
Joonyoung Shim4cf51c32010-07-14 21:55:30 -07001141 input_set_abs_params(input_dev, ABS_MT_TOUCH_MAJOR,
Iiro Valkonen7686b102011-02-02 23:21:58 -08001142 0, MXT_MAX_AREA, 0, 0);
Joonyoung Shim4cf51c32010-07-14 21:55:30 -07001143 input_set_abs_params(input_dev, ABS_MT_POSITION_X,
Joonyoung Shim910d8052011-04-12 23:14:38 -07001144 0, data->max_x, 0, 0);
Joonyoung Shim4cf51c32010-07-14 21:55:30 -07001145 input_set_abs_params(input_dev, ABS_MT_POSITION_Y,
Joonyoung Shim910d8052011-04-12 23:14:38 -07001146 0, data->max_y, 0, 0);
Yufeng Shen28ac2932011-08-16 00:40:54 -07001147 input_set_abs_params(input_dev, ABS_MT_PRESSURE,
1148 0, 255, 0, 0);
Joonyoung Shim4cf51c32010-07-14 21:55:30 -07001149
1150 input_set_drvdata(input_dev, data);
Joonyoung Shim4cf51c32010-07-14 21:55:30 -07001151 i2c_set_clientdata(client, data);
1152
Iiro Valkonen7686b102011-02-02 23:21:58 -08001153 error = mxt_initialize(data);
Joonyoung Shim4cf51c32010-07-14 21:55:30 -07001154 if (error)
1155 goto err_free_object;
1156
Iiro Valkonen7686b102011-02-02 23:21:58 -08001157 error = request_threaded_irq(client->irq, NULL, mxt_interrupt,
Iiro Valkonen919ed892011-02-15 13:36:52 -08001158 pdata->irqflags, client->dev.driver->name, data);
Joonyoung Shim4cf51c32010-07-14 21:55:30 -07001159 if (error) {
1160 dev_err(&client->dev, "Failed to register interrupt\n");
1161 goto err_free_object;
1162 }
1163
Iiro Valkonen08960a02011-04-12 23:16:40 -07001164 error = mxt_make_highchg(data);
1165 if (error)
1166 goto err_free_irq;
1167
Joonyoung Shim4cf51c32010-07-14 21:55:30 -07001168 error = input_register_device(input_dev);
1169 if (error)
1170 goto err_free_irq;
1171
Iiro Valkonen7686b102011-02-02 23:21:58 -08001172 error = sysfs_create_group(&client->dev.kobj, &mxt_attr_group);
Joonyoung Shim4cf51c32010-07-14 21:55:30 -07001173 if (error)
1174 goto err_unregister_device;
1175
1176 return 0;
1177
1178err_unregister_device:
1179 input_unregister_device(input_dev);
1180 input_dev = NULL;
1181err_free_irq:
1182 free_irq(client->irq, data);
1183err_free_object:
1184 kfree(data->object_table);
1185err_free_mem:
1186 input_free_device(input_dev);
1187 kfree(data);
1188 return error;
1189}
1190
Iiro Valkonen7686b102011-02-02 23:21:58 -08001191static int __devexit mxt_remove(struct i2c_client *client)
Joonyoung Shim4cf51c32010-07-14 21:55:30 -07001192{
Iiro Valkonen7686b102011-02-02 23:21:58 -08001193 struct mxt_data *data = i2c_get_clientdata(client);
Joonyoung Shim4cf51c32010-07-14 21:55:30 -07001194
Iiro Valkonen7686b102011-02-02 23:21:58 -08001195 sysfs_remove_group(&client->dev.kobj, &mxt_attr_group);
Joonyoung Shim4cf51c32010-07-14 21:55:30 -07001196 free_irq(data->irq, data);
1197 input_unregister_device(data->input_dev);
1198 kfree(data->object_table);
1199 kfree(data);
1200
1201 return 0;
1202}
1203
1204#ifdef CONFIG_PM
Iiro Valkonen7686b102011-02-02 23:21:58 -08001205static int mxt_suspend(struct device *dev)
Joonyoung Shim4cf51c32010-07-14 21:55:30 -07001206{
Dmitry Torokhov8b5fce02010-11-18 00:14:03 -08001207 struct i2c_client *client = to_i2c_client(dev);
Iiro Valkonen7686b102011-02-02 23:21:58 -08001208 struct mxt_data *data = i2c_get_clientdata(client);
Joonyoung Shim4cf51c32010-07-14 21:55:30 -07001209 struct input_dev *input_dev = data->input_dev;
1210
1211 mutex_lock(&input_dev->mutex);
1212
1213 if (input_dev->users)
Iiro Valkonen7686b102011-02-02 23:21:58 -08001214 mxt_stop(data);
Joonyoung Shim4cf51c32010-07-14 21:55:30 -07001215
1216 mutex_unlock(&input_dev->mutex);
1217
1218 return 0;
1219}
1220
Iiro Valkonen7686b102011-02-02 23:21:58 -08001221static int mxt_resume(struct device *dev)
Joonyoung Shim4cf51c32010-07-14 21:55:30 -07001222{
Dmitry Torokhov8b5fce02010-11-18 00:14:03 -08001223 struct i2c_client *client = to_i2c_client(dev);
Iiro Valkonen7686b102011-02-02 23:21:58 -08001224 struct mxt_data *data = i2c_get_clientdata(client);
Joonyoung Shim4cf51c32010-07-14 21:55:30 -07001225 struct input_dev *input_dev = data->input_dev;
1226
1227 /* Soft reset */
Iiro Valkonen81c88a72011-07-04 03:08:25 -07001228 mxt_write_object(data, MXT_GEN_COMMAND_T6,
Iiro Valkonen7686b102011-02-02 23:21:58 -08001229 MXT_COMMAND_RESET, 1);
Joonyoung Shim4cf51c32010-07-14 21:55:30 -07001230
Iiro Valkonen7686b102011-02-02 23:21:58 -08001231 msleep(MXT_RESET_TIME);
Joonyoung Shim4cf51c32010-07-14 21:55:30 -07001232
1233 mutex_lock(&input_dev->mutex);
1234
1235 if (input_dev->users)
Iiro Valkonen7686b102011-02-02 23:21:58 -08001236 mxt_start(data);
Joonyoung Shim4cf51c32010-07-14 21:55:30 -07001237
1238 mutex_unlock(&input_dev->mutex);
1239
1240 return 0;
1241}
Dmitry Torokhov8b5fce02010-11-18 00:14:03 -08001242
Iiro Valkonen7686b102011-02-02 23:21:58 -08001243static const struct dev_pm_ops mxt_pm_ops = {
1244 .suspend = mxt_suspend,
1245 .resume = mxt_resume,
Dmitry Torokhov8b5fce02010-11-18 00:14:03 -08001246};
Joonyoung Shim4cf51c32010-07-14 21:55:30 -07001247#endif
1248
Iiro Valkonen7686b102011-02-02 23:21:58 -08001249static const struct i2c_device_id mxt_id[] = {
Joonyoung Shim4cf51c32010-07-14 21:55:30 -07001250 { "qt602240_ts", 0 },
Iiro Valkonen7686b102011-02-02 23:21:58 -08001251 { "atmel_mxt_ts", 0 },
Chris Leech46ee2a02011-02-15 13:36:52 -08001252 { "mXT224", 0 },
Joonyoung Shim4cf51c32010-07-14 21:55:30 -07001253 { }
1254};
Iiro Valkonen7686b102011-02-02 23:21:58 -08001255MODULE_DEVICE_TABLE(i2c, mxt_id);
Joonyoung Shim4cf51c32010-07-14 21:55:30 -07001256
Iiro Valkonen7686b102011-02-02 23:21:58 -08001257static struct i2c_driver mxt_driver = {
Joonyoung Shim4cf51c32010-07-14 21:55:30 -07001258 .driver = {
Iiro Valkonen7686b102011-02-02 23:21:58 -08001259 .name = "atmel_mxt_ts",
Joonyoung Shim4cf51c32010-07-14 21:55:30 -07001260 .owner = THIS_MODULE,
Dmitry Torokhov8b5fce02010-11-18 00:14:03 -08001261#ifdef CONFIG_PM
Iiro Valkonen7686b102011-02-02 23:21:58 -08001262 .pm = &mxt_pm_ops,
Dmitry Torokhov8b5fce02010-11-18 00:14:03 -08001263#endif
Joonyoung Shim4cf51c32010-07-14 21:55:30 -07001264 },
Iiro Valkonen7686b102011-02-02 23:21:58 -08001265 .probe = mxt_probe,
1266 .remove = __devexit_p(mxt_remove),
1267 .id_table = mxt_id,
Joonyoung Shim4cf51c32010-07-14 21:55:30 -07001268};
1269
Iiro Valkonen7686b102011-02-02 23:21:58 -08001270static int __init mxt_init(void)
Joonyoung Shim4cf51c32010-07-14 21:55:30 -07001271{
Iiro Valkonen7686b102011-02-02 23:21:58 -08001272 return i2c_add_driver(&mxt_driver);
Joonyoung Shim4cf51c32010-07-14 21:55:30 -07001273}
1274
Iiro Valkonen7686b102011-02-02 23:21:58 -08001275static void __exit mxt_exit(void)
Joonyoung Shim4cf51c32010-07-14 21:55:30 -07001276{
Iiro Valkonen7686b102011-02-02 23:21:58 -08001277 i2c_del_driver(&mxt_driver);
Joonyoung Shim4cf51c32010-07-14 21:55:30 -07001278}
1279
Iiro Valkonen7686b102011-02-02 23:21:58 -08001280module_init(mxt_init);
1281module_exit(mxt_exit);
Joonyoung Shim4cf51c32010-07-14 21:55:30 -07001282
1283/* Module information */
1284MODULE_AUTHOR("Joonyoung Shim <jy0922.shim@samsung.com>");
Iiro Valkonen7686b102011-02-02 23:21:58 -08001285MODULE_DESCRIPTION("Atmel maXTouch Touchscreen driver");
Joonyoung Shim4cf51c32010-07-14 21:55:30 -07001286MODULE_LICENSE("GPL");