diff options
author | Grant Likely <grant.likely@secretlab.ca> | 2011-06-06 11:37:58 -0400 |
---|---|---|
committer | Grant Likely <grant.likely@secretlab.ca> | 2011-06-06 11:37:58 -0400 |
commit | 7b2fa5702059a03c11f934224724b2f712a749ce (patch) | |
tree | 42e9357b0925346fa2639f74e0bf9e13e58915ce | |
parent | 59c5f46fbe01a00eedf54a23789634438bb80603 (diff) |
gpio/mxs: Move Freescale mxs gpio driver to drivers/gpio
GPIO drivers are getting moved to drivers/gpio for cleanup and
consolidation. This patch moves the mxs driver. Follow up patches
will clean it up and make it a fine upstanding example of a gpio
driver.
v2: Removed header file entirely and put struct definition directly
into driver. The struct isn't used anywhere else in the kernel.
Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
Tested-by: Shawn Guo <shawn.guo@linaro.org>
Acked-by: Sascha Hauer <s.hauer@pengutronix.de>
-rw-r--r-- | arch/arm/mach-mxs/Makefile | 2 | ||||
-rw-r--r-- | arch/arm/mach-mxs/gpio.h | 34 | ||||
-rw-r--r-- | arch/arm/mach-mxs/mach-mx28evk.c | 1 | ||||
-rw-r--r-- | drivers/gpio/Kconfig | 4 | ||||
-rw-r--r-- | drivers/gpio/Makefile | 1 | ||||
-rw-r--r-- | drivers/gpio/gpio-mxs.c (renamed from arch/arm/mach-mxs/gpio.c) | 11 |
6 files changed, 15 insertions, 38 deletions
diff --git a/arch/arm/mach-mxs/Makefile b/arch/arm/mach-mxs/Makefile index 58e892376bf2..6c38262a3aaa 100644 --- a/arch/arm/mach-mxs/Makefile +++ b/arch/arm/mach-mxs/Makefile | |||
@@ -1,5 +1,5 @@ | |||
1 | # Common support | 1 | # Common support |
2 | obj-y := clock.o devices.o gpio.o icoll.o iomux.o system.o timer.o | 2 | obj-y := clock.o devices.o icoll.o iomux.o system.o timer.o |
3 | 3 | ||
4 | obj-$(CONFIG_MXS_OCOTP) += ocotp.o | 4 | obj-$(CONFIG_MXS_OCOTP) += ocotp.o |
5 | obj-$(CONFIG_PM) += pm.o | 5 | obj-$(CONFIG_PM) += pm.o |
diff --git a/arch/arm/mach-mxs/gpio.h b/arch/arm/mach-mxs/gpio.h deleted file mode 100644 index 005bb06630b1..000000000000 --- a/arch/arm/mach-mxs/gpio.h +++ /dev/null | |||
@@ -1,34 +0,0 @@ | |||
1 | /* | ||
2 | * Copyright 2007 Freescale Semiconductor, Inc. All Rights Reserved. | ||
3 | * Copyright 2008 Juergen Beisert, kernel@pengutronix.de | ||
4 | * | ||
5 | * This program is free software; you can redistribute it and/or | ||
6 | * modify it under the terms of the GNU General Public License | ||
7 | * as published by the Free Software Foundation; either version 2 | ||
8 | * of the License, or (at your option) any later version. | ||
9 | * This program is distributed in the hope that it will be useful, | ||
10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
12 | * GNU General Public License for more details. | ||
13 | * | ||
14 | * You should have received a copy of the GNU General Public License | ||
15 | * along with this program; if not, write to the Free Software | ||
16 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, | ||
17 | * MA 02110-1301, USA. | ||
18 | */ | ||
19 | |||
20 | #ifndef __MXS_GPIO_H__ | ||
21 | #define __MXS_GPIO_H__ | ||
22 | |||
23 | struct mxs_gpio_port { | ||
24 | void __iomem *base; | ||
25 | int id; | ||
26 | int irq; | ||
27 | int irq_high; | ||
28 | int virtual_irq_start; | ||
29 | struct gpio_chip chip; | ||
30 | }; | ||
31 | |||
32 | int mxs_gpio_init(struct mxs_gpio_port*, int); | ||
33 | |||
34 | #endif /* __MXS_GPIO_H__ */ | ||
diff --git a/arch/arm/mach-mxs/mach-mx28evk.c b/arch/arm/mach-mxs/mach-mx28evk.c index eacdc6b0e70a..56767a5cce0e 100644 --- a/arch/arm/mach-mxs/mach-mx28evk.c +++ b/arch/arm/mach-mxs/mach-mx28evk.c | |||
@@ -26,7 +26,6 @@ | |||
26 | #include <mach/iomux-mx28.h> | 26 | #include <mach/iomux-mx28.h> |
27 | 27 | ||
28 | #include "devices-mx28.h" | 28 | #include "devices-mx28.h" |
29 | #include "gpio.h" | ||
30 | 29 | ||
31 | #define MX28EVK_FLEXCAN_SWITCH MXS_GPIO_NR(2, 13) | 30 | #define MX28EVK_FLEXCAN_SWITCH MXS_GPIO_NR(2, 13) |
32 | #define MX28EVK_FEC_PHY_POWER MXS_GPIO_NR(2, 15) | 31 | #define MX28EVK_FEC_PHY_POWER MXS_GPIO_NR(2, 15) |
diff --git a/drivers/gpio/Kconfig b/drivers/gpio/Kconfig index 4a7f63143455..48711749ffcf 100644 --- a/drivers/gpio/Kconfig +++ b/drivers/gpio/Kconfig | |||
@@ -93,6 +93,10 @@ config GPIO_EXYNOS4 | |||
93 | help | 93 | help |
94 | Say yes here to support Samsung Exynos4 series SoCs GPIO library | 94 | Say yes here to support Samsung Exynos4 series SoCs GPIO library |
95 | 95 | ||
96 | config GPIO_MXS | ||
97 | def_bool y | ||
98 | depends on ARCH_MXS | ||
99 | |||
96 | config GPIO_PLAT_SAMSUNG | 100 | config GPIO_PLAT_SAMSUNG |
97 | bool "Samsung SoCs GPIO library support" | 101 | bool "Samsung SoCs GPIO library support" |
98 | default y if SAMSUNG_GPIOLIB_4BIT | 102 | default y if SAMSUNG_GPIOLIB_4BIT |
diff --git a/drivers/gpio/Makefile b/drivers/gpio/Makefile index b605f8ec6fbe..f879cbe493d5 100644 --- a/drivers/gpio/Makefile +++ b/drivers/gpio/Makefile | |||
@@ -9,6 +9,7 @@ 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_EXYNOS4) += gpio-exynos4.o |
12 | obj-$(CONFIG_GPIO_MXS) += gpio-mxs.o | ||
12 | obj-$(CONFIG_GPIO_PLAT_SAMSUNG) += gpio-plat-samsung.o | 13 | obj-$(CONFIG_GPIO_PLAT_SAMSUNG) += gpio-plat-samsung.o |
13 | obj-$(CONFIG_GPIO_S5PC100) += gpio-s5pc100.o | 14 | obj-$(CONFIG_GPIO_S5PC100) += gpio-s5pc100.o |
14 | obj-$(CONFIG_GPIO_S5PV210) += gpio-s5pv210.o | 15 | obj-$(CONFIG_GPIO_S5PV210) += gpio-s5pv210.o |
diff --git a/arch/arm/mach-mxs/gpio.c b/drivers/gpio/gpio-mxs.c index 2c950fef71a8..e26bf309b214 100644 --- a/arch/arm/mach-mxs/gpio.c +++ b/drivers/gpio/gpio-mxs.c | |||
@@ -29,8 +29,6 @@ | |||
29 | #include <mach/mx28.h> | 29 | #include <mach/mx28.h> |
30 | #include <asm-generic/bug.h> | 30 | #include <asm-generic/bug.h> |
31 | 31 | ||
32 | #include "gpio.h" | ||
33 | |||
34 | static struct mxs_gpio_port *mxs_gpio_ports; | 32 | static struct mxs_gpio_port *mxs_gpio_ports; |
35 | static int gpio_table_size; | 33 | static int gpio_table_size; |
36 | 34 | ||
@@ -50,6 +48,15 @@ static int gpio_table_size; | |||
50 | #define GPIO_INT_LEV_MASK (1 << 0) | 48 | #define GPIO_INT_LEV_MASK (1 << 0) |
51 | #define GPIO_INT_POL_MASK (1 << 1) | 49 | #define GPIO_INT_POL_MASK (1 << 1) |
52 | 50 | ||
51 | struct mxs_gpio_port { | ||
52 | void __iomem *base; | ||
53 | int id; | ||
54 | int irq; | ||
55 | int irq_high; | ||
56 | int virtual_irq_start; | ||
57 | struct gpio_chip chip; | ||
58 | }; | ||
59 | |||
53 | /* Note: This driver assumes 32 GPIOs are handled in one register */ | 60 | /* Note: This driver assumes 32 GPIOs are handled in one register */ |
54 | 61 | ||
55 | static void clear_gpio_irqstatus(struct mxs_gpio_port *port, u32 index) | 62 | static void clear_gpio_irqstatus(struct mxs_gpio_port *port, u32 index) |