Blame view

drivers/input/touchscreen/intel-mid-touch.c 15.3 KB
a4cff8b82   Sreedhara DS   Staging: mid: Int...
1
  /*
95b7127c1   Dmitry Torokhov   Staging: mrst_tou...
2
   * Intel MID Resistive Touch Screen Driver
a4cff8b82   Sreedhara DS   Staging: mid: Int...
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
   *
   * Copyright (C) 2008 Intel Corp
   *
   * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
   *
   * This program is free software; you can redistribute it and/or modify
   * it under the terms of the GNU General Public License as published by
   * the Free Software Foundation; version 2 of the License.
   *
   * This program is distributed in the hope that it will be useful, but
   * WITHOUT ANY WARRANTY; without even the implied warranty of
   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.	See the GNU
   * General Public License for more details.
   *
   * You should have received a copy of the GNU General Public License along
95b7127c1   Dmitry Torokhov   Staging: mrst_tou...
18
   * with this program; if not, write to the Free Software Foundation, Inc.,
a4cff8b82   Sreedhara DS   Staging: mid: Int...
19
20
21
   * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
   *
   * Questions/Comments/Bug fixes to Sreedhara (sreedhara.ds@intel.com)
95b7127c1   Dmitry Torokhov   Staging: mrst_tou...
22
   *			    Ramesh Agarwal (ramesh.agarwal@intel.com)
a4cff8b82   Sreedhara DS   Staging: mid: Int...
23
24
25
   * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
   *
   * TODO:
a4cff8b82   Sreedhara DS   Staging: mid: Int...
26
   *	review conversion of r/m/w sequences
a4cff8b82   Sreedhara DS   Staging: mid: Int...
27
28
29
30
31
32
33
34
   */
  
  #include <linux/module.h>
  #include <linux/init.h>
  #include <linux/input.h>
  #include <linux/interrupt.h>
  #include <linux/err.h>
  #include <linux/param.h>
36466a1b4   Alek Du   Staging: mrst-tou...
35
36
  #include <linux/slab.h>
  #include <linux/platform_device.h>
a4cff8b82   Sreedhara DS   Staging: mid: Int...
37
38
  #include <linux/irq.h>
  #include <linux/delay.h>
a4cff8b82   Sreedhara DS   Staging: mid: Int...
39
  #include <asm/intel_scu_ipc.h>
a4cff8b82   Sreedhara DS   Staging: mid: Int...
40
  /* PMIC Interrupt registers */
95b7127c1   Dmitry Torokhov   Staging: mrst_tou...
41
  #define PMIC_REG_ID1		0x00 /* PMIC ID1 register */
a4cff8b82   Sreedhara DS   Staging: mid: Int...
42
43
  
  /* PMIC Interrupt registers */
95b7127c1   Dmitry Torokhov   Staging: mrst_tou...
44
45
  #define PMIC_REG_INT		0x04 /* PMIC interrupt register */
  #define PMIC_REG_MINT		0x05 /* PMIC interrupt mask register */
a4cff8b82   Sreedhara DS   Staging: mid: Int...
46
47
  
  /* ADC Interrupt registers */
95b7127c1   Dmitry Torokhov   Staging: mrst_tou...
48
49
  #define PMIC_REG_ADCINT		0x5F /* ADC interrupt register */
  #define PMIC_REG_MADCINT	0x60 /* ADC interrupt mask register */
a4cff8b82   Sreedhara DS   Staging: mid: Int...
50
51
  
  /* ADC Control registers */
95b7127c1   Dmitry Torokhov   Staging: mrst_tou...
52
  #define PMIC_REG_ADCCNTL1	0x61 /* ADC control register */
a4cff8b82   Sreedhara DS   Staging: mid: Int...
53
54
  
  /* ADC Channel Selection registers */
95b7127c1   Dmitry Torokhov   Staging: mrst_tou...
55
56
  #define PMICADDR0		0xA4
  #define END_OF_CHANNEL		0x1F
a4cff8b82   Sreedhara DS   Staging: mid: Int...
57
58
  
  /* ADC Result register */
95b7127c1   Dmitry Torokhov   Staging: mrst_tou...
59
  #define PMIC_REG_ADCSNS0H	0x64
a4cff8b82   Sreedhara DS   Staging: mid: Int...
60
61
  
  /* ADC channels for touch screen */
95b7127c1   Dmitry Torokhov   Staging: mrst_tou...
62
63
64
65
  #define MRST_TS_CHAN10		0xA /* Touch screen X+ connection */
  #define MRST_TS_CHAN11		0xB /* Touch screen X- connection */
  #define MRST_TS_CHAN12		0xC /* Touch screen Y+ connection */
  #define MRST_TS_CHAN13		0xD /* Touch screen Y- connection */
a4cff8b82   Sreedhara DS   Staging: mid: Int...
66
67
  
  /* Touch screen channel BIAS constants */
95b7127c1   Dmitry Torokhov   Staging: mrst_tou...
68
69
70
  #define MRST_XBIAS		0x20
  #define MRST_YBIAS		0x40
  #define MRST_ZBIAS		0x80
a4cff8b82   Sreedhara DS   Staging: mid: Int...
71
72
  
  /* Touch screen coordinates */
95b7127c1   Dmitry Torokhov   Staging: mrst_tou...
73
74
75
76
77
78
79
80
81
82
83
  #define MRST_X_MIN		10
  #define MRST_X_MAX		1024
  #define MRST_X_FUZZ		5
  #define MRST_Y_MIN		10
  #define MRST_Y_MAX		1024
  #define MRST_Y_FUZZ		5
  #define MRST_PRESSURE_MIN	0
  #define MRST_PRESSURE_NOMINAL	50
  #define MRST_PRESSURE_MAX	100
  
  #define WAIT_ADC_COMPLETION	10 /* msec */
a4cff8b82   Sreedhara DS   Staging: mid: Int...
84
85
  
  /* PMIC ADC round robin delays */
95b7127c1   Dmitry Torokhov   Staging: mrst_tou...
86
87
  #define ADC_LOOP_DELAY0		0x0 /* Continuous loop */
  #define ADC_LOOP_DELAY1		0x1 /* 4.5  ms approximate */
a4cff8b82   Sreedhara DS   Staging: mid: Int...
88
89
  
  /* PMIC Vendor Identifiers */
95b7127c1   Dmitry Torokhov   Staging: mrst_tou...
90
91
92
93
  #define PMIC_VENDOR_FS		0 /* PMIC vendor FreeScale */
  #define PMIC_VENDOR_MAXIM	1 /* PMIC vendor MAXIM */
  #define PMIC_VENDOR_NEC		2 /* PMIC vendor NEC */
  #define MRSTOUCH_MAX_CHANNELS	32 /* Maximum ADC channels */
a4cff8b82   Sreedhara DS   Staging: mid: Int...
94
95
96
  
  /* Touch screen device structure */
  struct mrstouch_dev {
36466a1b4   Alek Du   Staging: mrst-tou...
97
  	struct device *dev; /* device associated with touch screen */
95b7127c1   Dmitry Torokhov   Staging: mrst_tou...
98
99
100
101
102
103
104
105
106
107
108
  	struct input_dev *input;
  	char phys[32];
  	u16 asr;		/* Address selection register */
  	int irq;
  	unsigned int vendor;	/* PMIC vendor */
  	unsigned int rev;	/* PMIC revision */
  
  	int (*read_prepare)(struct mrstouch_dev *tsdev);
  	int (*read)(struct mrstouch_dev *tsdev, u16 *x, u16 *y, u16 *z);
  	int (*read_finish)(struct mrstouch_dev *tsdev);
  };
a4cff8b82   Sreedhara DS   Staging: mid: Int...
109

95b7127c1   Dmitry Torokhov   Staging: mrst_tou...
110
111
112
113
  
  /*************************** NEC and Maxim Interface ************************/
  
  static int mrstouch_nec_adc_read_prepare(struct mrstouch_dev *tsdev)
a4cff8b82   Sreedhara DS   Staging: mid: Int...
114
  {
a9cfa2537   Andy Ross   Staging: mrst-tou...
115
  	return intel_scu_ipc_update_register(PMIC_REG_MADCINT, 0, 0x20);
a4cff8b82   Sreedhara DS   Staging: mid: Int...
116
117
118
  }
  
  /*
95b7127c1   Dmitry Torokhov   Staging: mrst_tou...
119
   * Enables PENDET interrupt.
a4cff8b82   Sreedhara DS   Staging: mid: Int...
120
   */
95b7127c1   Dmitry Torokhov   Staging: mrst_tou...
121
  static int mrstouch_nec_adc_read_finish(struct mrstouch_dev *tsdev)
a4cff8b82   Sreedhara DS   Staging: mid: Int...
122
  {
a4cff8b82   Sreedhara DS   Staging: mid: Int...
123
  	int err;
a9cfa2537   Andy Ross   Staging: mrst-tou...
124
125
126
  	err = intel_scu_ipc_update_register(PMIC_REG_MADCINT, 0x20, 0x20);
  	if (!err)
  		err = intel_scu_ipc_update_register(PMIC_REG_ADCCNTL1, 0, 0x05);
a4cff8b82   Sreedhara DS   Staging: mid: Int...
127

a9cfa2537   Andy Ross   Staging: mrst-tou...
128
  	return err;
a4cff8b82   Sreedhara DS   Staging: mid: Int...
129
  }
95b7127c1   Dmitry Torokhov   Staging: mrst_tou...
130
131
132
133
  /*
   * Reads PMIC ADC touch screen result
   * Reads ADC storage registers for higher 7 and lower 3 bits and
   * converts the two readings into a single value and turns off gain bit
a4cff8b82   Sreedhara DS   Staging: mid: Int...
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
   */
  static int mrstouch_ts_chan_read(u16 offset, u16 chan, u16 *vp, u16 *vm)
  {
  	int err;
  	u16 result;
  	u32 res;
  
  	result = PMIC_REG_ADCSNS0H + offset;
  
  	if (chan == MRST_TS_CHAN12)
  		result += 4;
  
  	err = intel_scu_ipc_ioread32(result, &res);
  	if (err)
  		return err;
  
  	/* Mash the bits up */
  
  	*vp = (res & 0xFF) << 3;	/* Highest 7 bits */
  	*vp |= (res >> 8) & 0x07;	/* Lower 3 bits */
  	*vp &= 0x3FF;
  
  	res >>= 16;
  
  	*vm = (res & 0xFF) << 3;	/* Highest 7 bits */
  	*vm |= (res >> 8) & 0x07;	/* Lower 3 bits */
  	*vm &= 0x3FF;
  
  	return 0;
  }
95b7127c1   Dmitry Torokhov   Staging: mrst_tou...
164
165
166
  /*
   * Enables X, Y and Z bias values
   * Enables YPYM for X channels and XPXM for Y channels
a4cff8b82   Sreedhara DS   Staging: mid: Int...
167
   */
95b7127c1   Dmitry Torokhov   Staging: mrst_tou...
168
  static int mrstouch_ts_bias_set(uint offset, uint bias)
a4cff8b82   Sreedhara DS   Staging: mid: Int...
169
170
  {
  	int count;
95b7127c1   Dmitry Torokhov   Staging: mrst_tou...
171
172
173
  	u16 chan, start;
  	u16 reg[4];
  	u8 data[4];
a4cff8b82   Sreedhara DS   Staging: mid: Int...
174
175
  
  	chan = PMICADDR0 + offset;
95b7127c1   Dmitry Torokhov   Staging: mrst_tou...
176
  	start = MRST_TS_CHAN10;
a4cff8b82   Sreedhara DS   Staging: mid: Int...
177
178
  	for (count = 0; count <= 3; count++) {
  		reg[count] = chan++;
95b7127c1   Dmitry Torokhov   Staging: mrst_tou...
179
  		data[count] = bias | (start + count);
a4cff8b82   Sreedhara DS   Staging: mid: Int...
180
  	}
95b7127c1   Dmitry Torokhov   Staging: mrst_tou...
181
  	return intel_scu_ipc_writev(reg, data, 4);
a4cff8b82   Sreedhara DS   Staging: mid: Int...
182
  }
95b7127c1   Dmitry Torokhov   Staging: mrst_tou...
183
184
185
  /* To read touch screen channel values */
  static int mrstouch_nec_adc_read(struct mrstouch_dev *tsdev,
  				 u16 *x, u16 *y, u16 *z)
a4cff8b82   Sreedhara DS   Staging: mid: Int...
186
187
  {
  	int err;
95b7127c1   Dmitry Torokhov   Staging: mrst_tou...
188
  	u16 xm, ym, zm;
a4cff8b82   Sreedhara DS   Staging: mid: Int...
189

95b7127c1   Dmitry Torokhov   Staging: mrst_tou...
190
191
192
193
  	/* configure Y bias for X channels */
  	err = mrstouch_ts_bias_set(tsdev->asr, MRST_YBIAS);
  	if (err)
  		goto ipc_error;
a4cff8b82   Sreedhara DS   Staging: mid: Int...
194

95b7127c1   Dmitry Torokhov   Staging: mrst_tou...
195
  	msleep(WAIT_ADC_COMPLETION);
a4cff8b82   Sreedhara DS   Staging: mid: Int...
196

95b7127c1   Dmitry Torokhov   Staging: mrst_tou...
197
198
  	/* read x+ and x- channels */
  	err = mrstouch_ts_chan_read(tsdev->asr, MRST_TS_CHAN10, x, &xm);
a4cff8b82   Sreedhara DS   Staging: mid: Int...
199
200
  	if (err)
  		goto ipc_error;
95b7127c1   Dmitry Torokhov   Staging: mrst_tou...
201
202
203
204
  	/* configure x bias for y channels */
  	err = mrstouch_ts_bias_set(tsdev->asr, MRST_XBIAS);
  	if (err)
  		goto ipc_error;
a4cff8b82   Sreedhara DS   Staging: mid: Int...
205

95b7127c1   Dmitry Torokhov   Staging: mrst_tou...
206
  	msleep(WAIT_ADC_COMPLETION);
a4cff8b82   Sreedhara DS   Staging: mid: Int...
207

95b7127c1   Dmitry Torokhov   Staging: mrst_tou...
208
209
210
211
  	/* read y+ and y- channels */
  	err = mrstouch_ts_chan_read(tsdev->asr, MRST_TS_CHAN12, y, &ym);
  	if (err)
  		goto ipc_error;
a4cff8b82   Sreedhara DS   Staging: mid: Int...
212

95b7127c1   Dmitry Torokhov   Staging: mrst_tou...
213
214
  	/* configure z bias for x and y channels */
  	err = mrstouch_ts_bias_set(tsdev->asr, MRST_ZBIAS);
a4cff8b82   Sreedhara DS   Staging: mid: Int...
215
216
  	if (err)
  		goto ipc_error;
95b7127c1   Dmitry Torokhov   Staging: mrst_tou...
217
218
219
220
221
222
  	msleep(WAIT_ADC_COMPLETION);
  
  	/* read z+ and z- channels */
  	err = mrstouch_ts_chan_read(tsdev->asr, MRST_TS_CHAN10, z, &zm);
  	if (err)
  		goto ipc_error;
a4cff8b82   Sreedhara DS   Staging: mid: Int...
223

a4cff8b82   Sreedhara DS   Staging: mid: Int...
224
225
226
  	return 0;
  
  ipc_error:
36466a1b4   Alek Du   Staging: mrst-tou...
227
228
  	dev_err(tsdev->dev, "ipc error during adc read
  ");
a4cff8b82   Sreedhara DS   Staging: mid: Int...
229
230
  	return err;
  }
95b7127c1   Dmitry Torokhov   Staging: mrst_tou...
231
232
233
234
  
  /*************************** Freescale Interface ************************/
  
  static int mrstouch_fs_adc_read_prepare(struct mrstouch_dev *tsdev)
a4cff8b82   Sreedhara DS   Staging: mid: Int...
235
236
237
  {
  	int err, count;
  	u16 chan;
a4cff8b82   Sreedhara DS   Staging: mid: Int...
238
239
  	u16 reg[5];
  	u8 data[5];
95b7127c1   Dmitry Torokhov   Staging: mrst_tou...
240
241
242
243
  	/* Stop the ADC */
  	err = intel_scu_ipc_update_register(PMIC_REG_MADCINT, 0x00, 0x02);
  	if (err)
  		goto ipc_error;
a4cff8b82   Sreedhara DS   Staging: mid: Int...
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
  	chan = PMICADDR0 + tsdev->asr;
  
  	/* Set X BIAS */
  	for (count = 0; count <= 3; count++) {
  		reg[count] = chan++;
  		data[count] = 0x2A;
  	}
  	reg[count] =  chan++; /* Dummy */
  	data[count] = 0;
  
  	err = intel_scu_ipc_writev(reg, data, 5);
  	if (err)
  		goto ipc_error;
  
  	msleep(WAIT_ADC_COMPLETION);
  
  	/* Set Y BIAS */
  	for (count = 0; count <= 3; count++) {
  		reg[count] = chan++;
  		data[count] = 0x4A;
  	}
  	reg[count] = chan++; /* Dummy */
  	data[count] = 0;
  
  	err = intel_scu_ipc_writev(reg, data, 5);
  	if (err)
  		goto ipc_error;
  
  	msleep(WAIT_ADC_COMPLETION);
  
  	/* Set Z BIAS */
  	err = intel_scu_ipc_iowrite32(chan + 2, 0x8A8A8A8A);
  	if (err)
  		goto ipc_error;
  
  	msleep(WAIT_ADC_COMPLETION);
95b7127c1   Dmitry Torokhov   Staging: mrst_tou...
280
281
282
  	return 0;
  
  ipc_error:
36466a1b4   Alek Du   Staging: mrst-tou...
283
284
  	dev_err(tsdev->dev, "ipc error during %s
  ", __func__);
95b7127c1   Dmitry Torokhov   Staging: mrst_tou...
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
  	return err;
  }
  
  static int mrstouch_fs_adc_read(struct mrstouch_dev *tsdev,
  				u16 *x, u16 *y, u16 *z)
  {
  	int err;
  	u16 result;
  	u16 reg[4];
  	u8 data[4];
  
  	result = PMIC_REG_ADCSNS0H + tsdev->asr;
  
  	reg[0] = result + 4;
  	reg[1] = result + 5;
  	reg[2] = result + 16;
  	reg[3] = result + 17;
  
  	err = intel_scu_ipc_readv(reg, data, 4);
  	if (err)
  		goto ipc_error;
  
  	*x = data[0] << 3; /* Higher 7 bits */
  	*x |= data[1] & 0x7; /* Lower 3 bits */
  	*x &= 0x3FF;
  
  	*y = data[2] << 3; /* Higher 7 bits */
  	*y |= data[3] & 0x7; /* Lower 3 bits */
  	*y &= 0x3FF;
  
  	/* Read Z value */
  	reg[0] = result + 28;
  	reg[1] = result + 29;
  
  	err = intel_scu_ipc_readv(reg, data, 4);
  	if (err)
  		goto ipc_error;
  
  	*z = data[0] << 3; /* Higher 7 bits */
  	*z |= data[1] & 0x7; /* Lower 3 bits */
  	*z &= 0x3FF;
  
  	return 0;
  
  ipc_error:
36466a1b4   Alek Du   Staging: mrst-tou...
330
331
  	dev_err(tsdev->dev, "ipc error during %s
  ", __func__);
95b7127c1   Dmitry Torokhov   Staging: mrst_tou...
332
333
334
335
336
337
338
339
340
  	return err;
  }
  
  static int mrstouch_fs_adc_read_finish(struct mrstouch_dev *tsdev)
  {
  	int err, count;
  	u16 chan;
  	u16 reg[5];
  	u8 data[5];
a4cff8b82   Sreedhara DS   Staging: mid: Int...
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
  
  	/* Clear all TS channels */
  	chan = PMICADDR0 + tsdev->asr;
  	for (count = 0; count <= 4; count++) {
  		reg[count] = chan++;
  		data[count] = 0;
  	}
  	err = intel_scu_ipc_writev(reg, data, 5);
  	if (err)
  		goto ipc_error;
  
  	for (count = 0; count <= 4; count++) {
  		reg[count] = chan++;
  		data[count] = 0;
  	}
  	err = intel_scu_ipc_writev(reg, data, 5);
  	if (err)
  		goto ipc_error;
  
  	err = intel_scu_ipc_iowrite32(chan + 2, 0x00000000);
  	if (err)
  		goto ipc_error;
95b7127c1   Dmitry Torokhov   Staging: mrst_tou...
363
364
365
366
  	/* Start ADC */
  	err = intel_scu_ipc_update_register(PMIC_REG_MADCINT, 0x02, 0x02);
  	if (err)
  		goto ipc_error;
a4cff8b82   Sreedhara DS   Staging: mid: Int...
367
368
369
  	return 0;
  
  ipc_error:
36466a1b4   Alek Du   Staging: mrst-tou...
370
371
  	dev_err(tsdev->dev, "ipc error during %s
  ", __func__);
a4cff8b82   Sreedhara DS   Staging: mid: Int...
372
373
  	return err;
  }
95b7127c1   Dmitry Torokhov   Staging: mrst_tou...
374
375
  static void mrstouch_report_event(struct input_dev *input,
  			unsigned int x, unsigned int y, unsigned int z)
a4cff8b82   Sreedhara DS   Staging: mid: Int...
376
  {
95b7127c1   Dmitry Torokhov   Staging: mrst_tou...
377
378
379
380
381
382
383
  	if (z > MRST_PRESSURE_NOMINAL) {
  		/* Pen touched, report button touch and coordinates */
  		input_report_key(input, BTN_TOUCH, 1);
  		input_report_abs(input, ABS_X, x);
  		input_report_abs(input, ABS_Y, y);
  	} else {
  		input_report_key(input, BTN_TOUCH, 0);
a4cff8b82   Sreedhara DS   Staging: mid: Int...
384
  	}
95b7127c1   Dmitry Torokhov   Staging: mrst_tou...
385
386
387
  
  	input_report_abs(input, ABS_PRESSURE, z);
  	input_sync(input);
a4cff8b82   Sreedhara DS   Staging: mid: Int...
388
  }
95b7127c1   Dmitry Torokhov   Staging: mrst_tou...
389
390
  /* PENDET interrupt handler */
  static irqreturn_t mrstouch_pendet_irq(int irq, void *dev_id)
a4cff8b82   Sreedhara DS   Staging: mid: Int...
391
  {
95b7127c1   Dmitry Torokhov   Staging: mrst_tou...
392
393
  	struct mrstouch_dev *tsdev = dev_id;
  	u16 x, y, z;
a4cff8b82   Sreedhara DS   Staging: mid: Int...
394

95b7127c1   Dmitry Torokhov   Staging: mrst_tou...
395
396
397
398
  	/*
  	 * Should we lower thread priority? Probably not, since we are
  	 * not spinning but sleeping...
  	 */
a4cff8b82   Sreedhara DS   Staging: mid: Int...
399

95b7127c1   Dmitry Torokhov   Staging: mrst_tou...
400
401
  	if (tsdev->read_prepare(tsdev))
  		goto out;
a4cff8b82   Sreedhara DS   Staging: mid: Int...
402

95b7127c1   Dmitry Torokhov   Staging: mrst_tou...
403
404
405
  	do {
  		if (tsdev->read(tsdev, &x, &y, &z))
  			break;
a4cff8b82   Sreedhara DS   Staging: mid: Int...
406

95b7127c1   Dmitry Torokhov   Staging: mrst_tou...
407
408
  		mrstouch_report_event(tsdev->input, x, y, z);
  	} while (z > MRST_PRESSURE_NOMINAL);
a4cff8b82   Sreedhara DS   Staging: mid: Int...
409

95b7127c1   Dmitry Torokhov   Staging: mrst_tou...
410
  	tsdev->read_finish(tsdev);
a4cff8b82   Sreedhara DS   Staging: mid: Int...
411

95b7127c1   Dmitry Torokhov   Staging: mrst_tou...
412
413
414
  out:
  	return IRQ_HANDLED;
  }
a4cff8b82   Sreedhara DS   Staging: mid: Int...
415

95b7127c1   Dmitry Torokhov   Staging: mrst_tou...
416
417
418
419
420
  /* Utility to read PMIC ID */
  static int __devinit mrstouch_read_pmic_id(uint *vendor, uint *rev)
  {
  	int err;
  	u8 r;
a4cff8b82   Sreedhara DS   Staging: mid: Int...
421

95b7127c1   Dmitry Torokhov   Staging: mrst_tou...
422
  	err = intel_scu_ipc_ioread8(PMIC_REG_ID1, &r);
a4cff8b82   Sreedhara DS   Staging: mid: Int...
423
  	if (err)
95b7127c1   Dmitry Torokhov   Staging: mrst_tou...
424
  		return err;
a4cff8b82   Sreedhara DS   Staging: mid: Int...
425

95b7127c1   Dmitry Torokhov   Staging: mrst_tou...
426
427
  	*vendor = r & 0x7;
  	*rev = (r >> 3) & 0x7;
a4cff8b82   Sreedhara DS   Staging: mid: Int...
428

95b7127c1   Dmitry Torokhov   Staging: mrst_tou...
429
  	return 0;
a4cff8b82   Sreedhara DS   Staging: mid: Int...
430
  }
95b7127c1   Dmitry Torokhov   Staging: mrst_tou...
431
432
433
434
435
  /*
   * Parse ADC channels to find end of the channel configured by other ADC user
   * NEC and MAXIM requires 4 channels and FreeScale needs 18 channels
   */
  static int __devinit mrstouch_chan_parse(struct mrstouch_dev *tsdev)
a4cff8b82   Sreedhara DS   Staging: mid: Int...
436
  {
e449edbb9   Axel Lin   Input: intel-mid-...
437
438
  	int found = 0;
  	int err, i;
409d568dc   Arjan van de Ven   Staging: mrst-tou...
439
  	u8 r8;
a4cff8b82   Sreedhara DS   Staging: mid: Int...
440

95b7127c1   Dmitry Torokhov   Staging: mrst_tou...
441
  	for (i = 0; i < MRSTOUCH_MAX_CHANNELS; i++) {
409d568dc   Arjan van de Ven   Staging: mrst-tou...
442
  		err = intel_scu_ipc_ioread8(PMICADDR0 + i, &r8);
95b7127c1   Dmitry Torokhov   Staging: mrst_tou...
443
444
  		if (err)
  			return err;
a4cff8b82   Sreedhara DS   Staging: mid: Int...
445

409d568dc   Arjan van de Ven   Staging: mrst-tou...
446
447
448
  		if (r8 == END_OF_CHANNEL) {
  			found = i;
  			break;
95b7127c1   Dmitry Torokhov   Staging: mrst_tou...
449
450
  		}
  	}
a4cff8b82   Sreedhara DS   Staging: mid: Int...
451

95b7127c1   Dmitry Torokhov   Staging: mrst_tou...
452
  	if (tsdev->vendor == PMIC_VENDOR_FS) {
e449edbb9   Axel Lin   Input: intel-mid-...
453
  		if (found > MRSTOUCH_MAX_CHANNELS - 18)
95b7127c1   Dmitry Torokhov   Staging: mrst_tou...
454
455
  			return -ENOSPC;
  	} else {
e449edbb9   Axel Lin   Input: intel-mid-...
456
  		if (found > MRSTOUCH_MAX_CHANNELS - 4)
95b7127c1   Dmitry Torokhov   Staging: mrst_tou...
457
  			return -ENOSPC;
a4cff8b82   Sreedhara DS   Staging: mid: Int...
458
  	}
e449edbb9   Axel Lin   Input: intel-mid-...
459

95b7127c1   Dmitry Torokhov   Staging: mrst_tou...
460
  	return found;
a4cff8b82   Sreedhara DS   Staging: mid: Int...
461
  }
95b7127c1   Dmitry Torokhov   Staging: mrst_tou...
462
463
464
465
466
  
  /*
   * Writes touch screen channels to ADC address selection registers
   */
  static int __devinit mrstouch_ts_chan_set(uint offset)
a4cff8b82   Sreedhara DS   Staging: mid: Int...
467
  {
95b7127c1   Dmitry Torokhov   Staging: mrst_tou...
468
  	u16 chan;
409d568dc   Arjan van de Ven   Staging: mrst-tou...
469
470
  
  	int ret, count;
a4cff8b82   Sreedhara DS   Staging: mid: Int...
471

95b7127c1   Dmitry Torokhov   Staging: mrst_tou...
472
473
  	chan = PMICADDR0 + offset;
  	for (count = 0; count <= 3; count++) {
409d568dc   Arjan van de Ven   Staging: mrst-tou...
474
475
476
  		ret = intel_scu_ipc_iowrite8(chan++, MRST_TS_CHAN10 + count);
  		if (ret)
  			return ret;
95b7127c1   Dmitry Torokhov   Staging: mrst_tou...
477
  	}
409d568dc   Arjan van de Ven   Staging: mrst-tou...
478
  	return intel_scu_ipc_iowrite8(chan++, END_OF_CHANNEL);
a4cff8b82   Sreedhara DS   Staging: mid: Int...
479
  }
95b7127c1   Dmitry Torokhov   Staging: mrst_tou...
480
481
  /* Initialize ADC */
  static int __devinit mrstouch_adc_init(struct mrstouch_dev *tsdev)
a4cff8b82   Sreedhara DS   Staging: mid: Int...
482
  {
95b7127c1   Dmitry Torokhov   Staging: mrst_tou...
483
484
  	int err, start;
  	u8 ra, rm;
a4cff8b82   Sreedhara DS   Staging: mid: Int...
485

95b7127c1   Dmitry Torokhov   Staging: mrst_tou...
486
487
  	err = mrstouch_read_pmic_id(&tsdev->vendor, &tsdev->rev);
  	if (err) {
36466a1b4   Alek Du   Staging: mrst-tou...
488
489
  		dev_err(tsdev->dev, "Unable to read PMIC id
  ");
95b7127c1   Dmitry Torokhov   Staging: mrst_tou...
490
  		return err;
a4cff8b82   Sreedhara DS   Staging: mid: Int...
491
  	}
95b7127c1   Dmitry Torokhov   Staging: mrst_tou...
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
  	switch (tsdev->vendor) {
  	case PMIC_VENDOR_NEC:
  	case PMIC_VENDOR_MAXIM:
  		tsdev->read_prepare = mrstouch_nec_adc_read_prepare;
  		tsdev->read = mrstouch_nec_adc_read;
  		tsdev->read_finish = mrstouch_nec_adc_read_finish;
  		break;
  
  	case PMIC_VENDOR_FS:
  		tsdev->read_prepare = mrstouch_fs_adc_read_prepare;
  		tsdev->read = mrstouch_fs_adc_read;
  		tsdev->read_finish = mrstouch_fs_adc_read_finish;
  		break;
  
  	default:
36466a1b4   Alek Du   Staging: mrst-tou...
507
  		dev_err(tsdev->dev,
95b7127c1   Dmitry Torokhov   Staging: mrst_tou...
508
509
510
511
  			"Unsupported touchscreen: %d
  ", tsdev->vendor);
  		return -ENXIO;
  	}
a4cff8b82   Sreedhara DS   Staging: mid: Int...
512

95b7127c1   Dmitry Torokhov   Staging: mrst_tou...
513
514
  	start = mrstouch_chan_parse(tsdev);
  	if (start < 0) {
36466a1b4   Alek Du   Staging: mrst-tou...
515
516
  		dev_err(tsdev->dev, "Unable to parse channels
  ");
95b7127c1   Dmitry Torokhov   Staging: mrst_tou...
517
518
  		return start;
  	}
a4cff8b82   Sreedhara DS   Staging: mid: Int...
519

95b7127c1   Dmitry Torokhov   Staging: mrst_tou...
520
  	tsdev->asr = start;
a4cff8b82   Sreedhara DS   Staging: mid: Int...
521

95b7127c1   Dmitry Torokhov   Staging: mrst_tou...
522
523
524
525
  	/*
  	 * ADC power on, start, enable PENDET and set loop delay
  	 * ADC loop delay is set to 4.5 ms approximately
  	 * Loop delay more than this results in jitter in adc readings
25985edce   Lucas De Marchi   Fix common misspe...
526
  	 * Setting loop delay to 0 (continuous loop) in MAXIM stops PENDET
95b7127c1   Dmitry Torokhov   Staging: mrst_tou...
527
528
  	 * interrupt generation sometimes.
  	 */
a4cff8b82   Sreedhara DS   Staging: mid: Int...
529

95b7127c1   Dmitry Torokhov   Staging: mrst_tou...
530
531
532
533
534
535
536
537
538
539
540
541
  	if (tsdev->vendor == PMIC_VENDOR_FS) {
  		ra = 0xE0 | ADC_LOOP_DELAY0;
  		rm = 0x5;
  	} else {
  		/* NEC and MAXIm not consistent with loop delay 0 */
  		ra = 0xE0 | ADC_LOOP_DELAY1;
  		rm = 0x0;
  
  		/* configure touch screen channels */
  		err = mrstouch_ts_chan_set(tsdev->asr);
  		if (err)
  			return err;
a4cff8b82   Sreedhara DS   Staging: mid: Int...
542
  	}
a4cff8b82   Sreedhara DS   Staging: mid: Int...
543

95b7127c1   Dmitry Torokhov   Staging: mrst_tou...
544
545
546
547
548
549
550
551
552
  	err = intel_scu_ipc_update_register(PMIC_REG_ADCCNTL1, ra, 0xE7);
  	if (err)
  		return err;
  
  	err = intel_scu_ipc_update_register(PMIC_REG_MADCINT, rm, 0x03);
  	if (err)
  		return err;
  
  	return 0;
a4cff8b82   Sreedhara DS   Staging: mid: Int...
553
  }
95b7127c1   Dmitry Torokhov   Staging: mrst_tou...
554

a4cff8b82   Sreedhara DS   Staging: mid: Int...
555
  /* Probe function for touch screen driver */
36466a1b4   Alek Du   Staging: mrst-tou...
556
  static int __devinit mrstouch_probe(struct platform_device *pdev)
a4cff8b82   Sreedhara DS   Staging: mid: Int...
557
  {
a4cff8b82   Sreedhara DS   Staging: mid: Int...
558
  	struct mrstouch_dev *tsdev;
95b7127c1   Dmitry Torokhov   Staging: mrst_tou...
559
560
  	struct input_dev *input;
  	int err;
36466a1b4   Alek Du   Staging: mrst-tou...
561
  	int irq;
a4cff8b82   Sreedhara DS   Staging: mid: Int...
562

36466a1b4   Alek Du   Staging: mrst-tou...
563
564
565
566
  	irq = platform_get_irq(pdev, 0);
  	if (irq < 0) {
  		dev_err(&pdev->dev, "no interrupt assigned
  ");
a4cff8b82   Sreedhara DS   Staging: mid: Int...
567
568
569
570
  		return -EINVAL;
  	}
  
  	tsdev = kzalloc(sizeof(struct mrstouch_dev), GFP_KERNEL);
95b7127c1   Dmitry Torokhov   Staging: mrst_tou...
571
572
  	input = input_allocate_device();
  	if (!tsdev || !input) {
36466a1b4   Alek Du   Staging: mrst-tou...
573
574
  		dev_err(&pdev->dev, "unable to allocate memory
  ");
95b7127c1   Dmitry Torokhov   Staging: mrst_tou...
575
576
  		err = -ENOMEM;
  		goto err_free_mem;
a4cff8b82   Sreedhara DS   Staging: mid: Int...
577
  	}
36466a1b4   Alek Du   Staging: mrst-tou...
578
  	tsdev->dev = &pdev->dev;
95b7127c1   Dmitry Torokhov   Staging: mrst_tou...
579
  	tsdev->input = input;
36466a1b4   Alek Du   Staging: mrst-tou...
580
  	tsdev->irq = irq;
95b7127c1   Dmitry Torokhov   Staging: mrst_tou...
581
582
  
  	snprintf(tsdev->phys, sizeof(tsdev->phys),
36466a1b4   Alek Du   Staging: mrst-tou...
583
  		 "%s/input0", dev_name(tsdev->dev));
a4cff8b82   Sreedhara DS   Staging: mid: Int...
584
585
586
  
  	err = mrstouch_adc_init(tsdev);
  	if (err) {
36466a1b4   Alek Du   Staging: mrst-tou...
587
588
  		dev_err(&pdev->dev, "ADC initialization failed
  ");
95b7127c1   Dmitry Torokhov   Staging: mrst_tou...
589
  		goto err_free_mem;
a4cff8b82   Sreedhara DS   Staging: mid: Int...
590
  	}
95b7127c1   Dmitry Torokhov   Staging: mrst_tou...
591
592
  	input->name = "mrst_touchscreen";
  	input->phys = tsdev->phys;
36466a1b4   Alek Du   Staging: mrst-tou...
593
  	input->dev.parent = tsdev->dev;
a4cff8b82   Sreedhara DS   Staging: mid: Int...
594

95b7127c1   Dmitry Torokhov   Staging: mrst_tou...
595
596
  	input->id.vendor = tsdev->vendor;
  	input->id.version = tsdev->rev;
a4cff8b82   Sreedhara DS   Staging: mid: Int...
597

95b7127c1   Dmitry Torokhov   Staging: mrst_tou...
598
599
  	input->evbit[0] = BIT_MASK(EV_KEY) | BIT_MASK(EV_ABS);
  	input->keybit[BIT_WORD(BTN_TOUCH)] = BIT_MASK(BTN_TOUCH);
a4cff8b82   Sreedhara DS   Staging: mid: Int...
600

95b7127c1   Dmitry Torokhov   Staging: mrst_tou...
601
602
603
604
605
606
607
608
609
  	input_set_abs_params(tsdev->input, ABS_X,
  			     MRST_X_MIN, MRST_X_MAX, MRST_X_FUZZ, 0);
  	input_set_abs_params(tsdev->input, ABS_Y,
  			     MRST_Y_MIN, MRST_Y_MAX, MRST_Y_FUZZ, 0);
  	input_set_abs_params(tsdev->input, ABS_PRESSURE,
  			     MRST_PRESSURE_MIN, MRST_PRESSURE_MAX, 0, 0);
  
  	err = request_threaded_irq(tsdev->irq, NULL, mrstouch_pendet_irq,
  				   0, "mrstouch", tsdev);
a4cff8b82   Sreedhara DS   Staging: mid: Int...
610
  	if (err) {
36466a1b4   Alek Du   Staging: mrst-tou...
611
612
  		dev_err(tsdev->dev, "unable to allocate irq
  ");
95b7127c1   Dmitry Torokhov   Staging: mrst_tou...
613
  		goto err_free_mem;
a4cff8b82   Sreedhara DS   Staging: mid: Int...
614
  	}
95b7127c1   Dmitry Torokhov   Staging: mrst_tou...
615
616
  	err = input_register_device(tsdev->input);
  	if (err) {
36466a1b4   Alek Du   Staging: mrst-tou...
617
618
  		dev_err(tsdev->dev, "unable to register input device
  ");
95b7127c1   Dmitry Torokhov   Staging: mrst_tou...
619
  		goto err_free_irq;
a4cff8b82   Sreedhara DS   Staging: mid: Int...
620
  	}
95b7127c1   Dmitry Torokhov   Staging: mrst_tou...
621

36466a1b4   Alek Du   Staging: mrst-tou...
622
  	platform_set_drvdata(pdev, tsdev);
a4cff8b82   Sreedhara DS   Staging: mid: Int...
623
  	return 0;
95b7127c1   Dmitry Torokhov   Staging: mrst_tou...
624
625
626
627
628
  
  err_free_irq:
  	free_irq(tsdev->irq, tsdev);
  err_free_mem:
  	input_free_device(input);
a4cff8b82   Sreedhara DS   Staging: mid: Int...
629
630
631
  	kfree(tsdev);
  	return err;
  }
36466a1b4   Alek Du   Staging: mrst-tou...
632
  static int __devexit mrstouch_remove(struct platform_device *pdev)
a4cff8b82   Sreedhara DS   Staging: mid: Int...
633
  {
36466a1b4   Alek Du   Staging: mrst-tou...
634
  	struct mrstouch_dev *tsdev = platform_get_drvdata(pdev);
95b7127c1   Dmitry Torokhov   Staging: mrst_tou...
635
636
637
638
  
  	free_irq(tsdev->irq, tsdev);
  	input_unregister_device(tsdev->input);
  	kfree(tsdev);
36466a1b4   Alek Du   Staging: mrst-tou...
639
  	platform_set_drvdata(pdev, NULL);
95b7127c1   Dmitry Torokhov   Staging: mrst_tou...
640

a4cff8b82   Sreedhara DS   Staging: mid: Int...
641
642
  	return 0;
  }
36466a1b4   Alek Du   Staging: mrst-tou...
643
  static struct platform_driver mrstouch_driver = {
a4cff8b82   Sreedhara DS   Staging: mid: Int...
644
  	.driver = {
36466a1b4   Alek Du   Staging: mrst-tou...
645
646
  		.name	= "pmic_touch",
  		.owner	= THIS_MODULE,
a4cff8b82   Sreedhara DS   Staging: mid: Int...
647
  	},
36466a1b4   Alek Du   Staging: mrst-tou...
648
649
  	.probe		= mrstouch_probe,
  	.remove		= __devexit_p(mrstouch_remove),
a4cff8b82   Sreedhara DS   Staging: mid: Int...
650
  };
95b7127c1   Dmitry Torokhov   Staging: mrst_tou...
651
  static int __init mrstouch_init(void)
a4cff8b82   Sreedhara DS   Staging: mid: Int...
652
  {
36466a1b4   Alek Du   Staging: mrst-tou...
653
  	return platform_driver_register(&mrstouch_driver);
a4cff8b82   Sreedhara DS   Staging: mid: Int...
654
  }
95b7127c1   Dmitry Torokhov   Staging: mrst_tou...
655
  module_init(mrstouch_init);
a4cff8b82   Sreedhara DS   Staging: mid: Int...
656

95b7127c1   Dmitry Torokhov   Staging: mrst_tou...
657
  static void __exit mrstouch_exit(void)
a4cff8b82   Sreedhara DS   Staging: mid: Int...
658
  {
36466a1b4   Alek Du   Staging: mrst-tou...
659
  	platform_driver_unregister(&mrstouch_driver);
a4cff8b82   Sreedhara DS   Staging: mid: Int...
660
  }
95b7127c1   Dmitry Torokhov   Staging: mrst_tou...
661
  module_exit(mrstouch_exit);
a4cff8b82   Sreedhara DS   Staging: mid: Int...
662
663
664
665
  
  MODULE_AUTHOR("Sreedhara Murthy. D.S, sreedhara.ds@intel.com");
  MODULE_DESCRIPTION("Intel Moorestown Resistive Touch Screen Driver");
  MODULE_LICENSE("GPL");