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