diff options
| author | Kyungmin Park <kyungmin.park@samsung.com> | 2011-05-23 04:27:45 -0400 |
|---|---|---|
| committer | Grant Likely <grant.likely@secretlab.ca> | 2011-05-26 19:32:50 -0400 |
| commit | ab48f16137eb5a6fabcff4cc817319394fc0de7e (patch) | |
| tree | 47e63dd380ddaec18872a7e50b8563309a068717 /drivers/gpio | |
| parent | fed6a0224714bd414bff91833e0bd5775a3e9c66 (diff) | |
gpio: Move the exynos4 GPIO to drivers/gpio
Move the Samsung Exynos4 series SoCs GPIO driver to drivers/gpio
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
Diffstat (limited to 'drivers/gpio')
| -rw-r--r-- | drivers/gpio/Kconfig | 6 | ||||
| -rw-r--r-- | drivers/gpio/Makefile | 1 | ||||
| -rw-r--r-- | drivers/gpio/gpio-exynos4.c | 365 |
3 files changed, 372 insertions, 0 deletions
diff --git a/drivers/gpio/Kconfig b/drivers/gpio/Kconfig index 3735c051074..dbe43b4e02b 100644 --- a/drivers/gpio/Kconfig +++ b/drivers/gpio/Kconfig | |||
| @@ -86,6 +86,12 @@ config GPIO_IT8761E | |||
| 86 | help | 86 | help |
| 87 | Say yes here to support GPIO functionality of IT8761E super I/O chip. | 87 | Say yes here to support GPIO functionality of IT8761E super I/O chip. |
| 88 | 88 | ||
| 89 | config GPIO_EXYNOS4 | ||
| 90 | bool "Samsung Exynos4 GPIO library support" | ||
| 91 | default y if CPU_EXYNOS4210 | ||
| 92 | help | ||
| 93 | Say yes here to support Samsung Exynos4 series SoCs GPIO library | ||
| 94 | |||
| 89 | config GPIO_PLAT_SAMSUNG | 95 | config GPIO_PLAT_SAMSUNG |
| 90 | bool "Samsung SoCs GPIO library support" | 96 | bool "Samsung SoCs GPIO library support" |
| 91 | default y if SAMSUNG_GPIOLIB_4BIT | 97 | default y if SAMSUNG_GPIOLIB_4BIT |
diff --git a/drivers/gpio/Makefile b/drivers/gpio/Makefile index 426483f60d6..d7f960140bf 100644 --- a/drivers/gpio/Makefile +++ b/drivers/gpio/Makefile | |||
| @@ -8,6 +8,7 @@ obj-$(CONFIG_GPIO_ADP5520) += adp5520-gpio.o | |||
| 8 | obj-$(CONFIG_GPIO_ADP5588) += adp5588-gpio.o | 8 | obj-$(CONFIG_GPIO_ADP5588) += adp5588-gpio.o |
| 9 | obj-$(CONFIG_GPIO_BASIC_MMIO_CORE) += basic_mmio_gpio.o | 9 | obj-$(CONFIG_GPIO_BASIC_MMIO_CORE) += basic_mmio_gpio.o |
| 10 | obj-$(CONFIG_GPIO_BASIC_MMIO) += basic_mmio_gpio.o | 10 | obj-$(CONFIG_GPIO_BASIC_MMIO) += basic_mmio_gpio.o |
| 11 | obj-$(CONFIG_GPIO_EXYNOS4) += gpio-exynos4.o | ||
| 11 | obj-$(CONFIG_GPIO_PLAT_SAMSUNG) += gpio-plat-samsung.o | 12 | obj-$(CONFIG_GPIO_PLAT_SAMSUNG) += gpio-plat-samsung.o |
| 12 | obj-$(CONFIG_GPIO_LANGWELL) += langwell_gpio.o | 13 | obj-$(CONFIG_GPIO_LANGWELL) += langwell_gpio.o |
| 13 | obj-$(CONFIG_GPIO_MAX730X) += max730x.o | 14 | obj-$(CONFIG_GPIO_MAX730X) += max730x.o |
diff --git a/drivers/gpio/gpio-exynos4.c b/drivers/gpio/gpio-exynos4.c new file mode 100644 index 00000000000..d54ca6adb66 --- /dev/null +++ b/drivers/gpio/gpio-exynos4.c | |||
| @@ -0,0 +1,365 @@ | |||
| 1 | /* linux/arch/arm/mach-exynos4/gpiolib.c | ||
| 2 | * | ||
| 3 | * Copyright (c) 2010-2011 Samsung Electronics Co., Ltd. | ||
| 4 | * http://www.samsung.com | ||
| 5 | * | ||
| 6 | * EXYNOS4 - GPIOlib support | ||
| 7 | * | ||
| 8 | * This program is free software; you can redistribute it and/or modify | ||
| 9 | * it under the terms of the GNU General Public License version 2 as | ||
| 10 | * published by the Free Software Foundation. | ||
| 11 | */ | ||
| 12 | |||
| 13 | #include <linux/kernel.h> | ||
| 14 | #include <linux/irq.h> | ||
| 15 | #include <linux/io.h> | ||
| 16 | #include <linux/gpio.h> | ||
| 17 | |||
| 18 | #include <mach/map.h> | ||
| 19 | |||
| 20 | #include <plat/gpio-core.h> | ||
| 21 | #include <plat/gpio-cfg.h> | ||
| 22 | #include <plat/gpio-cfg-helpers.h> | ||
| 23 | |||
| 24 | static struct s3c_gpio_cfg gpio_cfg = { | ||
| 25 | .set_config = s3c_gpio_setcfg_s3c64xx_4bit, | ||
| 26 | .set_pull = s3c_gpio_setpull_updown, | ||
| 27 | .get_pull = s3c_gpio_getpull_updown, | ||
| 28 | }; | ||
| 29 | |||
| 30 | static struct s3c_gpio_cfg gpio_cfg_noint = { | ||
| 31 | .set_config = s3c_gpio_setcfg_s3c64xx_4bit, | ||
| 32 | .set_pull = s3c_gpio_setpull_updown, | ||
| 33 | .get_pull = s3c_gpio_getpull_updown, | ||
| 34 | }; | ||
| 35 | |||
| 36 | /* | ||
| 37 | * Following are the gpio banks in v310. | ||
| 38 | * | ||
| 39 | * The 'config' member when left to NULL, is initialized to the default | ||
| 40 | * structure gpio_cfg in the init function below. | ||
| 41 | * | ||
| 42 | * The 'base' member is also initialized in the init function below. | ||
| 43 | * Note: The initialization of 'base' member of s3c_gpio_chip structure | ||
| 44 | * uses the above macro and depends on the banks being listed in order here. | ||
| 45 | */ | ||
| 46 | static struct s3c_gpio_chip exynos4_gpio_part1_4bit[] = { | ||
| 47 | { | ||
| 48 | .chip = { | ||
| 49 | .base = EXYNOS4_GPA0(0), | ||
| 50 | .ngpio = EXYNOS4_GPIO_A0_NR, | ||
| 51 | .label = "GPA0", | ||
| 52 | }, | ||
| 53 | }, { | ||
| 54 | .chip = { | ||
| 55 | .base = EXYNOS4_GPA1(0), | ||
| 56 | .ngpio = EXYNOS4_GPIO_A1_NR, | ||
| 57 | .label = "GPA1", | ||
| 58 | }, | ||
| 59 | }, { | ||
| 60 | .chip = { | ||
| 61 | .base = EXYNOS4_GPB(0), | ||
| 62 | .ngpio = EXYNOS4_GPIO_B_NR, | ||
| 63 | .label = "GPB", | ||
| 64 | }, | ||
| 65 | }, { | ||
| 66 | .chip = { | ||
| 67 | .base = EXYNOS4_GPC0(0), | ||
| 68 | .ngpio = EXYNOS4_GPIO_C0_NR, | ||
| 69 | .label = "GPC0", | ||
| 70 | }, | ||
| 71 | }, { | ||
| 72 | .chip = { | ||
| 73 | .base = EXYNOS4_GPC1(0), | ||
| 74 | .ngpio = EXYNOS4_GPIO_C1_NR, | ||
| 75 | .label = "GPC1", | ||
| 76 | }, | ||
| 77 | }, { | ||
| 78 | .chip = { | ||
| 79 | .base = EXYNOS4_GPD0(0), | ||
| 80 | .ngpio = EXYNOS4_GPIO_D0_NR, | ||
| 81 | .label = "GPD0", | ||
| 82 | }, | ||
| 83 | }, { | ||
| 84 | .chip = { | ||
| 85 | .base = EXYNOS4_GPD1(0), | ||
| 86 | .ngpio = EXYNOS4_GPIO_D1_NR, | ||
| 87 | .label = "GPD1", | ||
| 88 | }, | ||
| 89 | }, { | ||
| 90 | .chip = { | ||
| 91 | .base = EXYNOS4_GPE0(0), | ||
| 92 | .ngpio = EXYNOS4_GPIO_E0_NR, | ||
| 93 | .label = "GPE0", | ||
| 94 | }, | ||
| 95 | }, { | ||
| 96 | .chip = { | ||
| 97 | .base = EXYNOS4_GPE1(0), | ||
| 98 | .ngpio = EXYNOS4_GPIO_E1_NR, | ||
| 99 | .label = "GPE1", | ||
| 100 | }, | ||
| 101 | }, { | ||
| 102 | .chip = { | ||
| 103 | .base = EXYNOS4_GPE2(0), | ||
| 104 | .ngpio = EXYNOS4_GPIO_E2_NR, | ||
| 105 | .label = "GPE2", | ||
| 106 | }, | ||
| 107 | }, { | ||
| 108 | .chip = { | ||
| 109 | .base = EXYNOS4_GPE3(0), | ||
| 110 | .ngpio = EXYNOS4_GPIO_E3_NR, | ||
| 111 | .label = "GPE3", | ||
| 112 | }, | ||
| 113 | }, { | ||
| 114 | .chip = { | ||
| 115 | .base = EXYNOS4_GPE4(0), | ||
| 116 | .ngpio = EXYNOS4_GPIO_E4_NR, | ||
| 117 | .label = "GPE4", | ||
| 118 | }, | ||
| 119 | }, { | ||
| 120 | .chip = { | ||
| 121 | .base = EXYNOS4_GPF0(0), | ||
| 122 | .ngpio = EXYNOS4_GPIO_F0_NR, | ||
| 123 | .label = "GPF0", | ||
| 124 | }, | ||
| 125 | }, { | ||
| 126 | .chip = { | ||
| 127 | .base = EXYNOS4_GPF1(0), | ||
| 128 | .ngpio = EXYNOS4_GPIO_F1_NR, | ||
| 129 | .label = "GPF1", | ||
| 130 | }, | ||
| 131 | }, { | ||
| 132 | .chip = { | ||
| 133 | .base = EXYNOS4_GPF2(0), | ||
| 134 | .ngpio = EXYNOS4_GPIO_F2_NR, | ||
| 135 | .label = "GPF2", | ||
| 136 | }, | ||
| 137 | }, { | ||
| 138 | .chip = { | ||
| 139 | .base = EXYNOS4_GPF3(0), | ||
| 140 | .ngpio = EXYNOS4_GPIO_F3_NR, | ||
| 141 | .label = "GPF3", | ||
| 142 | }, | ||
| 143 | }, | ||
| 144 | }; | ||
| 145 | |||
| 146 | static struct s3c_gpio_chip exynos4_gpio_part2_4bit[] = { | ||
| 147 | { | ||
| 148 | .chip = { | ||
| 149 | .base = EXYNOS4_GPJ0(0), | ||
| 150 | .ngpio = EXYNOS4_GPIO_J0_NR, | ||
| 151 | .label = "GPJ0", | ||
| 152 | }, | ||
| 153 | }, { | ||
| 154 | .chip = { | ||
| 155 | .base = EXYNOS4_GPJ1(0), | ||
| 156 | .ngpio = EXYNOS4_GPIO_J1_NR, | ||
| 157 | .label = "GPJ1", | ||
| 158 | }, | ||
| 159 | }, { | ||
| 160 | .chip = { | ||
| 161 | .base = EXYNOS4_GPK0(0), | ||
| 162 | .ngpio = EXYNOS4_GPIO_K0_NR, | ||
| 163 | .label = "GPK0", | ||
| 164 | }, | ||
| 165 | }, { | ||
| 166 | .chip = { | ||
| 167 | .base = EXYNOS4_GPK1(0), | ||
| 168 | .ngpio = EXYNOS4_GPIO_K1_NR, | ||
| 169 | .label = "GPK1", | ||
| 170 | }, | ||
| 171 | }, { | ||
| 172 | .chip = { | ||
| 173 | .base = EXYNOS4_GPK2(0), | ||
| 174 | .ngpio = EXYNOS4_GPIO_K2_NR, | ||
| 175 | .label = "GPK2", | ||
| 176 | }, | ||
| 177 | }, { | ||
| 178 | .chip = { | ||
| 179 | .base = EXYNOS4_GPK3(0), | ||
| 180 | .ngpio = EXYNOS4_GPIO_K3_NR, | ||
| 181 | .label = "GPK3", | ||
| 182 | }, | ||
| 183 | }, { | ||
| 184 | .chip = { | ||
| 185 | .base = EXYNOS4_GPL0(0), | ||
| 186 | .ngpio = EXYNOS4_GPIO_L0_NR, | ||
| 187 | .label = "GPL0", | ||
| 188 | }, | ||
| 189 | }, { | ||
| 190 | .chip = { | ||
| 191 | .base = EXYNOS4_GPL1(0), | ||
| 192 | .ngpio = EXYNOS4_GPIO_L1_NR, | ||
| 193 | .label = "GPL1", | ||
| 194 | }, | ||
| 195 | }, { | ||
| 196 | .chip = { | ||
| 197 | .base = EXYNOS4_GPL2(0), | ||
| 198 | .ngpio = EXYNOS4_GPIO_L2_NR, | ||
| 199 | .label = "GPL2", | ||
| 200 | }, | ||
| 201 | }, { | ||
| 202 | .config = &gpio_cfg_noint, | ||
| 203 | .chip = { | ||
| 204 | .base = EXYNOS4_GPY0(0), | ||
| 205 | .ngpio = EXYNOS4_GPIO_Y0_NR, | ||
| 206 | .label = "GPY0", | ||
| 207 | }, | ||
| 208 | }, { | ||
| 209 | .config = &gpio_cfg_noint, | ||
| 210 | .chip = { | ||
| 211 | .base = EXYNOS4_GPY1(0), | ||
| 212 | .ngpio = EXYNOS4_GPIO_Y1_NR, | ||
| 213 | .label = "GPY1", | ||
| 214 | }, | ||
| 215 | }, { | ||
| 216 | .config = &gpio_cfg_noint, | ||
| 217 | .chip = { | ||
| 218 | .base = EXYNOS4_GPY2(0), | ||
| 219 | .ngpio = EXYNOS4_GPIO_Y2_NR, | ||
| 220 | .label = "GPY2", | ||
| 221 | }, | ||
| 222 | }, { | ||
| 223 | .config = &gpio_cfg_noint, | ||
| 224 | .chip = { | ||
| 225 | .base = EXYNOS4_GPY3(0), | ||
| 226 | .ngpio = EXYNOS4_GPIO_Y3_NR, | ||
| 227 | .label = "GPY3", | ||
| 228 | }, | ||
| 229 | }, { | ||
| 230 | .config = &gpio_cfg_noint, | ||
| 231 | .chip = { | ||
| 232 | .base = EXYNOS4_GPY4(0), | ||
| 233 | .ngpio = EXYNOS4_GPIO_Y4_NR, | ||
| 234 | .label = "GPY4", | ||
| 235 | }, | ||
| 236 | }, { | ||
| 237 | .config = &gpio_cfg_noint, | ||
| 238 | .chip = { | ||
| 239 | .base = EXYNOS4_GPY5(0), | ||
| 240 | .ngpio = EXYNOS4_GPIO_Y5_NR, | ||
| 241 | .label = "GPY5", | ||
| 242 | }, | ||
| 243 | }, { | ||
| 244 | .config = &gpio_cfg_noint, | ||
| 245 | .chip = { | ||
| 246 | .base = EXYNOS4_GPY6(0), | ||
| 247 | .ngpio = EXYNOS4_GPIO_Y6_NR, | ||
| 248 | .label = "GPY6", | ||
| 249 | }, | ||
| 250 | }, { | ||
| 251 | .base = (S5P_VA_GPIO2 + 0xC00), | ||
| 252 | .config = &gpio_cfg_noint, | ||
| 253 | .irq_base = IRQ_EINT(0), | ||
| 254 | .chip = { | ||
| 255 | .base = EXYNOS4_GPX0(0), | ||
| 256 | .ngpio = EXYNOS4_GPIO_X0_NR, | ||
| 257 | .label = "GPX0", | ||
| 258 | .to_irq = samsung_gpiolib_to_irq, | ||
| 259 | }, | ||
| 260 | }, { | ||
| 261 | .base = (S5P_VA_GPIO2 + 0xC20), | ||
| 262 | .config = &gpio_cfg_noint, | ||
| 263 | .irq_base = IRQ_EINT(8), | ||
| 264 | .chip = { | ||
| 265 | .base = EXYNOS4_GPX1(0), | ||
| 266 | .ngpio = EXYNOS4_GPIO_X1_NR, | ||
| 267 | .label = "GPX1", | ||
| 268 | .to_irq = samsung_gpiolib_to_irq, | ||
| 269 | }, | ||
| 270 | }, { | ||
| 271 | .base = (S5P_VA_GPIO2 + 0xC40), | ||
| 272 | .config = &gpio_cfg_noint, | ||
| 273 | .irq_base = IRQ_EINT(16), | ||
| 274 | .chip = { | ||
| 275 | .base = EXYNOS4_GPX2(0), | ||
| 276 | .ngpio = EXYNOS4_GPIO_X2_NR, | ||
| 277 | .label = "GPX2", | ||
| 278 | .to_irq = samsung_gpiolib_to_irq, | ||
| 279 | }, | ||
| 280 | }, { | ||
| 281 | .base = (S5P_VA_GPIO2 + 0xC60), | ||
| 282 | .config = &gpio_cfg_noint, | ||
| 283 | .irq_base = IRQ_EINT(24), | ||
| 284 | .chip = { | ||
| 285 | .base = EXYNOS4_GPX3(0), | ||
| 286 | .ngpio = EXYNOS4_GPIO_X3_NR, | ||
| 287 | .label = "GPX3", | ||
| 288 | .to_irq = samsung_gpiolib_to_irq, | ||
| 289 | }, | ||
| 290 | }, | ||
| 291 | }; | ||
| 292 | |||
| 293 | static struct s3c_gpio_chip exynos4_gpio_part3_4bit[] = { | ||
| 294 | { | ||
| 295 | .chip = { | ||
| 296 | .base = EXYNOS4_GPZ(0), | ||
| 297 | .ngpio = EXYNOS4_GPIO_Z_NR, | ||
| 298 | .label = "GPZ", | ||
| 299 | }, | ||
| 300 | }, | ||
| 301 | }; | ||
| 302 | |||
| 303 | static __init int exynos4_gpiolib_init(void) | ||
| 304 | { | ||
| 305 | struct s3c_gpio_chip *chip; | ||
| 306 | int i; | ||
| 307 | int group = 0; | ||
| 308 | int nr_chips; | ||
| 309 | |||
| 310 | /* GPIO part 1 */ | ||
| 311 | |||
| 312 | chip = exynos4_gpio_part1_4bit; | ||
| 313 | nr_chips = ARRAY_SIZE(exynos4_gpio_part1_4bit); | ||
| 314 | |||
| 315 | for (i = 0; i < nr_chips; i++, chip++) { | ||
| 316 | if (chip->config == NULL) { | ||
| 317 | chip->config = &gpio_cfg; | ||
| 318 | /* Assign the GPIO interrupt group */ | ||
| 319 | chip->group = group++; | ||
| 320 | } | ||
| 321 | if (chip->base == NULL) | ||
| 322 | chip->base = S5P_VA_GPIO1 + (i) * 0x20; | ||
| 323 | } | ||
| 324 | |||
| 325 | samsung_gpiolib_add_4bit_chips(exynos4_gpio_part1_4bit, nr_chips); | ||
| 326 | |||
| 327 | /* GPIO part 2 */ | ||
| 328 | |||
| 329 | chip = exynos4_gpio_part2_4bit; | ||
| 330 | nr_chips = ARRAY_SIZE(exynos4_gpio_part2_4bit); | ||
| 331 | |||
| 332 | for (i = 0; i < nr_chips; i++, chip++) { | ||
| 333 | if (chip->config == NULL) { | ||
| 334 | chip->config = &gpio_cfg; | ||
| 335 | /* Assign the GPIO interrupt group */ | ||
| 336 | chip->group = group++; | ||
| 337 | } | ||
| 338 | if (chip->base == NULL) | ||
| 339 | chip->base = S5P_VA_GPIO2 + (i) * 0x20; | ||
| 340 | } | ||
| 341 | |||
| 342 | samsung_gpiolib_add_4bit_chips(exynos4_gpio_part2_4bit, nr_chips); | ||
| 343 | |||
| 344 | /* GPIO part 3 */ | ||
| 345 | |||
| 346 | chip = exynos4_gpio_part3_4bit; | ||
| 347 | nr_chips = ARRAY_SIZE(exynos4_gpio_part3_4bit); | ||
| 348 | |||
| 349 | for (i = 0; i < nr_chips; i++, chip++) { | ||
| 350 | if (chip->config == NULL) { | ||
| 351 | chip->config = &gpio_cfg; | ||
| 352 | /* Assign the GPIO interrupt group */ | ||
| 353 | chip->group = group++; | ||
| 354 | } | ||
| 355 | if (chip->base == NULL) | ||
| 356 | chip->base = S5P_VA_GPIO3 + (i) * 0x20; | ||
| 357 | } | ||
| 358 | |||
| 359 | samsung_gpiolib_add_4bit_chips(exynos4_gpio_part3_4bit, nr_chips); | ||
| 360 | s5p_register_gpioint_bank(IRQ_GPIO_XA, 0, IRQ_GPIO1_NR_GROUPS); | ||
| 361 | s5p_register_gpioint_bank(IRQ_GPIO_XB, IRQ_GPIO1_NR_GROUPS, IRQ_GPIO2_NR_GROUPS); | ||
| 362 | |||
| 363 | return 0; | ||
| 364 | } | ||
| 365 | core_initcall(exynos4_gpiolib_init); | ||
