diff options
| author | Sylwester Nawrocki <sylvester.nawrocki@gmail.com> | 2012-07-13 05:05:29 -0400 |
|---|---|---|
| committer | Kukjin Kim <kgene.kim@samsung.com> | 2012-07-13 05:05:29 -0400 |
| commit | 353ba37a09bb040480f8a49223f2fa4294a14a92 (patch) | |
| tree | 7d45760c30319a7a1335907df5a2a19d3fdb00ed | |
| parent | b5fe5d7d9db818dd44e4920827a50dfff3a09465 (diff) | |
ARM: S3C24XX: Remove unused GPIO definitions for port J
There is no need now for individual GPIO port J pin control bit
definitions, the GPIO0..12 pins can be configured using the gpiolib
API. The GPJ* register address offset definitions for S3C2413 are
moved to the common mach-s3c24xx/include/mach/regs-gpio.h header.
These are still used outside of the gpio-samsung driver by PM code.
Switching GPJ port to camera function can be done for example with:
s3c_gpio_cfgall_range(S3C2410_GPJ(0), 13, S3C_GPIO_SFN(2), S3C_GPIO_PULL_NONE);
Signed-off-by: Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
| -rw-r--r-- | arch/arm/mach-s3c24xx/include/mach/regs-gpio.h | 17 | ||||
| -rw-r--r-- | arch/arm/mach-s3c24xx/include/mach/regs-gpioj.h | 70 | ||||
| -rw-r--r-- | arch/arm/mach-s3c24xx/mach-gta02.c | 1 | ||||
| -rw-r--r-- | arch/arm/mach-s3c24xx/mach-rx1950.c | 1 | ||||
| -rw-r--r-- | arch/arm/mach-s3c24xx/pm-s3c2412.c | 1 | ||||
| -rw-r--r-- | arch/arm/mach-s3c24xx/s3c2412.c | 1 | ||||
| -rw-r--r-- | arch/arm/mach-s3c24xx/s3c244x.c | 1 |
7 files changed, 15 insertions, 77 deletions
diff --git a/arch/arm/mach-s3c24xx/include/mach/regs-gpio.h b/arch/arm/mach-s3c24xx/include/mach/regs-gpio.h index cac1ad6b582c..a11a638bd599 100644 --- a/arch/arm/mach-s3c24xx/include/mach/regs-gpio.h +++ b/arch/arm/mach-s3c24xx/include/mach/regs-gpio.h | |||
| @@ -302,7 +302,7 @@ | |||
| 302 | /* S3C2410: | 302 | /* S3C2410: |
| 303 | * Port G consists of 8 GPIO/IRQ/Special function | 303 | * Port G consists of 8 GPIO/IRQ/Special function |
| 304 | * | 304 | * |
| 305 | * GPGCON has 2 bits for each of the input pins on port F | 305 | * GPGCON has 2 bits for each of the input pins on port G |
| 306 | * 00 = 0 input, 1 output, 2 interrupt (EINT0..7), 3 special func | 306 | * 00 = 0 input, 1 output, 2 interrupt (EINT0..7), 3 special func |
| 307 | * | 307 | * |
| 308 | * pull up works like all other ports. | 308 | * pull up works like all other ports. |
| @@ -366,7 +366,7 @@ | |||
| 366 | 366 | ||
| 367 | /* Port H consists of11 GPIO/serial/Misc pins | 367 | /* Port H consists of11 GPIO/serial/Misc pins |
| 368 | * | 368 | * |
| 369 | * GPGCON has 2 bits for each of the input pins on port F | 369 | * GPHCON has 2 bits for each of the input pins on port H |
| 370 | * 00 = 0 input, 1 output, 2 interrupt (EINT0..7), 3 special func | 370 | * 00 = 0 input, 1 output, 2 interrupt (EINT0..7), 3 special func |
| 371 | * | 371 | * |
| 372 | * pull up works like all other ports. | 372 | * pull up works like all other ports. |
| @@ -427,6 +427,19 @@ | |||
| 427 | * for the 2412/2413 from the 2410/2440/2442 | 427 | * for the 2412/2413 from the 2410/2440/2442 |
| 428 | */ | 428 | */ |
| 429 | 429 | ||
| 430 | /* | ||
| 431 | * Port J consists of 13 GPIO/Camera pins. GPJCON has 2 bits | ||
| 432 | * for each of the pins on port J. | ||
| 433 | * 00 - input, 01 output, 10 - camera | ||
| 434 | * | ||
| 435 | * Pull up works like all other ports. | ||
| 436 | */ | ||
| 437 | |||
| 438 | #define S3C2413_GPJCON S3C2410_GPIOREG(0x80) | ||
| 439 | #define S3C2413_GPJDAT S3C2410_GPIOREG(0x84) | ||
| 440 | #define S3C2413_GPJUP S3C2410_GPIOREG(0x88) | ||
| 441 | #define S3C2413_GPJSLPCON S3C2410_GPIOREG(0x8C) | ||
| 442 | |||
| 430 | /* S3C2443 and above */ | 443 | /* S3C2443 and above */ |
| 431 | #define S3C2440_GPJCON S3C2410_GPIOREG(0xD0) | 444 | #define S3C2440_GPJCON S3C2410_GPIOREG(0xD0) |
| 432 | #define S3C2440_GPJDAT S3C2410_GPIOREG(0xD4) | 445 | #define S3C2440_GPJDAT S3C2410_GPIOREG(0xD4) |
diff --git a/arch/arm/mach-s3c24xx/include/mach/regs-gpioj.h b/arch/arm/mach-s3c24xx/include/mach/regs-gpioj.h deleted file mode 100644 index 19575e061114..000000000000 --- a/arch/arm/mach-s3c24xx/include/mach/regs-gpioj.h +++ /dev/null | |||
| @@ -1,70 +0,0 @@ | |||
| 1 | /* arch/arm/mach-s3c2410/include/mach/regs-gpioj.h | ||
| 2 | * | ||
| 3 | * Copyright (c) 2004 Simtec Electronics <linux@simtec.co.uk> | ||
| 4 | * http://www.simtec.co.uk/products/SWLINUX/ | ||
| 5 | * | ||
| 6 | * This program is free software; you can redistribute it and/or modify | ||
| 7 | * it under the terms of the GNU General Public License version 2 as | ||
| 8 | * published by the Free Software Foundation. | ||
| 9 | * | ||
| 10 | * S3C2440 GPIO J register definitions | ||
| 11 | */ | ||
| 12 | |||
| 13 | |||
| 14 | #ifndef __ASM_ARCH_REGS_GPIOJ_H | ||
| 15 | #define __ASM_ARCH_REGS_GPIOJ_H "gpioj" | ||
| 16 | |||
| 17 | /* Port J consists of 13 GPIO/Camera pins | ||
| 18 | * | ||
| 19 | * GPJCON has 2 bits for each of the input pins on port F | ||
| 20 | * 00 = 0 input, 1 output, 2 Camera | ||
| 21 | * | ||
| 22 | * pull up works like all other ports. | ||
| 23 | */ | ||
| 24 | |||
| 25 | #define S3C2413_GPJCON S3C2410_GPIOREG(0x80) | ||
| 26 | #define S3C2413_GPJDAT S3C2410_GPIOREG(0x84) | ||
| 27 | #define S3C2413_GPJUP S3C2410_GPIOREG(0x88) | ||
| 28 | #define S3C2413_GPJSLPCON S3C2410_GPIOREG(0x8C) | ||
| 29 | |||
| 30 | #define S3C2440_GPJ0_OUTP (0x01 << 0) | ||
| 31 | #define S3C2440_GPJ0_CAMDATA0 (0x02 << 0) | ||
| 32 | |||
| 33 | #define S3C2440_GPJ1_OUTP (0x01 << 2) | ||
| 34 | #define S3C2440_GPJ1_CAMDATA1 (0x02 << 2) | ||
| 35 | |||
| 36 | #define S3C2440_GPJ2_OUTP (0x01 << 4) | ||
| 37 | #define S3C2440_GPJ2_CAMDATA2 (0x02 << 4) | ||
| 38 | |||
| 39 | #define S3C2440_GPJ3_OUTP (0x01 << 6) | ||
| 40 | #define S3C2440_GPJ3_CAMDATA3 (0x02 << 6) | ||
| 41 | |||
| 42 | #define S3C2440_GPJ4_OUTP (0x01 << 8) | ||
| 43 | #define S3C2440_GPJ4_CAMDATA4 (0x02 << 8) | ||
| 44 | |||
| 45 | #define S3C2440_GPJ5_OUTP (0x01 << 10) | ||
| 46 | #define S3C2440_GPJ5_CAMDATA5 (0x02 << 10) | ||
| 47 | |||
| 48 | #define S3C2440_GPJ6_OUTP (0x01 << 12) | ||
| 49 | #define S3C2440_GPJ6_CAMDATA6 (0x02 << 12) | ||
| 50 | |||
| 51 | #define S3C2440_GPJ7_OUTP (0x01 << 14) | ||
| 52 | #define S3C2440_GPJ7_CAMDATA7 (0x02 << 14) | ||
| 53 | |||
| 54 | #define S3C2440_GPJ8_OUTP (0x01 << 16) | ||
| 55 | #define S3C2440_GPJ8_CAMPCLK (0x02 << 16) | ||
| 56 | |||
| 57 | #define S3C2440_GPJ9_OUTP (0x01 << 18) | ||
| 58 | #define S3C2440_GPJ9_CAMVSYNC (0x02 << 18) | ||
| 59 | |||
| 60 | #define S3C2440_GPJ10_OUTP (0x01 << 20) | ||
| 61 | #define S3C2440_GPJ10_CAMHREF (0x02 << 20) | ||
| 62 | |||
| 63 | #define S3C2440_GPJ11_OUTP (0x01 << 22) | ||
| 64 | #define S3C2440_GPJ11_CAMCLKOUT (0x02 << 22) | ||
| 65 | |||
| 66 | #define S3C2440_GPJ12_OUTP (0x01 << 24) | ||
| 67 | #define S3C2440_GPJ12_CAMRESET (0x02 << 24) | ||
| 68 | |||
| 69 | #endif /* __ASM_ARCH_REGS_GPIOJ_H */ | ||
| 70 | |||
diff --git a/arch/arm/mach-s3c24xx/mach-gta02.c b/arch/arm/mach-s3c24xx/mach-gta02.c index 0f29f64a3eeb..92e1f93a6bca 100644 --- a/arch/arm/mach-s3c24xx/mach-gta02.c +++ b/arch/arm/mach-s3c24xx/mach-gta02.c | |||
| @@ -71,7 +71,6 @@ | |||
| 71 | 71 | ||
| 72 | #include <mach/regs-irq.h> | 72 | #include <mach/regs-irq.h> |
| 73 | #include <mach/regs-gpio.h> | 73 | #include <mach/regs-gpio.h> |
| 74 | #include <mach/regs-gpioj.h> | ||
| 75 | #include <mach/fb.h> | 74 | #include <mach/fb.h> |
| 76 | 75 | ||
| 77 | #include <plat/usb-control.h> | 76 | #include <plat/usb-control.h> |
diff --git a/arch/arm/mach-s3c24xx/mach-rx1950.c b/arch/arm/mach-s3c24xx/mach-rx1950.c index a6762aae4727..7ee73f27f207 100644 --- a/arch/arm/mach-s3c24xx/mach-rx1950.c +++ b/arch/arm/mach-s3c24xx/mach-rx1950.c | |||
| @@ -42,7 +42,6 @@ | |||
| 42 | #include <asm/mach-types.h> | 42 | #include <asm/mach-types.h> |
| 43 | 43 | ||
| 44 | #include <mach/regs-gpio.h> | 44 | #include <mach/regs-gpio.h> |
| 45 | #include <mach/regs-gpioj.h> | ||
| 46 | #include <mach/regs-lcd.h> | 45 | #include <mach/regs-lcd.h> |
| 47 | #include <mach/h1940.h> | 46 | #include <mach/h1940.h> |
| 48 | #include <mach/fb.h> | 47 | #include <mach/fb.h> |
diff --git a/arch/arm/mach-s3c24xx/pm-s3c2412.c b/arch/arm/mach-s3c24xx/pm-s3c2412.c index d04588506ec4..c60f67a75aff 100644 --- a/arch/arm/mach-s3c24xx/pm-s3c2412.c +++ b/arch/arm/mach-s3c24xx/pm-s3c2412.c | |||
| @@ -26,7 +26,6 @@ | |||
| 26 | #include <asm/irq.h> | 26 | #include <asm/irq.h> |
| 27 | 27 | ||
| 28 | #include <mach/regs-power.h> | 28 | #include <mach/regs-power.h> |
| 29 | #include <mach/regs-gpioj.h> | ||
| 30 | #include <mach/regs-gpio.h> | 29 | #include <mach/regs-gpio.h> |
| 31 | #include <mach/regs-dsc.h> | 30 | #include <mach/regs-dsc.h> |
| 32 | 31 | ||
diff --git a/arch/arm/mach-s3c24xx/s3c2412.c b/arch/arm/mach-s3c24xx/s3c2412.c index d4bc7f960bbb..6c5f4031ff0c 100644 --- a/arch/arm/mach-s3c24xx/s3c2412.c +++ b/arch/arm/mach-s3c24xx/s3c2412.c | |||
| @@ -39,7 +39,6 @@ | |||
| 39 | #include <plat/regs-serial.h> | 39 | #include <plat/regs-serial.h> |
| 40 | #include <mach/regs-power.h> | 40 | #include <mach/regs-power.h> |
| 41 | #include <mach/regs-gpio.h> | 41 | #include <mach/regs-gpio.h> |
| 42 | #include <mach/regs-gpioj.h> | ||
| 43 | #include <mach/regs-dsc.h> | 42 | #include <mach/regs-dsc.h> |
| 44 | #include <plat/regs-spi.h> | 43 | #include <plat/regs-spi.h> |
| 45 | #include <mach/regs-s3c2412.h> | 44 | #include <mach/regs-s3c2412.h> |
diff --git a/arch/arm/mach-s3c24xx/s3c244x.c b/arch/arm/mach-s3c24xx/s3c244x.c index 6f74118f60c6..b0b60a1154d6 100644 --- a/arch/arm/mach-s3c24xx/s3c244x.c +++ b/arch/arm/mach-s3c24xx/s3c244x.c | |||
| @@ -36,7 +36,6 @@ | |||
| 36 | #include <mach/regs-clock.h> | 36 | #include <mach/regs-clock.h> |
| 37 | #include <plat/regs-serial.h> | 37 | #include <plat/regs-serial.h> |
| 38 | #include <mach/regs-gpio.h> | 38 | #include <mach/regs-gpio.h> |
| 39 | #include <mach/regs-gpioj.h> | ||
| 40 | #include <mach/regs-dsc.h> | 39 | #include <mach/regs-dsc.h> |
| 41 | 40 | ||
| 42 | #include <plat/s3c2410.h> | 41 | #include <plat/s3c2410.h> |
