2 * Copyright (c) 2009-2011 Samsung Electronics Co., Ltd.
3 * http://www.samsung.com/
5 * Copyright 2008 Openmoko, Inc.
6 * Copyright 2008 Simtec Electronics
7 * Ben Dooks <ben@simtec.co.uk>
8 * http://armlinux.simtec.co.uk/
10 * SAMSUNG - GPIOlib support
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License version 2 as
14 * published by the Free Software Foundation.
17 #include <linux/kernel.h>
18 #include <linux/irq.h>
20 #include <linux/gpio.h>
21 #include <linux/init.h>
22 #include <linux/spinlock.h>
23 #include <linux/module.h>
24 #include <linux/interrupt.h>
25 #include <linux/device.h>
26 #include <linux/ioport.h>
28 #include <linux/slab.h>
29 #include <linux/of_address.h>
33 #include <mach/hardware.h>
35 #include <mach/regs-clock.h>
36 #include <mach/regs-gpio.h>
39 #include <plat/gpio-core.h>
40 #include <plat/gpio-cfg.h>
41 #include <plat/gpio-cfg-helpers.h>
42 #include <plat/gpio-fns.h>
46 #define gpio_dbg(x...) do { } while (0)
48 #define gpio_dbg(x...) printk(KERN_DEBUG x)
51 int samsung_gpio_setpull_updown(struct samsung_gpio_chip
*chip
,
52 unsigned int off
, samsung_gpio_pull_t pull
)
54 void __iomem
*reg
= chip
->base
+ 0x08;
58 pup
= __raw_readl(reg
);
61 __raw_writel(pup
, reg
);
66 samsung_gpio_pull_t
samsung_gpio_getpull_updown(struct samsung_gpio_chip
*chip
,
69 void __iomem
*reg
= chip
->base
+ 0x08;
71 u32 pup
= __raw_readl(reg
);
76 return (__force samsung_gpio_pull_t
)pup
;
79 int s3c2443_gpio_setpull(struct samsung_gpio_chip
*chip
,
80 unsigned int off
, samsung_gpio_pull_t pull
)
83 case S3C_GPIO_PULL_NONE
:
86 case S3C_GPIO_PULL_UP
:
89 case S3C_GPIO_PULL_DOWN
:
93 return samsung_gpio_setpull_updown(chip
, off
, pull
);
96 samsung_gpio_pull_t
s3c2443_gpio_getpull(struct samsung_gpio_chip
*chip
,
99 samsung_gpio_pull_t pull
;
101 pull
= samsung_gpio_getpull_updown(chip
, off
);
105 pull
= S3C_GPIO_PULL_UP
;
109 pull
= S3C_GPIO_PULL_NONE
;
112 pull
= S3C_GPIO_PULL_DOWN
;
119 static int s3c24xx_gpio_setpull_1(struct samsung_gpio_chip
*chip
,
120 unsigned int off
, samsung_gpio_pull_t pull
,
121 samsung_gpio_pull_t updown
)
123 void __iomem
*reg
= chip
->base
+ 0x08;
124 u32 pup
= __raw_readl(reg
);
128 else if (pull
== S3C_GPIO_PULL_NONE
)
133 __raw_writel(pup
, reg
);
137 static samsung_gpio_pull_t
s3c24xx_gpio_getpull_1(struct samsung_gpio_chip
*chip
,
139 samsung_gpio_pull_t updown
)
141 void __iomem
*reg
= chip
->base
+ 0x08;
142 u32 pup
= __raw_readl(reg
);
145 return pup
? S3C_GPIO_PULL_NONE
: updown
;
148 samsung_gpio_pull_t
s3c24xx_gpio_getpull_1up(struct samsung_gpio_chip
*chip
,
151 return s3c24xx_gpio_getpull_1(chip
, off
, S3C_GPIO_PULL_UP
);
154 int s3c24xx_gpio_setpull_1up(struct samsung_gpio_chip
*chip
,
155 unsigned int off
, samsung_gpio_pull_t pull
)
157 return s3c24xx_gpio_setpull_1(chip
, off
, pull
, S3C_GPIO_PULL_UP
);
160 samsung_gpio_pull_t
s3c24xx_gpio_getpull_1down(struct samsung_gpio_chip
*chip
,
163 return s3c24xx_gpio_getpull_1(chip
, off
, S3C_GPIO_PULL_DOWN
);
166 int s3c24xx_gpio_setpull_1down(struct samsung_gpio_chip
*chip
,
167 unsigned int off
, samsung_gpio_pull_t pull
)
169 return s3c24xx_gpio_setpull_1(chip
, off
, pull
, S3C_GPIO_PULL_DOWN
);
172 static int exynos4_gpio_setpull(struct samsung_gpio_chip
*chip
,
173 unsigned int off
, samsung_gpio_pull_t pull
)
175 if (pull
== S3C_GPIO_PULL_UP
)
178 return samsung_gpio_setpull_updown(chip
, off
, pull
);
181 static samsung_gpio_pull_t
exynos4_gpio_getpull(struct samsung_gpio_chip
*chip
,
184 samsung_gpio_pull_t pull
;
186 pull
= samsung_gpio_getpull_updown(chip
, off
);
189 pull
= S3C_GPIO_PULL_UP
;
195 * samsung_gpio_setcfg_2bit - Samsung 2bit style GPIO configuration.
196 * @chip: The gpio chip that is being configured.
197 * @off: The offset for the GPIO being configured.
198 * @cfg: The configuration value to set.
200 * This helper deal with the GPIO cases where the control register
201 * has two bits of configuration per gpio, which have the following
205 * 1x = special function
208 static int samsung_gpio_setcfg_2bit(struct samsung_gpio_chip
*chip
,
209 unsigned int off
, unsigned int cfg
)
211 void __iomem
*reg
= chip
->base
;
212 unsigned int shift
= off
* 2;
215 if (samsung_gpio_is_cfg_special(cfg
)) {
223 con
= __raw_readl(reg
);
224 con
&= ~(0x3 << shift
);
226 __raw_writel(con
, reg
);
232 * samsung_gpio_getcfg_2bit - Samsung 2bit style GPIO configuration read.
233 * @chip: The gpio chip that is being configured.
234 * @off: The offset for the GPIO being configured.
236 * The reverse of samsung_gpio_setcfg_2bit(). Will return a value which
237 * could be directly passed back to samsung_gpio_setcfg_2bit(), from the
238 * S3C_GPIO_SPECIAL() macro.
241 static unsigned int samsung_gpio_getcfg_2bit(struct samsung_gpio_chip
*chip
,
246 con
= __raw_readl(chip
->base
);
250 /* this conversion works for IN and OUT as well as special mode */
251 return S3C_GPIO_SPECIAL(con
);
255 * samsung_gpio_setcfg_4bit - Samsung 4bit single register GPIO config.
256 * @chip: The gpio chip that is being configured.
257 * @off: The offset for the GPIO being configured.
258 * @cfg: The configuration value to set.
260 * This helper deal with the GPIO cases where the control register has 4 bits
261 * of control per GPIO, generally in the form of:
264 * others = Special functions (dependent on bank)
266 * Note, since the code to deal with the case where there are two control
267 * registers instead of one, we do not have a separate set of functions for
271 static int samsung_gpio_setcfg_4bit(struct samsung_gpio_chip
*chip
,
272 unsigned int off
, unsigned int cfg
)
274 void __iomem
*reg
= chip
->base
;
275 unsigned int shift
= (off
& 7) * 4;
278 if (off
< 8 && chip
->chip
.ngpio
> 8)
281 if (samsung_gpio_is_cfg_special(cfg
)) {
286 con
= __raw_readl(reg
);
287 con
&= ~(0xf << shift
);
289 __raw_writel(con
, reg
);
295 * samsung_gpio_getcfg_4bit - Samsung 4bit single register GPIO config read.
296 * @chip: The gpio chip that is being configured.
297 * @off: The offset for the GPIO being configured.
299 * The reverse of samsung_gpio_setcfg_4bit(), turning a gpio configuration
300 * register setting into a value the software can use, such as could be passed
301 * to samsung_gpio_setcfg_4bit().
303 * @sa samsung_gpio_getcfg_2bit
306 static unsigned samsung_gpio_getcfg_4bit(struct samsung_gpio_chip
*chip
,
309 void __iomem
*reg
= chip
->base
;
310 unsigned int shift
= (off
& 7) * 4;
313 if (off
< 8 && chip
->chip
.ngpio
> 8)
316 con
= __raw_readl(reg
);
320 /* this conversion works for IN and OUT as well as special mode */
321 return S3C_GPIO_SPECIAL(con
);
324 #ifdef CONFIG_PLAT_S3C24XX
326 * s3c24xx_gpio_setcfg_abank - S3C24XX style GPIO configuration (Bank A)
327 * @chip: The gpio chip that is being configured.
328 * @off: The offset for the GPIO being configured.
329 * @cfg: The configuration value to set.
331 * This helper deal with the GPIO cases where the control register
332 * has one bit of configuration for the gpio, where setting the bit
333 * means the pin is in special function mode and unset means output.
336 static int s3c24xx_gpio_setcfg_abank(struct samsung_gpio_chip
*chip
,
337 unsigned int off
, unsigned int cfg
)
339 void __iomem
*reg
= chip
->base
;
340 unsigned int shift
= off
;
343 if (samsung_gpio_is_cfg_special(cfg
)) {
346 /* Map output to 0, and SFN2 to 1 */
354 con
= __raw_readl(reg
);
355 con
&= ~(0x1 << shift
);
357 __raw_writel(con
, reg
);
363 * s3c24xx_gpio_getcfg_abank - S3C24XX style GPIO configuration read (Bank A)
364 * @chip: The gpio chip that is being configured.
365 * @off: The offset for the GPIO being configured.
367 * The reverse of s3c24xx_gpio_setcfg_abank() turning an GPIO into a usable
368 * GPIO configuration value.
370 * @sa samsung_gpio_getcfg_2bit
371 * @sa samsung_gpio_getcfg_4bit
374 static unsigned s3c24xx_gpio_getcfg_abank(struct samsung_gpio_chip
*chip
,
379 con
= __raw_readl(chip
->base
);
384 return S3C_GPIO_SFN(con
);
388 #if defined(CONFIG_CPU_S5P6440) || defined(CONFIG_CPU_S5P6450)
389 static int s5p64x0_gpio_setcfg_rbank(struct samsung_gpio_chip
*chip
,
390 unsigned int off
, unsigned int cfg
)
392 void __iomem
*reg
= chip
->base
;
403 shift
= (off
& 7) * 4;
407 shift
= ((off
+ 1) & 7) * 4;
410 shift
= ((off
+ 1) & 7) * 4;
414 if (samsung_gpio_is_cfg_special(cfg
)) {
419 con
= __raw_readl(reg
);
420 con
&= ~(0xf << shift
);
422 __raw_writel(con
, reg
);
428 static void __init
samsung_gpiolib_set_cfg(struct samsung_gpio_cfg
*chipcfg
,
431 for (; nr_chips
> 0; nr_chips
--, chipcfg
++) {
432 if (!chipcfg
->set_config
)
433 chipcfg
->set_config
= samsung_gpio_setcfg_4bit
;
434 if (!chipcfg
->get_config
)
435 chipcfg
->get_config
= samsung_gpio_getcfg_4bit
;
436 if (!chipcfg
->set_pull
)
437 chipcfg
->set_pull
= samsung_gpio_setpull_updown
;
438 if (!chipcfg
->get_pull
)
439 chipcfg
->get_pull
= samsung_gpio_getpull_updown
;
443 struct samsung_gpio_cfg s3c24xx_gpiocfg_default
= {
444 .set_config
= samsung_gpio_setcfg_2bit
,
445 .get_config
= samsung_gpio_getcfg_2bit
,
448 #ifdef CONFIG_PLAT_S3C24XX
449 static struct samsung_gpio_cfg s3c24xx_gpiocfg_banka
= {
450 .set_config
= s3c24xx_gpio_setcfg_abank
,
451 .get_config
= s3c24xx_gpio_getcfg_abank
,
455 static struct samsung_gpio_cfg exynos4_gpio_cfg
= {
456 .set_pull
= exynos4_gpio_setpull
,
457 .get_pull
= exynos4_gpio_getpull
,
458 .set_config
= samsung_gpio_setcfg_4bit
,
459 .get_config
= samsung_gpio_getcfg_4bit
,
462 #if defined(CONFIG_CPU_S5P6440) || defined(CONFIG_CPU_S5P6450)
463 static struct samsung_gpio_cfg s5p64x0_gpio_cfg_rbank
= {
465 .set_config
= s5p64x0_gpio_setcfg_rbank
,
466 .get_config
= samsung_gpio_getcfg_4bit
,
467 .set_pull
= samsung_gpio_setpull_updown
,
468 .get_pull
= samsung_gpio_getpull_updown
,
472 static struct samsung_gpio_cfg samsung_gpio_cfgs
[] = {
487 .set_config
= samsung_gpio_setcfg_2bit
,
488 .get_config
= samsung_gpio_getcfg_2bit
,
492 .set_config
= samsung_gpio_setcfg_2bit
,
493 .get_config
= samsung_gpio_getcfg_2bit
,
497 .set_config
= samsung_gpio_setcfg_2bit
,
498 .get_config
= samsung_gpio_getcfg_2bit
,
501 .set_config
= samsung_gpio_setcfg_2bit
,
502 .get_config
= samsung_gpio_getcfg_2bit
,
505 .set_pull
= exynos4_gpio_setpull
,
506 .get_pull
= exynos4_gpio_getpull
,
510 .set_pull
= exynos4_gpio_setpull
,
511 .get_pull
= exynos4_gpio_getpull
,
516 * Default routines for controlling GPIO, based on the original S3C24XX
517 * GPIO functions which deal with the case where each gpio bank of the
518 * chip is as following:
520 * base + 0x00: Control register, 2 bits per gpio
521 * gpio n: 2 bits starting at (2*n)
522 * 00 = input, 01 = output, others mean special-function
523 * base + 0x04: Data register, 1 bit per gpio
527 static int samsung_gpiolib_2bit_input(struct gpio_chip
*chip
, unsigned offset
)
529 struct samsung_gpio_chip
*ourchip
= to_samsung_gpio(chip
);
530 void __iomem
*base
= ourchip
->base
;
534 samsung_gpio_lock(ourchip
, flags
);
536 con
= __raw_readl(base
+ 0x00);
537 con
&= ~(3 << (offset
* 2));
539 __raw_writel(con
, base
+ 0x00);
541 samsung_gpio_unlock(ourchip
, flags
);
545 static int samsung_gpiolib_2bit_output(struct gpio_chip
*chip
,
546 unsigned offset
, int value
)
548 struct samsung_gpio_chip
*ourchip
= to_samsung_gpio(chip
);
549 void __iomem
*base
= ourchip
->base
;
554 samsung_gpio_lock(ourchip
, flags
);
556 dat
= __raw_readl(base
+ 0x04);
557 dat
&= ~(1 << offset
);
560 __raw_writel(dat
, base
+ 0x04);
562 con
= __raw_readl(base
+ 0x00);
563 con
&= ~(3 << (offset
* 2));
564 con
|= 1 << (offset
* 2);
566 __raw_writel(con
, base
+ 0x00);
567 __raw_writel(dat
, base
+ 0x04);
569 samsung_gpio_unlock(ourchip
, flags
);
574 * The samsung_gpiolib_4bit routines are to control the gpio banks where
575 * the gpio configuration register (GPxCON) has 4 bits per GPIO, as the
578 * base + 0x00: Control register, 4 bits per gpio
579 * gpio n: 4 bits starting at (4*n)
580 * 0000 = input, 0001 = output, others mean special-function
581 * base + 0x04: Data register, 1 bit per gpio
584 * Note, since the data register is one bit per gpio and is at base + 0x4
585 * we can use samsung_gpiolib_get and samsung_gpiolib_set to change the
586 * state of the output.
589 static int samsung_gpiolib_4bit_input(struct gpio_chip
*chip
,
592 struct samsung_gpio_chip
*ourchip
= to_samsung_gpio(chip
);
593 void __iomem
*base
= ourchip
->base
;
596 con
= __raw_readl(base
+ GPIOCON_OFF
);
597 con
&= ~(0xf << con_4bit_shift(offset
));
598 __raw_writel(con
, base
+ GPIOCON_OFF
);
600 gpio_dbg("%s: %p: CON now %08lx\n", __func__
, base
, con
);
605 static int samsung_gpiolib_4bit_output(struct gpio_chip
*chip
,
606 unsigned int offset
, int value
)
608 struct samsung_gpio_chip
*ourchip
= to_samsung_gpio(chip
);
609 void __iomem
*base
= ourchip
->base
;
613 con
= __raw_readl(base
+ GPIOCON_OFF
);
614 con
&= ~(0xf << con_4bit_shift(offset
));
615 con
|= 0x1 << con_4bit_shift(offset
);
617 dat
= __raw_readl(base
+ GPIODAT_OFF
);
622 dat
&= ~(1 << offset
);
624 __raw_writel(dat
, base
+ GPIODAT_OFF
);
625 __raw_writel(con
, base
+ GPIOCON_OFF
);
626 __raw_writel(dat
, base
+ GPIODAT_OFF
);
628 gpio_dbg("%s: %p: CON %08lx, DAT %08lx\n", __func__
, base
, con
, dat
);
634 * The next set of routines are for the case where the GPIO configuration
635 * registers are 4 bits per GPIO but there is more than one register (the
636 * bank has more than 8 GPIOs.
638 * This case is the similar to the 4 bit case, but the registers are as
641 * base + 0x00: Control register, 4 bits per gpio (lower 8 GPIOs)
642 * gpio n: 4 bits starting at (4*n)
643 * 0000 = input, 0001 = output, others mean special-function
644 * base + 0x04: Control register, 4 bits per gpio (up to 8 additions GPIOs)
645 * gpio n: 4 bits starting at (4*n)
646 * 0000 = input, 0001 = output, others mean special-function
647 * base + 0x08: Data register, 1 bit per gpio
650 * To allow us to use the samsung_gpiolib_get and samsung_gpiolib_set
651 * routines we store the 'base + 0x4' address so that these routines see
652 * the data register at ourchip->base + 0x04.
655 static int samsung_gpiolib_4bit2_input(struct gpio_chip
*chip
,
658 struct samsung_gpio_chip
*ourchip
= to_samsung_gpio(chip
);
659 void __iomem
*base
= ourchip
->base
;
660 void __iomem
*regcon
= base
;
668 con
= __raw_readl(regcon
);
669 con
&= ~(0xf << con_4bit_shift(offset
));
670 __raw_writel(con
, regcon
);
672 gpio_dbg("%s: %p: CON %08lx\n", __func__
, base
, con
);
677 static int samsung_gpiolib_4bit2_output(struct gpio_chip
*chip
,
678 unsigned int offset
, int value
)
680 struct samsung_gpio_chip
*ourchip
= to_samsung_gpio(chip
);
681 void __iomem
*base
= ourchip
->base
;
682 void __iomem
*regcon
= base
;
685 unsigned con_offset
= offset
;
692 con
= __raw_readl(regcon
);
693 con
&= ~(0xf << con_4bit_shift(con_offset
));
694 con
|= 0x1 << con_4bit_shift(con_offset
);
696 dat
= __raw_readl(base
+ GPIODAT_OFF
);
701 dat
&= ~(1 << offset
);
703 __raw_writel(dat
, base
+ GPIODAT_OFF
);
704 __raw_writel(con
, regcon
);
705 __raw_writel(dat
, base
+ GPIODAT_OFF
);
707 gpio_dbg("%s: %p: CON %08lx, DAT %08lx\n", __func__
, base
, con
, dat
);
712 #ifdef CONFIG_PLAT_S3C24XX
713 /* The next set of routines are for the case of s3c24xx bank a */
715 static int s3c24xx_gpiolib_banka_input(struct gpio_chip
*chip
, unsigned offset
)
720 static int s3c24xx_gpiolib_banka_output(struct gpio_chip
*chip
,
721 unsigned offset
, int value
)
723 struct samsung_gpio_chip
*ourchip
= to_samsung_gpio(chip
);
724 void __iomem
*base
= ourchip
->base
;
729 local_irq_save(flags
);
731 con
= __raw_readl(base
+ 0x00);
732 dat
= __raw_readl(base
+ 0x04);
734 dat
&= ~(1 << offset
);
738 __raw_writel(dat
, base
+ 0x04);
740 con
&= ~(1 << offset
);
742 __raw_writel(con
, base
+ 0x00);
743 __raw_writel(dat
, base
+ 0x04);
745 local_irq_restore(flags
);
750 /* The next set of routines are for the case of s5p64x0 bank r */
752 static int s5p64x0_gpiolib_rbank_input(struct gpio_chip
*chip
,
755 struct samsung_gpio_chip
*ourchip
= to_samsung_gpio(chip
);
756 void __iomem
*base
= ourchip
->base
;
757 void __iomem
*regcon
= base
;
777 samsung_gpio_lock(ourchip
, flags
);
779 con
= __raw_readl(regcon
);
780 con
&= ~(0xf << con_4bit_shift(offset
));
781 __raw_writel(con
, regcon
);
783 samsung_gpio_unlock(ourchip
, flags
);
788 static int s5p64x0_gpiolib_rbank_output(struct gpio_chip
*chip
,
789 unsigned int offset
, int value
)
791 struct samsung_gpio_chip
*ourchip
= to_samsung_gpio(chip
);
792 void __iomem
*base
= ourchip
->base
;
793 void __iomem
*regcon
= base
;
797 unsigned con_offset
= offset
;
799 switch (con_offset
) {
815 samsung_gpio_lock(ourchip
, flags
);
817 con
= __raw_readl(regcon
);
818 con
&= ~(0xf << con_4bit_shift(con_offset
));
819 con
|= 0x1 << con_4bit_shift(con_offset
);
821 dat
= __raw_readl(base
+ GPIODAT_OFF
);
825 dat
&= ~(1 << offset
);
827 __raw_writel(con
, regcon
);
828 __raw_writel(dat
, base
+ GPIODAT_OFF
);
830 samsung_gpio_unlock(ourchip
, flags
);
835 static void samsung_gpiolib_set(struct gpio_chip
*chip
,
836 unsigned offset
, int value
)
838 struct samsung_gpio_chip
*ourchip
= to_samsung_gpio(chip
);
839 void __iomem
*base
= ourchip
->base
;
843 samsung_gpio_lock(ourchip
, flags
);
845 dat
= __raw_readl(base
+ 0x04);
846 dat
&= ~(1 << offset
);
849 __raw_writel(dat
, base
+ 0x04);
851 samsung_gpio_unlock(ourchip
, flags
);
854 static int samsung_gpiolib_get(struct gpio_chip
*chip
, unsigned offset
)
856 struct samsung_gpio_chip
*ourchip
= to_samsung_gpio(chip
);
859 val
= __raw_readl(ourchip
->base
+ 0x04);
867 * CONFIG_S3C_GPIO_TRACK enables the tracking of the s3c specific gpios
868 * for use with the configuration calls, and other parts of the s3c gpiolib
871 * Not all s3c support code will need this, as some configurations of cpu
872 * may only support one or two different configuration options and have an
873 * easy gpio to samsung_gpio_chip mapping function. If this is the case, then
874 * the machine support file should provide its own samsung_gpiolib_getchip()
875 * and any other necessary functions.
878 #ifdef CONFIG_S3C_GPIO_TRACK
879 struct samsung_gpio_chip
*s3c_gpios
[S3C_GPIO_END
];
881 static __init
void s3c_gpiolib_track(struct samsung_gpio_chip
*chip
)
886 gpn
= chip
->chip
.base
;
887 for (i
= 0; i
< chip
->chip
.ngpio
; i
++, gpn
++) {
888 BUG_ON(gpn
>= ARRAY_SIZE(s3c_gpios
));
889 s3c_gpios
[gpn
] = chip
;
892 #endif /* CONFIG_S3C_GPIO_TRACK */
895 * samsung_gpiolib_add() - add the Samsung gpio_chip.
896 * @chip: The chip to register
898 * This is a wrapper to gpiochip_add() that takes our specific gpio chip
899 * information and makes the necessary alterations for the platform and
900 * notes the information for use with the configuration systems and any
901 * other parts of the system.
904 static void __init
samsung_gpiolib_add(struct samsung_gpio_chip
*chip
)
906 struct gpio_chip
*gc
= &chip
->chip
;
913 spin_lock_init(&chip
->lock
);
915 if (!gc
->direction_input
)
916 gc
->direction_input
= samsung_gpiolib_2bit_input
;
917 if (!gc
->direction_output
)
918 gc
->direction_output
= samsung_gpiolib_2bit_output
;
920 gc
->set
= samsung_gpiolib_set
;
922 gc
->get
= samsung_gpiolib_get
;
925 if (chip
->pm
!= NULL
) {
926 if (!chip
->pm
->save
|| !chip
->pm
->resume
)
927 printk(KERN_ERR
"gpio: %s has missing PM functions\n",
930 printk(KERN_ERR
"gpio: %s has no PM function\n", gc
->label
);
933 /* gpiochip_add() prints own failure message on error. */
934 ret
= gpiochip_add(gc
);
936 s3c_gpiolib_track(chip
);
939 static void __init
s3c24xx_gpiolib_add_chips(struct samsung_gpio_chip
*chip
,
940 int nr_chips
, void __iomem
*base
)
943 struct gpio_chip
*gc
= &chip
->chip
;
945 for (i
= 0 ; i
< nr_chips
; i
++, chip
++) {
946 /* skip banks not present on SoC */
947 if (chip
->chip
.base
>= S3C_GPIO_END
)
951 chip
->config
= &s3c24xx_gpiocfg_default
;
953 chip
->pm
= __gpio_pm(&samsung_gpio_pm_2bit
);
954 if ((base
!= NULL
) && (chip
->base
== NULL
))
955 chip
->base
= base
+ ((i
) * 0x10);
957 if (!gc
->direction_input
)
958 gc
->direction_input
= samsung_gpiolib_2bit_input
;
959 if (!gc
->direction_output
)
960 gc
->direction_output
= samsung_gpiolib_2bit_output
;
962 samsung_gpiolib_add(chip
);
966 static void __init
samsung_gpiolib_add_2bit_chips(struct samsung_gpio_chip
*chip
,
967 int nr_chips
, void __iomem
*base
,
972 for (i
= 0 ; i
< nr_chips
; i
++, chip
++) {
973 chip
->chip
.direction_input
= samsung_gpiolib_2bit_input
;
974 chip
->chip
.direction_output
= samsung_gpiolib_2bit_output
;
977 chip
->config
= &samsung_gpio_cfgs
[7];
979 chip
->pm
= __gpio_pm(&samsung_gpio_pm_2bit
);
980 if ((base
!= NULL
) && (chip
->base
== NULL
))
981 chip
->base
= base
+ ((i
) * offset
);
983 samsung_gpiolib_add(chip
);
988 * samsung_gpiolib_add_4bit_chips - 4bit single register GPIO config.
989 * @chip: The gpio chip that is being configured.
990 * @nr_chips: The no of chips (gpio ports) for the GPIO being configured.
992 * This helper deal with the GPIO cases where the control register has 4 bits
993 * of control per GPIO, generally in the form of:
996 * others = Special functions (dependent on bank)
998 * Note, since the code to deal with the case where there are two control
999 * registers instead of one, we do not have a separate set of function
1000 * (samsung_gpiolib_add_4bit2_chips)for each case.
1003 static void __init
samsung_gpiolib_add_4bit_chips(struct samsung_gpio_chip
*chip
,
1004 int nr_chips
, void __iomem
*base
)
1008 for (i
= 0 ; i
< nr_chips
; i
++, chip
++) {
1009 chip
->chip
.direction_input
= samsung_gpiolib_4bit_input
;
1010 chip
->chip
.direction_output
= samsung_gpiolib_4bit_output
;
1013 chip
->config
= &samsung_gpio_cfgs
[2];
1015 chip
->pm
= __gpio_pm(&samsung_gpio_pm_4bit
);
1016 if ((base
!= NULL
) && (chip
->base
== NULL
))
1017 chip
->base
= base
+ ((i
) * 0x20);
1019 samsung_gpiolib_add(chip
);
1023 static void __init
samsung_gpiolib_add_4bit2_chips(struct samsung_gpio_chip
*chip
,
1026 for (; nr_chips
> 0; nr_chips
--, chip
++) {
1027 chip
->chip
.direction_input
= samsung_gpiolib_4bit2_input
;
1028 chip
->chip
.direction_output
= samsung_gpiolib_4bit2_output
;
1031 chip
->config
= &samsung_gpio_cfgs
[2];
1033 chip
->pm
= __gpio_pm(&samsung_gpio_pm_4bit
);
1035 samsung_gpiolib_add(chip
);
1039 static void __init
s5p64x0_gpiolib_add_rbank(struct samsung_gpio_chip
*chip
,
1042 for (; nr_chips
> 0; nr_chips
--, chip
++) {
1043 chip
->chip
.direction_input
= s5p64x0_gpiolib_rbank_input
;
1044 chip
->chip
.direction_output
= s5p64x0_gpiolib_rbank_output
;
1047 chip
->pm
= __gpio_pm(&samsung_gpio_pm_4bit
);
1049 samsung_gpiolib_add(chip
);
1053 int samsung_gpiolib_to_irq(struct gpio_chip
*chip
, unsigned int offset
)
1055 struct samsung_gpio_chip
*samsung_chip
= container_of(chip
, struct samsung_gpio_chip
, chip
);
1057 return samsung_chip
->irq_base
+ offset
;
1060 #ifdef CONFIG_PLAT_S3C24XX
1061 static int s3c24xx_gpiolib_fbank_to_irq(struct gpio_chip
*chip
, unsigned offset
)
1064 return IRQ_EINT0
+ offset
;
1067 return IRQ_EINT4
+ offset
- 4;
1073 #ifdef CONFIG_PLAT_S3C64XX
1074 static int s3c64xx_gpiolib_mbank_to_irq(struct gpio_chip
*chip
, unsigned pin
)
1076 return pin
< 5 ? IRQ_EINT(23) + pin
: -ENXIO
;
1079 static int s3c64xx_gpiolib_lbank_to_irq(struct gpio_chip
*chip
, unsigned pin
)
1081 return pin
>= 8 ? IRQ_EINT(16) + pin
- 8 : -ENXIO
;
1085 struct samsung_gpio_chip s3c24xx_gpios
[] = {
1086 #ifdef CONFIG_PLAT_S3C24XX
1088 .config
= &s3c24xx_gpiocfg_banka
,
1090 .base
= S3C2410_GPA(0),
1091 .owner
= THIS_MODULE
,
1094 .direction_input
= s3c24xx_gpiolib_banka_input
,
1095 .direction_output
= s3c24xx_gpiolib_banka_output
,
1099 .base
= S3C2410_GPB(0),
1100 .owner
= THIS_MODULE
,
1106 .base
= S3C2410_GPC(0),
1107 .owner
= THIS_MODULE
,
1113 .base
= S3C2410_GPD(0),
1114 .owner
= THIS_MODULE
,
1120 .base
= S3C2410_GPE(0),
1122 .owner
= THIS_MODULE
,
1127 .base
= S3C2410_GPF(0),
1128 .owner
= THIS_MODULE
,
1131 .to_irq
= s3c24xx_gpiolib_fbank_to_irq
,
1134 .irq_base
= IRQ_EINT8
,
1136 .base
= S3C2410_GPG(0),
1137 .owner
= THIS_MODULE
,
1140 .to_irq
= samsung_gpiolib_to_irq
,
1144 .base
= S3C2410_GPH(0),
1145 .owner
= THIS_MODULE
,
1150 /* GPIOS for the S3C2443 and later devices. */
1152 .base
= S3C2440_GPJCON
,
1154 .base
= S3C2410_GPJ(0),
1155 .owner
= THIS_MODULE
,
1160 .base
= S3C2443_GPKCON
,
1162 .base
= S3C2410_GPK(0),
1163 .owner
= THIS_MODULE
,
1168 .base
= S3C2443_GPLCON
,
1170 .base
= S3C2410_GPL(0),
1171 .owner
= THIS_MODULE
,
1176 .base
= S3C2443_GPMCON
,
1178 .base
= S3C2410_GPM(0),
1179 .owner
= THIS_MODULE
,
1188 * GPIO bank summary:
1190 * Bank GPIOs Style SlpCon ExtInt Group
1196 * F 16 2Bit Yes 4 [1]
1198 * H 10 4Bit[2] Yes 6
1199 * I 16 2Bit Yes None
1200 * J 12 2Bit Yes None
1201 * K 16 4Bit[2] No None
1202 * L 15 4Bit[2] No None
1203 * M 6 4Bit No IRQ_EINT
1204 * N 16 2Bit No IRQ_EINT
1209 * [1] BANKF pins 14,15 do not form part of the external interrupt sources
1210 * [2] BANK has two control registers, GPxCON0 and GPxCON1
1213 static struct samsung_gpio_chip s3c64xx_gpios_4bit
[] = {
1214 #ifdef CONFIG_PLAT_S3C64XX
1217 .base
= S3C64XX_GPA(0),
1218 .ngpio
= S3C64XX_GPIO_A_NR
,
1223 .base
= S3C64XX_GPB(0),
1224 .ngpio
= S3C64XX_GPIO_B_NR
,
1229 .base
= S3C64XX_GPC(0),
1230 .ngpio
= S3C64XX_GPIO_C_NR
,
1235 .base
= S3C64XX_GPD(0),
1236 .ngpio
= S3C64XX_GPIO_D_NR
,
1240 .config
= &samsung_gpio_cfgs
[0],
1242 .base
= S3C64XX_GPE(0),
1243 .ngpio
= S3C64XX_GPIO_E_NR
,
1247 .base
= S3C64XX_GPG_BASE
,
1249 .base
= S3C64XX_GPG(0),
1250 .ngpio
= S3C64XX_GPIO_G_NR
,
1254 .base
= S3C64XX_GPM_BASE
,
1255 .config
= &samsung_gpio_cfgs
[1],
1257 .base
= S3C64XX_GPM(0),
1258 .ngpio
= S3C64XX_GPIO_M_NR
,
1260 .to_irq
= s3c64xx_gpiolib_mbank_to_irq
,
1266 static struct samsung_gpio_chip s3c64xx_gpios_4bit2
[] = {
1267 #ifdef CONFIG_PLAT_S3C64XX
1269 .base
= S3C64XX_GPH_BASE
+ 0x4,
1271 .base
= S3C64XX_GPH(0),
1272 .ngpio
= S3C64XX_GPIO_H_NR
,
1276 .base
= S3C64XX_GPK_BASE
+ 0x4,
1277 .config
= &samsung_gpio_cfgs
[0],
1279 .base
= S3C64XX_GPK(0),
1280 .ngpio
= S3C64XX_GPIO_K_NR
,
1284 .base
= S3C64XX_GPL_BASE
+ 0x4,
1285 .config
= &samsung_gpio_cfgs
[1],
1287 .base
= S3C64XX_GPL(0),
1288 .ngpio
= S3C64XX_GPIO_L_NR
,
1290 .to_irq
= s3c64xx_gpiolib_lbank_to_irq
,
1296 static struct samsung_gpio_chip s3c64xx_gpios_2bit
[] = {
1297 #ifdef CONFIG_PLAT_S3C64XX
1299 .base
= S3C64XX_GPF_BASE
,
1300 .config
= &samsung_gpio_cfgs
[6],
1302 .base
= S3C64XX_GPF(0),
1303 .ngpio
= S3C64XX_GPIO_F_NR
,
1307 .config
= &samsung_gpio_cfgs
[7],
1309 .base
= S3C64XX_GPI(0),
1310 .ngpio
= S3C64XX_GPIO_I_NR
,
1314 .config
= &samsung_gpio_cfgs
[7],
1316 .base
= S3C64XX_GPJ(0),
1317 .ngpio
= S3C64XX_GPIO_J_NR
,
1321 .config
= &samsung_gpio_cfgs
[6],
1323 .base
= S3C64XX_GPO(0),
1324 .ngpio
= S3C64XX_GPIO_O_NR
,
1328 .config
= &samsung_gpio_cfgs
[6],
1330 .base
= S3C64XX_GPP(0),
1331 .ngpio
= S3C64XX_GPIO_P_NR
,
1335 .config
= &samsung_gpio_cfgs
[6],
1337 .base
= S3C64XX_GPQ(0),
1338 .ngpio
= S3C64XX_GPIO_Q_NR
,
1342 .base
= S3C64XX_GPN_BASE
,
1343 .irq_base
= IRQ_EINT(0),
1344 .config
= &samsung_gpio_cfgs
[5],
1346 .base
= S3C64XX_GPN(0),
1347 .ngpio
= S3C64XX_GPIO_N_NR
,
1349 .to_irq
= samsung_gpiolib_to_irq
,
1356 * S5P6440 GPIO bank summary:
1358 * Bank GPIOs Style SlpCon ExtInt Group
1362 * F 2 2Bit Yes 4 [1]
1364 * H 10 4Bit[2] Yes 6
1365 * I 16 2Bit Yes None
1366 * J 12 2Bit Yes None
1367 * N 16 2Bit No IRQ_EINT
1369 * R 15 4Bit[2] Yes 8
1372 static struct samsung_gpio_chip s5p6440_gpios_4bit
[] = {
1373 #ifdef CONFIG_CPU_S5P6440
1376 .base
= S5P6440_GPA(0),
1377 .ngpio
= S5P6440_GPIO_A_NR
,
1382 .base
= S5P6440_GPB(0),
1383 .ngpio
= S5P6440_GPIO_B_NR
,
1388 .base
= S5P6440_GPC(0),
1389 .ngpio
= S5P6440_GPIO_C_NR
,
1393 .base
= S5P64X0_GPG_BASE
,
1395 .base
= S5P6440_GPG(0),
1396 .ngpio
= S5P6440_GPIO_G_NR
,
1403 static struct samsung_gpio_chip s5p6440_gpios_4bit2
[] = {
1404 #ifdef CONFIG_CPU_S5P6440
1406 .base
= S5P64X0_GPH_BASE
+ 0x4,
1408 .base
= S5P6440_GPH(0),
1409 .ngpio
= S5P6440_GPIO_H_NR
,
1416 static struct samsung_gpio_chip s5p6440_gpios_rbank
[] = {
1417 #ifdef CONFIG_CPU_S5P6440
1419 .base
= S5P64X0_GPR_BASE
+ 0x4,
1420 .config
= &s5p64x0_gpio_cfg_rbank
,
1422 .base
= S5P6440_GPR(0),
1423 .ngpio
= S5P6440_GPIO_R_NR
,
1430 static struct samsung_gpio_chip s5p6440_gpios_2bit
[] = {
1431 #ifdef CONFIG_CPU_S5P6440
1433 .base
= S5P64X0_GPF_BASE
,
1434 .config
= &samsung_gpio_cfgs
[6],
1436 .base
= S5P6440_GPF(0),
1437 .ngpio
= S5P6440_GPIO_F_NR
,
1441 .base
= S5P64X0_GPI_BASE
,
1442 .config
= &samsung_gpio_cfgs
[4],
1444 .base
= S5P6440_GPI(0),
1445 .ngpio
= S5P6440_GPIO_I_NR
,
1449 .base
= S5P64X0_GPJ_BASE
,
1450 .config
= &samsung_gpio_cfgs
[4],
1452 .base
= S5P6440_GPJ(0),
1453 .ngpio
= S5P6440_GPIO_J_NR
,
1457 .base
= S5P64X0_GPN_BASE
,
1458 .config
= &samsung_gpio_cfgs
[5],
1460 .base
= S5P6440_GPN(0),
1461 .ngpio
= S5P6440_GPIO_N_NR
,
1465 .base
= S5P64X0_GPP_BASE
,
1466 .config
= &samsung_gpio_cfgs
[6],
1468 .base
= S5P6440_GPP(0),
1469 .ngpio
= S5P6440_GPIO_P_NR
,
1477 * S5P6450 GPIO bank summary:
1479 * Bank GPIOs Style SlpCon ExtInt Group
1485 * G 14 4Bit[2] Yes 5
1486 * H 10 4Bit[2] Yes 6
1487 * I 16 2Bit Yes None
1488 * J 12 2Bit Yes None
1490 * N 16 2Bit No IRQ_EINT
1492 * Q 14 2Bit Yes None
1493 * R 15 4Bit[2] Yes None
1496 * [1] BANKF pins 14,15 do not form part of the external interrupt sources
1497 * [2] BANK has two control registers, GPxCON0 and GPxCON1
1500 static struct samsung_gpio_chip s5p6450_gpios_4bit
[] = {
1501 #ifdef CONFIG_CPU_S5P6450
1504 .base
= S5P6450_GPA(0),
1505 .ngpio
= S5P6450_GPIO_A_NR
,
1510 .base
= S5P6450_GPB(0),
1511 .ngpio
= S5P6450_GPIO_B_NR
,
1516 .base
= S5P6450_GPC(0),
1517 .ngpio
= S5P6450_GPIO_C_NR
,
1522 .base
= S5P6450_GPD(0),
1523 .ngpio
= S5P6450_GPIO_D_NR
,
1527 .base
= S5P6450_GPK_BASE
,
1529 .base
= S5P6450_GPK(0),
1530 .ngpio
= S5P6450_GPIO_K_NR
,
1537 static struct samsung_gpio_chip s5p6450_gpios_4bit2
[] = {
1538 #ifdef CONFIG_CPU_S5P6450
1540 .base
= S5P64X0_GPG_BASE
+ 0x4,
1542 .base
= S5P6450_GPG(0),
1543 .ngpio
= S5P6450_GPIO_G_NR
,
1547 .base
= S5P64X0_GPH_BASE
+ 0x4,
1549 .base
= S5P6450_GPH(0),
1550 .ngpio
= S5P6450_GPIO_H_NR
,
1557 static struct samsung_gpio_chip s5p6450_gpios_rbank
[] = {
1558 #ifdef CONFIG_CPU_S5P6450
1560 .base
= S5P64X0_GPR_BASE
+ 0x4,
1561 .config
= &s5p64x0_gpio_cfg_rbank
,
1563 .base
= S5P6450_GPR(0),
1564 .ngpio
= S5P6450_GPIO_R_NR
,
1571 static struct samsung_gpio_chip s5p6450_gpios_2bit
[] = {
1572 #ifdef CONFIG_CPU_S5P6450
1574 .base
= S5P64X0_GPF_BASE
,
1575 .config
= &samsung_gpio_cfgs
[6],
1577 .base
= S5P6450_GPF(0),
1578 .ngpio
= S5P6450_GPIO_F_NR
,
1582 .base
= S5P64X0_GPI_BASE
,
1583 .config
= &samsung_gpio_cfgs
[4],
1585 .base
= S5P6450_GPI(0),
1586 .ngpio
= S5P6450_GPIO_I_NR
,
1590 .base
= S5P64X0_GPJ_BASE
,
1591 .config
= &samsung_gpio_cfgs
[4],
1593 .base
= S5P6450_GPJ(0),
1594 .ngpio
= S5P6450_GPIO_J_NR
,
1598 .base
= S5P64X0_GPN_BASE
,
1599 .config
= &samsung_gpio_cfgs
[5],
1601 .base
= S5P6450_GPN(0),
1602 .ngpio
= S5P6450_GPIO_N_NR
,
1606 .base
= S5P64X0_GPP_BASE
,
1607 .config
= &samsung_gpio_cfgs
[6],
1609 .base
= S5P6450_GPP(0),
1610 .ngpio
= S5P6450_GPIO_P_NR
,
1614 .base
= S5P6450_GPQ_BASE
,
1615 .config
= &samsung_gpio_cfgs
[5],
1617 .base
= S5P6450_GPQ(0),
1618 .ngpio
= S5P6450_GPIO_Q_NR
,
1622 .base
= S5P6450_GPS_BASE
,
1623 .config
= &samsung_gpio_cfgs
[6],
1625 .base
= S5P6450_GPS(0),
1626 .ngpio
= S5P6450_GPIO_S_NR
,
1634 * S5PC100 GPIO bank summary:
1636 * Bank GPIOs Style INT Type
1637 * A0 8 4Bit GPIO_INT0
1638 * A1 5 4Bit GPIO_INT1
1639 * B 8 4Bit GPIO_INT2
1640 * C 5 4Bit GPIO_INT3
1641 * D 7 4Bit GPIO_INT4
1642 * E0 8 4Bit GPIO_INT5
1643 * E1 6 4Bit GPIO_INT6
1644 * F0 8 4Bit GPIO_INT7
1645 * F1 8 4Bit GPIO_INT8
1646 * F2 8 4Bit GPIO_INT9
1647 * F3 4 4Bit GPIO_INT10
1648 * G0 8 4Bit GPIO_INT11
1649 * G1 3 4Bit GPIO_INT12
1650 * G2 7 4Bit GPIO_INT13
1651 * G3 7 4Bit GPIO_INT14
1652 * H0 8 4Bit WKUP_INT
1653 * H1 8 4Bit WKUP_INT
1654 * H2 8 4Bit WKUP_INT
1655 * H3 8 4Bit WKUP_INT
1656 * I 8 4Bit GPIO_INT15
1657 * J0 8 4Bit GPIO_INT16
1658 * J1 5 4Bit GPIO_INT17
1659 * J2 8 4Bit GPIO_INT18
1660 * J3 8 4Bit GPIO_INT19
1661 * J4 4 4Bit GPIO_INT20
1672 static struct samsung_gpio_chip s5pc100_gpios_4bit
[] = {
1673 #ifdef CONFIG_CPU_S5PC100
1676 .base
= S5PC100_GPA0(0),
1677 .ngpio
= S5PC100_GPIO_A0_NR
,
1682 .base
= S5PC100_GPA1(0),
1683 .ngpio
= S5PC100_GPIO_A1_NR
,
1688 .base
= S5PC100_GPB(0),
1689 .ngpio
= S5PC100_GPIO_B_NR
,
1694 .base
= S5PC100_GPC(0),
1695 .ngpio
= S5PC100_GPIO_C_NR
,
1700 .base
= S5PC100_GPD(0),
1701 .ngpio
= S5PC100_GPIO_D_NR
,
1706 .base
= S5PC100_GPE0(0),
1707 .ngpio
= S5PC100_GPIO_E0_NR
,
1712 .base
= S5PC100_GPE1(0),
1713 .ngpio
= S5PC100_GPIO_E1_NR
,
1718 .base
= S5PC100_GPF0(0),
1719 .ngpio
= S5PC100_GPIO_F0_NR
,
1724 .base
= S5PC100_GPF1(0),
1725 .ngpio
= S5PC100_GPIO_F1_NR
,
1730 .base
= S5PC100_GPF2(0),
1731 .ngpio
= S5PC100_GPIO_F2_NR
,
1736 .base
= S5PC100_GPF3(0),
1737 .ngpio
= S5PC100_GPIO_F3_NR
,
1742 .base
= S5PC100_GPG0(0),
1743 .ngpio
= S5PC100_GPIO_G0_NR
,
1748 .base
= S5PC100_GPG1(0),
1749 .ngpio
= S5PC100_GPIO_G1_NR
,
1754 .base
= S5PC100_GPG2(0),
1755 .ngpio
= S5PC100_GPIO_G2_NR
,
1760 .base
= S5PC100_GPG3(0),
1761 .ngpio
= S5PC100_GPIO_G3_NR
,
1766 .base
= S5PC100_GPI(0),
1767 .ngpio
= S5PC100_GPIO_I_NR
,
1772 .base
= S5PC100_GPJ0(0),
1773 .ngpio
= S5PC100_GPIO_J0_NR
,
1778 .base
= S5PC100_GPJ1(0),
1779 .ngpio
= S5PC100_GPIO_J1_NR
,
1784 .base
= S5PC100_GPJ2(0),
1785 .ngpio
= S5PC100_GPIO_J2_NR
,
1790 .base
= S5PC100_GPJ3(0),
1791 .ngpio
= S5PC100_GPIO_J3_NR
,
1796 .base
= S5PC100_GPJ4(0),
1797 .ngpio
= S5PC100_GPIO_J4_NR
,
1802 .base
= S5PC100_GPK0(0),
1803 .ngpio
= S5PC100_GPIO_K0_NR
,
1808 .base
= S5PC100_GPK1(0),
1809 .ngpio
= S5PC100_GPIO_K1_NR
,
1814 .base
= S5PC100_GPK2(0),
1815 .ngpio
= S5PC100_GPIO_K2_NR
,
1820 .base
= S5PC100_GPK3(0),
1821 .ngpio
= S5PC100_GPIO_K3_NR
,
1826 .base
= S5PC100_GPL0(0),
1827 .ngpio
= S5PC100_GPIO_L0_NR
,
1832 .base
= S5PC100_GPL1(0),
1833 .ngpio
= S5PC100_GPIO_L1_NR
,
1838 .base
= S5PC100_GPL2(0),
1839 .ngpio
= S5PC100_GPIO_L2_NR
,
1844 .base
= S5PC100_GPL3(0),
1845 .ngpio
= S5PC100_GPIO_L3_NR
,
1850 .base
= S5PC100_GPL4(0),
1851 .ngpio
= S5PC100_GPIO_L4_NR
,
1855 .base
= (S5P_VA_GPIO
+ 0xC00),
1856 .irq_base
= IRQ_EINT(0),
1858 .base
= S5PC100_GPH0(0),
1859 .ngpio
= S5PC100_GPIO_H0_NR
,
1861 .to_irq
= samsung_gpiolib_to_irq
,
1864 .base
= (S5P_VA_GPIO
+ 0xC20),
1865 .irq_base
= IRQ_EINT(8),
1867 .base
= S5PC100_GPH1(0),
1868 .ngpio
= S5PC100_GPIO_H1_NR
,
1870 .to_irq
= samsung_gpiolib_to_irq
,
1873 .base
= (S5P_VA_GPIO
+ 0xC40),
1874 .irq_base
= IRQ_EINT(16),
1876 .base
= S5PC100_GPH2(0),
1877 .ngpio
= S5PC100_GPIO_H2_NR
,
1879 .to_irq
= samsung_gpiolib_to_irq
,
1882 .base
= (S5P_VA_GPIO
+ 0xC60),
1883 .irq_base
= IRQ_EINT(24),
1885 .base
= S5PC100_GPH3(0),
1886 .ngpio
= S5PC100_GPIO_H3_NR
,
1888 .to_irq
= samsung_gpiolib_to_irq
,
1895 * Followings are the gpio banks in S5PV210/S5PC110
1897 * The 'config' member when left to NULL, is initialized to the default
1898 * structure samsung_gpio_cfgs[3] in the init function below.
1900 * The 'base' member is also initialized in the init function below.
1901 * Note: The initialization of 'base' member of samsung_gpio_chip structure
1902 * uses the above macro and depends on the banks being listed in order here.
1905 static struct samsung_gpio_chip s5pv210_gpios_4bit
[] = {
1906 #ifdef CONFIG_CPU_S5PV210
1909 .base
= S5PV210_GPA0(0),
1910 .ngpio
= S5PV210_GPIO_A0_NR
,
1915 .base
= S5PV210_GPA1(0),
1916 .ngpio
= S5PV210_GPIO_A1_NR
,
1921 .base
= S5PV210_GPB(0),
1922 .ngpio
= S5PV210_GPIO_B_NR
,
1927 .base
= S5PV210_GPC0(0),
1928 .ngpio
= S5PV210_GPIO_C0_NR
,
1933 .base
= S5PV210_GPC1(0),
1934 .ngpio
= S5PV210_GPIO_C1_NR
,
1939 .base
= S5PV210_GPD0(0),
1940 .ngpio
= S5PV210_GPIO_D0_NR
,
1945 .base
= S5PV210_GPD1(0),
1946 .ngpio
= S5PV210_GPIO_D1_NR
,
1951 .base
= S5PV210_GPE0(0),
1952 .ngpio
= S5PV210_GPIO_E0_NR
,
1957 .base
= S5PV210_GPE1(0),
1958 .ngpio
= S5PV210_GPIO_E1_NR
,
1963 .base
= S5PV210_GPF0(0),
1964 .ngpio
= S5PV210_GPIO_F0_NR
,
1969 .base
= S5PV210_GPF1(0),
1970 .ngpio
= S5PV210_GPIO_F1_NR
,
1975 .base
= S5PV210_GPF2(0),
1976 .ngpio
= S5PV210_GPIO_F2_NR
,
1981 .base
= S5PV210_GPF3(0),
1982 .ngpio
= S5PV210_GPIO_F3_NR
,
1987 .base
= S5PV210_GPG0(0),
1988 .ngpio
= S5PV210_GPIO_G0_NR
,
1993 .base
= S5PV210_GPG1(0),
1994 .ngpio
= S5PV210_GPIO_G1_NR
,
1999 .base
= S5PV210_GPG2(0),
2000 .ngpio
= S5PV210_GPIO_G2_NR
,
2005 .base
= S5PV210_GPG3(0),
2006 .ngpio
= S5PV210_GPIO_G3_NR
,
2011 .base
= S5PV210_GPI(0),
2012 .ngpio
= S5PV210_GPIO_I_NR
,
2017 .base
= S5PV210_GPJ0(0),
2018 .ngpio
= S5PV210_GPIO_J0_NR
,
2023 .base
= S5PV210_GPJ1(0),
2024 .ngpio
= S5PV210_GPIO_J1_NR
,
2029 .base
= S5PV210_GPJ2(0),
2030 .ngpio
= S5PV210_GPIO_J2_NR
,
2035 .base
= S5PV210_GPJ3(0),
2036 .ngpio
= S5PV210_GPIO_J3_NR
,
2041 .base
= S5PV210_GPJ4(0),
2042 .ngpio
= S5PV210_GPIO_J4_NR
,
2047 .base
= S5PV210_MP01(0),
2048 .ngpio
= S5PV210_GPIO_MP01_NR
,
2053 .base
= S5PV210_MP02(0),
2054 .ngpio
= S5PV210_GPIO_MP02_NR
,
2059 .base
= S5PV210_MP03(0),
2060 .ngpio
= S5PV210_GPIO_MP03_NR
,
2065 .base
= S5PV210_MP04(0),
2066 .ngpio
= S5PV210_GPIO_MP04_NR
,
2071 .base
= S5PV210_MP05(0),
2072 .ngpio
= S5PV210_GPIO_MP05_NR
,
2076 .base
= (S5P_VA_GPIO
+ 0xC00),
2077 .irq_base
= IRQ_EINT(0),
2079 .base
= S5PV210_GPH0(0),
2080 .ngpio
= S5PV210_GPIO_H0_NR
,
2082 .to_irq
= samsung_gpiolib_to_irq
,
2085 .base
= (S5P_VA_GPIO
+ 0xC20),
2086 .irq_base
= IRQ_EINT(8),
2088 .base
= S5PV210_GPH1(0),
2089 .ngpio
= S5PV210_GPIO_H1_NR
,
2091 .to_irq
= samsung_gpiolib_to_irq
,
2094 .base
= (S5P_VA_GPIO
+ 0xC40),
2095 .irq_base
= IRQ_EINT(16),
2097 .base
= S5PV210_GPH2(0),
2098 .ngpio
= S5PV210_GPIO_H2_NR
,
2100 .to_irq
= samsung_gpiolib_to_irq
,
2103 .base
= (S5P_VA_GPIO
+ 0xC60),
2104 .irq_base
= IRQ_EINT(24),
2106 .base
= S5PV210_GPH3(0),
2107 .ngpio
= S5PV210_GPIO_H3_NR
,
2109 .to_irq
= samsung_gpiolib_to_irq
,
2116 * Followings are the gpio banks in EXYNOS4210
2118 * The 'config' member when left to NULL, is initialized to the default
2119 * structure samsung_gpio_cfgs[3] in the init function below.
2121 * The 'base' member is also initialized in the init function below.
2122 * Note: The initialization of 'base' member of samsung_gpio_chip structure
2123 * uses the above macro and depends on the banks being listed in order here.
2126 static struct samsung_gpio_chip exynos4_gpios_1
[] = {
2127 #ifdef CONFIG_ARCH_EXYNOS4
2130 .base
= EXYNOS4_GPA0(0),
2131 .ngpio
= EXYNOS4_GPIO_A0_NR
,
2136 .base
= EXYNOS4_GPA1(0),
2137 .ngpio
= EXYNOS4_GPIO_A1_NR
,
2142 .base
= EXYNOS4_GPB(0),
2143 .ngpio
= EXYNOS4_GPIO_B_NR
,
2148 .base
= EXYNOS4_GPC0(0),
2149 .ngpio
= EXYNOS4_GPIO_C0_NR
,
2154 .base
= EXYNOS4_GPC1(0),
2155 .ngpio
= EXYNOS4_GPIO_C1_NR
,
2160 .base
= EXYNOS4_GPD0(0),
2161 .ngpio
= EXYNOS4_GPIO_D0_NR
,
2166 .base
= EXYNOS4_GPD1(0),
2167 .ngpio
= EXYNOS4_GPIO_D1_NR
,
2172 .base
= EXYNOS4_GPE0(0),
2173 .ngpio
= EXYNOS4_GPIO_E0_NR
,
2178 .base
= EXYNOS4_GPE1(0),
2179 .ngpio
= EXYNOS4_GPIO_E1_NR
,
2184 .base
= EXYNOS4_GPE2(0),
2185 .ngpio
= EXYNOS4_GPIO_E2_NR
,
2190 .base
= EXYNOS4_GPE3(0),
2191 .ngpio
= EXYNOS4_GPIO_E3_NR
,
2196 .base
= EXYNOS4_GPE4(0),
2197 .ngpio
= EXYNOS4_GPIO_E4_NR
,
2202 .base
= EXYNOS4_GPF0(0),
2203 .ngpio
= EXYNOS4_GPIO_F0_NR
,
2208 .base
= EXYNOS4_GPF1(0),
2209 .ngpio
= EXYNOS4_GPIO_F1_NR
,
2214 .base
= EXYNOS4_GPF2(0),
2215 .ngpio
= EXYNOS4_GPIO_F2_NR
,
2220 .base
= EXYNOS4_GPF3(0),
2221 .ngpio
= EXYNOS4_GPIO_F3_NR
,
2228 static struct samsung_gpio_chip exynos4_gpios_2
[] = {
2229 #ifdef CONFIG_ARCH_EXYNOS4
2232 .base
= EXYNOS4_GPJ0(0),
2233 .ngpio
= EXYNOS4_GPIO_J0_NR
,
2238 .base
= EXYNOS4_GPJ1(0),
2239 .ngpio
= EXYNOS4_GPIO_J1_NR
,
2244 .base
= EXYNOS4_GPK0(0),
2245 .ngpio
= EXYNOS4_GPIO_K0_NR
,
2250 .base
= EXYNOS4_GPK1(0),
2251 .ngpio
= EXYNOS4_GPIO_K1_NR
,
2256 .base
= EXYNOS4_GPK2(0),
2257 .ngpio
= EXYNOS4_GPIO_K2_NR
,
2262 .base
= EXYNOS4_GPK3(0),
2263 .ngpio
= EXYNOS4_GPIO_K3_NR
,
2268 .base
= EXYNOS4_GPL0(0),
2269 .ngpio
= EXYNOS4_GPIO_L0_NR
,
2274 .base
= EXYNOS4_GPL1(0),
2275 .ngpio
= EXYNOS4_GPIO_L1_NR
,
2280 .base
= EXYNOS4_GPL2(0),
2281 .ngpio
= EXYNOS4_GPIO_L2_NR
,
2285 .config
= &samsung_gpio_cfgs
[8],
2287 .base
= EXYNOS4_GPY0(0),
2288 .ngpio
= EXYNOS4_GPIO_Y0_NR
,
2292 .config
= &samsung_gpio_cfgs
[8],
2294 .base
= EXYNOS4_GPY1(0),
2295 .ngpio
= EXYNOS4_GPIO_Y1_NR
,
2299 .config
= &samsung_gpio_cfgs
[8],
2301 .base
= EXYNOS4_GPY2(0),
2302 .ngpio
= EXYNOS4_GPIO_Y2_NR
,
2306 .config
= &samsung_gpio_cfgs
[8],
2308 .base
= EXYNOS4_GPY3(0),
2309 .ngpio
= EXYNOS4_GPIO_Y3_NR
,
2313 .config
= &samsung_gpio_cfgs
[8],
2315 .base
= EXYNOS4_GPY4(0),
2316 .ngpio
= EXYNOS4_GPIO_Y4_NR
,
2320 .config
= &samsung_gpio_cfgs
[8],
2322 .base
= EXYNOS4_GPY5(0),
2323 .ngpio
= EXYNOS4_GPIO_Y5_NR
,
2327 .config
= &samsung_gpio_cfgs
[8],
2329 .base
= EXYNOS4_GPY6(0),
2330 .ngpio
= EXYNOS4_GPIO_Y6_NR
,
2334 .base
= (S5P_VA_GPIO2
+ 0xC00),
2335 .config
= &samsung_gpio_cfgs
[9],
2336 .irq_base
= IRQ_EINT(0),
2338 .base
= EXYNOS4_GPX0(0),
2339 .ngpio
= EXYNOS4_GPIO_X0_NR
,
2341 .to_irq
= samsung_gpiolib_to_irq
,
2344 .base
= (S5P_VA_GPIO2
+ 0xC20),
2345 .config
= &samsung_gpio_cfgs
[9],
2346 .irq_base
= IRQ_EINT(8),
2348 .base
= EXYNOS4_GPX1(0),
2349 .ngpio
= EXYNOS4_GPIO_X1_NR
,
2351 .to_irq
= samsung_gpiolib_to_irq
,
2354 .base
= (S5P_VA_GPIO2
+ 0xC40),
2355 .config
= &samsung_gpio_cfgs
[9],
2356 .irq_base
= IRQ_EINT(16),
2358 .base
= EXYNOS4_GPX2(0),
2359 .ngpio
= EXYNOS4_GPIO_X2_NR
,
2361 .to_irq
= samsung_gpiolib_to_irq
,
2364 .base
= (S5P_VA_GPIO2
+ 0xC60),
2365 .config
= &samsung_gpio_cfgs
[9],
2366 .irq_base
= IRQ_EINT(24),
2368 .base
= EXYNOS4_GPX3(0),
2369 .ngpio
= EXYNOS4_GPIO_X3_NR
,
2371 .to_irq
= samsung_gpiolib_to_irq
,
2377 static struct samsung_gpio_chip exynos4_gpios_3
[] = {
2378 #ifdef CONFIG_ARCH_EXYNOS4
2381 .base
= EXYNOS4_GPZ(0),
2382 .ngpio
= EXYNOS4_GPIO_Z_NR
,
2389 #if defined(CONFIG_ARCH_EXYNOS4) && defined(CONFIG_OF)
2390 static int exynos4_gpio_xlate(struct gpio_chip
*gc
,
2391 const struct of_phandle_args
*gpiospec
, u32
*flags
)
2395 if (WARN_ON(gc
->of_gpio_n_cells
< 4))
2398 if (WARN_ON(gpiospec
->args_count
< gc
->of_gpio_n_cells
))
2401 if (gpiospec
->args
[0] > gc
->ngpio
)
2404 pin
= gc
->base
+ gpiospec
->args
[0];
2406 if (s3c_gpio_cfgpin(pin
, S3C_GPIO_SFN(gpiospec
->args
[1])))
2407 pr_warn("gpio_xlate: failed to set pin function\n");
2408 if (s3c_gpio_setpull(pin
, gpiospec
->args
[2]))
2409 pr_warn("gpio_xlate: failed to set pin pull up/down\n");
2410 if (s5p_gpio_set_drvstr(pin
, gpiospec
->args
[3]))
2411 pr_warn("gpio_xlate: failed to set pin drive strength\n");
2413 return gpiospec
->args
[0];
2416 static const struct of_device_id exynos4_gpio_dt_match
[] __initdata
= {
2417 { .compatible
= "samsung,exynos4-gpio", },
2421 static __init
void exynos4_gpiolib_attach_ofnode(struct samsung_gpio_chip
*chip
,
2422 u64 base
, u64 offset
)
2424 struct gpio_chip
*gc
= &chip
->chip
;
2427 if (!of_have_populated_dt())
2430 address
= chip
->base
? base
+ ((u32
)chip
->base
& 0xfff) : base
+ offset
;
2431 gc
->of_node
= of_find_matching_node_by_address(NULL
,
2432 exynos4_gpio_dt_match
, address
);
2434 pr_info("gpio: device tree node not found for gpio controller"
2435 " with base address %08llx\n", address
);
2438 gc
->of_gpio_n_cells
= 4;
2439 gc
->of_xlate
= exynos4_gpio_xlate
;
2441 #elif defined(CONFIG_ARCH_EXYNOS4)
2442 static __init
void exynos4_gpiolib_attach_ofnode(struct samsung_gpio_chip
*chip
,
2443 u64 base
, u64 offset
)
2447 #endif /* defined(CONFIG_ARCH_EXYNOS4) && defined(CONFIG_OF) */
2449 /* TODO: cleanup soc_is_* */
2450 static __init
int samsung_gpiolib_init(void)
2452 struct samsung_gpio_chip
*chip
;
2456 samsung_gpiolib_set_cfg(samsung_gpio_cfgs
, ARRAY_SIZE(samsung_gpio_cfgs
));
2458 if (soc_is_s3c24xx()) {
2459 s3c24xx_gpiolib_add_chips(s3c24xx_gpios
,
2460 ARRAY_SIZE(s3c24xx_gpios
), S3C24XX_VA_GPIO
);
2461 } else if (soc_is_s3c64xx()) {
2462 samsung_gpiolib_add_2bit_chips(s3c64xx_gpios_2bit
,
2463 ARRAY_SIZE(s3c64xx_gpios_2bit
),
2464 S3C64XX_VA_GPIO
+ 0xE0, 0x20);
2465 samsung_gpiolib_add_4bit_chips(s3c64xx_gpios_4bit
,
2466 ARRAY_SIZE(s3c64xx_gpios_4bit
),
2468 samsung_gpiolib_add_4bit2_chips(s3c64xx_gpios_4bit2
,
2469 ARRAY_SIZE(s3c64xx_gpios_4bit2
));
2470 } else if (soc_is_s5p6440()) {
2471 samsung_gpiolib_add_2bit_chips(s5p6440_gpios_2bit
,
2472 ARRAY_SIZE(s5p6440_gpios_2bit
), NULL
, 0x0);
2473 samsung_gpiolib_add_4bit_chips(s5p6440_gpios_4bit
,
2474 ARRAY_SIZE(s5p6440_gpios_4bit
), S5P_VA_GPIO
);
2475 samsung_gpiolib_add_4bit2_chips(s5p6440_gpios_4bit2
,
2476 ARRAY_SIZE(s5p6440_gpios_4bit2
));
2477 s5p64x0_gpiolib_add_rbank(s5p6440_gpios_rbank
,
2478 ARRAY_SIZE(s5p6440_gpios_rbank
));
2479 } else if (soc_is_s5p6450()) {
2480 samsung_gpiolib_add_2bit_chips(s5p6450_gpios_2bit
,
2481 ARRAY_SIZE(s5p6450_gpios_2bit
), NULL
, 0x0);
2482 samsung_gpiolib_add_4bit_chips(s5p6450_gpios_4bit
,
2483 ARRAY_SIZE(s5p6450_gpios_4bit
), S5P_VA_GPIO
);
2484 samsung_gpiolib_add_4bit2_chips(s5p6450_gpios_4bit2
,
2485 ARRAY_SIZE(s5p6450_gpios_4bit2
));
2486 s5p64x0_gpiolib_add_rbank(s5p6450_gpios_rbank
,
2487 ARRAY_SIZE(s5p6450_gpios_rbank
));
2488 } else if (soc_is_s5pc100()) {
2490 chip
= s5pc100_gpios_4bit
;
2491 nr_chips
= ARRAY_SIZE(s5pc100_gpios_4bit
);
2493 for (i
= 0; i
< nr_chips
; i
++, chip
++) {
2494 if (!chip
->config
) {
2495 chip
->config
= &samsung_gpio_cfgs
[3];
2496 chip
->group
= group
++;
2499 samsung_gpiolib_add_4bit_chips(s5pc100_gpios_4bit
, nr_chips
, S5P_VA_GPIO
);
2500 #if defined(CONFIG_CPU_S5PC100) && defined(CONFIG_S5P_GPIO_INT)
2501 s5p_register_gpioint_bank(IRQ_GPIOINT
, 0, S5P_GPIOINT_GROUP_MAXNR
);
2503 } else if (soc_is_s5pv210()) {
2505 chip
= s5pv210_gpios_4bit
;
2506 nr_chips
= ARRAY_SIZE(s5pv210_gpios_4bit
);
2508 for (i
= 0; i
< nr_chips
; i
++, chip
++) {
2509 if (!chip
->config
) {
2510 chip
->config
= &samsung_gpio_cfgs
[3];
2511 chip
->group
= group
++;
2514 samsung_gpiolib_add_4bit_chips(s5pv210_gpios_4bit
, nr_chips
, S5P_VA_GPIO
);
2515 #if defined(CONFIG_CPU_S5PV210) && defined(CONFIG_S5P_GPIO_INT)
2516 s5p_register_gpioint_bank(IRQ_GPIOINT
, 0, S5P_GPIOINT_GROUP_MAXNR
);
2518 } else if (soc_is_exynos4210()) {
2522 chip
= exynos4_gpios_1
;
2523 nr_chips
= ARRAY_SIZE(exynos4_gpios_1
);
2525 for (i
= 0; i
< nr_chips
; i
++, chip
++) {
2526 if (!chip
->config
) {
2527 chip
->config
= &exynos4_gpio_cfg
;
2528 chip
->group
= group
++;
2530 #ifdef CONFIG_CPU_EXYNOS4210
2531 exynos4_gpiolib_attach_ofnode(chip
,
2532 EXYNOS4_PA_GPIO1
, i
* 0x20);
2535 samsung_gpiolib_add_4bit_chips(exynos4_gpios_1
, nr_chips
, S5P_VA_GPIO1
);
2538 chip
= exynos4_gpios_2
;
2539 nr_chips
= ARRAY_SIZE(exynos4_gpios_2
);
2541 for (i
= 0; i
< nr_chips
; i
++, chip
++) {
2542 if (!chip
->config
) {
2543 chip
->config
= &exynos4_gpio_cfg
;
2544 chip
->group
= group
++;
2546 #ifdef CONFIG_CPU_EXYNOS4210
2547 exynos4_gpiolib_attach_ofnode(chip
,
2548 EXYNOS4_PA_GPIO2
, i
* 0x20);
2551 samsung_gpiolib_add_4bit_chips(exynos4_gpios_2
, nr_chips
, S5P_VA_GPIO2
);
2554 chip
= exynos4_gpios_3
;
2555 nr_chips
= ARRAY_SIZE(exynos4_gpios_3
);
2557 for (i
= 0; i
< nr_chips
; i
++, chip
++) {
2558 if (!chip
->config
) {
2559 chip
->config
= &exynos4_gpio_cfg
;
2560 chip
->group
= group
++;
2562 #ifdef CONFIG_CPU_EXYNOS4210
2563 exynos4_gpiolib_attach_ofnode(chip
,
2564 EXYNOS4_PA_GPIO3
, i
* 0x20);
2567 samsung_gpiolib_add_4bit_chips(exynos4_gpios_3
, nr_chips
, S5P_VA_GPIO3
);
2569 #if defined(CONFIG_CPU_EXYNOS4210) && defined(CONFIG_S5P_GPIO_INT)
2570 s5p_register_gpioint_bank(IRQ_GPIO_XA
, 0, IRQ_GPIO1_NR_GROUPS
);
2571 s5p_register_gpioint_bank(IRQ_GPIO_XB
, IRQ_GPIO1_NR_GROUPS
, IRQ_GPIO2_NR_GROUPS
);
2574 WARN(1, "Unknown SoC in gpio-samsung, no GPIOs added\n");
2580 core_initcall(samsung_gpiolib_init
);
2582 int s3c_gpio_cfgpin(unsigned int pin
, unsigned int config
)
2584 struct samsung_gpio_chip
*chip
= samsung_gpiolib_getchip(pin
);
2585 unsigned long flags
;
2592 offset
= pin
- chip
->chip
.base
;
2594 samsung_gpio_lock(chip
, flags
);
2595 ret
= samsung_gpio_do_setcfg(chip
, offset
, config
);
2596 samsung_gpio_unlock(chip
, flags
);
2600 EXPORT_SYMBOL(s3c_gpio_cfgpin
);
2602 int s3c_gpio_cfgpin_range(unsigned int start
, unsigned int nr
,
2607 for (; nr
> 0; nr
--, start
++) {
2608 ret
= s3c_gpio_cfgpin(start
, cfg
);
2615 EXPORT_SYMBOL_GPL(s3c_gpio_cfgpin_range
);
2617 int s3c_gpio_cfgall_range(unsigned int start
, unsigned int nr
,
2618 unsigned int cfg
, samsung_gpio_pull_t pull
)
2622 for (; nr
> 0; nr
--, start
++) {
2623 s3c_gpio_setpull(start
, pull
);
2624 ret
= s3c_gpio_cfgpin(start
, cfg
);
2631 EXPORT_SYMBOL_GPL(s3c_gpio_cfgall_range
);
2633 unsigned s3c_gpio_getcfg(unsigned int pin
)
2635 struct samsung_gpio_chip
*chip
= samsung_gpiolib_getchip(pin
);
2636 unsigned long flags
;
2641 offset
= pin
- chip
->chip
.base
;
2643 samsung_gpio_lock(chip
, flags
);
2644 ret
= samsung_gpio_do_getcfg(chip
, offset
);
2645 samsung_gpio_unlock(chip
, flags
);
2650 EXPORT_SYMBOL(s3c_gpio_getcfg
);
2652 int s3c_gpio_setpull(unsigned int pin
, samsung_gpio_pull_t pull
)
2654 struct samsung_gpio_chip
*chip
= samsung_gpiolib_getchip(pin
);
2655 unsigned long flags
;
2661 offset
= pin
- chip
->chip
.base
;
2663 samsung_gpio_lock(chip
, flags
);
2664 ret
= samsung_gpio_do_setpull(chip
, offset
, pull
);
2665 samsung_gpio_unlock(chip
, flags
);
2669 EXPORT_SYMBOL(s3c_gpio_setpull
);
2671 samsung_gpio_pull_t
s3c_gpio_getpull(unsigned int pin
)
2673 struct samsung_gpio_chip
*chip
= samsung_gpiolib_getchip(pin
);
2674 unsigned long flags
;
2679 offset
= pin
- chip
->chip
.base
;
2681 samsung_gpio_lock(chip
, flags
);
2682 pup
= samsung_gpio_do_getpull(chip
, offset
);
2683 samsung_gpio_unlock(chip
, flags
);
2686 return (__force samsung_gpio_pull_t
)pup
;
2688 EXPORT_SYMBOL(s3c_gpio_getpull
);
2690 /* gpiolib wrappers until these are totally eliminated */
2692 void s3c2410_gpio_pullup(unsigned int pin
, unsigned int to
)
2696 WARN_ON(to
); /* should be none of these left */
2699 /* if pull is enabled, try first with up, and if that
2700 * fails, try using down */
2702 ret
= s3c_gpio_setpull(pin
, S3C_GPIO_PULL_UP
);
2704 s3c_gpio_setpull(pin
, S3C_GPIO_PULL_DOWN
);
2706 s3c_gpio_setpull(pin
, S3C_GPIO_PULL_NONE
);
2709 EXPORT_SYMBOL(s3c2410_gpio_pullup
);
2711 void s3c2410_gpio_setpin(unsigned int pin
, unsigned int to
)
2713 /* do this via gpiolib until all users removed */
2715 gpio_request(pin
, "temporary");
2716 gpio_set_value(pin
, to
);
2719 EXPORT_SYMBOL(s3c2410_gpio_setpin
);
2721 unsigned int s3c2410_gpio_getpin(unsigned int pin
)
2723 struct samsung_gpio_chip
*chip
= samsung_gpiolib_getchip(pin
);
2724 unsigned long offs
= pin
- chip
->chip
.base
;
2726 return __raw_readl(chip
->base
+ 0x04) & (1 << offs
);
2728 EXPORT_SYMBOL(s3c2410_gpio_getpin
);
2730 #ifdef CONFIG_S5P_GPIO_DRVSTR
2731 s5p_gpio_drvstr_t
s5p_gpio_get_drvstr(unsigned int pin
)
2733 struct samsung_gpio_chip
*chip
= samsung_gpiolib_getchip(pin
);
2742 off
= pin
- chip
->chip
.base
;
2744 reg
= chip
->base
+ 0x0C;
2746 drvstr
= __raw_readl(reg
);
2747 drvstr
= drvstr
>> shift
;
2750 return (__force s5p_gpio_drvstr_t
)drvstr
;
2752 EXPORT_SYMBOL(s5p_gpio_get_drvstr
);
2754 int s5p_gpio_set_drvstr(unsigned int pin
, s5p_gpio_drvstr_t drvstr
)
2756 struct samsung_gpio_chip
*chip
= samsung_gpiolib_getchip(pin
);
2765 off
= pin
- chip
->chip
.base
;
2767 reg
= chip
->base
+ 0x0C;
2769 tmp
= __raw_readl(reg
);
2770 tmp
&= ~(0x3 << shift
);
2771 tmp
|= drvstr
<< shift
;
2773 __raw_writel(tmp
, reg
);
2777 EXPORT_SYMBOL(s5p_gpio_set_drvstr
);
2778 #endif /* CONFIG_S5P_GPIO_DRVSTR */
2780 #ifdef CONFIG_PLAT_S3C24XX
2781 unsigned int s3c2410_modify_misccr(unsigned int clear
, unsigned int change
)
2783 unsigned long flags
;
2784 unsigned long misccr
;
2786 local_irq_save(flags
);
2787 misccr
= __raw_readl(S3C24XX_MISCCR
);
2790 __raw_writel(misccr
, S3C24XX_MISCCR
);
2791 local_irq_restore(flags
);
2795 EXPORT_SYMBOL(s3c2410_modify_misccr
);