Patil, Rachna | 01636eb | 2012-10-16 12:55:43 +0530 | [diff] [blame] | 1 | /* |
| 2 | * TI Touch Screen / ADC MFD driver |
| 3 | * |
| 4 | * Copyright (C) 2012 Texas Instruments Incorporated - http://www.ti.com/ |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or |
| 7 | * modify it under the terms of the GNU General Public License as |
| 8 | * published by the Free Software Foundation version 2. |
| 9 | * |
| 10 | * This program is distributed "as is" WITHOUT ANY WARRANTY of any |
| 11 | * kind, whether express or implied; without even the implied warranty |
| 12 | * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 13 | * GNU General Public License for more details. |
| 14 | */ |
| 15 | |
| 16 | #include <linux/module.h> |
Patil, Rachna | 01636eb | 2012-10-16 12:55:43 +0530 | [diff] [blame] | 17 | #include <linux/slab.h> |
| 18 | #include <linux/err.h> |
| 19 | #include <linux/io.h> |
| 20 | #include <linux/clk.h> |
| 21 | #include <linux/regmap.h> |
| 22 | #include <linux/mfd/core.h> |
| 23 | #include <linux/pm_runtime.h> |
Patil, Rachna | a6543a1 | 2013-01-24 03:45:09 +0000 | [diff] [blame] | 24 | #include <linux/of.h> |
| 25 | #include <linux/of_device.h> |
Sebastian Andrzej Siewior | 7ca6740 | 2013-12-19 16:28:31 +0100 | [diff] [blame] | 26 | #include <linux/sched.h> |
Patil, Rachna | 01636eb | 2012-10-16 12:55:43 +0530 | [diff] [blame] | 27 | |
| 28 | #include <linux/mfd/ti_am335x_tscadc.h> |
| 29 | |
Patil, Rachna | 01636eb | 2012-10-16 12:55:43 +0530 | [diff] [blame] | 30 | static const struct regmap_config tscadc_regmap_config = { |
| 31 | .name = "ti_tscadc", |
| 32 | .reg_bits = 32, |
| 33 | .reg_stride = 4, |
| 34 | .val_bits = 32, |
| 35 | }; |
| 36 | |
Andrew F. Davis | a318b7d | 2016-06-08 10:54:34 -0500 | [diff] [blame] | 37 | void am335x_tsc_se_set_cache(struct ti_tscadc_dev *tscadc, u32 val) |
Patil, Rachna | abeccee | 2013-01-24 03:45:05 +0000 | [diff] [blame] | 38 | { |
Sebastian Andrzej Siewior | 317b209 | 2013-10-22 16:12:39 +0200 | [diff] [blame] | 39 | unsigned long flags; |
| 40 | |
Andrew F. Davis | a318b7d | 2016-06-08 10:54:34 -0500 | [diff] [blame] | 41 | spin_lock_irqsave(&tscadc->reg_lock, flags); |
| 42 | tscadc->reg_se_cache |= val; |
| 43 | if (tscadc->adc_waiting) |
| 44 | wake_up(&tscadc->reg_se_wait); |
| 45 | else if (!tscadc->adc_in_use) |
Andrew F. Davis | 0d3a7cc | 2016-06-08 10:54:35 -0500 | [diff] [blame] | 46 | regmap_write(tscadc->regmap, REG_SE, tscadc->reg_se_cache); |
Sebastian Andrzej Siewior | 7ca6740 | 2013-12-19 16:28:31 +0100 | [diff] [blame] | 47 | |
Andrew F. Davis | a318b7d | 2016-06-08 10:54:34 -0500 | [diff] [blame] | 48 | spin_unlock_irqrestore(&tscadc->reg_lock, flags); |
Patil, Rachna | abeccee | 2013-01-24 03:45:05 +0000 | [diff] [blame] | 49 | } |
Sebastian Andrzej Siewior | 7e170c6 | 2013-12-19 16:28:29 +0100 | [diff] [blame] | 50 | EXPORT_SYMBOL_GPL(am335x_tsc_se_set_cache); |
| 51 | |
Andrew F. Davis | a318b7d | 2016-06-08 10:54:34 -0500 | [diff] [blame] | 52 | static void am335x_tscadc_need_adc(struct ti_tscadc_dev *tscadc) |
Sebastian Andrzej Siewior | 7ca6740 | 2013-12-19 16:28:31 +0100 | [diff] [blame] | 53 | { |
| 54 | DEFINE_WAIT(wait); |
| 55 | u32 reg; |
| 56 | |
Andrew F. Davis | 0d3a7cc | 2016-06-08 10:54:35 -0500 | [diff] [blame] | 57 | regmap_read(tscadc->regmap, REG_ADCFSM, ®); |
Sebastian Andrzej Siewior | 7ca6740 | 2013-12-19 16:28:31 +0100 | [diff] [blame] | 58 | if (reg & SEQ_STATUS) { |
Andrew F. Davis | a318b7d | 2016-06-08 10:54:34 -0500 | [diff] [blame] | 59 | tscadc->adc_waiting = true; |
| 60 | prepare_to_wait(&tscadc->reg_se_wait, &wait, |
Sebastian Andrzej Siewior | 7ca6740 | 2013-12-19 16:28:31 +0100 | [diff] [blame] | 61 | TASK_UNINTERRUPTIBLE); |
Andrew F. Davis | a318b7d | 2016-06-08 10:54:34 -0500 | [diff] [blame] | 62 | spin_unlock_irq(&tscadc->reg_lock); |
Sebastian Andrzej Siewior | 7ca6740 | 2013-12-19 16:28:31 +0100 | [diff] [blame] | 63 | |
| 64 | schedule(); |
| 65 | |
Andrew F. Davis | a318b7d | 2016-06-08 10:54:34 -0500 | [diff] [blame] | 66 | spin_lock_irq(&tscadc->reg_lock); |
| 67 | finish_wait(&tscadc->reg_se_wait, &wait); |
Sebastian Andrzej Siewior | 7ca6740 | 2013-12-19 16:28:31 +0100 | [diff] [blame] | 68 | |
Vignesh R | b10848e | 2015-01-07 11:19:36 +0530 | [diff] [blame] | 69 | /* |
| 70 | * Sequencer should either be idle or |
| 71 | * busy applying the charge step. |
| 72 | */ |
Andrew F. Davis | 0d3a7cc | 2016-06-08 10:54:35 -0500 | [diff] [blame] | 73 | regmap_read(tscadc->regmap, REG_ADCFSM, ®); |
Vignesh R | b10848e | 2015-01-07 11:19:36 +0530 | [diff] [blame] | 74 | WARN_ON((reg & SEQ_STATUS) && !(reg & CHARGE_STEP)); |
Andrew F. Davis | a318b7d | 2016-06-08 10:54:34 -0500 | [diff] [blame] | 75 | tscadc->adc_waiting = false; |
Sebastian Andrzej Siewior | 7ca6740 | 2013-12-19 16:28:31 +0100 | [diff] [blame] | 76 | } |
Andrew F. Davis | a318b7d | 2016-06-08 10:54:34 -0500 | [diff] [blame] | 77 | tscadc->adc_in_use = true; |
Sebastian Andrzej Siewior | 7ca6740 | 2013-12-19 16:28:31 +0100 | [diff] [blame] | 78 | } |
| 79 | |
Andrew F. Davis | a318b7d | 2016-06-08 10:54:34 -0500 | [diff] [blame] | 80 | void am335x_tsc_se_set_once(struct ti_tscadc_dev *tscadc, u32 val) |
Sebastian Andrzej Siewior | 7e170c6 | 2013-12-19 16:28:29 +0100 | [diff] [blame] | 81 | { |
Andrew F. Davis | a318b7d | 2016-06-08 10:54:34 -0500 | [diff] [blame] | 82 | spin_lock_irq(&tscadc->reg_lock); |
| 83 | am335x_tscadc_need_adc(tscadc); |
Sebastian Andrzej Siewior | 7ca6740 | 2013-12-19 16:28:31 +0100 | [diff] [blame] | 84 | |
Andrew F. Davis | 0d3a7cc | 2016-06-08 10:54:35 -0500 | [diff] [blame] | 85 | regmap_write(tscadc->regmap, REG_SE, val); |
Andrew F. Davis | a318b7d | 2016-06-08 10:54:34 -0500 | [diff] [blame] | 86 | spin_unlock_irq(&tscadc->reg_lock); |
Sebastian Andrzej Siewior | 7ca6740 | 2013-12-19 16:28:31 +0100 | [diff] [blame] | 87 | } |
| 88 | EXPORT_SYMBOL_GPL(am335x_tsc_se_set_once); |
| 89 | |
Andrew F. Davis | a318b7d | 2016-06-08 10:54:34 -0500 | [diff] [blame] | 90 | void am335x_tsc_se_adc_done(struct ti_tscadc_dev *tscadc) |
Sebastian Andrzej Siewior | 7ca6740 | 2013-12-19 16:28:31 +0100 | [diff] [blame] | 91 | { |
Sebastian Andrzej Siewior | 7e170c6 | 2013-12-19 16:28:29 +0100 | [diff] [blame] | 92 | unsigned long flags; |
| 93 | |
Andrew F. Davis | a318b7d | 2016-06-08 10:54:34 -0500 | [diff] [blame] | 94 | spin_lock_irqsave(&tscadc->reg_lock, flags); |
| 95 | tscadc->adc_in_use = false; |
Andrew F. Davis | 0d3a7cc | 2016-06-08 10:54:35 -0500 | [diff] [blame] | 96 | regmap_write(tscadc->regmap, REG_SE, tscadc->reg_se_cache); |
Andrew F. Davis | a318b7d | 2016-06-08 10:54:34 -0500 | [diff] [blame] | 97 | spin_unlock_irqrestore(&tscadc->reg_lock, flags); |
Sebastian Andrzej Siewior | 7e170c6 | 2013-12-19 16:28:29 +0100 | [diff] [blame] | 98 | } |
Sebastian Andrzej Siewior | 7ca6740 | 2013-12-19 16:28:31 +0100 | [diff] [blame] | 99 | EXPORT_SYMBOL_GPL(am335x_tsc_se_adc_done); |
Patil, Rachna | abeccee | 2013-01-24 03:45:05 +0000 | [diff] [blame] | 100 | |
Andrew F. Davis | a318b7d | 2016-06-08 10:54:34 -0500 | [diff] [blame] | 101 | void am335x_tsc_se_clr(struct ti_tscadc_dev *tscadc, u32 val) |
Patil, Rachna | abeccee | 2013-01-24 03:45:05 +0000 | [diff] [blame] | 102 | { |
Sebastian Andrzej Siewior | 317b209 | 2013-10-22 16:12:39 +0200 | [diff] [blame] | 103 | unsigned long flags; |
| 104 | |
Andrew F. Davis | a318b7d | 2016-06-08 10:54:34 -0500 | [diff] [blame] | 105 | spin_lock_irqsave(&tscadc->reg_lock, flags); |
| 106 | tscadc->reg_se_cache &= ~val; |
Andrew F. Davis | 0d3a7cc | 2016-06-08 10:54:35 -0500 | [diff] [blame] | 107 | regmap_write(tscadc->regmap, REG_SE, tscadc->reg_se_cache); |
Andrew F. Davis | a318b7d | 2016-06-08 10:54:34 -0500 | [diff] [blame] | 108 | spin_unlock_irqrestore(&tscadc->reg_lock, flags); |
Patil, Rachna | abeccee | 2013-01-24 03:45:05 +0000 | [diff] [blame] | 109 | } |
| 110 | EXPORT_SYMBOL_GPL(am335x_tsc_se_clr); |
| 111 | |
Andrew F. Davis | a318b7d | 2016-06-08 10:54:34 -0500 | [diff] [blame] | 112 | static void tscadc_idle_config(struct ti_tscadc_dev *tscadc) |
Patil, Rachna | 01636eb | 2012-10-16 12:55:43 +0530 | [diff] [blame] | 113 | { |
| 114 | unsigned int idleconfig; |
| 115 | |
| 116 | idleconfig = STEPCONFIG_YNN | STEPCONFIG_INM_ADCREFM | |
| 117 | STEPCONFIG_INP_ADCREFM | STEPCONFIG_YPN; |
| 118 | |
Andrew F. Davis | 0d3a7cc | 2016-06-08 10:54:35 -0500 | [diff] [blame] | 119 | regmap_write(tscadc->regmap, REG_IDLECONFIG, idleconfig); |
Patil, Rachna | 01636eb | 2012-10-16 12:55:43 +0530 | [diff] [blame] | 120 | } |
| 121 | |
Greg Kroah-Hartman | 612b95c | 2012-12-21 15:03:15 -0800 | [diff] [blame] | 122 | static int ti_tscadc_probe(struct platform_device *pdev) |
Patil, Rachna | 01636eb | 2012-10-16 12:55:43 +0530 | [diff] [blame] | 123 | { |
| 124 | struct ti_tscadc_dev *tscadc; |
| 125 | struct resource *res; |
| 126 | struct clk *clk; |
Patil, Rachna | a6543a1 | 2013-01-24 03:45:09 +0000 | [diff] [blame] | 127 | struct device_node *node = pdev->dev.of_node; |
Patil, Rachna | 2b99baf | 2012-10-16 12:55:44 +0530 | [diff] [blame] | 128 | struct mfd_cell *cell; |
Sebastian Andrzej Siewior | 18926ed | 2013-05-29 17:39:02 +0200 | [diff] [blame] | 129 | struct property *prop; |
| 130 | const __be32 *cur; |
| 131 | u32 val; |
Patil, Rachna | 01636eb | 2012-10-16 12:55:43 +0530 | [diff] [blame] | 132 | int err, ctrl; |
Matthias Kaehlcke | e90f875 | 2013-09-23 22:43:29 +0200 | [diff] [blame] | 133 | int clock_rate; |
Patil, Rachna | a6543a1 | 2013-01-24 03:45:09 +0000 | [diff] [blame] | 134 | int tsc_wires = 0, adc_channels = 0, total_channels; |
Sebastian Andrzej Siewior | 18926ed | 2013-05-29 17:39:02 +0200 | [diff] [blame] | 135 | int readouts = 0; |
Patil, Rachna | 01636eb | 2012-10-16 12:55:43 +0530 | [diff] [blame] | 136 | |
Sebastian Andrzej Siewior | 9e5775f | 2013-05-21 17:56:49 +0200 | [diff] [blame] | 137 | if (!pdev->dev.of_node) { |
| 138 | dev_err(&pdev->dev, "Could not find valid DT data.\n"); |
Patil, Rachna | 01636eb | 2012-10-16 12:55:43 +0530 | [diff] [blame] | 139 | return -EINVAL; |
| 140 | } |
| 141 | |
Sebastian Andrzej Siewior | 9e5775f | 2013-05-21 17:56:49 +0200 | [diff] [blame] | 142 | node = of_get_child_by_name(pdev->dev.of_node, "tsc"); |
| 143 | of_property_read_u32(node, "ti,wires", &tsc_wires); |
Sebastian Andrzej Siewior | 18926ed | 2013-05-29 17:39:02 +0200 | [diff] [blame] | 144 | of_property_read_u32(node, "ti,coordiante-readouts", &readouts); |
Patil, Rachna | 5e53a69 | 2012-10-16 12:55:45 +0530 | [diff] [blame] | 145 | |
Sebastian Andrzej Siewior | 9e5775f | 2013-05-21 17:56:49 +0200 | [diff] [blame] | 146 | node = of_get_child_by_name(pdev->dev.of_node, "adc"); |
Sebastian Andrzej Siewior | 18926ed | 2013-05-29 17:39:02 +0200 | [diff] [blame] | 147 | of_property_for_each_u32(node, "ti,adc-channels", prop, cur, val) { |
| 148 | adc_channels++; |
| 149 | if (val > 7) { |
| 150 | dev_err(&pdev->dev, " PIN numbers are 0..7 (not %d)\n", |
| 151 | val); |
| 152 | return -EINVAL; |
| 153 | } |
| 154 | } |
Patil, Rachna | 5e53a69 | 2012-10-16 12:55:45 +0530 | [diff] [blame] | 155 | total_channels = tsc_wires + adc_channels; |
Patil, Rachna | 5e53a69 | 2012-10-16 12:55:45 +0530 | [diff] [blame] | 156 | if (total_channels > 8) { |
| 157 | dev_err(&pdev->dev, "Number of i/p channels more than 8\n"); |
| 158 | return -EINVAL; |
| 159 | } |
Pantelis Antoniou | 24d5c82 | 2012-10-13 16:37:24 +0300 | [diff] [blame] | 160 | if (total_channels == 0) { |
| 161 | dev_err(&pdev->dev, "Need atleast one channel.\n"); |
| 162 | return -EINVAL; |
| 163 | } |
Patil, Rachna | 2b99baf | 2012-10-16 12:55:44 +0530 | [diff] [blame] | 164 | |
Sebastian Andrzej Siewior | 18926ed | 2013-05-29 17:39:02 +0200 | [diff] [blame] | 165 | if (readouts * 2 + 2 + adc_channels > 16) { |
| 166 | dev_err(&pdev->dev, "Too many step configurations requested\n"); |
| 167 | return -EINVAL; |
| 168 | } |
| 169 | |
Patil, Rachna | 01636eb | 2012-10-16 12:55:43 +0530 | [diff] [blame] | 170 | /* Allocate memory for device */ |
Andrew F. Davis | dea1c70 | 2016-06-08 10:54:36 -0500 | [diff] [blame] | 171 | tscadc = devm_kzalloc(&pdev->dev, sizeof(*tscadc), GFP_KERNEL); |
Patil, Rachna | 01636eb | 2012-10-16 12:55:43 +0530 | [diff] [blame] | 172 | if (!tscadc) { |
| 173 | dev_err(&pdev->dev, "failed to allocate memory.\n"); |
| 174 | return -ENOMEM; |
| 175 | } |
| 176 | tscadc->dev = &pdev->dev; |
Patil, Rachna | 3c39c9c | 2012-11-06 13:39:03 +0530 | [diff] [blame] | 177 | |
| 178 | err = platform_get_irq(pdev, 0); |
| 179 | if (err < 0) { |
| 180 | dev_err(&pdev->dev, "no irq ID is specified.\n"); |
| 181 | goto ret; |
| 182 | } else |
| 183 | tscadc->irq = err; |
Patil, Rachna | 01636eb | 2012-10-16 12:55:43 +0530 | [diff] [blame] | 184 | |
Jingoo Han | 924ff91 | 2014-02-12 14:31:49 +0900 | [diff] [blame] | 185 | res = platform_get_resource(pdev, IORESOURCE_MEM, 0); |
Mugunthan V N | c9329d8 | 2016-10-05 14:34:40 +0530 | [diff] [blame] | 186 | tscadc->tscadc_phys_base = res->start; |
Jingoo Han | 924ff91 | 2014-02-12 14:31:49 +0900 | [diff] [blame] | 187 | tscadc->tscadc_base = devm_ioremap_resource(&pdev->dev, res); |
| 188 | if (IS_ERR(tscadc->tscadc_base)) |
| 189 | return PTR_ERR(tscadc->tscadc_base); |
Patil, Rachna | 01636eb | 2012-10-16 12:55:43 +0530 | [diff] [blame] | 190 | |
Andrew F. Davis | 0d3a7cc | 2016-06-08 10:54:35 -0500 | [diff] [blame] | 191 | tscadc->regmap = devm_regmap_init_mmio(&pdev->dev, |
Patil, Rachna | 01636eb | 2012-10-16 12:55:43 +0530 | [diff] [blame] | 192 | tscadc->tscadc_base, &tscadc_regmap_config); |
Andrew F. Davis | 0d3a7cc | 2016-06-08 10:54:35 -0500 | [diff] [blame] | 193 | if (IS_ERR(tscadc->regmap)) { |
Patil, Rachna | 01636eb | 2012-10-16 12:55:43 +0530 | [diff] [blame] | 194 | dev_err(&pdev->dev, "regmap init failed\n"); |
Andrew F. Davis | 0d3a7cc | 2016-06-08 10:54:35 -0500 | [diff] [blame] | 195 | err = PTR_ERR(tscadc->regmap); |
Patil, Rachna | 3c39c9c | 2012-11-06 13:39:03 +0530 | [diff] [blame] | 196 | goto ret; |
Patil, Rachna | 01636eb | 2012-10-16 12:55:43 +0530 | [diff] [blame] | 197 | } |
| 198 | |
Patil, Rachna | abeccee | 2013-01-24 03:45:05 +0000 | [diff] [blame] | 199 | spin_lock_init(&tscadc->reg_lock); |
Sebastian Andrzej Siewior | 7ca6740 | 2013-12-19 16:28:31 +0100 | [diff] [blame] | 200 | init_waitqueue_head(&tscadc->reg_se_wait); |
| 201 | |
Patil, Rachna | 01636eb | 2012-10-16 12:55:43 +0530 | [diff] [blame] | 202 | pm_runtime_enable(&pdev->dev); |
| 203 | pm_runtime_get_sync(&pdev->dev); |
| 204 | |
| 205 | /* |
| 206 | * The TSC_ADC_Subsystem has 2 clock domains |
| 207 | * OCP_CLK and ADC_CLK. |
| 208 | * The ADC clock is expected to run at target of 3MHz, |
| 209 | * and expected to capture 12-bit data at a rate of 200 KSPS. |
| 210 | * The TSC_ADC_SS controller design assumes the OCP clock is |
| 211 | * at least 6x faster than the ADC clock. |
| 212 | */ |
| 213 | clk = clk_get(&pdev->dev, "adc_tsc_fck"); |
| 214 | if (IS_ERR(clk)) { |
| 215 | dev_err(&pdev->dev, "failed to get TSC fck\n"); |
| 216 | err = PTR_ERR(clk); |
| 217 | goto err_disable_clk; |
| 218 | } |
| 219 | clock_rate = clk_get_rate(clk); |
| 220 | clk_put(clk); |
Matthias Kaehlcke | e90f875 | 2013-09-23 22:43:29 +0200 | [diff] [blame] | 221 | tscadc->clk_div = clock_rate / ADC_CLK; |
Patil, Rachna | efe3126 | 2013-07-20 17:27:35 +0100 | [diff] [blame] | 222 | |
Patil, Rachna | 01636eb | 2012-10-16 12:55:43 +0530 | [diff] [blame] | 223 | /* TSCADC_CLKDIV needs to be configured to the value minus 1 */ |
Matthias Kaehlcke | e90f875 | 2013-09-23 22:43:29 +0200 | [diff] [blame] | 224 | tscadc->clk_div--; |
Andrew F. Davis | 0d3a7cc | 2016-06-08 10:54:35 -0500 | [diff] [blame] | 225 | regmap_write(tscadc->regmap, REG_CLKDIV, tscadc->clk_div); |
Patil, Rachna | 01636eb | 2012-10-16 12:55:43 +0530 | [diff] [blame] | 226 | |
| 227 | /* Set the control register bits */ |
Jeff Lance | f0933a6 | 2014-09-04 19:01:57 +0200 | [diff] [blame] | 228 | ctrl = CNTRLREG_STEPCONFIGWRT | CNTRLREG_STEPID; |
Andrew F. Davis | 0d3a7cc | 2016-06-08 10:54:35 -0500 | [diff] [blame] | 229 | regmap_write(tscadc->regmap, REG_CTRL, ctrl); |
Patil, Rachna | 01636eb | 2012-10-16 12:55:43 +0530 | [diff] [blame] | 230 | |
| 231 | /* Set register bits for Idle Config Mode */ |
Jeff Lance | f0933a6 | 2014-09-04 19:01:57 +0200 | [diff] [blame] | 232 | if (tsc_wires > 0) { |
| 233 | tscadc->tsc_wires = tsc_wires; |
| 234 | if (tsc_wires == 5) |
| 235 | ctrl |= CNTRLREG_5WIRE | CNTRLREG_TSCENB; |
| 236 | else |
| 237 | ctrl |= CNTRLREG_4WIRE | CNTRLREG_TSCENB; |
Patil, Rachna | b5f8b76 | 2013-07-20 17:27:34 +0100 | [diff] [blame] | 238 | tscadc_idle_config(tscadc); |
Jeff Lance | f0933a6 | 2014-09-04 19:01:57 +0200 | [diff] [blame] | 239 | } |
Patil, Rachna | 01636eb | 2012-10-16 12:55:43 +0530 | [diff] [blame] | 240 | |
| 241 | /* Enable the TSC module enable bit */ |
Patil, Rachna | 01636eb | 2012-10-16 12:55:43 +0530 | [diff] [blame] | 242 | ctrl |= CNTRLREG_TSCSSENB; |
Andrew F. Davis | 0d3a7cc | 2016-06-08 10:54:35 -0500 | [diff] [blame] | 243 | regmap_write(tscadc->regmap, REG_CTRL, ctrl); |
Patil, Rachna | 01636eb | 2012-10-16 12:55:43 +0530 | [diff] [blame] | 244 | |
Pantelis Antoniou | 24d5c82 | 2012-10-13 16:37:24 +0300 | [diff] [blame] | 245 | tscadc->used_cells = 0; |
| 246 | tscadc->tsc_cell = -1; |
| 247 | tscadc->adc_cell = -1; |
| 248 | |
Patil, Rachna | 2b99baf | 2012-10-16 12:55:44 +0530 | [diff] [blame] | 249 | /* TSC Cell */ |
Pantelis Antoniou | 24d5c82 | 2012-10-13 16:37:24 +0300 | [diff] [blame] | 250 | if (tsc_wires > 0) { |
| 251 | tscadc->tsc_cell = tscadc->used_cells; |
| 252 | cell = &tscadc->cells[tscadc->used_cells++]; |
Sebastian Andrzej Siewior | 5f184e6 | 2013-05-27 17:08:28 +0200 | [diff] [blame] | 253 | cell->name = "TI-am335x-tsc"; |
Pantelis Antoniou | 24d5c82 | 2012-10-13 16:37:24 +0300 | [diff] [blame] | 254 | cell->of_compatible = "ti,am3359-tsc"; |
| 255 | cell->platform_data = &tscadc; |
| 256 | cell->pdata_size = sizeof(tscadc); |
| 257 | } |
Patil, Rachna | 2b99baf | 2012-10-16 12:55:44 +0530 | [diff] [blame] | 258 | |
Patil, Rachna | 5e53a69 | 2012-10-16 12:55:45 +0530 | [diff] [blame] | 259 | /* ADC Cell */ |
Pantelis Antoniou | 24d5c82 | 2012-10-13 16:37:24 +0300 | [diff] [blame] | 260 | if (adc_channels > 0) { |
| 261 | tscadc->adc_cell = tscadc->used_cells; |
| 262 | cell = &tscadc->cells[tscadc->used_cells++]; |
Sebastian Andrzej Siewior | 9f99928 | 2013-05-27 17:12:52 +0200 | [diff] [blame] | 263 | cell->name = "TI-am335x-adc"; |
Pantelis Antoniou | 24d5c82 | 2012-10-13 16:37:24 +0300 | [diff] [blame] | 264 | cell->of_compatible = "ti,am3359-adc"; |
| 265 | cell->platform_data = &tscadc; |
| 266 | cell->pdata_size = sizeof(tscadc); |
| 267 | } |
Patil, Rachna | 5e53a69 | 2012-10-16 12:55:45 +0530 | [diff] [blame] | 268 | |
Patil, Rachna | 01636eb | 2012-10-16 12:55:43 +0530 | [diff] [blame] | 269 | err = mfd_add_devices(&pdev->dev, pdev->id, tscadc->cells, |
Pantelis Antoniou | 24d5c82 | 2012-10-13 16:37:24 +0300 | [diff] [blame] | 270 | tscadc->used_cells, NULL, 0, NULL); |
Patil, Rachna | 01636eb | 2012-10-16 12:55:43 +0530 | [diff] [blame] | 271 | if (err < 0) |
| 272 | goto err_disable_clk; |
| 273 | |
| 274 | device_init_wakeup(&pdev->dev, true); |
| 275 | platform_set_drvdata(pdev, tscadc); |
Patil, Rachna | 01636eb | 2012-10-16 12:55:43 +0530 | [diff] [blame] | 276 | return 0; |
| 277 | |
| 278 | err_disable_clk: |
| 279 | pm_runtime_put_sync(&pdev->dev); |
| 280 | pm_runtime_disable(&pdev->dev); |
Patil, Rachna | 3c39c9c | 2012-11-06 13:39:03 +0530 | [diff] [blame] | 281 | ret: |
Patil, Rachna | 01636eb | 2012-10-16 12:55:43 +0530 | [diff] [blame] | 282 | return err; |
| 283 | } |
| 284 | |
Greg Kroah-Hartman | 612b95c | 2012-12-21 15:03:15 -0800 | [diff] [blame] | 285 | static int ti_tscadc_remove(struct platform_device *pdev) |
Patil, Rachna | 01636eb | 2012-10-16 12:55:43 +0530 | [diff] [blame] | 286 | { |
| 287 | struct ti_tscadc_dev *tscadc = platform_get_drvdata(pdev); |
| 288 | |
Andrew F. Davis | 0d3a7cc | 2016-06-08 10:54:35 -0500 | [diff] [blame] | 289 | regmap_write(tscadc->regmap, REG_SE, 0x00); |
Patil, Rachna | 01636eb | 2012-10-16 12:55:43 +0530 | [diff] [blame] | 290 | |
| 291 | pm_runtime_put_sync(&pdev->dev); |
| 292 | pm_runtime_disable(&pdev->dev); |
| 293 | |
| 294 | mfd_remove_devices(tscadc->dev); |
| 295 | |
| 296 | return 0; |
| 297 | } |
| 298 | |
Andrew F. Davis | dae936a | 2016-06-08 10:54:32 -0500 | [diff] [blame] | 299 | static int __maybe_unused tscadc_suspend(struct device *dev) |
Patil, Rachna | 01636eb | 2012-10-16 12:55:43 +0530 | [diff] [blame] | 300 | { |
Andrew F. Davis | a318b7d | 2016-06-08 10:54:34 -0500 | [diff] [blame] | 301 | struct ti_tscadc_dev *tscadc = dev_get_drvdata(dev); |
Patil, Rachna | 01636eb | 2012-10-16 12:55:43 +0530 | [diff] [blame] | 302 | |
Andrew F. Davis | 0d3a7cc | 2016-06-08 10:54:35 -0500 | [diff] [blame] | 303 | regmap_write(tscadc->regmap, REG_SE, 0x00); |
Patil, Rachna | 01636eb | 2012-10-16 12:55:43 +0530 | [diff] [blame] | 304 | pm_runtime_put_sync(dev); |
| 305 | |
| 306 | return 0; |
| 307 | } |
| 308 | |
Andrew F. Davis | dae936a | 2016-06-08 10:54:32 -0500 | [diff] [blame] | 309 | static int __maybe_unused tscadc_resume(struct device *dev) |
Patil, Rachna | 01636eb | 2012-10-16 12:55:43 +0530 | [diff] [blame] | 310 | { |
Andrew F. Davis | a318b7d | 2016-06-08 10:54:34 -0500 | [diff] [blame] | 311 | struct ti_tscadc_dev *tscadc = dev_get_drvdata(dev); |
Jeff Lance | f0933a6 | 2014-09-04 19:01:57 +0200 | [diff] [blame] | 312 | u32 ctrl; |
Patil, Rachna | 01636eb | 2012-10-16 12:55:43 +0530 | [diff] [blame] | 313 | |
| 314 | pm_runtime_get_sync(dev); |
| 315 | |
| 316 | /* context restore */ |
Patil, Rachna | b5f8b76 | 2013-07-20 17:27:34 +0100 | [diff] [blame] | 317 | ctrl = CNTRLREG_STEPCONFIGWRT | CNTRLREG_STEPID; |
Andrew F. Davis | 0d3a7cc | 2016-06-08 10:54:35 -0500 | [diff] [blame] | 318 | regmap_write(tscadc->regmap, REG_CTRL, ctrl); |
Patil, Rachna | b5f8b76 | 2013-07-20 17:27:34 +0100 | [diff] [blame] | 319 | |
Andrew F. Davis | a318b7d | 2016-06-08 10:54:34 -0500 | [diff] [blame] | 320 | if (tscadc->tsc_cell != -1) { |
| 321 | if (tscadc->tsc_wires == 5) |
Jeff Lance | f0933a6 | 2014-09-04 19:01:57 +0200 | [diff] [blame] | 322 | ctrl |= CNTRLREG_5WIRE | CNTRLREG_TSCENB; |
| 323 | else |
| 324 | ctrl |= CNTRLREG_4WIRE | CNTRLREG_TSCENB; |
Andrew F. Davis | a318b7d | 2016-06-08 10:54:34 -0500 | [diff] [blame] | 325 | tscadc_idle_config(tscadc); |
Jeff Lance | f0933a6 | 2014-09-04 19:01:57 +0200 | [diff] [blame] | 326 | } |
| 327 | ctrl |= CNTRLREG_TSCSSENB; |
Andrew F. Davis | 0d3a7cc | 2016-06-08 10:54:35 -0500 | [diff] [blame] | 328 | regmap_write(tscadc->regmap, REG_CTRL, ctrl); |
Patil, Rachna | 01636eb | 2012-10-16 12:55:43 +0530 | [diff] [blame] | 329 | |
Andrew F. Davis | 0d3a7cc | 2016-06-08 10:54:35 -0500 | [diff] [blame] | 330 | regmap_write(tscadc->regmap, REG_CLKDIV, tscadc->clk_div); |
Matthias Kaehlcke | e90f875 | 2013-09-23 22:43:29 +0200 | [diff] [blame] | 331 | |
Patil, Rachna | 01636eb | 2012-10-16 12:55:43 +0530 | [diff] [blame] | 332 | return 0; |
| 333 | } |
| 334 | |
Andrew F. Davis | dae936a | 2016-06-08 10:54:32 -0500 | [diff] [blame] | 335 | static SIMPLE_DEV_PM_OPS(tscadc_pm_ops, tscadc_suspend, tscadc_resume); |
Patil, Rachna | 01636eb | 2012-10-16 12:55:43 +0530 | [diff] [blame] | 336 | |
Patil, Rachna | a6543a1 | 2013-01-24 03:45:09 +0000 | [diff] [blame] | 337 | static const struct of_device_id ti_tscadc_dt_ids[] = { |
| 338 | { .compatible = "ti,am3359-tscadc", }, |
| 339 | { } |
| 340 | }; |
| 341 | MODULE_DEVICE_TABLE(of, ti_tscadc_dt_ids); |
| 342 | |
Patil, Rachna | 01636eb | 2012-10-16 12:55:43 +0530 | [diff] [blame] | 343 | static struct platform_driver ti_tscadc_driver = { |
| 344 | .driver = { |
Patil, Rachna | a6543a1 | 2013-01-24 03:45:09 +0000 | [diff] [blame] | 345 | .name = "ti_am3359-tscadc", |
Andrew F. Davis | dae936a | 2016-06-08 10:54:32 -0500 | [diff] [blame] | 346 | .pm = &tscadc_pm_ops, |
Sachin Kamat | 131221b | 2013-10-15 09:18:49 +0530 | [diff] [blame] | 347 | .of_match_table = ti_tscadc_dt_ids, |
Patil, Rachna | 01636eb | 2012-10-16 12:55:43 +0530 | [diff] [blame] | 348 | }, |
| 349 | .probe = ti_tscadc_probe, |
Greg Kroah-Hartman | 612b95c | 2012-12-21 15:03:15 -0800 | [diff] [blame] | 350 | .remove = ti_tscadc_remove, |
Patil, Rachna | 01636eb | 2012-10-16 12:55:43 +0530 | [diff] [blame] | 351 | |
| 352 | }; |
| 353 | |
| 354 | module_platform_driver(ti_tscadc_driver); |
| 355 | |
| 356 | MODULE_DESCRIPTION("TI touchscreen / ADC MFD controller driver"); |
| 357 | MODULE_AUTHOR("Rachna Patil <rachna@ti.com>"); |
| 358 | MODULE_LICENSE("GPL"); |