2 * Copyright (C) ST-Ericsson SA 2010
4 * License Terms: GNU General Public License, version 2
5 * Author: Rabin Vincent <rabin.vincent@stericsson.com> for ST-Ericsson
8 #ifndef __LINUX_MFD_STMPE_H
9 #define __LINUX_MFD_STMPE_H
11 #include <linux/mutex.h>
17 STMPE_BLOCK_GPIO
= 1 << 0,
18 STMPE_BLOCK_KEYPAD
= 1 << 1,
19 STMPE_BLOCK_TOUCHSCREEN
= 1 << 2,
20 STMPE_BLOCK_ADC
= 1 << 3,
21 STMPE_BLOCK_PWM
= 1 << 4,
22 STMPE_BLOCK_ROTATOR
= 1 << 5,
38 * For registers whose locations differ on variants, the correct address is
39 * obtained by indexing stmpe->regs with one of the following.
73 STMPE_IDX_GPAFR_U_MSB
,
74 STMPE_IDX_IEGPIOR_LSB
,
75 STMPE_IDX_IEGPIOR_CSB
,
76 STMPE_IDX_IEGPIOR_MSB
,
77 STMPE_IDX_ISGPIOR_LSB
,
78 STMPE_IDX_ISGPIOR_CSB
,
79 STMPE_IDX_ISGPIOR_MSB
,
84 struct stmpe_variant_info
;
85 struct stmpe_client_info
;
86 struct stmpe_platform_data
;
89 * struct stmpe - STMPE MFD structure
90 * @vcc: optional VCC regulator
91 * @vio: optional VIO regulator
92 * @lock: lock protecting I/O operations
93 * @irq_lock: IRQ bus lock
94 * @dev: device, mostly for dev_dbg()
95 * @irq_domain: IRQ domain
96 * @client: client - i2c or spi
97 * @ci: client specific information
98 * @partnum: part number
99 * @variant: the detected STMPE model number
100 * @regs: list of addresses of registers which are at different addresses on
101 * different variants. Indexed by one of STMPE_IDX_*.
102 * @irq: irq number for stmpe
103 * @num_gpios: number of gpios, differs for variants
104 * @ier: cache of IER registers for bus_lock
105 * @oldier: cache of IER registers for bus_lock
106 * @pdata: platform data
109 struct regulator
*vcc
;
110 struct regulator
*vio
;
112 struct mutex irq_lock
;
114 struct irq_domain
*domain
;
116 struct stmpe_client_info
*ci
;
117 enum stmpe_partnum partnum
;
118 struct stmpe_variant_info
*variant
;
125 struct stmpe_platform_data
*pdata
;
128 extern int stmpe_reg_write(struct stmpe
*stmpe
, u8 reg
, u8 data
);
129 extern int stmpe_reg_read(struct stmpe
*stmpe
, u8 reg
);
130 extern int stmpe_block_read(struct stmpe
*stmpe
, u8 reg
, u8 length
,
132 extern int stmpe_block_write(struct stmpe
*stmpe
, u8 reg
, u8 length
,
134 extern int stmpe_set_bits(struct stmpe
*stmpe
, u8 reg
, u8 mask
, u8 val
);
135 extern int stmpe_set_altfunc(struct stmpe
*stmpe
, u32 pins
,
136 enum stmpe_block block
);
137 extern int stmpe_enable(struct stmpe
*stmpe
, unsigned int blocks
);
138 extern int stmpe_disable(struct stmpe
*stmpe
, unsigned int blocks
);
140 #define STMPE_GPIO_NOREQ_811_TOUCH (0xf0)