summaryrefslogtreecommitdiffstats
path: root/target
diff options
context:
space:
mode:
authorImre Kaloz <kaloz@openwrt.org>2008-04-07 10:48:45 +0000
committerImre Kaloz <kaloz@openwrt.org>2008-04-07 10:48:45 +0000
commit08f82d001de7857ee0c2034937428d11a5dd8efe (patch)
tree5e55b3afa1b5c69d998c5490b24a7edfc5bceeb2 /target
parent081afd037e1f1539266c5b79e2a81207c9e23142 (diff)
downloadmaster-31e0f0ae-08f82d001de7857ee0c2034937428d11a5dd8efe.tar.gz
master-31e0f0ae-08f82d001de7857ee0c2034937428d11a5dd8efe.tar.bz2
master-31e0f0ae-08f82d001de7857ee0c2034937428d11a5dd8efe.zip
add support for the IXDPG425
SVN-Revision: 10756
Diffstat (limited to 'target')
-rw-r--r--target/linux/ixp4xx/config-default2
-rw-r--r--target/linux/ixp4xx/patches-2.6.24/170-ixdpg425_mac_plat_info.patch41
2 files changed, 42 insertions, 1 deletions
diff --git a/target/linux/ixp4xx/config-default b/target/linux/ixp4xx/config-default
index 2bca91986c..353d69b1db 100644
--- a/target/linux/ixp4xx/config-default
+++ b/target/linux/ixp4xx/config-default
@@ -213,7 +213,7 @@ CONFIG_MACH_FSG=y
CONFIG_MACH_GATEWAY7001=y
# CONFIG_MACH_GTWX5715 is not set
# CONFIG_MACH_IXDP465 is not set
-# CONFIG_MACH_IXDPG425 is not set
+CONFIG_MACH_IXDPG425=y
# CONFIG_MACH_KIXRP435 is not set
CONFIG_MACH_LOFT=y
CONFIG_MACH_NAS100D=y
diff --git a/target/linux/ixp4xx/patches-2.6.24/170-ixdpg425_mac_plat_info.patch b/target/linux/ixp4xx/patches-2.6.24/170-ixdpg425_mac_plat_info.patch
new file mode 100644
index 0000000000..cb6551680c
--- /dev/null
+++ b/target/linux/ixp4xx/patches-2.6.24/170-ixdpg425_mac_plat_info.patch
@@ -0,0 +1,41 @@
+--- linux-2.6.24.2/arch/arm/mach-ixp4xx/coyote-setup.c 2008-02-11 06:51:11.000000000 +0100
++++ linux-2.6.24.2-owrt/arch/arm/mach-ixp4xx/coyote-setup.c 2008-04-07 12:39:48.000000000 +0200
+@@ -73,9 +73,37 @@
+ .resource = &coyote_uart_resource,
+ };
+
++/* Built-in 10/100 Ethernet MAC interfaces */
++static struct eth_plat_info ixdpg425_plat_eth[] = {
++ {
++ .phy = 5,
++ .rxq = 3,
++ .txreadyq = 20,
++ }, {
++ .phy = 4,
++ .rxq = 4,
++ .txreadyq = 21,
++ }
++};
++
++static struct platform_device ixdpg425_eth[] = {
++ {
++ .name = "ixp4xx_eth",
++ .id = IXP4XX_ETH_NPEB,
++ .dev.platform_data = ixdpg425_plat_eth,
++ }, {
++ .name = "ixp4xx_eth",
++ .id = IXP4XX_ETH_NPEC,
++ .dev.platform_data = ixdpg425_plat_eth + 1,
++ }
++};
++
++
+ static struct platform_device *coyote_devices[] __initdata = {
+ &coyote_flash,
+- &coyote_uart
++ &coyote_uart,
++ &ixdpg425_eth[0],
++ &ixdpg425_eth[1],
+ };
+
+ static void __init coyote_init(void)