1 // SPDX-License-Identifier: GPL-2.0+
3 // Exynos specific support for Samsung pinctrl/gpiolib driver with eint support.
5 // Copyright (c) 2012 Samsung Electronics Co., Ltd.
6 // http://www.samsung.com
7 // Copyright (c) 2012 Linaro Ltd
8 // http://www.linaro.org
10 // Author: Thomas Abraham <thomas.ab@samsung.com>
12 // This file contains the Samsung Exynos specific information required by the
13 // the Samsung pinctrl/gpiolib driver. It also includes the implementation of
14 // external gpio and wakeup interrupt support.
16 #include <linux/device.h>
17 #include <linux/interrupt.h>
18 #include <linux/irqdomain.h>
19 #include <linux/irq.h>
20 #include <linux/irqchip/chained_irq.h>
22 #include <linux/of_irq.h>
23 #include <linux/slab.h>
24 #include <linux/spinlock.h>
25 #include <linux/regmap.h>
26 #include <linux/err.h>
27 #include <linux/soc/samsung/exynos-pmu.h>
29 #include <dt-bindings/pinctrl/samsung.h>
31 #include "pinctrl-samsung.h"
32 #include "pinctrl-exynos.h"
34 struct exynos_irq_chip
{
42 static inline struct exynos_irq_chip
*to_exynos_irq_chip(struct irq_chip
*chip
)
44 return container_of(chip
, struct exynos_irq_chip
, chip
);
47 static void exynos_irq_mask(struct irq_data
*irqd
)
49 struct irq_chip
*chip
= irq_data_get_irq_chip(irqd
);
50 struct exynos_irq_chip
*our_chip
= to_exynos_irq_chip(chip
);
51 struct samsung_pin_bank
*bank
= irq_data_get_irq_chip_data(irqd
);
52 unsigned long reg_mask
= our_chip
->eint_mask
+ bank
->eint_offset
;
56 spin_lock_irqsave(&bank
->slock
, flags
);
58 mask
= readl(bank
->eint_base
+ reg_mask
);
59 mask
|= 1 << irqd
->hwirq
;
60 writel(mask
, bank
->eint_base
+ reg_mask
);
62 spin_unlock_irqrestore(&bank
->slock
, flags
);
65 static void exynos_irq_ack(struct irq_data
*irqd
)
67 struct irq_chip
*chip
= irq_data_get_irq_chip(irqd
);
68 struct exynos_irq_chip
*our_chip
= to_exynos_irq_chip(chip
);
69 struct samsung_pin_bank
*bank
= irq_data_get_irq_chip_data(irqd
);
70 unsigned long reg_pend
= our_chip
->eint_pend
+ bank
->eint_offset
;
72 writel(1 << irqd
->hwirq
, bank
->eint_base
+ reg_pend
);
75 static void exynos_irq_unmask(struct irq_data
*irqd
)
77 struct irq_chip
*chip
= irq_data_get_irq_chip(irqd
);
78 struct exynos_irq_chip
*our_chip
= to_exynos_irq_chip(chip
);
79 struct samsung_pin_bank
*bank
= irq_data_get_irq_chip_data(irqd
);
80 unsigned long reg_mask
= our_chip
->eint_mask
+ bank
->eint_offset
;
85 * Ack level interrupts right before unmask
87 * If we don't do this we'll get a double-interrupt. Level triggered
88 * interrupts must not fire an interrupt if the level is not
89 * _currently_ active, even if it was active while the interrupt was
92 if (irqd_get_trigger_type(irqd
) & IRQ_TYPE_LEVEL_MASK
)
95 spin_lock_irqsave(&bank
->slock
, flags
);
97 mask
= readl(bank
->eint_base
+ reg_mask
);
98 mask
&= ~(1 << irqd
->hwirq
);
99 writel(mask
, bank
->eint_base
+ reg_mask
);
101 spin_unlock_irqrestore(&bank
->slock
, flags
);
104 static int exynos_irq_set_type(struct irq_data
*irqd
, unsigned int type
)
106 struct irq_chip
*chip
= irq_data_get_irq_chip(irqd
);
107 struct exynos_irq_chip
*our_chip
= to_exynos_irq_chip(chip
);
108 struct samsung_pin_bank
*bank
= irq_data_get_irq_chip_data(irqd
);
109 unsigned int shift
= EXYNOS_EINT_CON_LEN
* irqd
->hwirq
;
110 unsigned int con
, trig_type
;
111 unsigned long reg_con
= our_chip
->eint_con
+ bank
->eint_offset
;
114 case IRQ_TYPE_EDGE_RISING
:
115 trig_type
= EXYNOS_EINT_EDGE_RISING
;
117 case IRQ_TYPE_EDGE_FALLING
:
118 trig_type
= EXYNOS_EINT_EDGE_FALLING
;
120 case IRQ_TYPE_EDGE_BOTH
:
121 trig_type
= EXYNOS_EINT_EDGE_BOTH
;
123 case IRQ_TYPE_LEVEL_HIGH
:
124 trig_type
= EXYNOS_EINT_LEVEL_HIGH
;
126 case IRQ_TYPE_LEVEL_LOW
:
127 trig_type
= EXYNOS_EINT_LEVEL_LOW
;
130 pr_err("unsupported external interrupt type\n");
134 if (type
& IRQ_TYPE_EDGE_BOTH
)
135 irq_set_handler_locked(irqd
, handle_edge_irq
);
137 irq_set_handler_locked(irqd
, handle_level_irq
);
139 con
= readl(bank
->eint_base
+ reg_con
);
140 con
&= ~(EXYNOS_EINT_CON_MASK
<< shift
);
141 con
|= trig_type
<< shift
;
142 writel(con
, bank
->eint_base
+ reg_con
);
147 static int exynos_irq_request_resources(struct irq_data
*irqd
)
149 struct samsung_pin_bank
*bank
= irq_data_get_irq_chip_data(irqd
);
150 const struct samsung_pin_bank_type
*bank_type
= bank
->type
;
151 unsigned long reg_con
, flags
;
152 unsigned int shift
, mask
, con
;
155 ret
= gpiochip_lock_as_irq(&bank
->gpio_chip
, irqd
->hwirq
);
157 dev_err(bank
->gpio_chip
.parent
,
158 "unable to lock pin %s-%lu IRQ\n",
159 bank
->name
, irqd
->hwirq
);
163 reg_con
= bank
->pctl_offset
+ bank_type
->reg_offset
[PINCFG_TYPE_FUNC
];
164 shift
= irqd
->hwirq
* bank_type
->fld_width
[PINCFG_TYPE_FUNC
];
165 mask
= (1 << bank_type
->fld_width
[PINCFG_TYPE_FUNC
]) - 1;
167 spin_lock_irqsave(&bank
->slock
, flags
);
169 con
= readl(bank
->pctl_base
+ reg_con
);
170 con
&= ~(mask
<< shift
);
171 con
|= EXYNOS_PIN_FUNC_EINT
<< shift
;
172 writel(con
, bank
->pctl_base
+ reg_con
);
174 spin_unlock_irqrestore(&bank
->slock
, flags
);
179 static void exynos_irq_release_resources(struct irq_data
*irqd
)
181 struct samsung_pin_bank
*bank
= irq_data_get_irq_chip_data(irqd
);
182 const struct samsung_pin_bank_type
*bank_type
= bank
->type
;
183 unsigned long reg_con
, flags
;
184 unsigned int shift
, mask
, con
;
186 reg_con
= bank
->pctl_offset
+ bank_type
->reg_offset
[PINCFG_TYPE_FUNC
];
187 shift
= irqd
->hwirq
* bank_type
->fld_width
[PINCFG_TYPE_FUNC
];
188 mask
= (1 << bank_type
->fld_width
[PINCFG_TYPE_FUNC
]) - 1;
190 spin_lock_irqsave(&bank
->slock
, flags
);
192 con
= readl(bank
->pctl_base
+ reg_con
);
193 con
&= ~(mask
<< shift
);
194 con
|= EXYNOS_PIN_FUNC_INPUT
<< shift
;
195 writel(con
, bank
->pctl_base
+ reg_con
);
197 spin_unlock_irqrestore(&bank
->slock
, flags
);
199 gpiochip_unlock_as_irq(&bank
->gpio_chip
, irqd
->hwirq
);
203 * irq_chip for gpio interrupts.
205 static struct exynos_irq_chip exynos_gpio_irq_chip
= {
207 .name
= "exynos_gpio_irq_chip",
208 .irq_unmask
= exynos_irq_unmask
,
209 .irq_mask
= exynos_irq_mask
,
210 .irq_ack
= exynos_irq_ack
,
211 .irq_set_type
= exynos_irq_set_type
,
212 .irq_request_resources
= exynos_irq_request_resources
,
213 .irq_release_resources
= exynos_irq_release_resources
,
215 .eint_con
= EXYNOS_GPIO_ECON_OFFSET
,
216 .eint_mask
= EXYNOS_GPIO_EMASK_OFFSET
,
217 .eint_pend
= EXYNOS_GPIO_EPEND_OFFSET
,
220 static int exynos_eint_irq_map(struct irq_domain
*h
, unsigned int virq
,
223 struct samsung_pin_bank
*b
= h
->host_data
;
225 irq_set_chip_data(virq
, b
);
226 irq_set_chip_and_handler(virq
, &b
->irq_chip
->chip
,
232 * irq domain callbacks for external gpio and wakeup interrupt controllers.
234 static const struct irq_domain_ops exynos_eint_irqd_ops
= {
235 .map
= exynos_eint_irq_map
,
236 .xlate
= irq_domain_xlate_twocell
,
239 static irqreturn_t
exynos_eint_gpio_irq(int irq
, void *data
)
241 struct samsung_pinctrl_drv_data
*d
= data
;
242 struct samsung_pin_bank
*bank
= d
->pin_banks
;
243 unsigned int svc
, group
, pin
, virq
;
245 svc
= readl(bank
->eint_base
+ EXYNOS_SVC_OFFSET
);
246 group
= EXYNOS_SVC_GROUP(svc
);
247 pin
= svc
& EXYNOS_SVC_NUM_MASK
;
253 virq
= irq_linear_revmap(bank
->irq_domain
, pin
);
256 generic_handle_irq(virq
);
260 struct exynos_eint_gpio_save
{
267 * exynos_eint_gpio_init() - setup handling of external gpio interrupts.
268 * @d: driver data of samsung pinctrl driver.
270 int exynos_eint_gpio_init(struct samsung_pinctrl_drv_data
*d
)
272 struct samsung_pin_bank
*bank
;
273 struct device
*dev
= d
->dev
;
278 dev_err(dev
, "irq number not available\n");
282 ret
= devm_request_irq(dev
, d
->irq
, exynos_eint_gpio_irq
,
283 0, dev_name(dev
), d
);
285 dev_err(dev
, "irq request failed\n");
290 for (i
= 0; i
< d
->nr_banks
; ++i
, ++bank
) {
291 if (bank
->eint_type
!= EINT_TYPE_GPIO
)
293 bank
->irq_domain
= irq_domain_add_linear(bank
->of_node
,
294 bank
->nr_pins
, &exynos_eint_irqd_ops
, bank
);
295 if (!bank
->irq_domain
) {
296 dev_err(dev
, "gpio irq domain add failed\n");
301 bank
->soc_priv
= devm_kzalloc(d
->dev
,
302 sizeof(struct exynos_eint_gpio_save
), GFP_KERNEL
);
303 if (!bank
->soc_priv
) {
304 irq_domain_remove(bank
->irq_domain
);
309 bank
->irq_chip
= &exynos_gpio_irq_chip
;
315 for (--i
, --bank
; i
>= 0; --i
, --bank
) {
316 if (bank
->eint_type
!= EINT_TYPE_GPIO
)
318 irq_domain_remove(bank
->irq_domain
);
324 static u32 exynos_eint_wake_mask
= 0xffffffff;
326 u32
exynos_get_eint_wake_mask(void)
328 return exynos_eint_wake_mask
;
331 static int exynos_wkup_irq_set_wake(struct irq_data
*irqd
, unsigned int on
)
333 struct samsung_pin_bank
*bank
= irq_data_get_irq_chip_data(irqd
);
334 unsigned long bit
= 1UL << (2 * bank
->eint_offset
+ irqd
->hwirq
);
336 pr_info("wake %s for irq %d\n", on
? "enabled" : "disabled", irqd
->irq
);
339 exynos_eint_wake_mask
|= bit
;
341 exynos_eint_wake_mask
&= ~bit
;
347 * irq_chip for wakeup interrupts
349 static const struct exynos_irq_chip exynos4210_wkup_irq_chip __initconst
= {
351 .name
= "exynos4210_wkup_irq_chip",
352 .irq_unmask
= exynos_irq_unmask
,
353 .irq_mask
= exynos_irq_mask
,
354 .irq_ack
= exynos_irq_ack
,
355 .irq_set_type
= exynos_irq_set_type
,
356 .irq_set_wake
= exynos_wkup_irq_set_wake
,
357 .irq_request_resources
= exynos_irq_request_resources
,
358 .irq_release_resources
= exynos_irq_release_resources
,
360 .eint_con
= EXYNOS_WKUP_ECON_OFFSET
,
361 .eint_mask
= EXYNOS_WKUP_EMASK_OFFSET
,
362 .eint_pend
= EXYNOS_WKUP_EPEND_OFFSET
,
365 static const struct exynos_irq_chip exynos7_wkup_irq_chip __initconst
= {
367 .name
= "exynos7_wkup_irq_chip",
368 .irq_unmask
= exynos_irq_unmask
,
369 .irq_mask
= exynos_irq_mask
,
370 .irq_ack
= exynos_irq_ack
,
371 .irq_set_type
= exynos_irq_set_type
,
372 .irq_set_wake
= exynos_wkup_irq_set_wake
,
373 .irq_request_resources
= exynos_irq_request_resources
,
374 .irq_release_resources
= exynos_irq_release_resources
,
376 .eint_con
= EXYNOS7_WKUP_ECON_OFFSET
,
377 .eint_mask
= EXYNOS7_WKUP_EMASK_OFFSET
,
378 .eint_pend
= EXYNOS7_WKUP_EPEND_OFFSET
,
381 /* list of external wakeup controllers supported */
382 static const struct of_device_id exynos_wkup_irq_ids
[] = {
383 { .compatible
= "samsung,exynos4210-wakeup-eint",
384 .data
= &exynos4210_wkup_irq_chip
},
385 { .compatible
= "samsung,exynos7-wakeup-eint",
386 .data
= &exynos7_wkup_irq_chip
},
390 /* interrupt handler for wakeup interrupts 0..15 */
391 static void exynos_irq_eint0_15(struct irq_desc
*desc
)
393 struct exynos_weint_data
*eintd
= irq_desc_get_handler_data(desc
);
394 struct samsung_pin_bank
*bank
= eintd
->bank
;
395 struct irq_chip
*chip
= irq_desc_get_chip(desc
);
398 chained_irq_enter(chip
, desc
);
400 eint_irq
= irq_linear_revmap(bank
->irq_domain
, eintd
->irq
);
401 generic_handle_irq(eint_irq
);
403 chained_irq_exit(chip
, desc
);
406 static inline void exynos_irq_demux_eint(unsigned long pend
,
407 struct irq_domain
*domain
)
413 generic_handle_irq(irq_find_mapping(domain
, irq
));
418 /* interrupt handler for wakeup interrupt 16 */
419 static void exynos_irq_demux_eint16_31(struct irq_desc
*desc
)
421 struct irq_chip
*chip
= irq_desc_get_chip(desc
);
422 struct exynos_muxed_weint_data
*eintd
= irq_desc_get_handler_data(desc
);
427 chained_irq_enter(chip
, desc
);
429 for (i
= 0; i
< eintd
->nr_banks
; ++i
) {
430 struct samsung_pin_bank
*b
= eintd
->banks
[i
];
431 pend
= readl(b
->eint_base
+ b
->irq_chip
->eint_pend
433 mask
= readl(b
->eint_base
+ b
->irq_chip
->eint_mask
435 exynos_irq_demux_eint(pend
& ~mask
, b
->irq_domain
);
438 chained_irq_exit(chip
, desc
);
442 * exynos_eint_wkup_init() - setup handling of external wakeup interrupts.
443 * @d: driver data of samsung pinctrl driver.
445 int exynos_eint_wkup_init(struct samsung_pinctrl_drv_data
*d
)
447 struct device
*dev
= d
->dev
;
448 struct device_node
*wkup_np
= NULL
;
449 struct device_node
*np
;
450 struct samsung_pin_bank
*bank
;
451 struct exynos_weint_data
*weint_data
;
452 struct exynos_muxed_weint_data
*muxed_data
;
453 struct exynos_irq_chip
*irq_chip
;
454 unsigned int muxed_banks
= 0;
458 for_each_child_of_node(dev
->of_node
, np
) {
459 const struct of_device_id
*match
;
461 match
= of_match_node(exynos_wkup_irq_ids
, np
);
463 irq_chip
= kmemdup(match
->data
,
464 sizeof(*irq_chip
), GFP_KERNEL
);
475 for (i
= 0; i
< d
->nr_banks
; ++i
, ++bank
) {
476 if (bank
->eint_type
!= EINT_TYPE_WKUP
)
479 bank
->irq_domain
= irq_domain_add_linear(bank
->of_node
,
480 bank
->nr_pins
, &exynos_eint_irqd_ops
, bank
);
481 if (!bank
->irq_domain
) {
482 dev_err(dev
, "wkup irq domain add failed\n");
486 bank
->irq_chip
= irq_chip
;
488 if (!of_find_property(bank
->of_node
, "interrupts", NULL
)) {
489 bank
->eint_type
= EINT_TYPE_WKUP_MUX
;
494 weint_data
= devm_kzalloc(dev
, bank
->nr_pins
495 * sizeof(*weint_data
), GFP_KERNEL
);
499 for (idx
= 0; idx
< bank
->nr_pins
; ++idx
) {
500 irq
= irq_of_parse_and_map(bank
->of_node
, idx
);
502 dev_err(dev
, "irq number for eint-%s-%d not found\n",
506 weint_data
[idx
].irq
= idx
;
507 weint_data
[idx
].bank
= bank
;
508 irq_set_chained_handler_and_data(irq
,
517 irq
= irq_of_parse_and_map(wkup_np
, 0);
519 dev_err(dev
, "irq number for muxed EINTs not found\n");
523 muxed_data
= devm_kzalloc(dev
, sizeof(*muxed_data
)
524 + muxed_banks
*sizeof(struct samsung_pin_bank
*), GFP_KERNEL
);
528 irq_set_chained_handler_and_data(irq
, exynos_irq_demux_eint16_31
,
533 for (i
= 0; i
< d
->nr_banks
; ++i
, ++bank
) {
534 if (bank
->eint_type
!= EINT_TYPE_WKUP_MUX
)
537 muxed_data
->banks
[idx
++] = bank
;
539 muxed_data
->nr_banks
= muxed_banks
;
544 static void exynos_pinctrl_suspend_bank(
545 struct samsung_pinctrl_drv_data
*drvdata
,
546 struct samsung_pin_bank
*bank
)
548 struct exynos_eint_gpio_save
*save
= bank
->soc_priv
;
549 void __iomem
*regs
= bank
->eint_base
;
551 save
->eint_con
= readl(regs
+ EXYNOS_GPIO_ECON_OFFSET
552 + bank
->eint_offset
);
553 save
->eint_fltcon0
= readl(regs
+ EXYNOS_GPIO_EFLTCON_OFFSET
554 + 2 * bank
->eint_offset
);
555 save
->eint_fltcon1
= readl(regs
+ EXYNOS_GPIO_EFLTCON_OFFSET
556 + 2 * bank
->eint_offset
+ 4);
558 pr_debug("%s: save con %#010x\n", bank
->name
, save
->eint_con
);
559 pr_debug("%s: save fltcon0 %#010x\n", bank
->name
, save
->eint_fltcon0
);
560 pr_debug("%s: save fltcon1 %#010x\n", bank
->name
, save
->eint_fltcon1
);
563 void exynos_pinctrl_suspend(struct samsung_pinctrl_drv_data
*drvdata
)
565 struct samsung_pin_bank
*bank
= drvdata
->pin_banks
;
568 for (i
= 0; i
< drvdata
->nr_banks
; ++i
, ++bank
)
569 if (bank
->eint_type
== EINT_TYPE_GPIO
)
570 exynos_pinctrl_suspend_bank(drvdata
, bank
);
573 static void exynos_pinctrl_resume_bank(
574 struct samsung_pinctrl_drv_data
*drvdata
,
575 struct samsung_pin_bank
*bank
)
577 struct exynos_eint_gpio_save
*save
= bank
->soc_priv
;
578 void __iomem
*regs
= bank
->eint_base
;
580 pr_debug("%s: con %#010x => %#010x\n", bank
->name
,
581 readl(regs
+ EXYNOS_GPIO_ECON_OFFSET
582 + bank
->eint_offset
), save
->eint_con
);
583 pr_debug("%s: fltcon0 %#010x => %#010x\n", bank
->name
,
584 readl(regs
+ EXYNOS_GPIO_EFLTCON_OFFSET
585 + 2 * bank
->eint_offset
), save
->eint_fltcon0
);
586 pr_debug("%s: fltcon1 %#010x => %#010x\n", bank
->name
,
587 readl(regs
+ EXYNOS_GPIO_EFLTCON_OFFSET
588 + 2 * bank
->eint_offset
+ 4), save
->eint_fltcon1
);
590 writel(save
->eint_con
, regs
+ EXYNOS_GPIO_ECON_OFFSET
591 + bank
->eint_offset
);
592 writel(save
->eint_fltcon0
, regs
+ EXYNOS_GPIO_EFLTCON_OFFSET
593 + 2 * bank
->eint_offset
);
594 writel(save
->eint_fltcon1
, regs
+ EXYNOS_GPIO_EFLTCON_OFFSET
595 + 2 * bank
->eint_offset
+ 4);
598 void exynos_pinctrl_resume(struct samsung_pinctrl_drv_data
*drvdata
)
600 struct samsung_pin_bank
*bank
= drvdata
->pin_banks
;
603 for (i
= 0; i
< drvdata
->nr_banks
; ++i
, ++bank
)
604 if (bank
->eint_type
== EINT_TYPE_GPIO
)
605 exynos_pinctrl_resume_bank(drvdata
, bank
);
608 static void exynos_retention_enable(struct samsung_pinctrl_drv_data
*drvdata
)
610 if (drvdata
->retention_ctrl
->refcnt
)
611 atomic_inc(drvdata
->retention_ctrl
->refcnt
);
614 static void exynos_retention_disable(struct samsung_pinctrl_drv_data
*drvdata
)
616 struct samsung_retention_ctrl
*ctrl
= drvdata
->retention_ctrl
;
617 struct regmap
*pmu_regs
= ctrl
->priv
;
620 if (ctrl
->refcnt
&& !atomic_dec_and_test(ctrl
->refcnt
))
623 for (i
= 0; i
< ctrl
->nr_regs
; i
++)
624 regmap_write(pmu_regs
, ctrl
->regs
[i
], ctrl
->value
);
627 struct samsung_retention_ctrl
*
628 exynos_retention_init(struct samsung_pinctrl_drv_data
*drvdata
,
629 const struct samsung_retention_data
*data
)
631 struct samsung_retention_ctrl
*ctrl
;
632 struct regmap
*pmu_regs
;
635 ctrl
= devm_kzalloc(drvdata
->dev
, sizeof(*ctrl
), GFP_KERNEL
);
637 return ERR_PTR(-ENOMEM
);
639 pmu_regs
= exynos_get_pmu_regmap();
640 if (IS_ERR(pmu_regs
))
641 return ERR_CAST(pmu_regs
);
643 ctrl
->priv
= pmu_regs
;
644 ctrl
->regs
= data
->regs
;
645 ctrl
->nr_regs
= data
->nr_regs
;
646 ctrl
->value
= data
->value
;
647 ctrl
->refcnt
= data
->refcnt
;
648 ctrl
->enable
= exynos_retention_enable
;
649 ctrl
->disable
= exynos_retention_disable
;
651 /* Ensure that retention is disabled on driver init */
652 for (i
= 0; i
< ctrl
->nr_regs
; i
++)
653 regmap_write(pmu_regs
, ctrl
->regs
[i
], ctrl
->value
);