aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/ixp4xx/patches-2.6.25/302-avila_gpio_device.patch
diff options
context:
space:
mode:
authorImre Kaloz <kaloz@openwrt.org>2008-04-20 18:17:38 +0000
committerImre Kaloz <kaloz@openwrt.org>2008-04-20 18:17:38 +0000
commitb45ffe9b60be338b5a27101155f5fdd28a99f8eb (patch)
tree57a001505f68d3460617670cf9116870274f01b4 /target/linux/ixp4xx/patches-2.6.25/302-avila_gpio_device.patch
parent895b820b4211117f0dd77a6a68f6068f5a300f46 (diff)
downloadmaster-187ad058-b45ffe9b60be338b5a27101155f5fdd28a99f8eb.tar.gz
master-187ad058-b45ffe9b60be338b5a27101155f5fdd28a99f8eb.tar.bz2
master-187ad058-b45ffe9b60be338b5a27101155f5fdd28a99f8eb.zip
add ixp4xx 2.6.25 patchset
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10891 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/ixp4xx/patches-2.6.25/302-avila_gpio_device.patch')
-rw-r--r--target/linux/ixp4xx/patches-2.6.25/302-avila_gpio_device.patch50
1 files changed, 50 insertions, 0 deletions
diff --git a/target/linux/ixp4xx/patches-2.6.25/302-avila_gpio_device.patch b/target/linux/ixp4xx/patches-2.6.25/302-avila_gpio_device.patch
new file mode 100644
index 0000000000..faa08beeab
--- /dev/null
+++ b/target/linux/ixp4xx/patches-2.6.25/302-avila_gpio_device.patch
@@ -0,0 +1,50 @@
+Index: linux-2.6.24.2/arch/arm/mach-ixp4xx/avila-setup.c
+===================================================================
+--- linux-2.6.24.2.orig/arch/arm/mach-ixp4xx/avila-setup.c
++++ linux-2.6.24.2/arch/arm/mach-ixp4xx/avila-setup.c
+@@ -192,6 +192,24 @@ static struct platform_device avila_leds
+ };
+ #endif
+
++#ifdef CONFIG_GPIO_DEVICE
++static struct resource avila_gpio_resources[] = {
++ {
++ .name = "gpio",
++ .start = AVILA_GPIO_MASK,
++ .end = AVILA_GPIO_MASK,
++ .flags = 0,
++ },
++};
++
++static struct platform_device avila_gpio = {
++ .name = "GPIODEV",
++ .id = -1,
++ .num_resources = ARRAY_SIZE(avila_gpio_resources),
++ .resource = avila_gpio_resources,
++};
++#endif
++
+ static struct platform_device *avila_devices[] __initdata = {
+ &avila_i2c_gpio,
+ &avila_flash,
+@@ -199,6 +217,9 @@ static struct platform_device *avila_dev
+ #ifdef CONFIG_LEDS_IXP4XX
+ &avila_leds,
+ #endif
++#ifdef CONFIG_GPIO_DEVICE
++ &avila_gpio,
++#endif
+ };
+
+ static struct platform_device *avila_eth_devices[] = {
+Index: linux-2.6.24.2/include/asm-arm/arch-ixp4xx/avila.h
+===================================================================
+--- linux-2.6.24.2.orig/include/asm-arm/arch-ixp4xx/avila.h
++++ linux-2.6.24.2/include/asm-arm/arch-ixp4xx/avila.h
+@@ -38,3 +38,6 @@
+
+ /* User LED */
+ #define AVILA_LED_USER_GPIO 3
++
++/* gpio mask used by platform device */
++#define AVILA_GPIO_MASK (1 << 1) | (1 << 3) | (1 << 5) | (1 << 7) | (1 << 9)