2 * ST Microelectronics MFD: stmpe's driver
4 * Copyright (C) ST-Ericsson SA 2010
6 * License Terms: GNU General Public License, version 2
7 * Author: Rabin Vincent <rabin.vincent@stericsson.com> for ST-Ericsson
10 #include <linux/err.h>
11 #include <linux/gpio.h>
12 #include <linux/export.h>
13 #include <linux/kernel.h>
14 #include <linux/interrupt.h>
15 #include <linux/irq.h>
16 #include <linux/irqdomain.h>
18 #include <linux/of_gpio.h>
20 #include <linux/slab.h>
21 #include <linux/mfd/core.h>
22 #include <linux/delay.h>
23 #include <linux/regulator/consumer.h>
26 static int __stmpe_enable(struct stmpe
*stmpe
, unsigned int blocks
)
28 return stmpe
->variant
->enable(stmpe
, blocks
, true);
31 static int __stmpe_disable(struct stmpe
*stmpe
, unsigned int blocks
)
33 return stmpe
->variant
->enable(stmpe
, blocks
, false);
36 static int __stmpe_reg_read(struct stmpe
*stmpe
, u8 reg
)
40 ret
= stmpe
->ci
->read_byte(stmpe
, reg
);
42 dev_err(stmpe
->dev
, "failed to read reg %#x: %d\n", reg
, ret
);
44 dev_vdbg(stmpe
->dev
, "rd: reg %#x => data %#x\n", reg
, ret
);
49 static int __stmpe_reg_write(struct stmpe
*stmpe
, u8 reg
, u8 val
)
53 dev_vdbg(stmpe
->dev
, "wr: reg %#x <= %#x\n", reg
, val
);
55 ret
= stmpe
->ci
->write_byte(stmpe
, reg
, val
);
57 dev_err(stmpe
->dev
, "failed to write reg %#x: %d\n", reg
, ret
);
62 static int __stmpe_set_bits(struct stmpe
*stmpe
, u8 reg
, u8 mask
, u8 val
)
66 ret
= __stmpe_reg_read(stmpe
, reg
);
73 return __stmpe_reg_write(stmpe
, reg
, ret
);
76 static int __stmpe_block_read(struct stmpe
*stmpe
, u8 reg
, u8 length
,
81 ret
= stmpe
->ci
->read_block(stmpe
, reg
, length
, values
);
83 dev_err(stmpe
->dev
, "failed to read regs %#x: %d\n", reg
, ret
);
85 dev_vdbg(stmpe
->dev
, "rd: reg %#x (%d) => ret %#x\n", reg
, length
, ret
);
86 stmpe_dump_bytes("stmpe rd: ", values
, length
);
91 static int __stmpe_block_write(struct stmpe
*stmpe
, u8 reg
, u8 length
,
96 dev_vdbg(stmpe
->dev
, "wr: regs %#x (%d)\n", reg
, length
);
97 stmpe_dump_bytes("stmpe wr: ", values
, length
);
99 ret
= stmpe
->ci
->write_block(stmpe
, reg
, length
, values
);
101 dev_err(stmpe
->dev
, "failed to write regs %#x: %d\n", reg
, ret
);
107 * stmpe_enable - enable blocks on an STMPE device
108 * @stmpe: Device to work on
109 * @blocks: Mask of blocks (enum stmpe_block values) to enable
111 int stmpe_enable(struct stmpe
*stmpe
, unsigned int blocks
)
115 mutex_lock(&stmpe
->lock
);
116 ret
= __stmpe_enable(stmpe
, blocks
);
117 mutex_unlock(&stmpe
->lock
);
121 EXPORT_SYMBOL_GPL(stmpe_enable
);
124 * stmpe_disable - disable blocks on an STMPE device
125 * @stmpe: Device to work on
126 * @blocks: Mask of blocks (enum stmpe_block values) to enable
128 int stmpe_disable(struct stmpe
*stmpe
, unsigned int blocks
)
132 mutex_lock(&stmpe
->lock
);
133 ret
= __stmpe_disable(stmpe
, blocks
);
134 mutex_unlock(&stmpe
->lock
);
138 EXPORT_SYMBOL_GPL(stmpe_disable
);
141 * stmpe_reg_read() - read a single STMPE register
142 * @stmpe: Device to read from
143 * @reg: Register to read
145 int stmpe_reg_read(struct stmpe
*stmpe
, u8 reg
)
149 mutex_lock(&stmpe
->lock
);
150 ret
= __stmpe_reg_read(stmpe
, reg
);
151 mutex_unlock(&stmpe
->lock
);
155 EXPORT_SYMBOL_GPL(stmpe_reg_read
);
158 * stmpe_reg_write() - write a single STMPE register
159 * @stmpe: Device to write to
160 * @reg: Register to write
161 * @val: Value to write
163 int stmpe_reg_write(struct stmpe
*stmpe
, u8 reg
, u8 val
)
167 mutex_lock(&stmpe
->lock
);
168 ret
= __stmpe_reg_write(stmpe
, reg
, val
);
169 mutex_unlock(&stmpe
->lock
);
173 EXPORT_SYMBOL_GPL(stmpe_reg_write
);
176 * stmpe_set_bits() - set the value of a bitfield in a STMPE register
177 * @stmpe: Device to write to
178 * @reg: Register to write
179 * @mask: Mask of bits to set
182 int stmpe_set_bits(struct stmpe
*stmpe
, u8 reg
, u8 mask
, u8 val
)
186 mutex_lock(&stmpe
->lock
);
187 ret
= __stmpe_set_bits(stmpe
, reg
, mask
, val
);
188 mutex_unlock(&stmpe
->lock
);
192 EXPORT_SYMBOL_GPL(stmpe_set_bits
);
195 * stmpe_block_read() - read multiple STMPE registers
196 * @stmpe: Device to read from
197 * @reg: First register
198 * @length: Number of registers
199 * @values: Buffer to write to
201 int stmpe_block_read(struct stmpe
*stmpe
, u8 reg
, u8 length
, u8
*values
)
205 mutex_lock(&stmpe
->lock
);
206 ret
= __stmpe_block_read(stmpe
, reg
, length
, values
);
207 mutex_unlock(&stmpe
->lock
);
211 EXPORT_SYMBOL_GPL(stmpe_block_read
);
214 * stmpe_block_write() - write multiple STMPE registers
215 * @stmpe: Device to write to
216 * @reg: First register
217 * @length: Number of registers
218 * @values: Values to write
220 int stmpe_block_write(struct stmpe
*stmpe
, u8 reg
, u8 length
,
225 mutex_lock(&stmpe
->lock
);
226 ret
= __stmpe_block_write(stmpe
, reg
, length
, values
);
227 mutex_unlock(&stmpe
->lock
);
231 EXPORT_SYMBOL_GPL(stmpe_block_write
);
234 * stmpe_set_altfunc()- set the alternate function for STMPE pins
235 * @stmpe: Device to configure
236 * @pins: Bitmask of pins to affect
237 * @block: block to enable alternate functions for
239 * @pins is assumed to have a bit set for each of the bits whose alternate
240 * function is to be changed, numbered according to the GPIOXY numbers.
242 * If the GPIO module is not enabled, this function automatically enables it in
243 * order to perform the change.
245 int stmpe_set_altfunc(struct stmpe
*stmpe
, u32 pins
, enum stmpe_block block
)
247 struct stmpe_variant_info
*variant
= stmpe
->variant
;
248 u8 regaddr
= stmpe
->regs
[STMPE_IDX_GPAFR_U_MSB
];
249 int af_bits
= variant
->af_bits
;
250 int numregs
= DIV_ROUND_UP(stmpe
->num_gpios
* af_bits
, 8);
251 int mask
= (1 << af_bits
) - 1;
253 int af
, afperreg
, ret
;
255 if (!variant
->get_altfunc
)
258 afperreg
= 8 / af_bits
;
259 mutex_lock(&stmpe
->lock
);
261 ret
= __stmpe_enable(stmpe
, STMPE_BLOCK_GPIO
);
265 ret
= __stmpe_block_read(stmpe
, regaddr
, numregs
, regs
);
269 af
= variant
->get_altfunc(stmpe
, block
);
272 int pin
= __ffs(pins
);
273 int regoffset
= numregs
- (pin
/ afperreg
) - 1;
274 int pos
= (pin
% afperreg
) * (8 / afperreg
);
276 regs
[regoffset
] &= ~(mask
<< pos
);
277 regs
[regoffset
] |= af
<< pos
;
282 ret
= __stmpe_block_write(stmpe
, regaddr
, numregs
, regs
);
285 mutex_unlock(&stmpe
->lock
);
288 EXPORT_SYMBOL_GPL(stmpe_set_altfunc
);
291 * GPIO (all variants)
294 static struct resource stmpe_gpio_resources
[] = {
295 /* Start and end filled dynamically */
297 .flags
= IORESOURCE_IRQ
,
301 static const struct mfd_cell stmpe_gpio_cell
= {
302 .name
= "stmpe-gpio",
303 .of_compatible
= "st,stmpe-gpio",
304 .resources
= stmpe_gpio_resources
,
305 .num_resources
= ARRAY_SIZE(stmpe_gpio_resources
),
308 static const struct mfd_cell stmpe_gpio_cell_noirq
= {
309 .name
= "stmpe-gpio",
310 .of_compatible
= "st,stmpe-gpio",
311 /* gpio cell resources consist of an irq only so no resources here */
315 * Keypad (1601, 2401, 2403)
318 static struct resource stmpe_keypad_resources
[] = {
321 .flags
= IORESOURCE_IRQ
,
324 .name
= "KEYPAD_OVER",
325 .flags
= IORESOURCE_IRQ
,
329 static const struct mfd_cell stmpe_keypad_cell
= {
330 .name
= "stmpe-keypad",
331 .of_compatible
= "st,stmpe-keypad",
332 .resources
= stmpe_keypad_resources
,
333 .num_resources
= ARRAY_SIZE(stmpe_keypad_resources
),
339 static const u8 stmpe801_regs
[] = {
340 [STMPE_IDX_CHIP_ID
] = STMPE801_REG_CHIP_ID
,
341 [STMPE_IDX_ICR_LSB
] = STMPE801_REG_SYS_CTRL
,
342 [STMPE_IDX_GPMR_LSB
] = STMPE801_REG_GPIO_MP_STA
,
343 [STMPE_IDX_GPSR_LSB
] = STMPE801_REG_GPIO_SET_PIN
,
344 [STMPE_IDX_GPCR_LSB
] = STMPE801_REG_GPIO_SET_PIN
,
345 [STMPE_IDX_GPDR_LSB
] = STMPE801_REG_GPIO_DIR
,
346 [STMPE_IDX_IEGPIOR_LSB
] = STMPE801_REG_GPIO_INT_EN
,
347 [STMPE_IDX_ISGPIOR_MSB
] = STMPE801_REG_GPIO_INT_STA
,
351 static struct stmpe_variant_block stmpe801_blocks
[] = {
353 .cell
= &stmpe_gpio_cell
,
355 .block
= STMPE_BLOCK_GPIO
,
359 static struct stmpe_variant_block stmpe801_blocks_noirq
[] = {
361 .cell
= &stmpe_gpio_cell_noirq
,
362 .block
= STMPE_BLOCK_GPIO
,
366 static int stmpe801_enable(struct stmpe
*stmpe
, unsigned int blocks
,
369 if (blocks
& STMPE_BLOCK_GPIO
)
375 static struct stmpe_variant_info stmpe801
= {
377 .id_val
= STMPE801_ID
,
380 .regs
= stmpe801_regs
,
381 .blocks
= stmpe801_blocks
,
382 .num_blocks
= ARRAY_SIZE(stmpe801_blocks
),
383 .num_irqs
= STMPE801_NR_INTERNAL_IRQS
,
384 .enable
= stmpe801_enable
,
387 static struct stmpe_variant_info stmpe801_noirq
= {
389 .id_val
= STMPE801_ID
,
392 .regs
= stmpe801_regs
,
393 .blocks
= stmpe801_blocks_noirq
,
394 .num_blocks
= ARRAY_SIZE(stmpe801_blocks_noirq
),
395 .enable
= stmpe801_enable
,
399 * Touchscreen (STMPE811 or STMPE610)
402 static struct resource stmpe_ts_resources
[] = {
405 .flags
= IORESOURCE_IRQ
,
409 .flags
= IORESOURCE_IRQ
,
413 static const struct mfd_cell stmpe_ts_cell
= {
415 .of_compatible
= "st,stmpe-ts",
416 .resources
= stmpe_ts_resources
,
417 .num_resources
= ARRAY_SIZE(stmpe_ts_resources
),
421 * STMPE811 or STMPE610
424 static const u8 stmpe811_regs
[] = {
425 [STMPE_IDX_CHIP_ID
] = STMPE811_REG_CHIP_ID
,
426 [STMPE_IDX_ICR_LSB
] = STMPE811_REG_INT_CTRL
,
427 [STMPE_IDX_IER_LSB
] = STMPE811_REG_INT_EN
,
428 [STMPE_IDX_ISR_MSB
] = STMPE811_REG_INT_STA
,
429 [STMPE_IDX_GPMR_LSB
] = STMPE811_REG_GPIO_MP_STA
,
430 [STMPE_IDX_GPSR_LSB
] = STMPE811_REG_GPIO_SET_PIN
,
431 [STMPE_IDX_GPCR_LSB
] = STMPE811_REG_GPIO_CLR_PIN
,
432 [STMPE_IDX_GPDR_LSB
] = STMPE811_REG_GPIO_DIR
,
433 [STMPE_IDX_GPRER_LSB
] = STMPE811_REG_GPIO_RE
,
434 [STMPE_IDX_GPFER_LSB
] = STMPE811_REG_GPIO_FE
,
435 [STMPE_IDX_GPAFR_U_MSB
] = STMPE811_REG_GPIO_AF
,
436 [STMPE_IDX_IEGPIOR_LSB
] = STMPE811_REG_GPIO_INT_EN
,
437 [STMPE_IDX_ISGPIOR_MSB
] = STMPE811_REG_GPIO_INT_STA
,
438 [STMPE_IDX_GPEDR_MSB
] = STMPE811_REG_GPIO_ED
,
441 static struct stmpe_variant_block stmpe811_blocks
[] = {
443 .cell
= &stmpe_gpio_cell
,
444 .irq
= STMPE811_IRQ_GPIOC
,
445 .block
= STMPE_BLOCK_GPIO
,
448 .cell
= &stmpe_ts_cell
,
449 .irq
= STMPE811_IRQ_TOUCH_DET
,
450 .block
= STMPE_BLOCK_TOUCHSCREEN
,
454 static int stmpe811_enable(struct stmpe
*stmpe
, unsigned int blocks
,
457 unsigned int mask
= 0;
459 if (blocks
& STMPE_BLOCK_GPIO
)
460 mask
|= STMPE811_SYS_CTRL2_GPIO_OFF
;
462 if (blocks
& STMPE_BLOCK_ADC
)
463 mask
|= STMPE811_SYS_CTRL2_ADC_OFF
;
465 if (blocks
& STMPE_BLOCK_TOUCHSCREEN
)
466 mask
|= STMPE811_SYS_CTRL2_TSC_OFF
;
468 return __stmpe_set_bits(stmpe
, STMPE811_REG_SYS_CTRL2
, mask
,
472 static int stmpe811_get_altfunc(struct stmpe
*stmpe
, enum stmpe_block block
)
474 /* 0 for touchscreen, 1 for GPIO */
475 return block
!= STMPE_BLOCK_TOUCHSCREEN
;
478 static struct stmpe_variant_info stmpe811
= {
484 .regs
= stmpe811_regs
,
485 .blocks
= stmpe811_blocks
,
486 .num_blocks
= ARRAY_SIZE(stmpe811_blocks
),
487 .num_irqs
= STMPE811_NR_INTERNAL_IRQS
,
488 .enable
= stmpe811_enable
,
489 .get_altfunc
= stmpe811_get_altfunc
,
492 /* Similar to 811, except number of gpios */
493 static struct stmpe_variant_info stmpe610
= {
499 .regs
= stmpe811_regs
,
500 .blocks
= stmpe811_blocks
,
501 .num_blocks
= ARRAY_SIZE(stmpe811_blocks
),
502 .num_irqs
= STMPE811_NR_INTERNAL_IRQS
,
503 .enable
= stmpe811_enable
,
504 .get_altfunc
= stmpe811_get_altfunc
,
511 static const u8 stmpe1601_regs
[] = {
512 [STMPE_IDX_CHIP_ID
] = STMPE1601_REG_CHIP_ID
,
513 [STMPE_IDX_ICR_LSB
] = STMPE1601_REG_ICR_LSB
,
514 [STMPE_IDX_IER_LSB
] = STMPE1601_REG_IER_LSB
,
515 [STMPE_IDX_ISR_MSB
] = STMPE1601_REG_ISR_MSB
,
516 [STMPE_IDX_GPMR_LSB
] = STMPE1601_REG_GPIO_MP_LSB
,
517 [STMPE_IDX_GPSR_LSB
] = STMPE1601_REG_GPIO_SET_LSB
,
518 [STMPE_IDX_GPCR_LSB
] = STMPE1601_REG_GPIO_CLR_LSB
,
519 [STMPE_IDX_GPDR_LSB
] = STMPE1601_REG_GPIO_SET_DIR_LSB
,
520 [STMPE_IDX_GPRER_LSB
] = STMPE1601_REG_GPIO_RE_LSB
,
521 [STMPE_IDX_GPFER_LSB
] = STMPE1601_REG_GPIO_FE_LSB
,
522 [STMPE_IDX_GPAFR_U_MSB
] = STMPE1601_REG_GPIO_AF_U_MSB
,
523 [STMPE_IDX_IEGPIOR_LSB
] = STMPE1601_REG_INT_EN_GPIO_MASK_LSB
,
524 [STMPE_IDX_ISGPIOR_MSB
] = STMPE1601_REG_INT_STA_GPIO_MSB
,
525 [STMPE_IDX_GPEDR_MSB
] = STMPE1601_REG_GPIO_ED_MSB
,
528 static struct stmpe_variant_block stmpe1601_blocks
[] = {
530 .cell
= &stmpe_gpio_cell
,
531 .irq
= STMPE1601_IRQ_GPIOC
,
532 .block
= STMPE_BLOCK_GPIO
,
535 .cell
= &stmpe_keypad_cell
,
536 .irq
= STMPE1601_IRQ_KEYPAD
,
537 .block
= STMPE_BLOCK_KEYPAD
,
541 /* supported autosleep timeout delay (in msecs) */
542 static const int stmpe_autosleep_delay
[] = {
543 4, 16, 32, 64, 128, 256, 512, 1024,
546 static int stmpe_round_timeout(int timeout
)
550 for (i
= 0; i
< ARRAY_SIZE(stmpe_autosleep_delay
); i
++) {
551 if (stmpe_autosleep_delay
[i
] >= timeout
)
556 * requests for delays longer than supported should not return the
557 * longest supported delay
562 static int stmpe_autosleep(struct stmpe
*stmpe
, int autosleep_timeout
)
566 if (!stmpe
->variant
->enable_autosleep
)
569 mutex_lock(&stmpe
->lock
);
570 ret
= stmpe
->variant
->enable_autosleep(stmpe
, autosleep_timeout
);
571 mutex_unlock(&stmpe
->lock
);
577 * Both stmpe 1601/2403 support same layout for autosleep
579 static int stmpe1601_autosleep(struct stmpe
*stmpe
,
580 int autosleep_timeout
)
584 /* choose the best available timeout */
585 timeout
= stmpe_round_timeout(autosleep_timeout
);
587 dev_err(stmpe
->dev
, "invalid timeout\n");
591 ret
= __stmpe_set_bits(stmpe
, STMPE1601_REG_SYS_CTRL2
,
592 STMPE1601_AUTOSLEEP_TIMEOUT_MASK
,
597 return __stmpe_set_bits(stmpe
, STMPE1601_REG_SYS_CTRL2
,
598 STPME1601_AUTOSLEEP_ENABLE
,
599 STPME1601_AUTOSLEEP_ENABLE
);
602 static int stmpe1601_enable(struct stmpe
*stmpe
, unsigned int blocks
,
605 unsigned int mask
= 0;
607 if (blocks
& STMPE_BLOCK_GPIO
)
608 mask
|= STMPE1601_SYS_CTRL_ENABLE_GPIO
;
610 mask
&= ~STMPE1601_SYS_CTRL_ENABLE_GPIO
;
612 if (blocks
& STMPE_BLOCK_KEYPAD
)
613 mask
|= STMPE1601_SYS_CTRL_ENABLE_KPC
;
615 mask
&= ~STMPE1601_SYS_CTRL_ENABLE_KPC
;
617 if (blocks
& STMPE_BLOCK_PWM
)
618 mask
|= STMPE1601_SYS_CTRL_ENABLE_SPWM
;
620 mask
&= ~STMPE1601_SYS_CTRL_ENABLE_SPWM
;
622 return __stmpe_set_bits(stmpe
, STMPE1601_REG_SYS_CTRL
, mask
,
626 static int stmpe1601_get_altfunc(struct stmpe
*stmpe
, enum stmpe_block block
)
629 case STMPE_BLOCK_PWM
:
632 case STMPE_BLOCK_KEYPAD
:
635 case STMPE_BLOCK_GPIO
:
641 static struct stmpe_variant_info stmpe1601
= {
644 .id_mask
= 0xfff0, /* at least 0x0210 and 0x0212 */
647 .regs
= stmpe1601_regs
,
648 .blocks
= stmpe1601_blocks
,
649 .num_blocks
= ARRAY_SIZE(stmpe1601_blocks
),
650 .num_irqs
= STMPE1601_NR_INTERNAL_IRQS
,
651 .enable
= stmpe1601_enable
,
652 .get_altfunc
= stmpe1601_get_altfunc
,
653 .enable_autosleep
= stmpe1601_autosleep
,
659 static const u8 stmpe1801_regs
[] = {
660 [STMPE_IDX_CHIP_ID
] = STMPE1801_REG_CHIP_ID
,
661 [STMPE_IDX_ICR_LSB
] = STMPE1801_REG_INT_CTRL_LOW
,
662 [STMPE_IDX_IER_LSB
] = STMPE1801_REG_INT_EN_MASK_LOW
,
663 [STMPE_IDX_ISR_LSB
] = STMPE1801_REG_INT_STA_LOW
,
664 [STMPE_IDX_GPMR_LSB
] = STMPE1801_REG_GPIO_MP_LOW
,
665 [STMPE_IDX_GPSR_LSB
] = STMPE1801_REG_GPIO_SET_LOW
,
666 [STMPE_IDX_GPCR_LSB
] = STMPE1801_REG_GPIO_CLR_LOW
,
667 [STMPE_IDX_GPDR_LSB
] = STMPE1801_REG_GPIO_SET_DIR_LOW
,
668 [STMPE_IDX_GPRER_LSB
] = STMPE1801_REG_GPIO_RE_LOW
,
669 [STMPE_IDX_GPFER_LSB
] = STMPE1801_REG_GPIO_FE_LOW
,
670 [STMPE_IDX_IEGPIOR_LSB
] = STMPE1801_REG_INT_EN_GPIO_MASK_LOW
,
671 [STMPE_IDX_ISGPIOR_LSB
] = STMPE1801_REG_INT_STA_GPIO_LOW
,
674 static struct stmpe_variant_block stmpe1801_blocks
[] = {
676 .cell
= &stmpe_gpio_cell
,
677 .irq
= STMPE1801_IRQ_GPIOC
,
678 .block
= STMPE_BLOCK_GPIO
,
681 .cell
= &stmpe_keypad_cell
,
682 .irq
= STMPE1801_IRQ_KEYPAD
,
683 .block
= STMPE_BLOCK_KEYPAD
,
687 static int stmpe1801_enable(struct stmpe
*stmpe
, unsigned int blocks
,
690 unsigned int mask
= 0;
691 if (blocks
& STMPE_BLOCK_GPIO
)
692 mask
|= STMPE1801_MSK_INT_EN_GPIO
;
694 if (blocks
& STMPE_BLOCK_KEYPAD
)
695 mask
|= STMPE1801_MSK_INT_EN_KPC
;
697 return __stmpe_set_bits(stmpe
, STMPE1801_REG_INT_EN_MASK_LOW
, mask
,
701 static int stmpe1801_reset(struct stmpe
*stmpe
)
703 unsigned long timeout
;
706 ret
= __stmpe_set_bits(stmpe
, STMPE1801_REG_SYS_CTRL
,
707 STMPE1801_MSK_SYS_CTRL_RESET
, STMPE1801_MSK_SYS_CTRL_RESET
);
711 timeout
= jiffies
+ msecs_to_jiffies(100);
712 while (time_before(jiffies
, timeout
)) {
713 ret
= __stmpe_reg_read(stmpe
, STMPE1801_REG_SYS_CTRL
);
716 if (!(ret
& STMPE1801_MSK_SYS_CTRL_RESET
))
718 usleep_range(100, 200);
723 static struct stmpe_variant_info stmpe1801
= {
725 .id_val
= STMPE1801_ID
,
729 .regs
= stmpe1801_regs
,
730 .blocks
= stmpe1801_blocks
,
731 .num_blocks
= ARRAY_SIZE(stmpe1801_blocks
),
732 .num_irqs
= STMPE1801_NR_INTERNAL_IRQS
,
733 .enable
= stmpe1801_enable
,
734 /* stmpe1801 do not have any gpio alternate function */
742 static const u8 stmpe24xx_regs
[] = {
743 [STMPE_IDX_CHIP_ID
] = STMPE24XX_REG_CHIP_ID
,
744 [STMPE_IDX_ICR_LSB
] = STMPE24XX_REG_ICR_LSB
,
745 [STMPE_IDX_IER_LSB
] = STMPE24XX_REG_IER_LSB
,
746 [STMPE_IDX_ISR_MSB
] = STMPE24XX_REG_ISR_MSB
,
747 [STMPE_IDX_GPMR_LSB
] = STMPE24XX_REG_GPMR_LSB
,
748 [STMPE_IDX_GPSR_LSB
] = STMPE24XX_REG_GPSR_LSB
,
749 [STMPE_IDX_GPCR_LSB
] = STMPE24XX_REG_GPCR_LSB
,
750 [STMPE_IDX_GPDR_LSB
] = STMPE24XX_REG_GPDR_LSB
,
751 [STMPE_IDX_GPRER_LSB
] = STMPE24XX_REG_GPRER_LSB
,
752 [STMPE_IDX_GPFER_LSB
] = STMPE24XX_REG_GPFER_LSB
,
753 [STMPE_IDX_GPAFR_U_MSB
] = STMPE24XX_REG_GPAFR_U_MSB
,
754 [STMPE_IDX_IEGPIOR_LSB
] = STMPE24XX_REG_IEGPIOR_LSB
,
755 [STMPE_IDX_ISGPIOR_MSB
] = STMPE24XX_REG_ISGPIOR_MSB
,
756 [STMPE_IDX_GPEDR_MSB
] = STMPE24XX_REG_GPEDR_MSB
,
759 static struct stmpe_variant_block stmpe24xx_blocks
[] = {
761 .cell
= &stmpe_gpio_cell
,
762 .irq
= STMPE24XX_IRQ_GPIOC
,
763 .block
= STMPE_BLOCK_GPIO
,
766 .cell
= &stmpe_keypad_cell
,
767 .irq
= STMPE24XX_IRQ_KEYPAD
,
768 .block
= STMPE_BLOCK_KEYPAD
,
772 static int stmpe24xx_enable(struct stmpe
*stmpe
, unsigned int blocks
,
775 unsigned int mask
= 0;
777 if (blocks
& STMPE_BLOCK_GPIO
)
778 mask
|= STMPE24XX_SYS_CTRL_ENABLE_GPIO
;
780 if (blocks
& STMPE_BLOCK_KEYPAD
)
781 mask
|= STMPE24XX_SYS_CTRL_ENABLE_KPC
;
783 return __stmpe_set_bits(stmpe
, STMPE24XX_REG_SYS_CTRL
, mask
,
787 static int stmpe24xx_get_altfunc(struct stmpe
*stmpe
, enum stmpe_block block
)
790 case STMPE_BLOCK_ROTATOR
:
793 case STMPE_BLOCK_KEYPAD
:
796 case STMPE_BLOCK_GPIO
:
802 static struct stmpe_variant_info stmpe2401
= {
808 .regs
= stmpe24xx_regs
,
809 .blocks
= stmpe24xx_blocks
,
810 .num_blocks
= ARRAY_SIZE(stmpe24xx_blocks
),
811 .num_irqs
= STMPE24XX_NR_INTERNAL_IRQS
,
812 .enable
= stmpe24xx_enable
,
813 .get_altfunc
= stmpe24xx_get_altfunc
,
816 static struct stmpe_variant_info stmpe2403
= {
822 .regs
= stmpe24xx_regs
,
823 .blocks
= stmpe24xx_blocks
,
824 .num_blocks
= ARRAY_SIZE(stmpe24xx_blocks
),
825 .num_irqs
= STMPE24XX_NR_INTERNAL_IRQS
,
826 .enable
= stmpe24xx_enable
,
827 .get_altfunc
= stmpe24xx_get_altfunc
,
828 .enable_autosleep
= stmpe1601_autosleep
, /* same as stmpe1601 */
831 static struct stmpe_variant_info
*stmpe_variant_info
[STMPE_NBR_PARTS
] = {
832 [STMPE610
] = &stmpe610
,
833 [STMPE801
] = &stmpe801
,
834 [STMPE811
] = &stmpe811
,
835 [STMPE1601
] = &stmpe1601
,
836 [STMPE1801
] = &stmpe1801
,
837 [STMPE2401
] = &stmpe2401
,
838 [STMPE2403
] = &stmpe2403
,
842 * These devices can be connected in a 'no-irq' configuration - the irq pin
843 * is not used and the device cannot interrupt the CPU. Here we only list
844 * devices which support this configuration - the driver will fail probing
845 * for any devices not listed here which are configured in this way.
847 static struct stmpe_variant_info
*stmpe_noirq_variant_info
[STMPE_NBR_PARTS
] = {
848 [STMPE801
] = &stmpe801_noirq
,
851 static irqreturn_t
stmpe_irq(int irq
, void *data
)
853 struct stmpe
*stmpe
= data
;
854 struct stmpe_variant_info
*variant
= stmpe
->variant
;
855 int num
= DIV_ROUND_UP(variant
->num_irqs
, 8);
861 if (variant
->id_val
== STMPE801_ID
) {
862 int base
= irq_create_mapping(stmpe
->domain
, 0);
864 handle_nested_irq(base
);
868 if (variant
->id_val
== STMPE1801_ID
)
869 israddr
= stmpe
->regs
[STMPE_IDX_ISR_LSB
];
871 israddr
= stmpe
->regs
[STMPE_IDX_ISR_MSB
];
873 ret
= stmpe_block_read(stmpe
, israddr
, num
, isr
);
877 for (i
= 0; i
< num
; i
++) {
878 int bank
= num
- i
- 1;
882 status
&= stmpe
->ier
[bank
];
888 int bit
= __ffs(status
);
889 int line
= bank
* 8 + bit
;
890 int nestedirq
= irq_create_mapping(stmpe
->domain
, line
);
892 handle_nested_irq(nestedirq
);
893 status
&= ~(1 << bit
);
896 stmpe_reg_write(stmpe
, israddr
+ i
, clear
);
902 static void stmpe_irq_lock(struct irq_data
*data
)
904 struct stmpe
*stmpe
= irq_data_get_irq_chip_data(data
);
906 mutex_lock(&stmpe
->irq_lock
);
909 static void stmpe_irq_sync_unlock(struct irq_data
*data
)
911 struct stmpe
*stmpe
= irq_data_get_irq_chip_data(data
);
912 struct stmpe_variant_info
*variant
= stmpe
->variant
;
913 int num
= DIV_ROUND_UP(variant
->num_irqs
, 8);
916 for (i
= 0; i
< num
; i
++) {
917 u8
new = stmpe
->ier
[i
];
918 u8 old
= stmpe
->oldier
[i
];
923 stmpe
->oldier
[i
] = new;
924 stmpe_reg_write(stmpe
, stmpe
->regs
[STMPE_IDX_IER_LSB
] - i
, new);
927 mutex_unlock(&stmpe
->irq_lock
);
930 static void stmpe_irq_mask(struct irq_data
*data
)
932 struct stmpe
*stmpe
= irq_data_get_irq_chip_data(data
);
933 int offset
= data
->hwirq
;
934 int regoffset
= offset
/ 8;
935 int mask
= 1 << (offset
% 8);
937 stmpe
->ier
[regoffset
] &= ~mask
;
940 static void stmpe_irq_unmask(struct irq_data
*data
)
942 struct stmpe
*stmpe
= irq_data_get_irq_chip_data(data
);
943 int offset
= data
->hwirq
;
944 int regoffset
= offset
/ 8;
945 int mask
= 1 << (offset
% 8);
947 stmpe
->ier
[regoffset
] |= mask
;
950 static struct irq_chip stmpe_irq_chip
= {
952 .irq_bus_lock
= stmpe_irq_lock
,
953 .irq_bus_sync_unlock
= stmpe_irq_sync_unlock
,
954 .irq_mask
= stmpe_irq_mask
,
955 .irq_unmask
= stmpe_irq_unmask
,
958 static int stmpe_irq_map(struct irq_domain
*d
, unsigned int virq
,
959 irq_hw_number_t hwirq
)
961 struct stmpe
*stmpe
= d
->host_data
;
962 struct irq_chip
*chip
= NULL
;
964 if (stmpe
->variant
->id_val
!= STMPE801_ID
)
965 chip
= &stmpe_irq_chip
;
967 irq_set_chip_data(virq
, stmpe
);
968 irq_set_chip_and_handler(virq
, chip
, handle_edge_irq
);
969 irq_set_nested_thread(virq
, 1);
971 set_irq_flags(virq
, IRQF_VALID
);
973 irq_set_noprobe(virq
);
979 static void stmpe_irq_unmap(struct irq_domain
*d
, unsigned int virq
)
982 set_irq_flags(virq
, 0);
984 irq_set_chip_and_handler(virq
, NULL
, NULL
);
985 irq_set_chip_data(virq
, NULL
);
988 static struct irq_domain_ops stmpe_irq_ops
= {
989 .map
= stmpe_irq_map
,
990 .unmap
= stmpe_irq_unmap
,
991 .xlate
= irq_domain_xlate_twocell
,
994 static int stmpe_irq_init(struct stmpe
*stmpe
, struct device_node
*np
)
997 int num_irqs
= stmpe
->variant
->num_irqs
;
999 stmpe
->domain
= irq_domain_add_simple(np
, num_irqs
, base
,
1000 &stmpe_irq_ops
, stmpe
);
1001 if (!stmpe
->domain
) {
1002 dev_err(stmpe
->dev
, "Failed to create irqdomain\n");
1009 static int stmpe_chip_init(struct stmpe
*stmpe
)
1011 unsigned int irq_trigger
= stmpe
->pdata
->irq_trigger
;
1012 int autosleep_timeout
= stmpe
->pdata
->autosleep_timeout
;
1013 struct stmpe_variant_info
*variant
= stmpe
->variant
;
1019 ret
= stmpe_block_read(stmpe
, stmpe
->regs
[STMPE_IDX_CHIP_ID
],
1020 ARRAY_SIZE(data
), data
);
1024 id
= (data
[0] << 8) | data
[1];
1025 if ((id
& variant
->id_mask
) != variant
->id_val
) {
1026 dev_err(stmpe
->dev
, "unknown chip id: %#x\n", id
);
1030 dev_info(stmpe
->dev
, "%s detected, chip id: %#x\n", variant
->name
, id
);
1032 /* Disable all modules -- subdrivers should enable what they need. */
1033 ret
= stmpe_disable(stmpe
, ~0);
1037 if (id
== STMPE1801_ID
) {
1038 ret
= stmpe1801_reset(stmpe
);
1043 if (stmpe
->irq
>= 0) {
1044 if (id
== STMPE801_ID
)
1045 icr
= STMPE801_REG_SYS_CTRL_INT_EN
;
1047 icr
= STMPE_ICR_LSB_GIM
;
1049 /* STMPE801 doesn't support Edge interrupts */
1050 if (id
!= STMPE801_ID
) {
1051 if (irq_trigger
== IRQF_TRIGGER_FALLING
||
1052 irq_trigger
== IRQF_TRIGGER_RISING
)
1053 icr
|= STMPE_ICR_LSB_EDGE
;
1056 if (irq_trigger
== IRQF_TRIGGER_RISING
||
1057 irq_trigger
== IRQF_TRIGGER_HIGH
) {
1058 if (id
== STMPE801_ID
)
1059 icr
|= STMPE801_REG_SYS_CTRL_INT_HI
;
1061 icr
|= STMPE_ICR_LSB_HIGH
;
1065 if (stmpe
->pdata
->autosleep
) {
1066 ret
= stmpe_autosleep(stmpe
, autosleep_timeout
);
1071 return stmpe_reg_write(stmpe
, stmpe
->regs
[STMPE_IDX_ICR_LSB
], icr
);
1074 static int stmpe_add_device(struct stmpe
*stmpe
, const struct mfd_cell
*cell
)
1076 return mfd_add_devices(stmpe
->dev
, stmpe
->pdata
->id
, cell
, 1,
1077 NULL
, 0, stmpe
->domain
);
1080 static int stmpe_devices_init(struct stmpe
*stmpe
)
1082 struct stmpe_variant_info
*variant
= stmpe
->variant
;
1083 unsigned int platform_blocks
= stmpe
->pdata
->blocks
;
1087 for (i
= 0; i
< variant
->num_blocks
; i
++) {
1088 struct stmpe_variant_block
*block
= &variant
->blocks
[i
];
1090 if (!(platform_blocks
& block
->block
))
1093 for (j
= 0; j
< block
->cell
->num_resources
; j
++) {
1094 struct resource
*res
=
1095 (struct resource
*) &block
->cell
->resources
[j
];
1097 /* Dynamically fill in a variant's IRQ. */
1098 if (res
->flags
& IORESOURCE_IRQ
)
1099 res
->start
= res
->end
= block
->irq
+ j
;
1102 platform_blocks
&= ~block
->block
;
1103 ret
= stmpe_add_device(stmpe
, block
->cell
);
1108 if (platform_blocks
)
1109 dev_warn(stmpe
->dev
,
1110 "platform wants blocks (%#x) not present on variant",
1116 static void stmpe_of_probe(struct stmpe_platform_data
*pdata
,
1117 struct device_node
*np
)
1119 struct device_node
*child
;
1121 pdata
->id
= of_alias_get_id(np
, "stmpe-i2c");
1125 pdata
->irq_trigger
= IRQF_TRIGGER_NONE
;
1127 of_property_read_u32(np
, "st,autosleep-timeout",
1128 &pdata
->autosleep_timeout
);
1130 pdata
->autosleep
= (pdata
->autosleep_timeout
) ? true : false;
1132 for_each_child_of_node(np
, child
) {
1133 if (!strcmp(child
->name
, "stmpe_gpio")) {
1134 pdata
->blocks
|= STMPE_BLOCK_GPIO
;
1135 } else if (!strcmp(child
->name
, "stmpe_keypad")) {
1136 pdata
->blocks
|= STMPE_BLOCK_KEYPAD
;
1137 } else if (!strcmp(child
->name
, "stmpe_touchscreen")) {
1138 pdata
->blocks
|= STMPE_BLOCK_TOUCHSCREEN
;
1139 } else if (!strcmp(child
->name
, "stmpe_adc")) {
1140 pdata
->blocks
|= STMPE_BLOCK_ADC
;
1141 } else if (!strcmp(child
->name
, "stmpe_pwm")) {
1142 pdata
->blocks
|= STMPE_BLOCK_PWM
;
1143 } else if (!strcmp(child
->name
, "stmpe_rotator")) {
1144 pdata
->blocks
|= STMPE_BLOCK_ROTATOR
;
1149 /* Called from client specific probe routines */
1150 int stmpe_probe(struct stmpe_client_info
*ci
, int partnum
)
1152 struct stmpe_platform_data
*pdata
= dev_get_platdata(ci
->dev
);
1153 struct device_node
*np
= ci
->dev
->of_node
;
1154 struct stmpe
*stmpe
;
1161 pdata
= devm_kzalloc(ci
->dev
, sizeof(*pdata
), GFP_KERNEL
);
1165 stmpe_of_probe(pdata
, np
);
1167 if (of_find_property(np
, "interrupts", NULL
) == NULL
)
1171 stmpe
= devm_kzalloc(ci
->dev
, sizeof(struct stmpe
), GFP_KERNEL
);
1175 mutex_init(&stmpe
->irq_lock
);
1176 mutex_init(&stmpe
->lock
);
1178 stmpe
->dev
= ci
->dev
;
1179 stmpe
->client
= ci
->client
;
1180 stmpe
->pdata
= pdata
;
1182 stmpe
->partnum
= partnum
;
1183 stmpe
->variant
= stmpe_variant_info
[partnum
];
1184 stmpe
->regs
= stmpe
->variant
->regs
;
1185 stmpe
->num_gpios
= stmpe
->variant
->num_gpios
;
1186 stmpe
->vcc
= devm_regulator_get_optional(ci
->dev
, "vcc");
1187 if (!IS_ERR(stmpe
->vcc
)) {
1188 ret
= regulator_enable(stmpe
->vcc
);
1190 dev_warn(ci
->dev
, "failed to enable VCC supply\n");
1192 stmpe
->vio
= devm_regulator_get_optional(ci
->dev
, "vio");
1193 if (!IS_ERR(stmpe
->vio
)) {
1194 ret
= regulator_enable(stmpe
->vio
);
1196 dev_warn(ci
->dev
, "failed to enable VIO supply\n");
1198 dev_set_drvdata(stmpe
->dev
, stmpe
);
1203 if (pdata
->irq_over_gpio
) {
1204 ret
= devm_gpio_request_one(ci
->dev
, pdata
->irq_gpio
,
1205 GPIOF_DIR_IN
, "stmpe");
1207 dev_err(stmpe
->dev
, "failed to request IRQ GPIO: %d\n",
1212 stmpe
->irq
= gpio_to_irq(pdata
->irq_gpio
);
1214 stmpe
->irq
= ci
->irq
;
1217 if (stmpe
->irq
< 0) {
1218 /* use alternate variant info for no-irq mode, if supported */
1219 dev_info(stmpe
->dev
,
1220 "%s configured in no-irq mode by platform data\n",
1221 stmpe
->variant
->name
);
1222 if (!stmpe_noirq_variant_info
[stmpe
->partnum
]) {
1224 "%s does not support no-irq mode!\n",
1225 stmpe
->variant
->name
);
1228 stmpe
->variant
= stmpe_noirq_variant_info
[stmpe
->partnum
];
1229 } else if (pdata
->irq_trigger
== IRQF_TRIGGER_NONE
) {
1230 pdata
->irq_trigger
= irq_get_trigger_type(stmpe
->irq
);
1233 ret
= stmpe_chip_init(stmpe
);
1237 if (stmpe
->irq
>= 0) {
1238 ret
= stmpe_irq_init(stmpe
, np
);
1242 ret
= devm_request_threaded_irq(ci
->dev
, stmpe
->irq
, NULL
,
1243 stmpe_irq
, pdata
->irq_trigger
| IRQF_ONESHOT
,
1246 dev_err(stmpe
->dev
, "failed to request IRQ: %d\n",
1252 ret
= stmpe_devices_init(stmpe
);
1256 dev_err(stmpe
->dev
, "failed to add children\n");
1257 mfd_remove_devices(stmpe
->dev
);
1262 int stmpe_remove(struct stmpe
*stmpe
)
1264 if (!IS_ERR(stmpe
->vio
))
1265 regulator_disable(stmpe
->vio
);
1266 if (!IS_ERR(stmpe
->vcc
))
1267 regulator_disable(stmpe
->vcc
);
1269 mfd_remove_devices(stmpe
->dev
);
1275 static int stmpe_suspend(struct device
*dev
)
1277 struct stmpe
*stmpe
= dev_get_drvdata(dev
);
1279 if (stmpe
->irq
>= 0 && device_may_wakeup(dev
))
1280 enable_irq_wake(stmpe
->irq
);
1285 static int stmpe_resume(struct device
*dev
)
1287 struct stmpe
*stmpe
= dev_get_drvdata(dev
);
1289 if (stmpe
->irq
>= 0 && device_may_wakeup(dev
))
1290 disable_irq_wake(stmpe
->irq
);
1295 const struct dev_pm_ops stmpe_dev_pm_ops
= {
1296 .suspend
= stmpe_suspend
,
1297 .resume
= stmpe_resume
,