2 * Exynos specific support for Samsung pinctrl/gpiolib driver with eint support.
4 * Copyright (c) 2012 Samsung Electronics Co., Ltd.
5 * http://www.samsung.com
6 * Copyright (c) 2012 Linaro Ltd
7 * http://www.linaro.org
9 * Author: Thomas Abraham <thomas.ab@samsung.com>
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
16 * This file contains the Samsung Exynos specific information required by the
17 * the Samsung pinctrl/gpiolib driver. It also includes the implementation of
18 * external gpio and wakeup interrupt support.
21 #include <linux/module.h>
22 #include <linux/device.h>
23 #include <linux/interrupt.h>
24 #include <linux/irqdomain.h>
25 #include <linux/irq.h>
26 #include <linux/of_irq.h>
28 #include <linux/slab.h>
29 #include <linux/err.h>
31 #include <asm/mach/irq.h>
33 #include "pinctrl-samsung.h"
34 #include "pinctrl-exynos.h"
36 /* list of external wakeup controllers supported */
37 static const struct of_device_id exynos_wkup_irq_ids
[] = {
38 { .compatible
= "samsung,exynos4210-wakeup-eint", },
42 static void exynos_gpio_irq_unmask(struct irq_data
*irqd
)
44 struct samsung_pin_bank
*bank
= irq_data_get_irq_chip_data(irqd
);
45 struct samsung_pinctrl_drv_data
*d
= bank
->drvdata
;
46 unsigned long reg_mask
= d
->ctrl
->geint_mask
+ bank
->eint_offset
;
49 mask
= readl(d
->virt_base
+ reg_mask
);
50 mask
&= ~(1 << irqd
->hwirq
);
51 writel(mask
, d
->virt_base
+ reg_mask
);
54 static void exynos_gpio_irq_mask(struct irq_data
*irqd
)
56 struct samsung_pin_bank
*bank
= irq_data_get_irq_chip_data(irqd
);
57 struct samsung_pinctrl_drv_data
*d
= bank
->drvdata
;
58 unsigned long reg_mask
= d
->ctrl
->geint_mask
+ bank
->eint_offset
;
61 mask
= readl(d
->virt_base
+ reg_mask
);
62 mask
|= 1 << irqd
->hwirq
;
63 writel(mask
, d
->virt_base
+ reg_mask
);
66 static void exynos_gpio_irq_ack(struct irq_data
*irqd
)
68 struct samsung_pin_bank
*bank
= irq_data_get_irq_chip_data(irqd
);
69 struct samsung_pinctrl_drv_data
*d
= bank
->drvdata
;
70 unsigned long reg_pend
= d
->ctrl
->geint_pend
+ bank
->eint_offset
;
72 writel(1 << irqd
->hwirq
, d
->virt_base
+ reg_pend
);
75 static int exynos_gpio_irq_set_type(struct irq_data
*irqd
, unsigned int type
)
77 struct samsung_pin_bank
*bank
= irq_data_get_irq_chip_data(irqd
);
78 struct samsung_pinctrl_drv_data
*d
= bank
->drvdata
;
79 struct samsung_pin_ctrl
*ctrl
= d
->ctrl
;
80 unsigned int pin
= irqd
->hwirq
;
81 unsigned int shift
= EXYNOS_EINT_CON_LEN
* pin
;
82 unsigned int con
, trig_type
;
83 unsigned long reg_con
= ctrl
->geint_con
+ bank
->eint_offset
;
87 case IRQ_TYPE_EDGE_RISING
:
88 trig_type
= EXYNOS_EINT_EDGE_RISING
;
90 case IRQ_TYPE_EDGE_FALLING
:
91 trig_type
= EXYNOS_EINT_EDGE_FALLING
;
93 case IRQ_TYPE_EDGE_BOTH
:
94 trig_type
= EXYNOS_EINT_EDGE_BOTH
;
96 case IRQ_TYPE_LEVEL_HIGH
:
97 trig_type
= EXYNOS_EINT_LEVEL_HIGH
;
99 case IRQ_TYPE_LEVEL_LOW
:
100 trig_type
= EXYNOS_EINT_LEVEL_LOW
;
103 pr_err("unsupported external interrupt type\n");
107 if (type
& IRQ_TYPE_EDGE_BOTH
)
108 __irq_set_handler_locked(irqd
->irq
, handle_edge_irq
);
110 __irq_set_handler_locked(irqd
->irq
, handle_level_irq
);
112 con
= readl(d
->virt_base
+ reg_con
);
113 con
&= ~(EXYNOS_EINT_CON_MASK
<< shift
);
114 con
|= trig_type
<< shift
;
115 writel(con
, d
->virt_base
+ reg_con
);
117 reg_con
= bank
->pctl_offset
;
118 shift
= pin
* bank
->func_width
;
119 mask
= (1 << bank
->func_width
) - 1;
121 con
= readl(d
->virt_base
+ reg_con
);
122 con
&= ~(mask
<< shift
);
123 con
|= EXYNOS_EINT_FUNC
<< shift
;
124 writel(con
, d
->virt_base
+ reg_con
);
130 * irq_chip for gpio interrupts.
132 static struct irq_chip exynos_gpio_irq_chip
= {
133 .name
= "exynos_gpio_irq_chip",
134 .irq_unmask
= exynos_gpio_irq_unmask
,
135 .irq_mask
= exynos_gpio_irq_mask
,
136 .irq_ack
= exynos_gpio_irq_ack
,
137 .irq_set_type
= exynos_gpio_irq_set_type
,
140 static int exynos_gpio_irq_map(struct irq_domain
*h
, unsigned int virq
,
143 struct samsung_pin_bank
*b
= h
->host_data
;
145 irq_set_chip_data(virq
, b
);
146 irq_set_chip_and_handler(virq
, &exynos_gpio_irq_chip
,
148 set_irq_flags(virq
, IRQF_VALID
);
153 * irq domain callbacks for external gpio interrupt controller.
155 static const struct irq_domain_ops exynos_gpio_irqd_ops
= {
156 .map
= exynos_gpio_irq_map
,
157 .xlate
= irq_domain_xlate_twocell
,
160 static irqreturn_t
exynos_eint_gpio_irq(int irq
, void *data
)
162 struct samsung_pinctrl_drv_data
*d
= data
;
163 struct samsung_pin_ctrl
*ctrl
= d
->ctrl
;
164 struct samsung_pin_bank
*bank
= ctrl
->pin_banks
;
165 unsigned int svc
, group
, pin
, virq
;
167 svc
= readl(d
->virt_base
+ ctrl
->svc
);
168 group
= EXYNOS_SVC_GROUP(svc
);
169 pin
= svc
& EXYNOS_SVC_NUM_MASK
;
175 virq
= irq_linear_revmap(bank
->irq_domain
, pin
);
178 generic_handle_irq(virq
);
183 * exynos_eint_gpio_init() - setup handling of external gpio interrupts.
184 * @d: driver data of samsung pinctrl driver.
186 static int exynos_eint_gpio_init(struct samsung_pinctrl_drv_data
*d
)
188 struct samsung_pin_bank
*bank
;
189 struct device
*dev
= d
->dev
;
194 dev_err(dev
, "irq number not available\n");
198 ret
= devm_request_irq(dev
, d
->irq
, exynos_eint_gpio_irq
,
199 0, dev_name(dev
), d
);
201 dev_err(dev
, "irq request failed\n");
205 bank
= d
->ctrl
->pin_banks
;
206 for (i
= 0; i
< d
->ctrl
->nr_banks
; ++i
, ++bank
) {
207 if (bank
->eint_type
!= EINT_TYPE_GPIO
)
209 bank
->irq_domain
= irq_domain_add_linear(bank
->of_node
,
210 bank
->nr_pins
, &exynos_gpio_irqd_ops
, bank
);
211 if (!bank
->irq_domain
) {
212 dev_err(dev
, "gpio irq domain add failed\n");
220 static void exynos_wkup_irq_unmask(struct irq_data
*irqd
)
222 struct samsung_pin_bank
*b
= irq_data_get_irq_chip_data(irqd
);
223 struct samsung_pinctrl_drv_data
*d
= b
->drvdata
;
224 unsigned long reg_mask
= d
->ctrl
->weint_mask
+ b
->eint_offset
;
227 mask
= readl(d
->virt_base
+ reg_mask
);
228 mask
&= ~(1 << irqd
->hwirq
);
229 writel(mask
, d
->virt_base
+ reg_mask
);
232 static void exynos_wkup_irq_mask(struct irq_data
*irqd
)
234 struct samsung_pin_bank
*b
= irq_data_get_irq_chip_data(irqd
);
235 struct samsung_pinctrl_drv_data
*d
= b
->drvdata
;
236 unsigned long reg_mask
= d
->ctrl
->weint_mask
+ b
->eint_offset
;
239 mask
= readl(d
->virt_base
+ reg_mask
);
240 mask
|= 1 << irqd
->hwirq
;
241 writel(mask
, d
->virt_base
+ reg_mask
);
244 static void exynos_wkup_irq_ack(struct irq_data
*irqd
)
246 struct samsung_pin_bank
*b
= irq_data_get_irq_chip_data(irqd
);
247 struct samsung_pinctrl_drv_data
*d
= b
->drvdata
;
248 unsigned long pend
= d
->ctrl
->weint_pend
+ b
->eint_offset
;
250 writel(1 << irqd
->hwirq
, d
->virt_base
+ pend
);
253 static int exynos_wkup_irq_set_type(struct irq_data
*irqd
, unsigned int type
)
255 struct samsung_pin_bank
*bank
= irq_data_get_irq_chip_data(irqd
);
256 struct samsung_pinctrl_drv_data
*d
= bank
->drvdata
;
257 unsigned int pin
= irqd
->hwirq
;
258 unsigned long reg_con
= d
->ctrl
->weint_con
+ bank
->eint_offset
;
259 unsigned long shift
= EXYNOS_EINT_CON_LEN
* pin
;
260 unsigned long con
, trig_type
;
264 case IRQ_TYPE_EDGE_RISING
:
265 trig_type
= EXYNOS_EINT_EDGE_RISING
;
267 case IRQ_TYPE_EDGE_FALLING
:
268 trig_type
= EXYNOS_EINT_EDGE_FALLING
;
270 case IRQ_TYPE_EDGE_BOTH
:
271 trig_type
= EXYNOS_EINT_EDGE_BOTH
;
273 case IRQ_TYPE_LEVEL_HIGH
:
274 trig_type
= EXYNOS_EINT_LEVEL_HIGH
;
276 case IRQ_TYPE_LEVEL_LOW
:
277 trig_type
= EXYNOS_EINT_LEVEL_LOW
;
280 pr_err("unsupported external interrupt type\n");
284 if (type
& IRQ_TYPE_EDGE_BOTH
)
285 __irq_set_handler_locked(irqd
->irq
, handle_edge_irq
);
287 __irq_set_handler_locked(irqd
->irq
, handle_level_irq
);
289 con
= readl(d
->virt_base
+ reg_con
);
290 con
&= ~(EXYNOS_EINT_CON_MASK
<< shift
);
291 con
|= trig_type
<< shift
;
292 writel(con
, d
->virt_base
+ reg_con
);
294 reg_con
= bank
->pctl_offset
;
295 shift
= pin
* bank
->func_width
;
296 mask
= (1 << bank
->func_width
) - 1;
298 con
= readl(d
->virt_base
+ reg_con
);
299 con
&= ~(mask
<< shift
);
300 con
|= EXYNOS_EINT_FUNC
<< shift
;
301 writel(con
, d
->virt_base
+ reg_con
);
307 * irq_chip for wakeup interrupts
309 static struct irq_chip exynos_wkup_irq_chip
= {
310 .name
= "exynos_wkup_irq_chip",
311 .irq_unmask
= exynos_wkup_irq_unmask
,
312 .irq_mask
= exynos_wkup_irq_mask
,
313 .irq_ack
= exynos_wkup_irq_ack
,
314 .irq_set_type
= exynos_wkup_irq_set_type
,
317 /* interrupt handler for wakeup interrupts 0..15 */
318 static void exynos_irq_eint0_15(unsigned int irq
, struct irq_desc
*desc
)
320 struct exynos_weint_data
*eintd
= irq_get_handler_data(irq
);
321 struct samsung_pin_bank
*bank
= eintd
->bank
;
322 struct irq_chip
*chip
= irq_get_chip(irq
);
325 chained_irq_enter(chip
, desc
);
326 chip
->irq_mask(&desc
->irq_data
);
329 chip
->irq_ack(&desc
->irq_data
);
331 eint_irq
= irq_linear_revmap(bank
->irq_domain
, eintd
->irq
);
332 generic_handle_irq(eint_irq
);
333 chip
->irq_unmask(&desc
->irq_data
);
334 chained_irq_exit(chip
, desc
);
337 static inline void exynos_irq_demux_eint(unsigned long pend
,
338 struct irq_domain
*domain
)
344 generic_handle_irq(irq_find_mapping(domain
, irq
));
349 /* interrupt handler for wakeup interrupt 16 */
350 static void exynos_irq_demux_eint16_31(unsigned int irq
, struct irq_desc
*desc
)
352 struct irq_chip
*chip
= irq_get_chip(irq
);
353 struct exynos_muxed_weint_data
*eintd
= irq_get_handler_data(irq
);
354 struct samsung_pinctrl_drv_data
*d
= eintd
->banks
[0]->drvdata
;
355 struct samsung_pin_ctrl
*ctrl
= d
->ctrl
;
360 chained_irq_enter(chip
, desc
);
362 for (i
= 0; i
< eintd
->nr_banks
; ++i
) {
363 struct samsung_pin_bank
*b
= eintd
->banks
[i
];
364 pend
= readl(d
->virt_base
+ ctrl
->weint_pend
+ b
->eint_offset
);
365 mask
= readl(d
->virt_base
+ ctrl
->weint_mask
+ b
->eint_offset
);
366 exynos_irq_demux_eint(pend
& ~mask
, b
->irq_domain
);
369 chained_irq_exit(chip
, desc
);
372 static int exynos_wkup_irq_map(struct irq_domain
*h
, unsigned int virq
,
375 irq_set_chip_and_handler(virq
, &exynos_wkup_irq_chip
, handle_level_irq
);
376 irq_set_chip_data(virq
, h
->host_data
);
377 set_irq_flags(virq
, IRQF_VALID
);
382 * irq domain callbacks for external wakeup interrupt controller.
384 static const struct irq_domain_ops exynos_wkup_irqd_ops
= {
385 .map
= exynos_wkup_irq_map
,
386 .xlate
= irq_domain_xlate_twocell
,
390 * exynos_eint_wkup_init() - setup handling of external wakeup interrupts.
391 * @d: driver data of samsung pinctrl driver.
393 static int exynos_eint_wkup_init(struct samsung_pinctrl_drv_data
*d
)
395 struct device
*dev
= d
->dev
;
396 struct device_node
*wkup_np
= NULL
;
397 struct device_node
*np
;
398 struct samsung_pin_bank
*bank
;
399 struct exynos_weint_data
*weint_data
;
400 struct exynos_muxed_weint_data
*muxed_data
;
401 unsigned int muxed_banks
= 0;
405 for_each_child_of_node(dev
->of_node
, np
) {
406 if (of_match_node(exynos_wkup_irq_ids
, np
)) {
414 bank
= d
->ctrl
->pin_banks
;
415 for (i
= 0; i
< d
->ctrl
->nr_banks
; ++i
, ++bank
) {
416 if (bank
->eint_type
!= EINT_TYPE_WKUP
)
419 bank
->irq_domain
= irq_domain_add_linear(bank
->of_node
,
420 bank
->nr_pins
, &exynos_wkup_irqd_ops
, bank
);
421 if (!bank
->irq_domain
) {
422 dev_err(dev
, "wkup irq domain add failed\n");
426 if (!of_find_property(bank
->of_node
, "interrupts", NULL
)) {
427 bank
->eint_type
= EINT_TYPE_WKUP_MUX
;
432 weint_data
= devm_kzalloc(dev
, bank
->nr_pins
433 * sizeof(*weint_data
), GFP_KERNEL
);
435 dev_err(dev
, "could not allocate memory for weint_data\n");
439 for (idx
= 0; idx
< bank
->nr_pins
; ++idx
) {
440 irq
= irq_of_parse_and_map(bank
->of_node
, idx
);
442 dev_err(dev
, "irq number for eint-%s-%d not found\n",
446 weint_data
[idx
].irq
= idx
;
447 weint_data
[idx
].bank
= bank
;
448 irq_set_handler_data(irq
, &weint_data
[idx
]);
449 irq_set_chained_handler(irq
, exynos_irq_eint0_15
);
456 irq
= irq_of_parse_and_map(wkup_np
, 0);
458 dev_err(dev
, "irq number for muxed EINTs not found\n");
462 muxed_data
= devm_kzalloc(dev
, sizeof(*muxed_data
)
463 + muxed_banks
*sizeof(struct samsung_pin_bank
*), GFP_KERNEL
);
465 dev_err(dev
, "could not allocate memory for muxed_data\n");
469 irq_set_chained_handler(irq
, exynos_irq_demux_eint16_31
);
470 irq_set_handler_data(irq
, muxed_data
);
472 bank
= d
->ctrl
->pin_banks
;
474 for (i
= 0; i
< d
->ctrl
->nr_banks
; ++i
, ++bank
) {
475 if (bank
->eint_type
!= EINT_TYPE_WKUP_MUX
)
478 muxed_data
->banks
[idx
++] = bank
;
480 muxed_data
->nr_banks
= muxed_banks
;
485 /* pin banks of exynos4210 pin-controller 0 */
486 static struct samsung_pin_bank exynos4210_pin_banks0
[] = {
487 EXYNOS_PIN_BANK_EINTG(8, 0x000, "gpa0", 0x00),
488 EXYNOS_PIN_BANK_EINTG(6, 0x020, "gpa1", 0x04),
489 EXYNOS_PIN_BANK_EINTG(8, 0x040, "gpb", 0x08),
490 EXYNOS_PIN_BANK_EINTG(5, 0x060, "gpc0", 0x0c),
491 EXYNOS_PIN_BANK_EINTG(5, 0x080, "gpc1", 0x10),
492 EXYNOS_PIN_BANK_EINTG(4, 0x0A0, "gpd0", 0x14),
493 EXYNOS_PIN_BANK_EINTG(4, 0x0C0, "gpd1", 0x18),
494 EXYNOS_PIN_BANK_EINTG(5, 0x0E0, "gpe0", 0x1c),
495 EXYNOS_PIN_BANK_EINTG(8, 0x100, "gpe1", 0x20),
496 EXYNOS_PIN_BANK_EINTG(6, 0x120, "gpe2", 0x24),
497 EXYNOS_PIN_BANK_EINTG(8, 0x140, "gpe3", 0x28),
498 EXYNOS_PIN_BANK_EINTG(8, 0x160, "gpe4", 0x2c),
499 EXYNOS_PIN_BANK_EINTG(8, 0x180, "gpf0", 0x30),
500 EXYNOS_PIN_BANK_EINTG(8, 0x1A0, "gpf1", 0x34),
501 EXYNOS_PIN_BANK_EINTG(8, 0x1C0, "gpf2", 0x38),
502 EXYNOS_PIN_BANK_EINTG(6, 0x1E0, "gpf3", 0x3c),
505 /* pin banks of exynos4210 pin-controller 1 */
506 static struct samsung_pin_bank exynos4210_pin_banks1
[] = {
507 EXYNOS_PIN_BANK_EINTG(8, 0x000, "gpj0", 0x00),
508 EXYNOS_PIN_BANK_EINTG(5, 0x020, "gpj1", 0x04),
509 EXYNOS_PIN_BANK_EINTG(7, 0x040, "gpk0", 0x08),
510 EXYNOS_PIN_BANK_EINTG(7, 0x060, "gpk1", 0x0c),
511 EXYNOS_PIN_BANK_EINTG(7, 0x080, "gpk2", 0x10),
512 EXYNOS_PIN_BANK_EINTG(7, 0x0A0, "gpk3", 0x14),
513 EXYNOS_PIN_BANK_EINTG(8, 0x0C0, "gpl0", 0x18),
514 EXYNOS_PIN_BANK_EINTG(3, 0x0E0, "gpl1", 0x1c),
515 EXYNOS_PIN_BANK_EINTG(8, 0x100, "gpl2", 0x20),
516 EXYNOS_PIN_BANK_EINTN(6, 0x120, "gpy0"),
517 EXYNOS_PIN_BANK_EINTN(4, 0x140, "gpy1"),
518 EXYNOS_PIN_BANK_EINTN(6, 0x160, "gpy2"),
519 EXYNOS_PIN_BANK_EINTN(8, 0x180, "gpy3"),
520 EXYNOS_PIN_BANK_EINTN(8, 0x1A0, "gpy4"),
521 EXYNOS_PIN_BANK_EINTN(8, 0x1C0, "gpy5"),
522 EXYNOS_PIN_BANK_EINTN(8, 0x1E0, "gpy6"),
523 EXYNOS_PIN_BANK_EINTW(8, 0xC00, "gpx0", 0x00),
524 EXYNOS_PIN_BANK_EINTW(8, 0xC20, "gpx1", 0x04),
525 EXYNOS_PIN_BANK_EINTW(8, 0xC40, "gpx2", 0x08),
526 EXYNOS_PIN_BANK_EINTW(8, 0xC60, "gpx3", 0x0c),
529 /* pin banks of exynos4210 pin-controller 2 */
530 static struct samsung_pin_bank exynos4210_pin_banks2
[] = {
531 EXYNOS_PIN_BANK_EINTN(7, 0x000, "gpz"),
535 * Samsung pinctrl driver data for Exynos4210 SoC. Exynos4210 SoC includes
536 * three gpio/pin-mux/pinconfig controllers.
538 struct samsung_pin_ctrl exynos4210_pin_ctrl
[] = {
540 /* pin-controller instance 0 data */
541 .pin_banks
= exynos4210_pin_banks0
,
542 .nr_banks
= ARRAY_SIZE(exynos4210_pin_banks0
),
543 .geint_con
= EXYNOS_GPIO_ECON_OFFSET
,
544 .geint_mask
= EXYNOS_GPIO_EMASK_OFFSET
,
545 .geint_pend
= EXYNOS_GPIO_EPEND_OFFSET
,
546 .svc
= EXYNOS_SVC_OFFSET
,
547 .eint_gpio_init
= exynos_eint_gpio_init
,
548 .label
= "exynos4210-gpio-ctrl0",
550 /* pin-controller instance 1 data */
551 .pin_banks
= exynos4210_pin_banks1
,
552 .nr_banks
= ARRAY_SIZE(exynos4210_pin_banks1
),
553 .geint_con
= EXYNOS_GPIO_ECON_OFFSET
,
554 .geint_mask
= EXYNOS_GPIO_EMASK_OFFSET
,
555 .geint_pend
= EXYNOS_GPIO_EPEND_OFFSET
,
556 .weint_con
= EXYNOS_WKUP_ECON_OFFSET
,
557 .weint_mask
= EXYNOS_WKUP_EMASK_OFFSET
,
558 .weint_pend
= EXYNOS_WKUP_EPEND_OFFSET
,
559 .svc
= EXYNOS_SVC_OFFSET
,
560 .eint_gpio_init
= exynos_eint_gpio_init
,
561 .eint_wkup_init
= exynos_eint_wkup_init
,
562 .label
= "exynos4210-gpio-ctrl1",
564 /* pin-controller instance 2 data */
565 .pin_banks
= exynos4210_pin_banks2
,
566 .nr_banks
= ARRAY_SIZE(exynos4210_pin_banks2
),
567 .label
= "exynos4210-gpio-ctrl2",
571 /* pin banks of exynos4x12 pin-controller 0 */
572 static struct samsung_pin_bank exynos4x12_pin_banks0
[] = {
573 EXYNOS_PIN_BANK_EINTG(8, 0x000, "gpa0", 0x00),
574 EXYNOS_PIN_BANK_EINTG(6, 0x020, "gpa1", 0x04),
575 EXYNOS_PIN_BANK_EINTG(8, 0x040, "gpb", 0x08),
576 EXYNOS_PIN_BANK_EINTG(5, 0x060, "gpc0", 0x0c),
577 EXYNOS_PIN_BANK_EINTG(5, 0x080, "gpc1", 0x10),
578 EXYNOS_PIN_BANK_EINTG(4, 0x0A0, "gpd0", 0x14),
579 EXYNOS_PIN_BANK_EINTG(4, 0x0C0, "gpd1", 0x18),
580 EXYNOS_PIN_BANK_EINTG(8, 0x180, "gpf0", 0x30),
581 EXYNOS_PIN_BANK_EINTG(8, 0x1A0, "gpf1", 0x34),
582 EXYNOS_PIN_BANK_EINTG(8, 0x1C0, "gpf2", 0x38),
583 EXYNOS_PIN_BANK_EINTG(6, 0x1E0, "gpf3", 0x3c),
584 EXYNOS_PIN_BANK_EINTG(8, 0x240, "gpj0", 0x40),
585 EXYNOS_PIN_BANK_EINTG(5, 0x260, "gpj1", 0x44),
588 /* pin banks of exynos4x12 pin-controller 1 */
589 static struct samsung_pin_bank exynos4x12_pin_banks1
[] = {
590 EXYNOS_PIN_BANK_EINTG(7, 0x040, "gpk0", 0x08),
591 EXYNOS_PIN_BANK_EINTG(7, 0x060, "gpk1", 0x0c),
592 EXYNOS_PIN_BANK_EINTG(7, 0x080, "gpk2", 0x10),
593 EXYNOS_PIN_BANK_EINTG(7, 0x0A0, "gpk3", 0x14),
594 EXYNOS_PIN_BANK_EINTG(7, 0x0C0, "gpl0", 0x18),
595 EXYNOS_PIN_BANK_EINTG(2, 0x0E0, "gpl1", 0x1c),
596 EXYNOS_PIN_BANK_EINTG(8, 0x100, "gpl2", 0x20),
597 EXYNOS_PIN_BANK_EINTG(8, 0x260, "gpm0", 0x24),
598 EXYNOS_PIN_BANK_EINTG(7, 0x280, "gpm1", 0x28),
599 EXYNOS_PIN_BANK_EINTG(5, 0x2A0, "gpm2", 0x2c),
600 EXYNOS_PIN_BANK_EINTG(8, 0x2C0, "gpm3", 0x30),
601 EXYNOS_PIN_BANK_EINTG(8, 0x2E0, "gpm4", 0x34),
602 EXYNOS_PIN_BANK_EINTN(6, 0x120, "gpy0"),
603 EXYNOS_PIN_BANK_EINTN(4, 0x140, "gpy1"),
604 EXYNOS_PIN_BANK_EINTN(6, 0x160, "gpy2"),
605 EXYNOS_PIN_BANK_EINTN(8, 0x180, "gpy3"),
606 EXYNOS_PIN_BANK_EINTN(8, 0x1A0, "gpy4"),
607 EXYNOS_PIN_BANK_EINTN(8, 0x1C0, "gpy5"),
608 EXYNOS_PIN_BANK_EINTN(8, 0x1E0, "gpy6"),
609 EXYNOS_PIN_BANK_EINTW(8, 0xC00, "gpx0", 0x00),
610 EXYNOS_PIN_BANK_EINTW(8, 0xC20, "gpx1", 0x04),
611 EXYNOS_PIN_BANK_EINTW(8, 0xC40, "gpx2", 0x08),
612 EXYNOS_PIN_BANK_EINTW(8, 0xC60, "gpx3", 0x0c),
615 /* pin banks of exynos4x12 pin-controller 2 */
616 static struct samsung_pin_bank exynos4x12_pin_banks2
[] = {
617 EXYNOS_PIN_BANK_EINTG(7, 0x000, "gpz", 0x00),
620 /* pin banks of exynos4x12 pin-controller 3 */
621 static struct samsung_pin_bank exynos4x12_pin_banks3
[] = {
622 EXYNOS_PIN_BANK_EINTG(8, 0x000, "gpv0", 0x00),
623 EXYNOS_PIN_BANK_EINTG(8, 0x020, "gpv1", 0x04),
624 EXYNOS_PIN_BANK_EINTG(8, 0x040, "gpv2", 0x08),
625 EXYNOS_PIN_BANK_EINTG(8, 0x060, "gpv3", 0x0c),
626 EXYNOS_PIN_BANK_EINTG(2, 0x080, "gpv4", 0x10),
630 * Samsung pinctrl driver data for Exynos4x12 SoC. Exynos4x12 SoC includes
631 * four gpio/pin-mux/pinconfig controllers.
633 struct samsung_pin_ctrl exynos4x12_pin_ctrl
[] = {
635 /* pin-controller instance 0 data */
636 .pin_banks
= exynos4x12_pin_banks0
,
637 .nr_banks
= ARRAY_SIZE(exynos4x12_pin_banks0
),
638 .geint_con
= EXYNOS_GPIO_ECON_OFFSET
,
639 .geint_mask
= EXYNOS_GPIO_EMASK_OFFSET
,
640 .geint_pend
= EXYNOS_GPIO_EPEND_OFFSET
,
641 .svc
= EXYNOS_SVC_OFFSET
,
642 .eint_gpio_init
= exynos_eint_gpio_init
,
643 .label
= "exynos4x12-gpio-ctrl0",
645 /* pin-controller instance 1 data */
646 .pin_banks
= exynos4x12_pin_banks1
,
647 .nr_banks
= ARRAY_SIZE(exynos4x12_pin_banks1
),
648 .geint_con
= EXYNOS_GPIO_ECON_OFFSET
,
649 .geint_mask
= EXYNOS_GPIO_EMASK_OFFSET
,
650 .geint_pend
= EXYNOS_GPIO_EPEND_OFFSET
,
651 .weint_con
= EXYNOS_WKUP_ECON_OFFSET
,
652 .weint_mask
= EXYNOS_WKUP_EMASK_OFFSET
,
653 .weint_pend
= EXYNOS_WKUP_EPEND_OFFSET
,
654 .svc
= EXYNOS_SVC_OFFSET
,
655 .eint_gpio_init
= exynos_eint_gpio_init
,
656 .eint_wkup_init
= exynos_eint_wkup_init
,
657 .label
= "exynos4x12-gpio-ctrl1",
659 /* pin-controller instance 2 data */
660 .pin_banks
= exynos4x12_pin_banks2
,
661 .nr_banks
= ARRAY_SIZE(exynos4x12_pin_banks2
),
662 .geint_con
= EXYNOS_GPIO_ECON_OFFSET
,
663 .geint_mask
= EXYNOS_GPIO_EMASK_OFFSET
,
664 .geint_pend
= EXYNOS_GPIO_EPEND_OFFSET
,
665 .svc
= EXYNOS_SVC_OFFSET
,
666 .eint_gpio_init
= exynos_eint_gpio_init
,
667 .label
= "exynos4x12-gpio-ctrl2",
669 /* pin-controller instance 3 data */
670 .pin_banks
= exynos4x12_pin_banks3
,
671 .nr_banks
= ARRAY_SIZE(exynos4x12_pin_banks3
),
672 .geint_con
= EXYNOS_GPIO_ECON_OFFSET
,
673 .geint_mask
= EXYNOS_GPIO_EMASK_OFFSET
,
674 .geint_pend
= EXYNOS_GPIO_EPEND_OFFSET
,
675 .svc
= EXYNOS_SVC_OFFSET
,
676 .eint_gpio_init
= exynos_eint_gpio_init
,
677 .label
= "exynos4x12-gpio-ctrl3",