Merge tag 'mfd-next-5.1' of git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd
Pull MFD updates from Lee Jones: "New Drivers: - Add STMPE ADC Input driver - Add STMicroelectronics STPMIC1 Parent driver - Add STMicroelectronics STPMIC1 OnKey Misc driver - Add STMicroelectronics STPMIC1 Watchdog driver - Add Cirrus Logic Lochnagar Parent driver - Add TQ-Systems TQMX86 Parent driver New Device Support: - Add support for ADC to STMPE New (or moved) Functionality: - Move Lightbar functionality to its own driver; cros_ec_lightbar - Move VBC functionality to its own driver; cros_ec_vbc - Move VBC functionality to its own driver; cros_ec_vbc - Move DebugFS functionality to its own driver; cros_ec_debugfs - Move SYSFS functionality to its own driver; cros_ec_sysfs - Add support for input voltage options; tps65218 Fixes: - Use devm_* managed resources; cros_ec - Device Tree documentation; stmpe, aspeed-lpc, lochnagar - Trivial Clean-ups; stmpe - Rip out broken modular code; aat2870-core, adp5520, as3711, db8500-prcmu, htc-i2cpld, max8925-core, rc5t583, sta2x11-mfd, syscon, tps65090, tps65910, tps68470 tps80031, wm831x-spi, wm831x-i2c, wm831x-core, wm8350-i2c, wm8350-core, wm8400-core - Kconfig fixups; INTEL_SOC_PMIC - Improve error path; sm501, sec-core - Use struct_size() helper; sm501 - Constify; at91-usart - Use pointers instead of copying data; at91-usart - Deliver proper return value; cros_ec_dev - Trivial formatting/whitespace; sec-core" * tag 'mfd-next-5.1' of git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd: (53 commits) mfd: mxs-lradc: Mark expected switch fall-through mfd: sec-core: Cleanup formatting to a consistent style mfd: tqmx86: IO controller with I2C, Wachdog and GPIO mfd: intel-lpss: Move linux/pm.h to the local header mfd: cros_ec_dev: Return number of bytes read with CROS_EC_DEV_IOCRDMEM mfd: tps68470: Drop unused MODULE_DEVICE_TABLE mfd: at91-usart: No need to copy mfd_cell in probe mfd: at91-usart: Constify at91_usart_spi_subdev and at91_usart_serial_subdev mfd: lochnagar: Add support for the Cirrus Logic Lochnagar mfd: lochnagar: Add initial binding documentation dt-bindings: mfd: aspeed-lpc: Make parameter optional mfd: sec-core: Return gracefully instead of BUG() if device cannot match mfd: sm501: Use struct_size() in devm_kzalloc() mfd: sm501: Fix potential NULL pointer dereference mfd: Kconfig: Fix I2C_DESIGNWARE_PLATFORM dependencies mfd: tps65218.c: Add input voltage options mfd: wm8400-core: Make it explicitly non-modular mfd: wm8350-core: Drop unused module infrastructure from non-modular code mfd: wm8350-i2c: Make it explicitly non-modular mfd: wm831x-core: Drop unused module infrastructure from non-modular code ...
This commit is contained in:
@@ -30,8 +30,6 @@
|
||||
* with touchscreen controller
|
||||
*/
|
||||
#define STMPE_REG_INT_STA 0x0B
|
||||
#define STMPE_REG_ADC_CTRL1 0x20
|
||||
#define STMPE_REG_ADC_CTRL2 0x21
|
||||
#define STMPE_REG_TSC_CTRL 0x40
|
||||
#define STMPE_REG_TSC_CFG 0x41
|
||||
#define STMPE_REG_FIFO_TH 0x4A
|
||||
@@ -49,17 +47,6 @@
|
||||
|
||||
#define STMPE_IRQ_TOUCH_DET 0
|
||||
|
||||
#define SAMPLE_TIME(x) ((x & 0xf) << 4)
|
||||
#define MOD_12B(x) ((x & 0x1) << 3)
|
||||
#define REF_SEL(x) ((x & 0x1) << 1)
|
||||
#define ADC_FREQ(x) (x & 0x3)
|
||||
#define AVE_CTRL(x) ((x & 0x3) << 6)
|
||||
#define DET_DELAY(x) ((x & 0x7) << 3)
|
||||
#define SETTLING(x) (x & 0x7)
|
||||
#define FRACTION_Z(x) (x & 0x7)
|
||||
#define I_DRIVE(x) (x & 0x1)
|
||||
#define OP_MODE(x) ((x & 0x7) << 1)
|
||||
|
||||
#define STMPE_TS_NAME "stmpe-ts"
|
||||
#define XY_MASK 0xfff
|
||||
|
||||
@@ -69,15 +56,6 @@
|
||||
* @idev: registered input device
|
||||
* @work: a work item used to scan the device
|
||||
* @dev: a pointer back to the MFD cell struct device*
|
||||
* @sample_time: ADC converstion time in number of clock.
|
||||
* (0 -> 36 clocks, 1 -> 44 clocks, 2 -> 56 clocks, 3 -> 64 clocks,
|
||||
* 4 -> 80 clocks, 5 -> 96 clocks, 6 -> 144 clocks),
|
||||
* recommended is 4.
|
||||
* @mod_12b: ADC Bit mode (0 -> 10bit ADC, 1 -> 12bit ADC)
|
||||
* @ref_sel: ADC reference source
|
||||
* (0 -> internal reference, 1 -> external reference)
|
||||
* @adc_freq: ADC Clock speed
|
||||
* (0 -> 1.625 MHz, 1 -> 3.25 MHz, 2 || 3 -> 6.5 MHz)
|
||||
* @ave_ctrl: Sample average control
|
||||
* (0 -> 1 sample, 1 -> 2 samples, 2 -> 4 samples, 3 -> 8 samples)
|
||||
* @touch_det_delay: Touch detect interrupt delay
|
||||
@@ -99,10 +77,6 @@ struct stmpe_touch {
|
||||
struct input_dev *idev;
|
||||
struct delayed_work work;
|
||||
struct device *dev;
|
||||
u8 sample_time;
|
||||
u8 mod_12b;
|
||||
u8 ref_sel;
|
||||
u8 adc_freq;
|
||||
u8 ave_ctrl;
|
||||
u8 touch_det_delay;
|
||||
u8 settling;
|
||||
@@ -203,7 +177,7 @@ static irqreturn_t stmpe_ts_handler(int irq, void *data)
|
||||
static int stmpe_init_hw(struct stmpe_touch *ts)
|
||||
{
|
||||
int ret;
|
||||
u8 adc_ctrl1, adc_ctrl1_mask, tsc_cfg, tsc_cfg_mask;
|
||||
u8 tsc_cfg, tsc_cfg_mask;
|
||||
struct stmpe *stmpe = ts->stmpe;
|
||||
struct device *dev = ts->dev;
|
||||
|
||||
@@ -213,27 +187,17 @@ static int stmpe_init_hw(struct stmpe_touch *ts)
|
||||
return ret;
|
||||
}
|
||||
|
||||
adc_ctrl1 = SAMPLE_TIME(ts->sample_time) | MOD_12B(ts->mod_12b) |
|
||||
REF_SEL(ts->ref_sel);
|
||||
adc_ctrl1_mask = SAMPLE_TIME(0xff) | MOD_12B(0xff) | REF_SEL(0xff);
|
||||
|
||||
ret = stmpe_set_bits(stmpe, STMPE_REG_ADC_CTRL1,
|
||||
adc_ctrl1_mask, adc_ctrl1);
|
||||
ret = stmpe811_adc_common_init(stmpe);
|
||||
if (ret) {
|
||||
dev_err(dev, "Could not setup ADC\n");
|
||||
stmpe_disable(stmpe, STMPE_BLOCK_TOUCHSCREEN | STMPE_BLOCK_ADC);
|
||||
return ret;
|
||||
}
|
||||
|
||||
ret = stmpe_set_bits(stmpe, STMPE_REG_ADC_CTRL2,
|
||||
ADC_FREQ(0xff), ADC_FREQ(ts->adc_freq));
|
||||
if (ret) {
|
||||
dev_err(dev, "Could not setup ADC\n");
|
||||
return ret;
|
||||
}
|
||||
|
||||
tsc_cfg = AVE_CTRL(ts->ave_ctrl) | DET_DELAY(ts->touch_det_delay) |
|
||||
SETTLING(ts->settling);
|
||||
tsc_cfg_mask = AVE_CTRL(0xff) | DET_DELAY(0xff) | SETTLING(0xff);
|
||||
tsc_cfg = STMPE_AVE_CTRL(ts->ave_ctrl) |
|
||||
STMPE_DET_DELAY(ts->touch_det_delay) |
|
||||
STMPE_SETTLING(ts->settling);
|
||||
tsc_cfg_mask = STMPE_AVE_CTRL(0xff) | STMPE_DET_DELAY(0xff) |
|
||||
STMPE_SETTLING(0xff);
|
||||
|
||||
ret = stmpe_set_bits(stmpe, STMPE_REG_TSC_CFG, tsc_cfg_mask, tsc_cfg);
|
||||
if (ret) {
|
||||
@@ -242,14 +206,14 @@ static int stmpe_init_hw(struct stmpe_touch *ts)
|
||||
}
|
||||
|
||||
ret = stmpe_set_bits(stmpe, STMPE_REG_TSC_FRACTION_Z,
|
||||
FRACTION_Z(0xff), FRACTION_Z(ts->fraction_z));
|
||||
STMPE_FRACTION_Z(0xff), STMPE_FRACTION_Z(ts->fraction_z));
|
||||
if (ret) {
|
||||
dev_err(dev, "Could not config touch\n");
|
||||
return ret;
|
||||
}
|
||||
|
||||
ret = stmpe_set_bits(stmpe, STMPE_REG_TSC_I_DRIVE,
|
||||
I_DRIVE(0xff), I_DRIVE(ts->i_drive));
|
||||
STMPE_I_DRIVE(0xff), STMPE_I_DRIVE(ts->i_drive));
|
||||
if (ret) {
|
||||
dev_err(dev, "Could not config touch\n");
|
||||
return ret;
|
||||
@@ -263,7 +227,7 @@ static int stmpe_init_hw(struct stmpe_touch *ts)
|
||||
}
|
||||
|
||||
ret = stmpe_set_bits(stmpe, STMPE_REG_TSC_CTRL,
|
||||
OP_MODE(0xff), OP_MODE(OP_MOD_XYZ));
|
||||
STMPE_OP_MODE(0xff), STMPE_OP_MODE(OP_MOD_XYZ));
|
||||
if (ret) {
|
||||
dev_err(dev, "Could not set mode\n");
|
||||
return ret;
|
||||
@@ -303,13 +267,13 @@ static void stmpe_ts_get_platform_info(struct platform_device *pdev,
|
||||
|
||||
if (np) {
|
||||
if (!of_property_read_u32(np, "st,sample-time", &val))
|
||||
ts->sample_time = val;
|
||||
ts->stmpe->sample_time = val;
|
||||
if (!of_property_read_u32(np, "st,mod-12b", &val))
|
||||
ts->mod_12b = val;
|
||||
ts->stmpe->mod_12b = val;
|
||||
if (!of_property_read_u32(np, "st,ref-sel", &val))
|
||||
ts->ref_sel = val;
|
||||
ts->stmpe->ref_sel = val;
|
||||
if (!of_property_read_u32(np, "st,adc-freq", &val))
|
||||
ts->adc_freq = val;
|
||||
ts->stmpe->adc_freq = val;
|
||||
if (!of_property_read_u32(np, "st,ave-ctrl", &val))
|
||||
ts->ave_ctrl = val;
|
||||
if (!of_property_read_u32(np, "st,touch-det-delay", &val))
|
||||
|
Reference in New Issue
Block a user