summaryrefslogtreecommitdiffstats
path: root/target/linux/ifxmips/files
diff options
context:
space:
mode:
authorblogic <blogic@3c298f89-4303-0410-b956-a3cf2f4a3e73>2008-06-08 08:07:14 +0000
committerblogic <blogic@3c298f89-4303-0410-b956-a3cf2f4a3e73>2008-06-08 08:07:14 +0000
commit422bfb060007f4566f871587e9ba5b8fe7cc5b03 (patch)
tree8dc88137b793d0cebb387e5dba4b6f2906368c2e /target/linux/ifxmips/files
parentf44890b6fb35c11b7c52c3134cf05d1d3d77d50b (diff)
adds gpiodev support to ifxmips
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11405 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/ifxmips/files')
-rw-r--r--target/linux/ifxmips/files/arch/mips/ifxmips/board.c28
-rw-r--r--target/linux/ifxmips/files/include/asm-mips/mach-ifxmips/gpio.h1
2 files changed, 25 insertions, 4 deletions
diff --git a/target/linux/ifxmips/files/arch/mips/ifxmips/board.c b/target/linux/ifxmips/files/arch/mips/ifxmips/board.c
index bcbf117e8..d925cf236 100644
--- a/target/linux/ifxmips/files/arch/mips/ifxmips/board.c
+++ b/target/linux/ifxmips/files/arch/mips/ifxmips/board.c
@@ -35,7 +35,7 @@
#include <asm/io.h>
#include <asm/ifxmips/ifxmips.h>
-#define MAX_IFXMIPS_DEVS 5
+#define MAX_IFXMIPS_DEVS 6
#define BOARD_DANUBE "Danube"
#define BOARD_DANUBE_CHIPID 0x10129083
@@ -96,6 +96,26 @@ static struct platform_device ifxmips_mtd[] =
},
};
+#ifdef CONFIG_GPIO_DEVICE
+static struct resource ifxmips_gpio_dev_resources[] = {
+ {
+ .name = "gpio",
+ .flags = 0,
+ .start = (1 << 0) | (1 << 1) | (1 << 2) | (1 << 3) | (1 << 4) | (1 << 5) | (1 << 8) | (1 << 9) | (1 << 12),
+ .end = (1 << 0) | (1 << 1) | (1 << 2) | (1 << 3) | (1 << 4) | (1 << 5) | (1 << 8) | (1 << 9) | (1 << 12),
+ },
+};
+
+static struct platform_device ifxmips_gpio_dev[] = {
+ {
+ .name = "GPIODEV",
+ .id = -1,
+ .num_resources = ARRAY_SIZE(ifxmips_gpio_dev_resources),
+ .resource = ifxmips_gpio_dev_resources,
+ }
+};
+#endif
+
const char*
get_system_type (void)
{
@@ -119,18 +139,18 @@ int __init ifxmips_init_devices(void)
* Currently we support 3 chips
* 1.) Danube
* 2.) Twinpass (Danube without dsl phy)
- * 3.) KDbg74 (used for debuging)
*/
int dev = 0;
/* the following devices are generic for all targets */
-
ifxmips_devs[dev++] = ifxmips_led;
ifxmips_devs[dev++] = ifxmips_gpio;
ifxmips_devs[dev++] = ifxmips_mii;
ifxmips_devs[dev++] = ifxmips_mtd;
-
+#ifdef CONFIG_GPIO_DEVICE
+ ifxmips_devs[dev++] = ifxmips_gpio_dev;
+#endif
return platform_add_devices(ifxmips_devs, dev);
}
diff --git a/target/linux/ifxmips/files/include/asm-mips/mach-ifxmips/gpio.h b/target/linux/ifxmips/files/include/asm-mips/mach-ifxmips/gpio.h
index 3083b8811..18fd49e27 100644
--- a/target/linux/ifxmips/files/include/asm-mips/mach-ifxmips/gpio.h
+++ b/target/linux/ifxmips/files/include/asm-mips/mach-ifxmips/gpio.h
@@ -24,6 +24,7 @@
#define _IFXMIPS_GPIO_H_
#include <asm/ifxmips/ifxmips.h>
+#include <asm/ifxmips/ifxmips_gpio.h>
static inline int gpio_direction_input(unsigned gpio) {
ifxmips_port_set_dir_in(0, gpio);