diff options
author | Imre Kaloz <kaloz@openwrt.org> | 2009-04-28 13:35:14 +0000 |
---|---|---|
committer | Imre Kaloz <kaloz@openwrt.org> | 2009-04-28 13:35:14 +0000 |
commit | b830ff89945d93e7dec4b46f9a38029b80f2c71c (patch) | |
tree | 9f391646f3e5cf12683bf4b82c0ad6168042d1cf /target/linux/ixp4xx/patches-2.6.30/192-cambria_gpio_device.patch | |
parent | 2fcc705fc5562b577cdded39e61ef725ee64d124 (diff) | |
download | master-187ad058-b830ff89945d93e7dec4b46f9a38029b80f2c71c.tar.gz master-187ad058-b830ff89945d93e7dec4b46f9a38029b80f2c71c.tar.bz2 master-187ad058-b830ff89945d93e7dec4b46f9a38029b80f2c71c.zip |
preliminary 2.6.30 support
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@15468 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/ixp4xx/patches-2.6.30/192-cambria_gpio_device.patch')
-rw-r--r-- | target/linux/ixp4xx/patches-2.6.30/192-cambria_gpio_device.patch | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/target/linux/ixp4xx/patches-2.6.30/192-cambria_gpio_device.patch b/target/linux/ixp4xx/patches-2.6.30/192-cambria_gpio_device.patch new file mode 100644 index 0000000000..d785c3a8ca --- /dev/null +++ b/target/linux/ixp4xx/patches-2.6.30/192-cambria_gpio_device.patch @@ -0,0 +1,46 @@ +--- a/arch/arm/mach-ixp4xx/cambria-setup.c ++++ b/arch/arm/mach-ixp4xx/cambria-setup.c +@@ -214,6 +214,20 @@ static struct platform_device cambria_gp + .dev.platform_data = &cambria_gpio_leds_data, + }; + ++static struct resource cambria_gpio_resources[] = { ++ { ++ .name = "gpio", ++ .flags = 0, ++ }, ++}; ++ ++static struct platform_device cambria_gpio = { ++ .name = "GPIODEV", ++ .id = -1, ++ .num_resources = ARRAY_SIZE(cambria_gpio_resources), ++ .resource = cambria_gpio_resources, ++}; ++ + static struct latch_led cambria_latch_leds[] = { + { + .name = "ledA", /* green led */ +@@ -335,6 +349,11 @@ static void __init cambria_gw2350_setup( + cambria_optional_uart_data[1].membase = (void __iomem *)ioremap(0x53FF0000, 0x0fff); + cambria_optional_uart_data[1].irq = IRQ_IXP4XX_GPIO4; + ++ cambria_gpio_resources[0].start = (1 << 0) | (1 << 1) | (1 << 2) | (1 << 3) | (1 << 4) |\ ++ (1 << 5) | (1 << 8) | (1 << 9) | (1 << 12); ++ cambria_gpio_resources[0].end = cambria_gpio_resources[0].start; ++ ++ platform_device_register(&cambria_gpio); + platform_device_register(&cambria_optional_uart); + platform_device_register(&cambria_npec_device); + platform_device_register(&cambria_npea_device); +@@ -358,6 +377,10 @@ static void __init cambria_gw2358_setup( + cambria_optional_uart_data[1].membase = (void __iomem *)ioremap(0x53F80000, 0x0fff); + cambria_optional_uart_data[1].irq = IRQ_IXP4XX_GPIO4; + ++ cambria_gpio_resources[0].start = (1 << 14); ++ cambria_gpio_resources[0].end = cambria_gpio_resources[0].start; ++ ++ platform_device_register(&cambria_gpio); + platform_device_register(&cambria_optional_uart); + + platform_device_register(&cambria_npec_device); |