[PATCH v2 1/2] ARM: S5PV210: Add S5PV210 GPIO support

Kyungmin Park kmpark at infradead.org
Mon May 3 23:18:32 EDT 2010


Hi,

On Tue, May 4, 2010 at 11:37 AM, Kukjin Kim <kgene.kim at samsung.com> wrote:
> This patch adds GPIOlib support for S5PV210.
>
> Signed-off-by: Kukjin Kim <kgene.kim at samsung.com>
> ---
>  arch/arm/mach-s5pv210/Makefile                 |    2 +-
>  arch/arm/mach-s5pv210/gpio.c                   |  495 ++++++++++++++++++++++++
>  arch/arm/mach-s5pv210/include/mach/gpio.h      |   97 +++++-
>  arch/arm/mach-s5pv210/include/mach/regs-gpio.h |   77 ++++
>  4 files changed, 667 insertions(+), 4 deletions(-)
>  create mode 100644 arch/arm/mach-s5pv210/gpio.c
>  create mode 100644 arch/arm/mach-s5pv210/include/mach/regs-gpio.h
>
> diff --git a/arch/arm/mach-s5pv210/Makefile b/arch/arm/mach-s5pv210/Makefile
> index 7469d10..cb959ea 100644
> --- a/arch/arm/mach-s5pv210/Makefile
> +++ b/arch/arm/mach-s5pv210/Makefile
> @@ -12,7 +12,7 @@ obj-                          :=
>
>  # Core support for S5PV210 system
>
> -obj-$(CONFIG_CPU_S5PV210)      += cpu.o init.o clock.o
> +obj-$(CONFIG_CPU_S5PV210)      += cpu.o init.o clock.o gpio.o
>
>  # machine support
>
> diff --git a/arch/arm/mach-s5pv210/gpio.c b/arch/arm/mach-s5pv210/gpio.c
> new file mode 100644
> index 0000000..88f4802
> --- /dev/null
> +++ b/arch/arm/mach-s5pv210/gpio.c
> @@ -0,0 +1,495 @@
> +/* linux/arch/arm/mach-s5pv210/gpio.c
> + *
> + * Copyright (c) 2010 Samsung Electronics Co., Ltd.
> + *             http://www.samsung.com/
> + *
> + * S5PV210 - GPIOlib support
> + *
> + * This program is free software; you can redistribute it and/or modify
> + * it under the terms of the GNU General Public License version 2 as
> + * published by the Free Software Foundation.
> + */
> +
> +#include <linux/kernel.h>
> +#include <linux/irq.h>
> +#include <linux/io.h>
> +#include <mach/map.h>
> +#include <mach/gpio.h>
> +#include <mach/regs-gpio.h>
> +#include <plat/gpio-core.h>
> +#include <plat/gpio-cfg.h>
> +#include <plat/gpio-cfg-helpers.h>
> +
> +static struct s3c_gpio_cfg gpio_cfg = {
> +       .cfg_eint       = 0xf,

What's the purpose of 'cfg_eint'? As I know no place to use it.

> +       .set_config     = s3c_gpio_setcfg_s3c64xx_4bit,
> +       .set_pull       = s3c_gpio_setpull_updown,
> +       .get_pull       = s3c_gpio_getpull_updown,
> +};
> +
> +static struct s3c_gpio_cfg gpio_cfg_noint = {
> +       .set_config     = s3c_gpio_setcfg_s3c64xx_4bit,
> +       .set_pull       = s3c_gpio_setpull_updown,
> +       .get_pull       = s3c_gpio_getpull_updown,
> +};
> +
> +static struct s3c_gpio_chip s5pv210_gpio_4bit[] = {
> +       {
> +               .base   = S5PV210_GPA0_BASE,
> +               .config = &gpio_cfg,
> +               .chip   = {
> +                       .base   = S5PV210_GPA0(0),
> +                       .ngpio  = S5PV210_GPIO_A0_NR,
> +                       .label  = "GPA0",
> +               },
> +       }, {
> +               .base   = S5PV210_GPA1_BASE,
> +               .config = &gpio_cfg,
> +               .chip   = {
> +                       .base   = S5PV210_GPA1(0),
> +                       .ngpio  = S5PV210_GPIO_A1_NR,
> +                       .label  = "GPA1",
> +               },
> +       }, {
> +               .base   = S5PV210_GPB_BASE,
> +               .config = &gpio_cfg,
> +               .chip   = {
> +                       .base   = S5PV210_GPB(0),
> +                       .ngpio  = S5PV210_GPIO_B_NR,
> +                       .label  = "GPB",
> +               },
> +       }, {
> +               .base   = S5PV210_GPC0_BASE,
> +               .config = &gpio_cfg,
> +               .chip   = {
> +                       .base   = S5PV210_GPC0(0),
> +                       .ngpio  = S5PV210_GPIO_C0_NR,
> +                       .label  = "GPC0",
> +               },
> +       }, {
> +               .base   = S5PV210_GPC1_BASE,
> +               .config = &gpio_cfg,
> +               .chip   = {
> +                       .base   = S5PV210_GPC1(0),
> +                       .ngpio  = S5PV210_GPIO_C1_NR,
> +                       .label  = "GPC1",
> +               },
> +       }, {
> +               .base   = S5PV210_GPD0_BASE,
> +               .config = &gpio_cfg,
> +               .chip   = {
> +                       .base   = S5PV210_GPD0(0),
> +                       .ngpio  = S5PV210_GPIO_D0_NR,
> +                       .label  = "GPD0",
> +               },
> +       }, {
> +               .base   = S5PV210_GPD1_BASE,
> +               .config = &gpio_cfg,
> +               .chip   = {
> +                       .base   = S5PV210_GPD1(0),
> +                       .ngpio  = S5PV210_GPIO_D1_NR,
> +                       .label  = "GPD1",
> +               },
> +       }, {
> +               .base   = S5PV210_GPE0_BASE,
> +               .config = &gpio_cfg,
> +               .chip   = {
> +                       .base   = S5PV210_GPE0(0),
> +                       .ngpio  = S5PV210_GPIO_E0_NR,
> +                       .label  = "GPE0",
> +               },
> +       }, {
> +               .base   = S5PV210_GPE1_BASE,
> +               .config = &gpio_cfg,
> +               .chip   = {
> +                       .base   = S5PV210_GPE1(0),
> +                       .ngpio  = S5PV210_GPIO_E1_NR,
> +                       .label  = "GPE1",
> +               },
> +       }, {
> +               .base   = S5PV210_GPF0_BASE,
> +               .config = &gpio_cfg,
> +               .chip   = {
> +                       .base   = S5PV210_GPF0(0),
> +                       .ngpio  = S5PV210_GPIO_F0_NR,
> +                       .label  = "GPF0",
> +               },
> +       }, {
> +               .base   = S5PV210_GPF1_BASE,
> +               .config = &gpio_cfg,
> +               .chip   = {
> +                       .base   = S5PV210_GPF1(0),
> +                       .ngpio  = S5PV210_GPIO_F1_NR,
> +                       .label  = "GPF1",
> +               },
> +       }, {
> +               .base   = S5PV210_GPF2_BASE,
> +               .config = &gpio_cfg,
> +               .chip   = {
> +                       .base   = S5PV210_GPF2(0),
> +                       .ngpio  = S5PV210_GPIO_F2_NR,
> +                       .label  = "GPF2",
> +               },
> +       }, {
> +               .base   = S5PV210_GPF3_BASE,
> +               .config = &gpio_cfg,
> +               .chip   = {
> +                       .base   = S5PV210_GPF3(0),
> +                       .ngpio  = S5PV210_GPIO_F3_NR,
> +                       .label  = "GPF3",
> +               },
> +       }, {
> +               .base   = S5PV210_GPG0_BASE,
> +               .config = &gpio_cfg,
> +               .chip   = {
> +                       .base   = S5PV210_GPG0(0),
> +                       .ngpio  = S5PV210_GPIO_G0_NR,
> +                       .label  = "GPG0",
> +               },
> +       }, {
> +               .base   = S5PV210_GPG1_BASE,
> +               .config = &gpio_cfg,
> +               .chip   = {
> +                       .base   = S5PV210_GPG1(0),
> +                       .ngpio  = S5PV210_GPIO_G1_NR,
> +                       .label  = "GPG1",
> +               },
> +       }, {
> +               .base   = S5PV210_GPG2_BASE,
> +               .config = &gpio_cfg,
> +               .chip   = {
> +                       .base   = S5PV210_GPG2(0),
> +                       .ngpio  = S5PV210_GPIO_G2_NR,
> +                       .label  = "GPG2",
> +               },
> +       }, {
> +               .base   = S5PV210_GPG3_BASE,
> +               .config = &gpio_cfg,
> +               .chip   = {
> +                       .base   = S5PV210_GPG3(0),
> +                       .ngpio  = S5PV210_GPIO_G3_NR,
> +                       .label  = "GPG3",
> +               },
> +       }, {
> +               .base   = S5PV210_GPH0_BASE,
> +               .config = &gpio_cfg_noint,
> +               .chip   = {
> +                       .base   = S5PV210_GPH0(0),
> +                       .ngpio  = S5PV210_GPIO_H0_NR,
> +                       .label  = "GPH0",
> +               },
> +       }, {
> +               .base   = S5PV210_GPH1_BASE,
> +               .config = &gpio_cfg_noint,
> +               .chip   = {
> +                       .base   = S5PV210_GPH1(0),
> +                       .ngpio  = S5PV210_GPIO_H1_NR,
> +                       .label  = "GPH1",
> +               },
> +       }, {
> +               .base   = S5PV210_GPH2_BASE,
> +               .config = &gpio_cfg_noint,
> +               .chip   = {
> +                       .base   = S5PV210_GPH2(0),
> +                       .ngpio  = S5PV210_GPIO_H2_NR,
> +                       .label  = "GPH2",
> +               },
> +       }, {
> +               .base   = S5PV210_GPH3_BASE,
> +               .config = &gpio_cfg_noint,
> +               .chip   = {
> +                       .base   = S5PV210_GPH3(0),
> +                       .ngpio  = S5PV210_GPIO_H3_NR,
> +                       .label  = "GPH3",
> +               },
> +       }, {
> +               .base   = S5PV210_GPI_BASE,
> +               .config = &gpio_cfg,
> +               .chip   = {
> +                       .base   = S5PV210_GPI(0),
> +                       .ngpio  = S5PV210_GPIO_I_NR,
> +                       .label  = "GPI",
> +               },
> +       }, {
> +               .base   = S5PV210_GPJ0_BASE,
> +               .config = &gpio_cfg,
> +               .chip   = {
> +                       .base   = S5PV210_GPJ0(0),
> +                       .ngpio  = S5PV210_GPIO_J0_NR,
> +                       .label  = "GPJ0",
> +               },
> +       }, {
> +               .base   = S5PV210_GPJ1_BASE,
> +               .config = &gpio_cfg,
> +               .chip   = {
> +                       .base   = S5PV210_GPJ1(0),
> +                       .ngpio  = S5PV210_GPIO_J1_NR,
> +                       .label  = "GPJ1",
> +               },
> +       }, {
> +               .base   = S5PV210_GPJ2_BASE,
> +               .config = &gpio_cfg,
> +               .chip   = {
> +                       .base   = S5PV210_GPJ2(0),
> +                       .ngpio  = S5PV210_GPIO_J2_NR,
> +                       .label  = "GPJ2",
> +               },
> +       }, {
> +               .base   = S5PV210_GPJ3_BASE,
> +               .config = &gpio_cfg,
> +               .chip   = {
> +                       .base   = S5PV210_GPJ3(0),
> +                       .ngpio  = S5PV210_GPIO_J3_NR,
> +                       .label  = "GPJ3",
> +               },
> +       }, {
> +               .base   = S5PV210_GPJ4_BASE,
> +               .config = &gpio_cfg,
> +               .chip   = {
> +                       .base   = S5PV210_GPJ4(0),
> +                       .ngpio  = S5PV210_GPIO_J4_NR,
> +                       .label  = "GPJ4",
> +               },
> +       }, {
> +               .base   = S5PV210_MP01_BASE,
> +               .config = &gpio_cfg_noint,
> +               .chip   = {
> +                       .base   = S5PV210_MP01(0),
> +                       .ngpio  = S5PV210_GPIO_MP01_NR,
> +                       .label  = "MP01",
> +               },
> +       }, {
> +               .base   = S5PV210_MP02_BASE,
> +               .config = &gpio_cfg_noint,
> +               .chip   = {
> +                       .base   = S5PV210_MP02(0),
> +                       .ngpio  = S5PV210_GPIO_MP02_NR,
> +                       .label  = "MP02",
> +               },
> +       }, {
> +               .base   = S5PV210_MP03_BASE,
> +               .config = &gpio_cfg_noint,
> +               .chip   = {
> +                       .base   = S5PV210_MP03(0),
> +                       .ngpio  = S5PV210_GPIO_MP03_NR,
> +                       .label  = "MP03",
> +               },
> +       }, {
> +               .base   = S5PV210_MP04_BASE,
> +               .config = &gpio_cfg_noint,
> +               .chip   = {
> +                       .base   = S5PV210_MP04(0),
> +                       .ngpio  = S5PV210_GPIO_MP04_NR,
> +                       .label  = "MP04",
> +               },
> +       }, {
> +               .base   = S5PV210_MP05_BASE,
> +               .config = &gpio_cfg_noint,
> +               .chip   = {
> +                       .base   = S5PV210_MP05(0),
> +                       .ngpio  = S5PV210_GPIO_MP05_NR,
> +                       .label  = "MP05",
> +               },
> +       }, {
> +               .base   = S5PV210_MP06_BASE,
> +               .config = &gpio_cfg_noint,
> +               .chip   = {
> +                       .base   = S5PV210_MP06(0),
> +                       .ngpio  = S5PV210_GPIO_MP06_NR,
> +                       .label  = "MP06",
> +               },
> +       }, {



More information about the linux-arm-kernel mailing list