1 /* SPDX-License-Identifier: GPL-2.0-only */
3 * Copyright (C) ST-Ericsson SA 2010
8 #ifndef __LINUX_MFD_STMPE_H
9 #define __LINUX_MFD_STMPE_H
11 #include <linux/mutex.h>
13 #define STMPE_SAMPLE_TIME(x) ((x & 0xf) << 4)
14 #define STMPE_MOD_12B(x) ((x & 0x1) << 3)
15 #define STMPE_REF_SEL(x) ((x & 0x1) << 1)
16 #define STMPE_ADC_FREQ(x) (x & 0x3)
17 #define STMPE_AVE_CTRL(x) ((x & 0x3) << 6)
18 #define STMPE_DET_DELAY(x) ((x & 0x7) << 3)
19 #define STMPE_SETTLING(x) (x & 0x7)
20 #define STMPE_FRACTION_Z(x) (x & 0x7)
21 #define STMPE_I_DRIVE(x) (x & 0x1)
22 #define STMPE_OP_MODE(x) ((x & 0x7) << 1)
24 #define STMPE811_REG_ADC_CTRL1 0x20
25 #define STMPE811_REG_ADC_CTRL2 0x21
31 STMPE_BLOCK_GPIO = 1 << 0,
32 STMPE_BLOCK_KEYPAD = 1 << 1,
33 STMPE_BLOCK_TOUCHSCREEN = 1 << 2,
34 STMPE_BLOCK_ADC = 1 << 3,
35 STMPE_BLOCK_PWM = 1 << 4,
36 STMPE_BLOCK_ROTATOR = 1 << 5,
52 * For registers whose locations differ on variants, the correct address is
53 * obtained by indexing stmpe->regs with one of the following.
87 STMPE_IDX_GPAFR_U_MSB,
88 STMPE_IDX_IEGPIOR_LSB,
89 STMPE_IDX_IEGPIOR_CSB,
90 STMPE_IDX_IEGPIOR_MSB,
91 STMPE_IDX_ISGPIOR_LSB,
92 STMPE_IDX_ISGPIOR_CSB,
93 STMPE_IDX_ISGPIOR_MSB,
98 struct stmpe_variant_info;
99 struct stmpe_client_info;
100 struct stmpe_platform_data;
103 * struct stmpe - STMPE MFD structure
104 * @vcc: optional VCC regulator
105 * @vio: optional VIO regulator
106 * @lock: lock protecting I/O operations
107 * @irq_lock: IRQ bus lock
108 * @dev: device, mostly for dev_dbg()
109 * @irq_domain: IRQ domain
110 * @client: client - i2c or spi
111 * @ci: client specific information
112 * @partnum: part number
113 * @variant: the detected STMPE model number
114 * @regs: list of addresses of registers which are at different addresses on
115 * different variants. Indexed by one of STMPE_IDX_*.
116 * @irq: irq number for stmpe
117 * @num_gpios: number of gpios, differs for variants
118 * @ier: cache of IER registers for bus_lock
119 * @oldier: cache of IER registers for bus_lock
120 * @pdata: platform data
123 struct regulator *vcc;
124 struct regulator *vio;
126 struct mutex irq_lock;
128 struct irq_domain *domain;
130 struct stmpe_client_info *ci;
131 enum stmpe_partnum partnum;
132 struct stmpe_variant_info *variant;
139 struct stmpe_platform_data *pdata;
141 /* For devices that use an ADC */
148 extern int stmpe_reg_write(struct stmpe *stmpe, u8 reg, u8 data);
149 extern int stmpe_reg_read(struct stmpe *stmpe, u8 reg);
150 extern int stmpe_block_read(struct stmpe *stmpe, u8 reg, u8 length,
152 extern int stmpe_block_write(struct stmpe *stmpe, u8 reg, u8 length,
154 extern int stmpe_set_bits(struct stmpe *stmpe, u8 reg, u8 mask, u8 val);
155 extern int stmpe_set_altfunc(struct stmpe *stmpe, u32 pins,
156 enum stmpe_block block);
157 extern int stmpe_enable(struct stmpe *stmpe, unsigned int blocks);
158 extern int stmpe_disable(struct stmpe *stmpe, unsigned int blocks);
159 extern int stmpe811_adc_common_init(struct stmpe *stmpe);
161 #define STMPE_GPIO_NOREQ_811_TOUCH (0xf0)