]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - drivers/pinctrl/qcom/pinctrl-msm.c
Merge tag 'efi-urgent' of git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi into...
[mirror_ubuntu-artful-kernel.git] / drivers / pinctrl / qcom / pinctrl-msm.c
CommitLineData
f365be09
BA
1/*
2 * Copyright (c) 2013, Sony Mobile Communications AB.
3 * Copyright (c) 2013, The Linux Foundation. All rights reserved.
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 and
7 * only version 2 as published by the Free Software Foundation.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 */
14
32745581 15#include <linux/delay.h>
f365be09 16#include <linux/err.h>
f365be09
BA
17#include <linux/io.h>
18#include <linux/module.h>
19#include <linux/of.h>
20#include <linux/platform_device.h>
21#include <linux/pinctrl/machine.h>
22#include <linux/pinctrl/pinctrl.h>
23#include <linux/pinctrl/pinmux.h>
24#include <linux/pinctrl/pinconf.h>
25#include <linux/pinctrl/pinconf-generic.h>
26#include <linux/slab.h>
27#include <linux/gpio.h>
28#include <linux/interrupt.h>
f365be09 29#include <linux/spinlock.h>
cf1fc187 30#include <linux/reboot.h>
ad644987 31#include <linux/pm.h>
47a01ee9 32#include <linux/log2.h>
32745581 33
69b78b8d
LW
34#include "../core.h"
35#include "../pinconf.h"
f365be09 36#include "pinctrl-msm.h"
69b78b8d 37#include "../pinctrl-utils.h"
f365be09 38
408e3c66 39#define MAX_NR_GPIO 300
32745581 40#define PS_HOLD_OFFSET 0x820
408e3c66 41
f365be09
BA
42/**
43 * struct msm_pinctrl - state for a pinctrl-msm device
44 * @dev: device handle.
45 * @pctrl: pinctrl handle.
f365be09 46 * @chip: gpiochip handle.
cf1fc187 47 * @restart_nb: restart notifier block.
f365be09
BA
48 * @irq: parent irq for the TLMM irq_chip.
49 * @lock: Spinlock to protect register resources as well
50 * as msm_pinctrl data structures.
51 * @enabled_irqs: Bitmap of currently enabled irqs.
52 * @dual_edge_irqs: Bitmap of irqs that need sw emulated dual edge
53 * detection.
f365be09
BA
54 * @soc; Reference to soc_data of platform specific data.
55 * @regs: Base address for the TLMM register map.
56 */
57struct msm_pinctrl {
58 struct device *dev;
59 struct pinctrl_dev *pctrl;
f365be09 60 struct gpio_chip chip;
cf1fc187 61 struct notifier_block restart_nb;
f393e489 62 int irq;
f365be09 63
47b03ca9 64 raw_spinlock_t lock;
f365be09 65
408e3c66
BA
66 DECLARE_BITMAP(dual_edge_irqs, MAX_NR_GPIO);
67 DECLARE_BITMAP(enabled_irqs, MAX_NR_GPIO);
f365be09
BA
68
69 const struct msm_pinctrl_soc_data *soc;
70 void __iomem *regs;
71};
72
73static int msm_get_groups_count(struct pinctrl_dev *pctldev)
74{
75 struct msm_pinctrl *pctrl = pinctrl_dev_get_drvdata(pctldev);
76
77 return pctrl->soc->ngroups;
78}
79
80static const char *msm_get_group_name(struct pinctrl_dev *pctldev,
81 unsigned group)
82{
83 struct msm_pinctrl *pctrl = pinctrl_dev_get_drvdata(pctldev);
84
85 return pctrl->soc->groups[group].name;
86}
87
88static int msm_get_group_pins(struct pinctrl_dev *pctldev,
89 unsigned group,
90 const unsigned **pins,
91 unsigned *num_pins)
92{
93 struct msm_pinctrl *pctrl = pinctrl_dev_get_drvdata(pctldev);
94
95 *pins = pctrl->soc->groups[group].pins;
96 *num_pins = pctrl->soc->groups[group].npins;
97 return 0;
98}
99
1f2b2398 100static const struct pinctrl_ops msm_pinctrl_ops = {
f365be09
BA
101 .get_groups_count = msm_get_groups_count,
102 .get_group_name = msm_get_group_name,
103 .get_group_pins = msm_get_group_pins,
104 .dt_node_to_map = pinconf_generic_dt_node_to_map_group,
d32f7fd3 105 .dt_free_map = pinctrl_utils_free_map,
f365be09
BA
106};
107
108static int msm_get_functions_count(struct pinctrl_dev *pctldev)
109{
110 struct msm_pinctrl *pctrl = pinctrl_dev_get_drvdata(pctldev);
111
112 return pctrl->soc->nfunctions;
113}
114
115static const char *msm_get_function_name(struct pinctrl_dev *pctldev,
116 unsigned function)
117{
118 struct msm_pinctrl *pctrl = pinctrl_dev_get_drvdata(pctldev);
119
120 return pctrl->soc->functions[function].name;
121}
122
123static int msm_get_function_groups(struct pinctrl_dev *pctldev,
124 unsigned function,
125 const char * const **groups,
126 unsigned * const num_groups)
127{
128 struct msm_pinctrl *pctrl = pinctrl_dev_get_drvdata(pctldev);
129
130 *groups = pctrl->soc->functions[function].groups;
131 *num_groups = pctrl->soc->functions[function].ngroups;
132 return 0;
133}
134
03e9f0ca
LW
135static int msm_pinmux_set_mux(struct pinctrl_dev *pctldev,
136 unsigned function,
137 unsigned group)
f365be09
BA
138{
139 struct msm_pinctrl *pctrl = pinctrl_dev_get_drvdata(pctldev);
140 const struct msm_pingroup *g;
141 unsigned long flags;
47a01ee9 142 u32 val, mask;
f365be09
BA
143 int i;
144
145 g = &pctrl->soc->groups[group];
47a01ee9 146 mask = GENMASK(g->mux_bit + order_base_2(g->nfuncs) - 1, g->mux_bit);
f365be09 147
3c25381f 148 for (i = 0; i < g->nfuncs; i++) {
f365be09
BA
149 if (g->funcs[i] == function)
150 break;
151 }
152
3c25381f 153 if (WARN_ON(i == g->nfuncs))
f365be09
BA
154 return -EINVAL;
155
47b03ca9 156 raw_spin_lock_irqsave(&pctrl->lock, flags);
f365be09
BA
157
158 val = readl(pctrl->regs + g->ctl_reg);
6bcf3f63 159 val &= ~mask;
f365be09
BA
160 val |= i << g->mux_bit;
161 writel(val, pctrl->regs + g->ctl_reg);
162
47b03ca9 163 raw_spin_unlock_irqrestore(&pctrl->lock, flags);
f365be09
BA
164
165 return 0;
166}
167
1f2b2398 168static const struct pinmux_ops msm_pinmux_ops = {
f365be09
BA
169 .get_functions_count = msm_get_functions_count,
170 .get_function_name = msm_get_function_name,
171 .get_function_groups = msm_get_function_groups,
03e9f0ca 172 .set_mux = msm_pinmux_set_mux,
f365be09
BA
173};
174
175static int msm_config_reg(struct msm_pinctrl *pctrl,
176 const struct msm_pingroup *g,
177 unsigned param,
f365be09
BA
178 unsigned *mask,
179 unsigned *bit)
180{
181 switch (param) {
182 case PIN_CONFIG_BIAS_DISABLE:
f365be09 183 case PIN_CONFIG_BIAS_PULL_DOWN:
b831a15e 184 case PIN_CONFIG_BIAS_BUS_HOLD:
f365be09 185 case PIN_CONFIG_BIAS_PULL_UP:
f365be09
BA
186 *bit = g->pull_bit;
187 *mask = 3;
188 break;
189 case PIN_CONFIG_DRIVE_STRENGTH:
f365be09
BA
190 *bit = g->drv_bit;
191 *mask = 7;
192 break;
ed118a5f 193 case PIN_CONFIG_OUTPUT:
407f5e39 194 case PIN_CONFIG_INPUT_ENABLE:
ed118a5f
BA
195 *bit = g->oe_bit;
196 *mask = 1;
197 break;
f365be09 198 default:
f365be09
BA
199 return -ENOTSUPP;
200 }
201
f365be09
BA
202 return 0;
203}
204
f365be09
BA
205#define MSM_NO_PULL 0
206#define MSM_PULL_DOWN 1
b831a15e 207#define MSM_KEEPER 2
f365be09
BA
208#define MSM_PULL_UP 3
209
7cc34e2e
SB
210static unsigned msm_regval_to_drive(u32 val)
211{
212 return (val + 1) * 2;
213}
f365be09
BA
214
215static int msm_config_group_get(struct pinctrl_dev *pctldev,
216 unsigned int group,
217 unsigned long *config)
218{
219 const struct msm_pingroup *g;
220 struct msm_pinctrl *pctrl = pinctrl_dev_get_drvdata(pctldev);
221 unsigned param = pinconf_to_config_param(*config);
222 unsigned mask;
223 unsigned arg;
224 unsigned bit;
f365be09
BA
225 int ret;
226 u32 val;
227
228 g = &pctrl->soc->groups[group];
229
051a58b4 230 ret = msm_config_reg(pctrl, g, param, &mask, &bit);
f365be09
BA
231 if (ret < 0)
232 return ret;
233
051a58b4 234 val = readl(pctrl->regs + g->ctl_reg);
f365be09
BA
235 arg = (val >> bit) & mask;
236
237 /* Convert register value to pinconf value */
238 switch (param) {
239 case PIN_CONFIG_BIAS_DISABLE:
240 arg = arg == MSM_NO_PULL;
241 break;
242 case PIN_CONFIG_BIAS_PULL_DOWN:
243 arg = arg == MSM_PULL_DOWN;
244 break;
b831a15e
AG
245 case PIN_CONFIG_BIAS_BUS_HOLD:
246 arg = arg == MSM_KEEPER;
247 break;
f365be09
BA
248 case PIN_CONFIG_BIAS_PULL_UP:
249 arg = arg == MSM_PULL_UP;
250 break;
251 case PIN_CONFIG_DRIVE_STRENGTH:
7cc34e2e 252 arg = msm_regval_to_drive(arg);
f365be09 253 break;
ed118a5f
BA
254 case PIN_CONFIG_OUTPUT:
255 /* Pin is not output */
256 if (!arg)
257 return -EINVAL;
258
259 val = readl(pctrl->regs + g->io_reg);
260 arg = !!(val & BIT(g->in_bit));
261 break;
407f5e39
SV
262 case PIN_CONFIG_INPUT_ENABLE:
263 /* Pin is output */
264 if (arg)
265 return -EINVAL;
266 arg = 1;
267 break;
f365be09 268 default:
38d756af 269 return -ENOTSUPP;
f365be09
BA
270 }
271
272 *config = pinconf_to_config_packed(param, arg);
273
274 return 0;
275}
276
277static int msm_config_group_set(struct pinctrl_dev *pctldev,
278 unsigned group,
279 unsigned long *configs,
280 unsigned num_configs)
281{
282 const struct msm_pingroup *g;
283 struct msm_pinctrl *pctrl = pinctrl_dev_get_drvdata(pctldev);
284 unsigned long flags;
285 unsigned param;
286 unsigned mask;
287 unsigned arg;
288 unsigned bit;
f365be09
BA
289 int ret;
290 u32 val;
291 int i;
292
293 g = &pctrl->soc->groups[group];
294
295 for (i = 0; i < num_configs; i++) {
296 param = pinconf_to_config_param(configs[i]);
297 arg = pinconf_to_config_argument(configs[i]);
298
051a58b4 299 ret = msm_config_reg(pctrl, g, param, &mask, &bit);
f365be09
BA
300 if (ret < 0)
301 return ret;
302
303 /* Convert pinconf values to register values */
304 switch (param) {
305 case PIN_CONFIG_BIAS_DISABLE:
306 arg = MSM_NO_PULL;
307 break;
308 case PIN_CONFIG_BIAS_PULL_DOWN:
309 arg = MSM_PULL_DOWN;
310 break;
b831a15e
AG
311 case PIN_CONFIG_BIAS_BUS_HOLD:
312 arg = MSM_KEEPER;
313 break;
f365be09
BA
314 case PIN_CONFIG_BIAS_PULL_UP:
315 arg = MSM_PULL_UP;
316 break;
317 case PIN_CONFIG_DRIVE_STRENGTH:
318 /* Check for invalid values */
7cc34e2e 319 if (arg > 16 || arg < 2 || (arg % 2) != 0)
f365be09
BA
320 arg = -1;
321 else
7cc34e2e 322 arg = (arg / 2) - 1;
f365be09 323 break;
ed118a5f
BA
324 case PIN_CONFIG_OUTPUT:
325 /* set output value */
47b03ca9 326 raw_spin_lock_irqsave(&pctrl->lock, flags);
ed118a5f
BA
327 val = readl(pctrl->regs + g->io_reg);
328 if (arg)
329 val |= BIT(g->out_bit);
330 else
331 val &= ~BIT(g->out_bit);
332 writel(val, pctrl->regs + g->io_reg);
47b03ca9 333 raw_spin_unlock_irqrestore(&pctrl->lock, flags);
ed118a5f
BA
334
335 /* enable output */
336 arg = 1;
337 break;
407f5e39
SV
338 case PIN_CONFIG_INPUT_ENABLE:
339 /* disable output */
340 arg = 0;
341 break;
f365be09
BA
342 default:
343 dev_err(pctrl->dev, "Unsupported config parameter: %x\n",
344 param);
345 return -EINVAL;
346 }
347
348 /* Range-check user-supplied value */
349 if (arg & ~mask) {
350 dev_err(pctrl->dev, "config %x: %x is invalid\n", param, arg);
351 return -EINVAL;
352 }
353
47b03ca9 354 raw_spin_lock_irqsave(&pctrl->lock, flags);
051a58b4 355 val = readl(pctrl->regs + g->ctl_reg);
f365be09
BA
356 val &= ~(mask << bit);
357 val |= arg << bit;
051a58b4 358 writel(val, pctrl->regs + g->ctl_reg);
47b03ca9 359 raw_spin_unlock_irqrestore(&pctrl->lock, flags);
f365be09
BA
360 }
361
362 return 0;
363}
364
1f2b2398 365static const struct pinconf_ops msm_pinconf_ops = {
38d756af 366 .is_generic = true,
f365be09
BA
367 .pin_config_group_get = msm_config_group_get,
368 .pin_config_group_set = msm_config_group_set,
369};
370
371static struct pinctrl_desc msm_pinctrl_desc = {
372 .pctlops = &msm_pinctrl_ops,
373 .pmxops = &msm_pinmux_ops,
374 .confops = &msm_pinconf_ops,
375 .owner = THIS_MODULE,
376};
377
378static int msm_gpio_direction_input(struct gpio_chip *chip, unsigned offset)
379{
380 const struct msm_pingroup *g;
fded3f40 381 struct msm_pinctrl *pctrl = gpiochip_get_data(chip);
f365be09
BA
382 unsigned long flags;
383 u32 val;
384
f365be09 385 g = &pctrl->soc->groups[offset];
f365be09 386
47b03ca9 387 raw_spin_lock_irqsave(&pctrl->lock, flags);
f365be09
BA
388
389 val = readl(pctrl->regs + g->ctl_reg);
390 val &= ~BIT(g->oe_bit);
391 writel(val, pctrl->regs + g->ctl_reg);
392
47b03ca9 393 raw_spin_unlock_irqrestore(&pctrl->lock, flags);
f365be09
BA
394
395 return 0;
396}
397
398static int msm_gpio_direction_output(struct gpio_chip *chip, unsigned offset, int value)
399{
400 const struct msm_pingroup *g;
fded3f40 401 struct msm_pinctrl *pctrl = gpiochip_get_data(chip);
f365be09
BA
402 unsigned long flags;
403 u32 val;
404
f365be09 405 g = &pctrl->soc->groups[offset];
f365be09 406
47b03ca9 407 raw_spin_lock_irqsave(&pctrl->lock, flags);
f365be09 408
e476e77f
AL
409 val = readl(pctrl->regs + g->io_reg);
410 if (value)
411 val |= BIT(g->out_bit);
412 else
413 val &= ~BIT(g->out_bit);
414 writel(val, pctrl->regs + g->io_reg);
f365be09
BA
415
416 val = readl(pctrl->regs + g->ctl_reg);
417 val |= BIT(g->oe_bit);
418 writel(val, pctrl->regs + g->ctl_reg);
419
47b03ca9 420 raw_spin_unlock_irqrestore(&pctrl->lock, flags);
f365be09
BA
421
422 return 0;
423}
424
8e515337
TT
425static int msm_gpio_get_direction(struct gpio_chip *chip, unsigned int offset)
426{
427 struct msm_pinctrl *pctrl = gpiochip_get_data(chip);
428 const struct msm_pingroup *g;
429 u32 val;
430
431 g = &pctrl->soc->groups[offset];
432
433 val = readl(pctrl->regs + g->ctl_reg);
434
435 /* 0 = output, 1 = input */
436 return val & BIT(g->oe_bit) ? 0 : 1;
437}
438
f365be09
BA
439static int msm_gpio_get(struct gpio_chip *chip, unsigned offset)
440{
441 const struct msm_pingroup *g;
fded3f40 442 struct msm_pinctrl *pctrl = gpiochip_get_data(chip);
f365be09
BA
443 u32 val;
444
f365be09
BA
445 g = &pctrl->soc->groups[offset];
446
447 val = readl(pctrl->regs + g->io_reg);
448 return !!(val & BIT(g->in_bit));
449}
450
451static void msm_gpio_set(struct gpio_chip *chip, unsigned offset, int value)
452{
453 const struct msm_pingroup *g;
fded3f40 454 struct msm_pinctrl *pctrl = gpiochip_get_data(chip);
f365be09
BA
455 unsigned long flags;
456 u32 val;
457
f365be09
BA
458 g = &pctrl->soc->groups[offset];
459
47b03ca9 460 raw_spin_lock_irqsave(&pctrl->lock, flags);
f365be09
BA
461
462 val = readl(pctrl->regs + g->io_reg);
e476e77f
AL
463 if (value)
464 val |= BIT(g->out_bit);
465 else
466 val &= ~BIT(g->out_bit);
f365be09
BA
467 writel(val, pctrl->regs + g->io_reg);
468
47b03ca9 469 raw_spin_unlock_irqrestore(&pctrl->lock, flags);
f365be09
BA
470}
471
f365be09
BA
472#ifdef CONFIG_DEBUG_FS
473#include <linux/seq_file.h>
474
475static void msm_gpio_dbg_show_one(struct seq_file *s,
476 struct pinctrl_dev *pctldev,
477 struct gpio_chip *chip,
478 unsigned offset,
479 unsigned gpio)
480{
481 const struct msm_pingroup *g;
fded3f40 482 struct msm_pinctrl *pctrl = gpiochip_get_data(chip);
f365be09
BA
483 unsigned func;
484 int is_out;
485 int drive;
486 int pull;
487 u32 ctl_reg;
488
1f2b2398 489 static const char * const pulls[] = {
f365be09
BA
490 "no pull",
491 "pull down",
492 "keeper",
493 "pull up"
494 };
495
496 g = &pctrl->soc->groups[offset];
497 ctl_reg = readl(pctrl->regs + g->ctl_reg);
498
499 is_out = !!(ctl_reg & BIT(g->oe_bit));
500 func = (ctl_reg >> g->mux_bit) & 7;
501 drive = (ctl_reg >> g->drv_bit) & 7;
502 pull = (ctl_reg >> g->pull_bit) & 3;
503
504 seq_printf(s, " %-8s: %-3s %d", g->name, is_out ? "out" : "in", func);
7cc34e2e 505 seq_printf(s, " %dmA", msm_regval_to_drive(drive));
f365be09
BA
506 seq_printf(s, " %s", pulls[pull]);
507}
508
509static void msm_gpio_dbg_show(struct seq_file *s, struct gpio_chip *chip)
510{
511 unsigned gpio = chip->base;
512 unsigned i;
513
514 for (i = 0; i < chip->ngpio; i++, gpio++) {
515 msm_gpio_dbg_show_one(s, NULL, chip, i, gpio);
1f2b2398 516 seq_puts(s, "\n");
f365be09
BA
517 }
518}
519
520#else
521#define msm_gpio_dbg_show NULL
522#endif
523
524static struct gpio_chip msm_gpio_template = {
525 .direction_input = msm_gpio_direction_input,
526 .direction_output = msm_gpio_direction_output,
8e515337 527 .get_direction = msm_gpio_get_direction,
f365be09
BA
528 .get = msm_gpio_get,
529 .set = msm_gpio_set,
98c85d58
JG
530 .request = gpiochip_generic_request,
531 .free = gpiochip_generic_free,
f365be09
BA
532 .dbg_show = msm_gpio_dbg_show,
533};
534
535/* For dual-edge interrupts in software, since some hardware has no
536 * such support:
537 *
538 * At appropriate moments, this function may be called to flip the polarity
539 * settings of both-edge irq lines to try and catch the next edge.
540 *
541 * The attempt is considered successful if:
542 * - the status bit goes high, indicating that an edge was caught, or
543 * - the input value of the gpio doesn't change during the attempt.
544 * If the value changes twice during the process, that would cause the first
545 * test to fail but would force the second, as two opposite
546 * transitions would cause a detection no matter the polarity setting.
547 *
548 * The do-loop tries to sledge-hammer closed the timing hole between
549 * the initial value-read and the polarity-write - if the line value changes
550 * during that window, an interrupt is lost, the new polarity setting is
551 * incorrect, and the first success test will fail, causing a retry.
552 *
553 * Algorithm comes from Google's msmgpio driver.
554 */
555static void msm_gpio_update_dual_edge_pos(struct msm_pinctrl *pctrl,
556 const struct msm_pingroup *g,
557 struct irq_data *d)
558{
559 int loop_limit = 100;
560 unsigned val, val2, intstat;
561 unsigned pol;
562
563 do {
564 val = readl(pctrl->regs + g->io_reg) & BIT(g->in_bit);
565
566 pol = readl(pctrl->regs + g->intr_cfg_reg);
567 pol ^= BIT(g->intr_polarity_bit);
568 writel(pol, pctrl->regs + g->intr_cfg_reg);
569
570 val2 = readl(pctrl->regs + g->io_reg) & BIT(g->in_bit);
571 intstat = readl(pctrl->regs + g->intr_status_reg);
572 if (intstat || (val == val2))
573 return;
574 } while (loop_limit-- > 0);
575 dev_err(pctrl->dev, "dual-edge irq failed to stabilize, %#08x != %#08x\n",
576 val, val2);
577}
578
579static void msm_gpio_irq_mask(struct irq_data *d)
580{
cdcb0ab6 581 struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
fded3f40 582 struct msm_pinctrl *pctrl = gpiochip_get_data(gc);
f365be09 583 const struct msm_pingroup *g;
f365be09
BA
584 unsigned long flags;
585 u32 val;
586
f365be09
BA
587 g = &pctrl->soc->groups[d->hwirq];
588
47b03ca9 589 raw_spin_lock_irqsave(&pctrl->lock, flags);
f365be09
BA
590
591 val = readl(pctrl->regs + g->intr_cfg_reg);
592 val &= ~BIT(g->intr_enable_bit);
593 writel(val, pctrl->regs + g->intr_cfg_reg);
594
595 clear_bit(d->hwirq, pctrl->enabled_irqs);
596
47b03ca9 597 raw_spin_unlock_irqrestore(&pctrl->lock, flags);
f365be09
BA
598}
599
600static void msm_gpio_irq_unmask(struct irq_data *d)
601{
cdcb0ab6 602 struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
fded3f40 603 struct msm_pinctrl *pctrl = gpiochip_get_data(gc);
f365be09 604 const struct msm_pingroup *g;
f365be09
BA
605 unsigned long flags;
606 u32 val;
607
f365be09
BA
608 g = &pctrl->soc->groups[d->hwirq];
609
47b03ca9 610 raw_spin_lock_irqsave(&pctrl->lock, flags);
f365be09
BA
611
612 val = readl(pctrl->regs + g->intr_status_reg);
613 val &= ~BIT(g->intr_status_bit);
614 writel(val, pctrl->regs + g->intr_status_reg);
615
616 val = readl(pctrl->regs + g->intr_cfg_reg);
617 val |= BIT(g->intr_enable_bit);
618 writel(val, pctrl->regs + g->intr_cfg_reg);
619
620 set_bit(d->hwirq, pctrl->enabled_irqs);
621
47b03ca9 622 raw_spin_unlock_irqrestore(&pctrl->lock, flags);
f365be09
BA
623}
624
625static void msm_gpio_irq_ack(struct irq_data *d)
626{
cdcb0ab6 627 struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
fded3f40 628 struct msm_pinctrl *pctrl = gpiochip_get_data(gc);
f365be09 629 const struct msm_pingroup *g;
f365be09
BA
630 unsigned long flags;
631 u32 val;
632
f365be09
BA
633 g = &pctrl->soc->groups[d->hwirq];
634
47b03ca9 635 raw_spin_lock_irqsave(&pctrl->lock, flags);
f365be09
BA
636
637 val = readl(pctrl->regs + g->intr_status_reg);
48f15e94
BA
638 if (g->intr_ack_high)
639 val |= BIT(g->intr_status_bit);
640 else
641 val &= ~BIT(g->intr_status_bit);
f365be09
BA
642 writel(val, pctrl->regs + g->intr_status_reg);
643
644 if (test_bit(d->hwirq, pctrl->dual_edge_irqs))
645 msm_gpio_update_dual_edge_pos(pctrl, g, d);
646
47b03ca9 647 raw_spin_unlock_irqrestore(&pctrl->lock, flags);
f365be09
BA
648}
649
f365be09
BA
650static int msm_gpio_irq_set_type(struct irq_data *d, unsigned int type)
651{
cdcb0ab6 652 struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
fded3f40 653 struct msm_pinctrl *pctrl = gpiochip_get_data(gc);
f365be09 654 const struct msm_pingroup *g;
f365be09
BA
655 unsigned long flags;
656 u32 val;
657
f365be09
BA
658 g = &pctrl->soc->groups[d->hwirq];
659
47b03ca9 660 raw_spin_lock_irqsave(&pctrl->lock, flags);
f365be09
BA
661
662 /*
663 * For hw without possibility of detecting both edges
664 */
665 if (g->intr_detection_width == 1 && type == IRQ_TYPE_EDGE_BOTH)
666 set_bit(d->hwirq, pctrl->dual_edge_irqs);
667 else
668 clear_bit(d->hwirq, pctrl->dual_edge_irqs);
669
670 /* Route interrupts to application cpu */
671 val = readl(pctrl->regs + g->intr_target_reg);
672 val &= ~(7 << g->intr_target_bit);
f712c554 673 val |= g->intr_target_kpss_val << g->intr_target_bit;
f365be09
BA
674 writel(val, pctrl->regs + g->intr_target_reg);
675
676 /* Update configuration for gpio.
677 * RAW_STATUS_EN is left on for all gpio irqs. Due to the
678 * internal circuitry of TLMM, toggling the RAW_STATUS
679 * could cause the INTR_STATUS to be set for EDGE interrupts.
680 */
681 val = readl(pctrl->regs + g->intr_cfg_reg);
682 val |= BIT(g->intr_raw_status_bit);
683 if (g->intr_detection_width == 2) {
684 val &= ~(3 << g->intr_detection_bit);
685 val &= ~(1 << g->intr_polarity_bit);
686 switch (type) {
687 case IRQ_TYPE_EDGE_RISING:
688 val |= 1 << g->intr_detection_bit;
689 val |= BIT(g->intr_polarity_bit);
690 break;
691 case IRQ_TYPE_EDGE_FALLING:
692 val |= 2 << g->intr_detection_bit;
693 val |= BIT(g->intr_polarity_bit);
694 break;
695 case IRQ_TYPE_EDGE_BOTH:
696 val |= 3 << g->intr_detection_bit;
697 val |= BIT(g->intr_polarity_bit);
698 break;
699 case IRQ_TYPE_LEVEL_LOW:
700 break;
701 case IRQ_TYPE_LEVEL_HIGH:
702 val |= BIT(g->intr_polarity_bit);
703 break;
704 }
705 } else if (g->intr_detection_width == 1) {
706 val &= ~(1 << g->intr_detection_bit);
707 val &= ~(1 << g->intr_polarity_bit);
708 switch (type) {
709 case IRQ_TYPE_EDGE_RISING:
710 val |= BIT(g->intr_detection_bit);
711 val |= BIT(g->intr_polarity_bit);
712 break;
713 case IRQ_TYPE_EDGE_FALLING:
714 val |= BIT(g->intr_detection_bit);
715 break;
716 case IRQ_TYPE_EDGE_BOTH:
717 val |= BIT(g->intr_detection_bit);
48f15e94 718 val |= BIT(g->intr_polarity_bit);
f365be09
BA
719 break;
720 case IRQ_TYPE_LEVEL_LOW:
721 break;
722 case IRQ_TYPE_LEVEL_HIGH:
723 val |= BIT(g->intr_polarity_bit);
724 break;
725 }
726 } else {
727 BUG();
728 }
729 writel(val, pctrl->regs + g->intr_cfg_reg);
730
731 if (test_bit(d->hwirq, pctrl->dual_edge_irqs))
732 msm_gpio_update_dual_edge_pos(pctrl, g, d);
733
47b03ca9 734 raw_spin_unlock_irqrestore(&pctrl->lock, flags);
f365be09
BA
735
736 if (type & (IRQ_TYPE_LEVEL_LOW | IRQ_TYPE_LEVEL_HIGH))
34c0ad84 737 irq_set_handler_locked(d, handle_level_irq);
f365be09 738 else if (type & (IRQ_TYPE_EDGE_FALLING | IRQ_TYPE_EDGE_RISING))
34c0ad84 739 irq_set_handler_locked(d, handle_edge_irq);
f365be09
BA
740
741 return 0;
742}
743
744static int msm_gpio_irq_set_wake(struct irq_data *d, unsigned int on)
745{
cdcb0ab6 746 struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
fded3f40 747 struct msm_pinctrl *pctrl = gpiochip_get_data(gc);
f365be09 748 unsigned long flags;
f365be09 749
47b03ca9 750 raw_spin_lock_irqsave(&pctrl->lock, flags);
f365be09 751
6aced33f 752 irq_set_irq_wake(pctrl->irq, on);
f365be09 753
47b03ca9 754 raw_spin_unlock_irqrestore(&pctrl->lock, flags);
f365be09
BA
755
756 return 0;
757}
758
f365be09
BA
759static struct irq_chip msm_gpio_irq_chip = {
760 .name = "msmgpio",
761 .irq_mask = msm_gpio_irq_mask,
762 .irq_unmask = msm_gpio_irq_unmask,
763 .irq_ack = msm_gpio_irq_ack,
764 .irq_set_type = msm_gpio_irq_set_type,
765 .irq_set_wake = msm_gpio_irq_set_wake,
f365be09
BA
766};
767
bd0b9ac4 768static void msm_gpio_irq_handler(struct irq_desc *desc)
f365be09 769{
cdcb0ab6 770 struct gpio_chip *gc = irq_desc_get_handler_data(desc);
f365be09 771 const struct msm_pingroup *g;
fded3f40 772 struct msm_pinctrl *pctrl = gpiochip_get_data(gc);
5663bb27 773 struct irq_chip *chip = irq_desc_get_chip(desc);
f365be09
BA
774 int irq_pin;
775 int handled = 0;
776 u32 val;
777 int i;
778
779 chained_irq_enter(chip, desc);
780
781 /*
1f2b2398 782 * Each pin has it's own IRQ status register, so use
f365be09
BA
783 * enabled_irq bitmap to limit the number of reads.
784 */
785 for_each_set_bit(i, pctrl->enabled_irqs, pctrl->chip.ngpio) {
786 g = &pctrl->soc->groups[i];
787 val = readl(pctrl->regs + g->intr_status_reg);
788 if (val & BIT(g->intr_status_bit)) {
cdcb0ab6 789 irq_pin = irq_find_mapping(gc->irqdomain, i);
f365be09
BA
790 generic_handle_irq(irq_pin);
791 handled++;
792 }
793 }
794
1f2b2398 795 /* No interrupts were flagged */
f365be09 796 if (handled == 0)
bd0b9ac4 797 handle_bad_irq(desc);
f365be09
BA
798
799 chained_irq_exit(chip, desc);
800}
801
802static int msm_gpio_init(struct msm_pinctrl *pctrl)
803{
804 struct gpio_chip *chip;
f365be09 805 int ret;
dcd278b8
SB
806 unsigned ngpio = pctrl->soc->ngpios;
807
808 if (WARN_ON(ngpio > MAX_NR_GPIO))
809 return -EINVAL;
f365be09
BA
810
811 chip = &pctrl->chip;
812 chip->base = 0;
dcd278b8 813 chip->ngpio = ngpio;
f365be09 814 chip->label = dev_name(pctrl->dev);
58383c78 815 chip->parent = pctrl->dev;
f365be09
BA
816 chip->owner = THIS_MODULE;
817 chip->of_node = pctrl->dev->of_node;
818
fded3f40 819 ret = gpiochip_add_data(&pctrl->chip, pctrl);
f365be09
BA
820 if (ret) {
821 dev_err(pctrl->dev, "Failed register gpiochip\n");
822 return ret;
823 }
824
825 ret = gpiochip_add_pin_range(&pctrl->chip, dev_name(pctrl->dev), 0, 0, chip->ngpio);
826 if (ret) {
827 dev_err(pctrl->dev, "Failed to add pin range\n");
c6e927a2 828 gpiochip_remove(&pctrl->chip);
f365be09
BA
829 return ret;
830 }
831
cdcb0ab6
LW
832 ret = gpiochip_irqchip_add(chip,
833 &msm_gpio_irq_chip,
834 0,
835 handle_edge_irq,
836 IRQ_TYPE_NONE);
837 if (ret) {
838 dev_err(pctrl->dev, "Failed to add irqchip to gpiochip\n");
c6e927a2 839 gpiochip_remove(&pctrl->chip);
f365be09
BA
840 return -ENOSYS;
841 }
842
cdcb0ab6
LW
843 gpiochip_set_chained_irqchip(chip, &msm_gpio_irq_chip, pctrl->irq,
844 msm_gpio_irq_handler);
f365be09
BA
845
846 return 0;
847}
848
cf1fc187
JC
849static int msm_ps_hold_restart(struct notifier_block *nb, unsigned long action,
850 void *data)
32745581 851{
cf1fc187
JC
852 struct msm_pinctrl *pctrl = container_of(nb, struct msm_pinctrl, restart_nb);
853
854 writel(0, pctrl->regs + PS_HOLD_OFFSET);
855 mdelay(1000);
856 return NOTIFY_DONE;
32745581
PG
857}
858
ad644987
SB
859static struct msm_pinctrl *poweroff_pctrl;
860
861static void msm_ps_hold_poweroff(void)
862{
863 msm_ps_hold_restart(&poweroff_pctrl->restart_nb, 0, NULL);
864}
865
32745581
PG
866static void msm_pinctrl_setup_pm_reset(struct msm_pinctrl *pctrl)
867{
bcd53f85 868 int i;
32745581
PG
869 const struct msm_function *func = pctrl->soc->functions;
870
bcd53f85 871 for (i = 0; i < pctrl->soc->nfunctions; i++)
32745581 872 if (!strcmp(func[i].name, "ps_hold")) {
cf1fc187
JC
873 pctrl->restart_nb.notifier_call = msm_ps_hold_restart;
874 pctrl->restart_nb.priority = 128;
875 if (register_restart_handler(&pctrl->restart_nb))
876 dev_err(pctrl->dev,
877 "failed to setup restart handler.\n");
ad644987
SB
878 poweroff_pctrl = pctrl;
879 pm_power_off = msm_ps_hold_poweroff;
cf1fc187 880 break;
32745581
PG
881 }
882}
32745581 883
f365be09
BA
884int msm_pinctrl_probe(struct platform_device *pdev,
885 const struct msm_pinctrl_soc_data *soc_data)
886{
887 struct msm_pinctrl *pctrl;
888 struct resource *res;
889 int ret;
890
891 pctrl = devm_kzalloc(&pdev->dev, sizeof(*pctrl), GFP_KERNEL);
892 if (!pctrl) {
893 dev_err(&pdev->dev, "Can't allocate msm_pinctrl\n");
894 return -ENOMEM;
895 }
896 pctrl->dev = &pdev->dev;
897 pctrl->soc = soc_data;
898 pctrl->chip = msm_gpio_template;
899
47b03ca9 900 raw_spin_lock_init(&pctrl->lock);
f365be09
BA
901
902 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
903 pctrl->regs = devm_ioremap_resource(&pdev->dev, res);
904 if (IS_ERR(pctrl->regs))
905 return PTR_ERR(pctrl->regs);
906
32745581
PG
907 msm_pinctrl_setup_pm_reset(pctrl);
908
f393e489 909 pctrl->irq = platform_get_irq(pdev, 0);
f365be09
BA
910 if (pctrl->irq < 0) {
911 dev_err(&pdev->dev, "No interrupt defined for msmgpio\n");
912 return pctrl->irq;
913 }
914
915 msm_pinctrl_desc.name = dev_name(&pdev->dev);
916 msm_pinctrl_desc.pins = pctrl->soc->pins;
917 msm_pinctrl_desc.npins = pctrl->soc->npins;
fe0267f4
LD
918 pctrl->pctrl = devm_pinctrl_register(&pdev->dev, &msm_pinctrl_desc,
919 pctrl);
323de9ef 920 if (IS_ERR(pctrl->pctrl)) {
f365be09 921 dev_err(&pdev->dev, "Couldn't register pinctrl driver\n");
323de9ef 922 return PTR_ERR(pctrl->pctrl);
f365be09
BA
923 }
924
925 ret = msm_gpio_init(pctrl);
fe0267f4 926 if (ret)
f365be09 927 return ret;
f365be09
BA
928
929 platform_set_drvdata(pdev, pctrl);
930
931 dev_dbg(&pdev->dev, "Probed Qualcomm pinctrl driver\n");
932
933 return 0;
934}
935EXPORT_SYMBOL(msm_pinctrl_probe);
936
937int msm_pinctrl_remove(struct platform_device *pdev)
938{
939 struct msm_pinctrl *pctrl = platform_get_drvdata(pdev);
f393e489 940
2fcea6ce 941 gpiochip_remove(&pctrl->chip);
f365be09 942
cf1fc187
JC
943 unregister_restart_handler(&pctrl->restart_nb);
944
f365be09
BA
945 return 0;
946}
947EXPORT_SYMBOL(msm_pinctrl_remove);
948