/linux-5.19.10/drivers/mfd/ |
D | stmpe.c | 47 static int __stmpe_enable(struct stmpe *stmpe, unsigned int blocks) in __stmpe_enable() argument 49 return stmpe->variant->enable(stmpe, blocks, true); in __stmpe_enable() 52 static int __stmpe_disable(struct stmpe *stmpe, unsigned int blocks) in __stmpe_disable() argument 54 return stmpe->variant->enable(stmpe, blocks, false); in __stmpe_disable() 57 static int __stmpe_reg_read(struct stmpe *stmpe, u8 reg) in __stmpe_reg_read() argument 61 ret = stmpe->ci->read_byte(stmpe, reg); in __stmpe_reg_read() 63 dev_err(stmpe->dev, "failed to read reg %#x: %d\n", reg, ret); in __stmpe_reg_read() 65 dev_vdbg(stmpe->dev, "rd: reg %#x => data %#x\n", reg, ret); in __stmpe_reg_read() 70 static int __stmpe_reg_write(struct stmpe *stmpe, u8 reg, u8 val) in __stmpe_reg_write() argument 74 dev_vdbg(stmpe->dev, "wr: reg %#x <= %#x\n", reg, val); in __stmpe_reg_write() [all …]
|
D | stmpe-spi.c | 20 static int spi_reg_read(struct stmpe *stmpe, u8 reg) in spi_reg_read() argument 22 struct spi_device *spi = stmpe->client; in spi_reg_read() 28 static int spi_reg_write(struct stmpe *stmpe, u8 reg, u8 val) in spi_reg_write() argument 30 struct spi_device *spi = stmpe->client; in spi_reg_write() 36 static int spi_block_read(struct stmpe *stmpe, u8 reg, u8 length, u8 *values) in spi_block_read() argument 41 ret = spi_reg_read(stmpe, reg + i); in spi_block_read() 50 static int spi_block_write(struct stmpe *stmpe, u8 reg, u8 length, in spi_block_write() argument 56 ret = spi_reg_write(stmpe, reg, *(values + i - 1)); in spi_block_write() 64 static void spi_init(struct stmpe *stmpe) in spi_init() argument 66 struct spi_device *spi = stmpe->client; in spi_init() [all …]
|
D | stmpe-i2c.c | 20 static int i2c_reg_read(struct stmpe *stmpe, u8 reg) in i2c_reg_read() argument 22 struct i2c_client *i2c = stmpe->client; in i2c_reg_read() 27 static int i2c_reg_write(struct stmpe *stmpe, u8 reg, u8 val) in i2c_reg_write() argument 29 struct i2c_client *i2c = stmpe->client; in i2c_reg_write() 34 static int i2c_block_read(struct stmpe *stmpe, u8 reg, u8 length, u8 *values) in i2c_block_read() argument 36 struct i2c_client *i2c = stmpe->client; in i2c_block_read() 41 static int i2c_block_write(struct stmpe *stmpe, u8 reg, u8 length, in i2c_block_write() argument 44 struct i2c_client *i2c = stmpe->client; in i2c_block_write() 96 struct stmpe *stmpe = dev_get_drvdata(&i2c->dev); in stmpe_i2c_remove() local 98 stmpe_remove(stmpe); in stmpe_i2c_remove()
|
D | stmpe.h | 73 int (*enable)(struct stmpe *stmpe, unsigned int blocks, bool enable); 74 int (*get_altfunc)(struct stmpe *stmpe, enum stmpe_block block); 75 int (*enable_autosleep)(struct stmpe *stmpe, int autosleep_timeout); 92 int (*read_byte)(struct stmpe *stmpe, u8 reg); 93 int (*write_byte)(struct stmpe *stmpe, u8 reg, u8 val); 94 int (*read_block)(struct stmpe *stmpe, u8 reg, u8 len, u8 *values); 95 int (*write_block)(struct stmpe *stmpe, u8 reg, u8 len, 97 void (*init)(struct stmpe *stmpe); 101 void stmpe_remove(struct stmpe *stmpe);
|
D | Makefile | 32 obj-$(CONFIG_MFD_STMPE) += stmpe.o 33 obj-$(CONFIG_STMPE_I2C) += stmpe-i2c.o 34 obj-$(CONFIG_STMPE_SPI) += stmpe-spi.o
|
/linux-5.19.10/drivers/gpio/ |
D | gpio-stmpe.c | 32 struct stmpe *stmpe; member 44 struct stmpe *stmpe = stmpe_gpio->stmpe; in stmpe_gpio_get() local 45 u8 reg = stmpe->regs[STMPE_IDX_GPMR_LSB + (offset / 8)]; in stmpe_gpio_get() 49 ret = stmpe_reg_read(stmpe, reg); in stmpe_gpio_get() 59 struct stmpe *stmpe = stmpe_gpio->stmpe; in stmpe_gpio_set() local 61 u8 reg = stmpe->regs[which + (offset / 8)]; in stmpe_gpio_set() 68 if (stmpe->regs[STMPE_IDX_GPSR_LSB] == stmpe->regs[STMPE_IDX_GPCR_LSB]) in stmpe_gpio_set() 69 stmpe_set_bits(stmpe, reg, mask, val ? mask : 0); in stmpe_gpio_set() 71 stmpe_reg_write(stmpe, reg, mask); in stmpe_gpio_set() 78 struct stmpe *stmpe = stmpe_gpio->stmpe; in stmpe_gpio_get_direction() local [all …]
|
/linux-5.19.10/drivers/input/touchscreen/ |
D | stmpe-ts.c | 73 struct stmpe *stmpe; member 85 static int __stmpe_reset_fifo(struct stmpe *stmpe) in __stmpe_reset_fifo() argument 89 ret = stmpe_set_bits(stmpe, STMPE_REG_FIFO_STA, in __stmpe_reset_fifo() 94 return stmpe_set_bits(stmpe, STMPE_REG_FIFO_STA, in __stmpe_reset_fifo() 106 int_sta = stmpe_reg_read(ts->stmpe, STMPE_REG_INT_STA); in stmpe_work() 117 int_sta = stmpe_reg_read(ts->stmpe, STMPE_REG_INT_STA); in stmpe_work() 122 __stmpe_reset_fifo(ts->stmpe); in stmpe_work() 147 stmpe_set_bits(ts->stmpe, STMPE_REG_TSC_CTRL, in stmpe_ts_handler() 150 stmpe_block_read(ts->stmpe, STMPE_REG_TSC_DATA_XYZ, 4, data_set); in stmpe_ts_handler() 162 __stmpe_reset_fifo(ts->stmpe); in stmpe_ts_handler() [all …]
|
/linux-5.19.10/include/linux/mfd/ |
D | stmpe.h | 122 struct stmpe { struct 148 extern int stmpe_reg_write(struct stmpe *stmpe, u8 reg, u8 data); argument 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, 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);
|
/linux-5.19.10/drivers/pwm/ |
D | pwm-stmpe.c | 29 struct stmpe *stmpe; member 45 ret = stmpe_reg_read(stmpe_pwm->stmpe, STMPE24XX_PWMCS); in stmpe_24xx_pwm_enable() 54 ret = stmpe_reg_write(stmpe_pwm->stmpe, STMPE24XX_PWMCS, value); in stmpe_24xx_pwm_enable() 71 ret = stmpe_reg_read(stmpe_pwm->stmpe, STMPE24XX_PWMCS); in stmpe_24xx_pwm_disable() 80 ret = stmpe_reg_write(stmpe_pwm->stmpe, STMPE24XX_PWMCS, value); in stmpe_24xx_pwm_disable() 120 if (stmpe_pwm->stmpe->partnum == STMPE2401 || in stmpe_24xx_pwm_config() 121 stmpe_pwm->stmpe->partnum == STMPE2403) in stmpe_24xx_pwm_config() 124 ret = stmpe_set_altfunc(stmpe_pwm->stmpe, BIT(pin), in stmpe_24xx_pwm_config() 156 if (stmpe_pwm->stmpe->partnum == STMPE2401) in stmpe_24xx_pwm_config() 159 if (stmpe_pwm->stmpe->partnum == STMPE2403) in stmpe_24xx_pwm_config() [all …]
|
/linux-5.19.10/drivers/input/keyboard/ |
D | stmpe-keypad.c | 129 struct stmpe *stmpe; member 143 struct stmpe *stmpe = keypad->stmpe; in stmpe_keypad_read_data() local 148 return stmpe_block_read(stmpe, STMPE_KPC_DATA_BYTE0, in stmpe_keypad_read_data() 152 ret = stmpe_reg_read(stmpe, STMPE_KPC_DATA_BYTE0 + i); in stmpe_keypad_read_data() 199 struct stmpe *stmpe = keypad->stmpe; in stmpe_keypad_altfunc_init() local 200 u8 pureg = stmpe->regs[STMPE_IDX_GPPUR_LSB]; in stmpe_keypad_altfunc_init() 237 ret = stmpe_set_altfunc(stmpe, pins, STMPE_BLOCK_KEYPAD); in stmpe_keypad_altfunc_init() 250 ret = stmpe_reg_read(stmpe, pureg); in stmpe_keypad_altfunc_init() 258 ret = stmpe_reg_write(stmpe, pureg, val); in stmpe_keypad_altfunc_init() 267 struct stmpe *stmpe = keypad->stmpe; in stmpe_keypad_chip_init() local [all …]
|
/linux-5.19.10/drivers/iio/adc/ |
D | stmpe-adc.c | 47 struct stmpe *stmpe; member 77 stmpe_reg_write(info->stmpe, STMPE_REG_ADC_CAPT, in stmpe_read_voltage() 83 stmpe_reg_write(info->stmpe, STMPE_REG_ADC_INT_STA, in stmpe_read_voltage() 112 stmpe_reg_write(info->stmpe, STMPE_REG_TEMP_CTRL, in stmpe_read_temp() 165 *val2 = info->stmpe->mod_12b ? 12 : 10; in stmpe_read_raw() 183 int_sta = stmpe_reg_read(info->stmpe, STMPE_REG_ADC_INT_STA); in stmpe_adc_isr() 190 stmpe_block_read(info->stmpe, in stmpe_adc_isr() 193 stmpe_reg_write(info->stmpe, STMPE_REG_ADC_INT_STA, int_sta); in stmpe_adc_isr() 196 stmpe_block_read(info->stmpe, STMPE_REG_TEMP_DATA, 2, in stmpe_adc_isr() 232 struct stmpe *stmpe = adc->stmpe; in stmpe_adc_init_hw() local [all …]
|
/linux-5.19.10/Documentation/devicetree/bindings/iio/adc/ |
D | st,stmpe-adc.yaml | 4 $id: http://devicetree.org/schemas/iio/adc/st,stmpe-adc.yaml# 16 The node name myst be stmpe_adc and should be a child node of the stmpe node 21 const: st,stmpe-adc 39 stmpe { 41 compatible = "st,stmpe-adc";
|
/linux-5.19.10/Documentation/devicetree/bindings/gpio/ |
D | gpio-stmpe.txt | 5 - compatible: "st,stmpe-gpio" 11 Node name must be stmpe_gpio and should be child node of stmpe node to which it 16 compatible = "st,stmpe-gpio";
|
/linux-5.19.10/Documentation/devicetree/bindings/input/touchscreen/ |
D | stmpe.txt | 5 - compatible: "st,stmpe-ts" 57 Node name must be stmpe_touchscreen and should be child node of stmpe node to 89 compatible = "st,stmpe-ts"; 106 compatible = "st,stmpe-adc";
|
/linux-5.19.10/arch/arm/boot/dts/ |
D | ste-nomadik-nhk15.dts | 22 stmpe-i2c0 = &stmpe0; 23 stmpe-i2c1 = &stmpe1; 113 compatible = "st,stmpe-gpio"; 122 compatible = "st,stmpe-keypad"; 144 compatible = "st,stmpe-pwm"; 159 compatible = "st,stmpe-gpio";
|
D | socfpga_cyclone5_mcvevk.dts | 14 stmpe-i2c0 = &stmpe1; 61 compatible = "st,stmpe-ts";
|
D | spear320-hmi.dts | 243 stmpegpio: stmpe-gpio { 244 compatible = "stmpe,gpio"; 252 compatible = "stmpe,ts";
|
D | imx6q-dmo-edmqmx6.dts | 22 stmpe-i2c0 = &stmpe1; 23 stmpe-i2c1 = &stmpe2; 250 compatible = "st,stmpe-gpio"; 264 compatible = "st,stmpe-gpio";
|
D | imx6ul-phytec-segin-peb-av-02.dtsi | 54 stmpe: touchscreen@44 { label 65 compatible = "st,stmpe-ts";
|
D | ste-href-stuib.dtsi | 48 compatible = "st,stmpe-keypad"; 132 stmpe {
|
D | am5729-beagleboneai.dts | 428 compatible = "st,stmpe-adc"; 440 compatible = "st,stmpe-ts"; 457 compatible = "st,stmpe-gpio"; 461 compatible = "st,stmpe-pwm";
|
D | imx6ul-isiot.dtsi | 135 stmpe: touchscreen { label 136 compatible = "st,stmpe-ts";
|
/linux-5.19.10/Documentation/devicetree/bindings/pwm/ |
D | st,stmpe-pwm.txt | 9 - "st,stmpe-pwm" 16 compatible = "st,stmpe-pwm";
|
/linux-5.19.10/Documentation/devicetree/bindings/input/ |
D | stmpe-keypad.txt | 4 - compatible : "st,stmpe-keypad" 17 compatible = "st,stmpe-keypad";
|
/linux-5.19.10/Documentation/devicetree/bindings/mfd/ |
D | stmpe.txt | 7 - compatible : "st,stmpe[610|801|811|1600|1601|2401|2403]"
|