Sathish Ambley | d2ad0fa | 2012-03-23 11:23:47 -0700 | [diff] [blame] | 1 | /* Copyright (c) 2012, Code Aurora Forum. All rights reserved. |
| 2 | * |
| 3 | * This program is free software; you can redistribute it and/or modify |
| 4 | * it under the terms of the GNU General Public License version 2 and |
| 5 | * only version 2 as published by the Free Software Foundation. |
| 6 | * |
| 7 | * This program is distributed in the hope that it will be useful, |
| 8 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 9 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 10 | * GNU General Public License for more details. |
| 11 | * |
| 12 | */ |
| 13 | #include <linux/bitmap.h> |
| 14 | #include <linux/bitops.h> |
| 15 | #include <linux/gpio.h> |
| 16 | #include <linux/init.h> |
| 17 | #include <linux/interrupt.h> |
| 18 | #include <linux/irq.h> |
| 19 | #include <linux/io.h> |
| 20 | #include <linux/module.h> |
| 21 | #include <linux/spinlock.h> |
| 22 | #include <linux/syscore_ops.h> |
| 23 | #include <linux/irqdomain.h> |
| 24 | #include <linux/of.h> |
| 25 | #include <linux/err.h> |
| 26 | |
| 27 | #include <asm/mach/irq.h> |
| 28 | |
| 29 | #include <mach/msm_iomap.h> |
| 30 | #include <mach/gpiomux.h> |
| 31 | #include <mach/mpm.h> |
| 32 | #include "gpio-msm-common.h" |
| 33 | |
Sujit Reddy Thumma | 39306c2 | 2012-06-26 15:39:26 +0530 | [diff] [blame] | 34 | #ifdef CONFIG_GPIO_MSM_V3 |
| 35 | enum msm_tlmm_register { |
| 36 | SDC4_HDRV_PULL_CTL = 0x0, /* NOT USED */ |
| 37 | SDC3_HDRV_PULL_CTL = 0x0, /* NOT USED */ |
| 38 | SDC2_HDRV_PULL_CTL = 0x2048, |
| 39 | SDC1_HDRV_PULL_CTL = 0x2044, |
| 40 | }; |
| 41 | #else |
Sathish Ambley | d2ad0fa | 2012-03-23 11:23:47 -0700 | [diff] [blame] | 42 | enum msm_tlmm_register { |
| 43 | SDC4_HDRV_PULL_CTL = 0x20a0, |
| 44 | SDC3_HDRV_PULL_CTL = 0x20a4, |
Sujit Reddy Thumma | 39306c2 | 2012-06-26 15:39:26 +0530 | [diff] [blame] | 45 | SDC2_HDRV_PULL_CTL = 0x0, /* NOT USED */ |
Sathish Ambley | d2ad0fa | 2012-03-23 11:23:47 -0700 | [diff] [blame] | 46 | SDC1_HDRV_PULL_CTL = 0x20a0, |
| 47 | }; |
Sujit Reddy Thumma | 39306c2 | 2012-06-26 15:39:26 +0530 | [diff] [blame] | 48 | #endif |
Sathish Ambley | d2ad0fa | 2012-03-23 11:23:47 -0700 | [diff] [blame] | 49 | |
| 50 | struct tlmm_field_cfg { |
| 51 | enum msm_tlmm_register reg; |
| 52 | u8 off; |
| 53 | }; |
| 54 | |
| 55 | static const struct tlmm_field_cfg tlmm_hdrv_cfgs[] = { |
| 56 | {SDC4_HDRV_PULL_CTL, 6}, /* TLMM_HDRV_SDC4_CLK */ |
| 57 | {SDC4_HDRV_PULL_CTL, 3}, /* TLMM_HDRV_SDC4_CMD */ |
| 58 | {SDC4_HDRV_PULL_CTL, 0}, /* TLMM_HDRV_SDC4_DATA */ |
| 59 | {SDC3_HDRV_PULL_CTL, 6}, /* TLMM_HDRV_SDC3_CLK */ |
| 60 | {SDC3_HDRV_PULL_CTL, 3}, /* TLMM_HDRV_SDC3_CMD */ |
| 61 | {SDC3_HDRV_PULL_CTL, 0}, /* TLMM_HDRV_SDC3_DATA */ |
Sujit Reddy Thumma | 39306c2 | 2012-06-26 15:39:26 +0530 | [diff] [blame] | 62 | {SDC2_HDRV_PULL_CTL, 6}, /* TLMM_HDRV_SDC2_CLK */ |
| 63 | {SDC2_HDRV_PULL_CTL, 3}, /* TLMM_HDRV_SDC2_CMD */ |
| 64 | {SDC2_HDRV_PULL_CTL, 0}, /* TLMM_HDRV_SDC2_DATA */ |
Sathish Ambley | d2ad0fa | 2012-03-23 11:23:47 -0700 | [diff] [blame] | 65 | {SDC1_HDRV_PULL_CTL, 6}, /* TLMM_HDRV_SDC1_CLK */ |
| 66 | {SDC1_HDRV_PULL_CTL, 3}, /* TLMM_HDRV_SDC1_CMD */ |
| 67 | {SDC1_HDRV_PULL_CTL, 0}, /* TLMM_HDRV_SDC1_DATA */ |
| 68 | }; |
| 69 | |
| 70 | static const struct tlmm_field_cfg tlmm_pull_cfgs[] = { |
Sujit Reddy Thumma | 39306c2 | 2012-06-26 15:39:26 +0530 | [diff] [blame] | 71 | {SDC4_HDRV_PULL_CTL, 14}, /* TLMM_PULL_SDC4_CLK */ |
Sathish Ambley | d2ad0fa | 2012-03-23 11:23:47 -0700 | [diff] [blame] | 72 | {SDC4_HDRV_PULL_CTL, 11}, /* TLMM_PULL_SDC4_CMD */ |
| 73 | {SDC4_HDRV_PULL_CTL, 9}, /* TLMM_PULL_SDC4_DATA */ |
| 74 | {SDC3_HDRV_PULL_CTL, 14}, /* TLMM_PULL_SDC3_CLK */ |
| 75 | {SDC3_HDRV_PULL_CTL, 11}, /* TLMM_PULL_SDC3_CMD */ |
| 76 | {SDC3_HDRV_PULL_CTL, 9}, /* TLMM_PULL_SDC3_DATA */ |
Sujit Reddy Thumma | 39306c2 | 2012-06-26 15:39:26 +0530 | [diff] [blame] | 77 | {SDC2_HDRV_PULL_CTL, 14}, /* TLMM_PULL_SDC2_CLK */ |
| 78 | {SDC2_HDRV_PULL_CTL, 11}, /* TLMM_PULL_SDC2_CMD */ |
| 79 | {SDC2_HDRV_PULL_CTL, 9}, /* TLMM_PULL_SDC2_DATA */ |
Sathish Ambley | d2ad0fa | 2012-03-23 11:23:47 -0700 | [diff] [blame] | 80 | {SDC1_HDRV_PULL_CTL, 13}, /* TLMM_PULL_SDC1_CLK */ |
| 81 | {SDC1_HDRV_PULL_CTL, 11}, /* TLMM_PULL_SDC1_CMD */ |
| 82 | {SDC1_HDRV_PULL_CTL, 9}, /* TLMM_PULL_SDC1_DATA */ |
| 83 | }; |
| 84 | |
| 85 | /* |
| 86 | * Supported arch specific irq extension. |
| 87 | * Default make them NULL. |
| 88 | */ |
| 89 | struct irq_chip msm_gpio_irq_extn = { |
| 90 | .irq_eoi = NULL, |
| 91 | .irq_mask = NULL, |
| 92 | .irq_unmask = NULL, |
| 93 | .irq_retrigger = NULL, |
| 94 | .irq_set_type = NULL, |
| 95 | .irq_set_wake = NULL, |
| 96 | .irq_disable = NULL, |
| 97 | }; |
| 98 | |
| 99 | /** |
| 100 | * struct msm_gpio_dev: the MSM8660 SoC GPIO device structure |
| 101 | * |
| 102 | * @enabled_irqs: a bitmap used to optimize the summary-irq handler. By |
| 103 | * keeping track of which gpios are unmasked as irq sources, we avoid |
| 104 | * having to do __raw_readl calls on hundreds of iomapped registers each time |
| 105 | * the summary interrupt fires in order to locate the active interrupts. |
| 106 | * |
| 107 | * @wake_irqs: a bitmap for tracking which interrupt lines are enabled |
| 108 | * as wakeup sources. When the device is suspended, interrupts which are |
| 109 | * not wakeup sources are disabled. |
| 110 | * |
| 111 | * @dual_edge_irqs: a bitmap used to track which irqs are configured |
| 112 | * as dual-edge, as this is not supported by the hardware and requires |
| 113 | * some special handling in the driver. |
| 114 | */ |
| 115 | struct msm_gpio_dev { |
| 116 | struct gpio_chip gpio_chip; |
| 117 | DECLARE_BITMAP(enabled_irqs, NR_MSM_GPIOS); |
| 118 | DECLARE_BITMAP(wake_irqs, NR_MSM_GPIOS); |
| 119 | DECLARE_BITMAP(dual_edge_irqs, NR_MSM_GPIOS); |
Michael Bohan | bb6b30f | 2012-06-01 13:33:51 -0700 | [diff] [blame] | 120 | struct irq_domain *domain; |
Sathish Ambley | d2ad0fa | 2012-03-23 11:23:47 -0700 | [diff] [blame] | 121 | }; |
| 122 | |
| 123 | static DEFINE_SPINLOCK(tlmm_lock); |
| 124 | |
| 125 | static inline struct msm_gpio_dev *to_msm_gpio_dev(struct gpio_chip *chip) |
| 126 | { |
| 127 | return container_of(chip, struct msm_gpio_dev, gpio_chip); |
| 128 | } |
| 129 | |
| 130 | static int msm_gpio_get(struct gpio_chip *chip, unsigned offset) |
| 131 | { |
| 132 | int rc; |
| 133 | rc = __msm_gpio_get_inout(offset); |
| 134 | mb(); |
| 135 | return rc; |
| 136 | } |
| 137 | |
| 138 | static void msm_gpio_set(struct gpio_chip *chip, unsigned offset, int val) |
| 139 | { |
| 140 | __msm_gpio_set_inout(offset, val); |
| 141 | mb(); |
| 142 | } |
| 143 | |
| 144 | static int msm_gpio_direction_input(struct gpio_chip *chip, unsigned offset) |
| 145 | { |
| 146 | unsigned long irq_flags; |
| 147 | |
| 148 | spin_lock_irqsave(&tlmm_lock, irq_flags); |
| 149 | __msm_gpio_set_config_direction(offset, 1, 0); |
| 150 | mb(); |
| 151 | spin_unlock_irqrestore(&tlmm_lock, irq_flags); |
| 152 | return 0; |
| 153 | } |
| 154 | |
| 155 | static int msm_gpio_direction_output(struct gpio_chip *chip, |
| 156 | unsigned offset, |
| 157 | int val) |
| 158 | { |
| 159 | unsigned long irq_flags; |
| 160 | |
| 161 | spin_lock_irqsave(&tlmm_lock, irq_flags); |
| 162 | __msm_gpio_set_config_direction(offset, 0, val); |
| 163 | mb(); |
| 164 | spin_unlock_irqrestore(&tlmm_lock, irq_flags); |
| 165 | return 0; |
| 166 | } |
| 167 | |
| 168 | #ifdef CONFIG_OF |
| 169 | static int msm_gpio_to_irq(struct gpio_chip *chip, unsigned offset) |
| 170 | { |
| 171 | struct msm_gpio_dev *g_dev = to_msm_gpio_dev(chip); |
Michael Bohan | bb6b30f | 2012-06-01 13:33:51 -0700 | [diff] [blame] | 172 | struct irq_domain *domain = g_dev->domain; |
Michael Bohan | 27e7b94 | 2012-07-06 10:25:30 -0700 | [diff] [blame] | 173 | return irq_linear_revmap(domain, offset); |
Sathish Ambley | d2ad0fa | 2012-03-23 11:23:47 -0700 | [diff] [blame] | 174 | } |
| 175 | |
| 176 | static inline int msm_irq_to_gpio(struct gpio_chip *chip, unsigned irq) |
| 177 | { |
Michael Bohan | bb6b30f | 2012-06-01 13:33:51 -0700 | [diff] [blame] | 178 | struct irq_data *irq_data = irq_get_irq_data(irq); |
| 179 | return irq_data->hwirq; |
Sathish Ambley | d2ad0fa | 2012-03-23 11:23:47 -0700 | [diff] [blame] | 180 | } |
| 181 | #else |
| 182 | static int msm_gpio_to_irq(struct gpio_chip *chip, unsigned offset) |
| 183 | { |
| 184 | return MSM_GPIO_TO_INT(offset - chip->base); |
| 185 | } |
| 186 | |
| 187 | static inline int msm_irq_to_gpio(struct gpio_chip *chip, unsigned irq) |
| 188 | { |
| 189 | return irq - MSM_GPIO_TO_INT(chip->base); |
| 190 | } |
| 191 | #endif |
| 192 | |
| 193 | static int msm_gpio_request(struct gpio_chip *chip, unsigned offset) |
| 194 | { |
| 195 | return msm_gpiomux_get(chip->base + offset); |
| 196 | } |
| 197 | |
| 198 | static void msm_gpio_free(struct gpio_chip *chip, unsigned offset) |
| 199 | { |
| 200 | msm_gpiomux_put(chip->base + offset); |
| 201 | } |
| 202 | |
| 203 | static struct msm_gpio_dev msm_gpio = { |
| 204 | .gpio_chip = { |
| 205 | .label = "msmgpio", |
| 206 | .base = 0, |
| 207 | .ngpio = NR_MSM_GPIOS, |
| 208 | .direction_input = msm_gpio_direction_input, |
| 209 | .direction_output = msm_gpio_direction_output, |
| 210 | .get = msm_gpio_get, |
| 211 | .set = msm_gpio_set, |
| 212 | .to_irq = msm_gpio_to_irq, |
| 213 | .request = msm_gpio_request, |
| 214 | .free = msm_gpio_free, |
| 215 | }, |
| 216 | }; |
| 217 | |
| 218 | static void switch_mpm_config(struct irq_data *d, unsigned val) |
| 219 | { |
| 220 | /* switch the configuration in the mpm as well */ |
| 221 | if (!msm_gpio_irq_extn.irq_set_type) |
| 222 | return; |
| 223 | |
| 224 | if (val) |
| 225 | msm_gpio_irq_extn.irq_set_type(d, IRQF_TRIGGER_FALLING); |
| 226 | else |
| 227 | msm_gpio_irq_extn.irq_set_type(d, IRQF_TRIGGER_RISING); |
| 228 | } |
| 229 | |
| 230 | /* For dual-edge interrupts in software, since the hardware has no |
| 231 | * such support: |
| 232 | * |
| 233 | * At appropriate moments, this function may be called to flip the polarity |
| 234 | * settings of both-edge irq lines to try and catch the next edge. |
| 235 | * |
| 236 | * The attempt is considered successful if: |
| 237 | * - the status bit goes high, indicating that an edge was caught, or |
| 238 | * - the input value of the gpio doesn't change during the attempt. |
| 239 | * If the value changes twice during the process, that would cause the first |
| 240 | * test to fail but would force the second, as two opposite |
| 241 | * transitions would cause a detection no matter the polarity setting. |
| 242 | * |
| 243 | * The do-loop tries to sledge-hammer closed the timing hole between |
| 244 | * the initial value-read and the polarity-write - if the line value changes |
| 245 | * during that window, an interrupt is lost, the new polarity setting is |
| 246 | * incorrect, and the first success test will fail, causing a retry. |
| 247 | * |
| 248 | * Algorithm comes from Google's msmgpio driver, see mach-msm/gpio.c. |
| 249 | */ |
| 250 | static void msm_gpio_update_dual_edge_pos(struct irq_data *d, unsigned gpio) |
| 251 | { |
| 252 | int loop_limit = 100; |
| 253 | unsigned val, val2, intstat; |
| 254 | |
| 255 | do { |
| 256 | val = __msm_gpio_get_inout(gpio); |
| 257 | __msm_gpio_set_polarity(gpio, val); |
| 258 | val2 = __msm_gpio_get_inout(gpio); |
| 259 | intstat = __msm_gpio_get_intr_status(gpio); |
| 260 | if (intstat || val == val2) { |
| 261 | switch_mpm_config(d, val); |
| 262 | return; |
| 263 | } |
| 264 | } while (loop_limit-- > 0); |
| 265 | pr_err("%s: dual-edge irq failed to stabilize, %#08x != %#08x\n", |
| 266 | __func__, val, val2); |
| 267 | } |
| 268 | |
| 269 | static void msm_gpio_irq_ack(struct irq_data *d) |
| 270 | { |
| 271 | int gpio = msm_irq_to_gpio(&msm_gpio.gpio_chip, d->irq); |
| 272 | |
| 273 | __msm_gpio_set_intr_status(gpio); |
| 274 | if (test_bit(gpio, msm_gpio.dual_edge_irqs)) |
| 275 | msm_gpio_update_dual_edge_pos(d, gpio); |
| 276 | mb(); |
| 277 | } |
| 278 | |
| 279 | static void msm_gpio_irq_mask(struct irq_data *d) |
| 280 | { |
| 281 | int gpio = msm_irq_to_gpio(&msm_gpio.gpio_chip, d->irq); |
| 282 | unsigned long irq_flags; |
| 283 | |
| 284 | spin_lock_irqsave(&tlmm_lock, irq_flags); |
| 285 | __msm_gpio_set_intr_cfg_enable(gpio, 0); |
| 286 | __clear_bit(gpio, msm_gpio.enabled_irqs); |
| 287 | mb(); |
| 288 | spin_unlock_irqrestore(&tlmm_lock, irq_flags); |
| 289 | |
| 290 | if (msm_gpio_irq_extn.irq_mask) |
| 291 | msm_gpio_irq_extn.irq_mask(d); |
| 292 | |
| 293 | } |
| 294 | |
| 295 | static void msm_gpio_irq_unmask(struct irq_data *d) |
| 296 | { |
| 297 | int gpio = msm_irq_to_gpio(&msm_gpio.gpio_chip, d->irq); |
| 298 | unsigned long irq_flags; |
| 299 | |
| 300 | spin_lock_irqsave(&tlmm_lock, irq_flags); |
| 301 | __set_bit(gpio, msm_gpio.enabled_irqs); |
Rohit Vaswani | 13f70c1 | 2012-08-03 11:54:09 -0700 | [diff] [blame^] | 302 | __msm_gpio_set_intr_status(gpio); |
Sathish Ambley | d2ad0fa | 2012-03-23 11:23:47 -0700 | [diff] [blame] | 303 | __msm_gpio_set_intr_cfg_enable(gpio, 1); |
| 304 | mb(); |
| 305 | spin_unlock_irqrestore(&tlmm_lock, irq_flags); |
| 306 | |
| 307 | if (msm_gpio_irq_extn.irq_mask) |
| 308 | msm_gpio_irq_extn.irq_unmask(d); |
| 309 | } |
| 310 | |
| 311 | static void msm_gpio_irq_disable(struct irq_data *d) |
| 312 | { |
| 313 | if (msm_gpio_irq_extn.irq_disable) |
| 314 | msm_gpio_irq_extn.irq_disable(d); |
| 315 | } |
| 316 | |
| 317 | static int msm_gpio_irq_set_type(struct irq_data *d, unsigned int flow_type) |
| 318 | { |
| 319 | int gpio = msm_irq_to_gpio(&msm_gpio.gpio_chip, d->irq); |
| 320 | unsigned long irq_flags; |
| 321 | |
| 322 | spin_lock_irqsave(&tlmm_lock, irq_flags); |
| 323 | |
| 324 | if (flow_type & IRQ_TYPE_EDGE_BOTH) { |
| 325 | __irq_set_handler_locked(d->irq, handle_edge_irq); |
| 326 | if ((flow_type & IRQ_TYPE_EDGE_BOTH) == IRQ_TYPE_EDGE_BOTH) |
| 327 | __set_bit(gpio, msm_gpio.dual_edge_irqs); |
| 328 | else |
| 329 | __clear_bit(gpio, msm_gpio.dual_edge_irqs); |
| 330 | } else { |
| 331 | __irq_set_handler_locked(d->irq, handle_level_irq); |
| 332 | __clear_bit(gpio, msm_gpio.dual_edge_irqs); |
| 333 | } |
| 334 | |
| 335 | __msm_gpio_set_intr_cfg_type(gpio, flow_type); |
| 336 | |
| 337 | if ((flow_type & IRQ_TYPE_EDGE_BOTH) == IRQ_TYPE_EDGE_BOTH) |
| 338 | msm_gpio_update_dual_edge_pos(d, gpio); |
| 339 | |
| 340 | mb(); |
| 341 | spin_unlock_irqrestore(&tlmm_lock, irq_flags); |
| 342 | |
| 343 | if (msm_gpio_irq_extn.irq_set_type) |
| 344 | msm_gpio_irq_extn.irq_set_type(d, flow_type); |
| 345 | |
| 346 | return 0; |
| 347 | } |
| 348 | |
| 349 | /* |
| 350 | * When the summary IRQ is raised, any number of GPIO lines may be high. |
| 351 | * It is the job of the summary handler to find all those GPIO lines |
| 352 | * which have been set as summary IRQ lines and which are triggered, |
| 353 | * and to call their interrupt handlers. |
| 354 | */ |
| 355 | static irqreturn_t msm_summary_irq_handler(int irq, void *data) |
| 356 | { |
| 357 | unsigned long i; |
| 358 | struct irq_desc *desc = irq_to_desc(irq); |
| 359 | struct irq_chip *chip = irq_desc_get_chip(desc); |
| 360 | |
| 361 | chained_irq_enter(chip, desc); |
| 362 | |
| 363 | for (i = find_first_bit(msm_gpio.enabled_irqs, NR_MSM_GPIOS); |
| 364 | i < NR_MSM_GPIOS; |
| 365 | i = find_next_bit(msm_gpio.enabled_irqs, NR_MSM_GPIOS, i + 1)) { |
| 366 | if (__msm_gpio_get_intr_status(i)) |
| 367 | generic_handle_irq(msm_gpio_to_irq(&msm_gpio.gpio_chip, |
| 368 | i)); |
| 369 | } |
| 370 | |
| 371 | chained_irq_exit(chip, desc); |
| 372 | return IRQ_HANDLED; |
| 373 | } |
| 374 | |
| 375 | static int msm_gpio_irq_set_wake(struct irq_data *d, unsigned int on) |
| 376 | { |
| 377 | int gpio = msm_irq_to_gpio(&msm_gpio.gpio_chip, d->irq); |
| 378 | |
| 379 | if (on) { |
| 380 | if (bitmap_empty(msm_gpio.wake_irqs, NR_MSM_GPIOS)) |
| 381 | irq_set_irq_wake(TLMM_MSM_SUMMARY_IRQ, 1); |
| 382 | set_bit(gpio, msm_gpio.wake_irqs); |
| 383 | } else { |
| 384 | clear_bit(gpio, msm_gpio.wake_irqs); |
| 385 | if (bitmap_empty(msm_gpio.wake_irqs, NR_MSM_GPIOS)) |
| 386 | irq_set_irq_wake(TLMM_MSM_SUMMARY_IRQ, 0); |
| 387 | } |
| 388 | |
| 389 | if (msm_gpio_irq_extn.irq_set_wake) |
| 390 | msm_gpio_irq_extn.irq_set_wake(d, on); |
| 391 | |
| 392 | return 0; |
| 393 | } |
| 394 | |
| 395 | static struct irq_chip msm_gpio_irq_chip = { |
| 396 | .name = "msmgpio", |
| 397 | .irq_mask = msm_gpio_irq_mask, |
| 398 | .irq_unmask = msm_gpio_irq_unmask, |
| 399 | .irq_ack = msm_gpio_irq_ack, |
| 400 | .irq_set_type = msm_gpio_irq_set_type, |
| 401 | .irq_set_wake = msm_gpio_irq_set_wake, |
| 402 | .irq_disable = msm_gpio_irq_disable, |
| 403 | }; |
| 404 | |
| 405 | /* |
| 406 | * This lock class tells lockdep that GPIO irqs are in a different |
| 407 | * category than their parent, so it won't report false recursion. |
| 408 | */ |
| 409 | static struct lock_class_key msm_gpio_lock_class; |
| 410 | |
Michael Bohan | bb6b30f | 2012-06-01 13:33:51 -0700 | [diff] [blame] | 411 | /* TODO: This should be a real platform_driver */ |
Sathish Ambley | d2ad0fa | 2012-03-23 11:23:47 -0700 | [diff] [blame] | 412 | static int __devinit msm_gpio_probe(void) |
| 413 | { |
Michael Bohan | 27e7b94 | 2012-07-06 10:25:30 -0700 | [diff] [blame] | 414 | int ret; |
| 415 | #ifndef CONFIG_OF |
| 416 | int irq, i; |
| 417 | #endif |
Sathish Ambley | d2ad0fa | 2012-03-23 11:23:47 -0700 | [diff] [blame] | 418 | |
| 419 | spin_lock_init(&tlmm_lock); |
| 420 | bitmap_zero(msm_gpio.enabled_irqs, NR_MSM_GPIOS); |
| 421 | bitmap_zero(msm_gpio.wake_irqs, NR_MSM_GPIOS); |
| 422 | bitmap_zero(msm_gpio.dual_edge_irqs, NR_MSM_GPIOS); |
| 423 | ret = gpiochip_add(&msm_gpio.gpio_chip); |
| 424 | if (ret < 0) |
| 425 | return ret; |
| 426 | |
Michael Bohan | 27e7b94 | 2012-07-06 10:25:30 -0700 | [diff] [blame] | 427 | #ifndef CONFIG_OF |
Sathish Ambley | d2ad0fa | 2012-03-23 11:23:47 -0700 | [diff] [blame] | 428 | for (i = 0; i < msm_gpio.gpio_chip.ngpio; ++i) { |
| 429 | irq = msm_gpio_to_irq(&msm_gpio.gpio_chip, i); |
| 430 | irq_set_lockdep_class(irq, &msm_gpio_lock_class); |
| 431 | irq_set_chip_and_handler(irq, &msm_gpio_irq_chip, |
| 432 | handle_level_irq); |
| 433 | set_irq_flags(irq, IRQF_VALID); |
| 434 | } |
Michael Bohan | 27e7b94 | 2012-07-06 10:25:30 -0700 | [diff] [blame] | 435 | #endif |
Sathish Ambley | d2ad0fa | 2012-03-23 11:23:47 -0700 | [diff] [blame] | 436 | ret = request_irq(TLMM_MSM_SUMMARY_IRQ, msm_summary_irq_handler, |
| 437 | IRQF_TRIGGER_HIGH, "msmgpio", NULL); |
| 438 | if (ret) { |
| 439 | pr_err("Request_irq failed for TLMM_MSM_SUMMARY_IRQ - %d\n", |
| 440 | ret); |
| 441 | return ret; |
| 442 | } |
| 443 | return 0; |
| 444 | } |
| 445 | |
| 446 | static int __devexit msm_gpio_remove(void) |
| 447 | { |
| 448 | int ret = gpiochip_remove(&msm_gpio.gpio_chip); |
| 449 | |
| 450 | if (ret < 0) |
| 451 | return ret; |
| 452 | |
| 453 | irq_set_handler(TLMM_MSM_SUMMARY_IRQ, NULL); |
| 454 | |
| 455 | return 0; |
| 456 | } |
| 457 | |
| 458 | #ifdef CONFIG_PM |
| 459 | static int msm_gpio_suspend(void) |
| 460 | { |
| 461 | unsigned long irq_flags; |
| 462 | unsigned long i; |
| 463 | |
| 464 | spin_lock_irqsave(&tlmm_lock, irq_flags); |
| 465 | for_each_set_bit(i, msm_gpio.enabled_irqs, NR_MSM_GPIOS) |
| 466 | __msm_gpio_set_intr_cfg_enable(i, 0); |
| 467 | |
| 468 | for_each_set_bit(i, msm_gpio.wake_irqs, NR_MSM_GPIOS) |
| 469 | __msm_gpio_set_intr_cfg_enable(i, 1); |
| 470 | mb(); |
| 471 | spin_unlock_irqrestore(&tlmm_lock, irq_flags); |
| 472 | return 0; |
| 473 | } |
| 474 | |
| 475 | void msm_gpio_show_resume_irq(void) |
| 476 | { |
| 477 | unsigned long irq_flags; |
| 478 | int i, irq, intstat; |
| 479 | |
| 480 | if (!msm_show_resume_irq_mask) |
| 481 | return; |
| 482 | |
| 483 | spin_lock_irqsave(&tlmm_lock, irq_flags); |
| 484 | for_each_set_bit(i, msm_gpio.wake_irqs, NR_MSM_GPIOS) { |
| 485 | intstat = __msm_gpio_get_intr_status(i); |
| 486 | if (intstat) { |
| 487 | irq = msm_gpio_to_irq(&msm_gpio.gpio_chip, i); |
| 488 | pr_warning("%s: %d triggered\n", |
| 489 | __func__, irq); |
| 490 | } |
| 491 | } |
| 492 | spin_unlock_irqrestore(&tlmm_lock, irq_flags); |
| 493 | } |
| 494 | |
| 495 | static void msm_gpio_resume(void) |
| 496 | { |
| 497 | unsigned long irq_flags; |
| 498 | unsigned long i; |
| 499 | |
| 500 | msm_gpio_show_resume_irq(); |
| 501 | |
| 502 | spin_lock_irqsave(&tlmm_lock, irq_flags); |
| 503 | for_each_set_bit(i, msm_gpio.wake_irqs, NR_MSM_GPIOS) |
| 504 | __msm_gpio_set_intr_cfg_enable(i, 0); |
| 505 | |
| 506 | for_each_set_bit(i, msm_gpio.enabled_irqs, NR_MSM_GPIOS) |
| 507 | __msm_gpio_set_intr_cfg_enable(i, 1); |
| 508 | mb(); |
| 509 | spin_unlock_irqrestore(&tlmm_lock, irq_flags); |
| 510 | } |
| 511 | #else |
| 512 | #define msm_gpio_suspend NULL |
| 513 | #define msm_gpio_resume NULL |
| 514 | #endif |
| 515 | |
| 516 | static struct syscore_ops msm_gpio_syscore_ops = { |
| 517 | .suspend = msm_gpio_suspend, |
| 518 | .resume = msm_gpio_resume, |
| 519 | }; |
| 520 | |
| 521 | static int __init msm_gpio_init(void) |
| 522 | { |
| 523 | msm_gpio_probe(); |
| 524 | register_syscore_ops(&msm_gpio_syscore_ops); |
| 525 | return 0; |
| 526 | } |
| 527 | |
| 528 | static void __exit msm_gpio_exit(void) |
| 529 | { |
| 530 | unregister_syscore_ops(&msm_gpio_syscore_ops); |
| 531 | msm_gpio_remove(); |
| 532 | } |
| 533 | |
| 534 | postcore_initcall(msm_gpio_init); |
| 535 | module_exit(msm_gpio_exit); |
| 536 | |
| 537 | static void msm_tlmm_set_field(const struct tlmm_field_cfg *configs, |
| 538 | unsigned id, unsigned width, unsigned val) |
| 539 | { |
| 540 | unsigned long irqflags; |
| 541 | u32 mask = (1 << width) - 1; |
| 542 | u32 __iomem *reg = MSM_TLMM_BASE + configs[id].reg; |
| 543 | u32 reg_val; |
| 544 | |
| 545 | spin_lock_irqsave(&tlmm_lock, irqflags); |
| 546 | reg_val = __raw_readl(reg); |
| 547 | reg_val &= ~(mask << configs[id].off); |
| 548 | reg_val |= (val & mask) << configs[id].off; |
| 549 | __raw_writel(reg_val, reg); |
| 550 | mb(); |
| 551 | spin_unlock_irqrestore(&tlmm_lock, irqflags); |
| 552 | } |
| 553 | |
| 554 | void msm_tlmm_set_hdrive(enum msm_tlmm_hdrive_tgt tgt, int drv_str) |
| 555 | { |
| 556 | msm_tlmm_set_field(tlmm_hdrv_cfgs, tgt, 3, drv_str); |
| 557 | } |
| 558 | EXPORT_SYMBOL(msm_tlmm_set_hdrive); |
| 559 | |
| 560 | void msm_tlmm_set_pull(enum msm_tlmm_pull_tgt tgt, int pull) |
| 561 | { |
| 562 | msm_tlmm_set_field(tlmm_pull_cfgs, tgt, 2, pull); |
| 563 | } |
| 564 | EXPORT_SYMBOL(msm_tlmm_set_pull); |
| 565 | |
| 566 | int gpio_tlmm_config(unsigned config, unsigned disable) |
| 567 | { |
| 568 | unsigned gpio = GPIO_PIN(config); |
| 569 | |
| 570 | if (gpio > NR_MSM_GPIOS) |
| 571 | return -EINVAL; |
| 572 | |
| 573 | __gpio_tlmm_config(config); |
| 574 | mb(); |
| 575 | |
| 576 | return 0; |
| 577 | } |
| 578 | EXPORT_SYMBOL(gpio_tlmm_config); |
| 579 | |
| 580 | int msm_gpio_install_direct_irq(unsigned gpio, unsigned irq, |
| 581 | unsigned int input_polarity) |
| 582 | { |
| 583 | unsigned long irq_flags; |
| 584 | |
| 585 | if (gpio >= NR_MSM_GPIOS || irq >= NR_TLMM_MSM_DIR_CONN_IRQ) |
| 586 | return -EINVAL; |
| 587 | |
| 588 | spin_lock_irqsave(&tlmm_lock, irq_flags); |
| 589 | __msm_gpio_install_direct_irq(gpio, irq, input_polarity); |
| 590 | mb(); |
| 591 | spin_unlock_irqrestore(&tlmm_lock, irq_flags); |
| 592 | |
| 593 | return 0; |
| 594 | } |
| 595 | EXPORT_SYMBOL(msm_gpio_install_direct_irq); |
| 596 | |
| 597 | #ifdef CONFIG_OF |
Michael Bohan | bb6b30f | 2012-06-01 13:33:51 -0700 | [diff] [blame] | 598 | static int msm_gpio_irq_domain_xlate(struct irq_domain *d, |
| 599 | struct device_node *controller, |
| 600 | const u32 *intspec, |
| 601 | unsigned int intsize, |
| 602 | unsigned long *out_hwirq, |
| 603 | unsigned int *out_type) |
Sathish Ambley | d2ad0fa | 2012-03-23 11:23:47 -0700 | [diff] [blame] | 604 | { |
| 605 | if (d->of_node != controller) |
| 606 | return -EINVAL; |
| 607 | if (intsize != 2) |
| 608 | return -EINVAL; |
| 609 | |
| 610 | /* hwirq value */ |
| 611 | *out_hwirq = intspec[0]; |
| 612 | |
| 613 | /* irq flags */ |
| 614 | *out_type = intspec[1] & IRQ_TYPE_SENSE_MASK; |
| 615 | return 0; |
| 616 | } |
| 617 | |
Michael Bohan | 27e7b94 | 2012-07-06 10:25:30 -0700 | [diff] [blame] | 618 | static int msm_gpio_irq_domain_map(struct irq_domain *d, unsigned int irq, |
| 619 | irq_hw_number_t hwirq) |
Michael Bohan | bb6b30f | 2012-06-01 13:33:51 -0700 | [diff] [blame] | 620 | { |
Michael Bohan | 27e7b94 | 2012-07-06 10:25:30 -0700 | [diff] [blame] | 621 | irq_set_lockdep_class(irq, &msm_gpio_lock_class); |
| 622 | irq_set_chip_and_handler(irq, &msm_gpio_irq_chip, |
| 623 | handle_level_irq); |
| 624 | set_irq_flags(irq, IRQF_VALID); |
| 625 | |
Michael Bohan | bb6b30f | 2012-06-01 13:33:51 -0700 | [diff] [blame] | 626 | return 0; |
| 627 | } |
| 628 | |
Sathish Ambley | d2ad0fa | 2012-03-23 11:23:47 -0700 | [diff] [blame] | 629 | static struct irq_domain_ops msm_gpio_irq_domain_ops = { |
Michael Bohan | bb6b30f | 2012-06-01 13:33:51 -0700 | [diff] [blame] | 630 | .xlate = msm_gpio_irq_domain_xlate, |
| 631 | .map = msm_gpio_irq_domain_map, |
Sathish Ambley | d2ad0fa | 2012-03-23 11:23:47 -0700 | [diff] [blame] | 632 | }; |
| 633 | |
| 634 | int __init msm_gpio_of_init(struct device_node *node, |
| 635 | struct device_node *parent) |
| 636 | { |
Michael Bohan | bb6b30f | 2012-06-01 13:33:51 -0700 | [diff] [blame] | 637 | msm_gpio.domain = irq_domain_add_linear(node, NR_MSM_GPIOS, |
| 638 | &msm_gpio_irq_domain_ops, &msm_gpio); |
| 639 | if (!msm_gpio.domain) { |
| 640 | WARN(1, "Cannot allocate irq_domain\n"); |
| 641 | return -ENOMEM; |
Sathish Ambley | d2ad0fa | 2012-03-23 11:23:47 -0700 | [diff] [blame] | 642 | } |
| 643 | |
Sathish Ambley | d2ad0fa | 2012-03-23 11:23:47 -0700 | [diff] [blame] | 644 | return 0; |
| 645 | } |
| 646 | #endif |
| 647 | |
| 648 | MODULE_AUTHOR("Gregory Bean <gbean@codeaurora.org>"); |
| 649 | MODULE_DESCRIPTION("Driver for Qualcomm MSM TLMMv2 SoC GPIOs"); |
| 650 | MODULE_LICENSE("GPL v2"); |
| 651 | MODULE_ALIAS("sysdev:msmgpio"); |