diff options
author | Imre Kaloz <kaloz@openwrt.org> | 2008-04-07 10:48:45 +0000 |
---|---|---|
committer | Imre Kaloz <kaloz@openwrt.org> | 2008-04-07 10:48:45 +0000 |
commit | 21ccc9c8a9f106419b1ee9109362ecb589fd4dd6 (patch) | |
tree | e2e01dff42a52acf93ca110627010deacf3dae06 /target/linux/ixp4xx/patches-2.6.24 | |
parent | 8f2b229dabbcaa471b57f9d6bf06f1b9c7d1f7b1 (diff) | |
download | upstream-21ccc9c8a9f106419b1ee9109362ecb589fd4dd6.tar.gz upstream-21ccc9c8a9f106419b1ee9109362ecb589fd4dd6.tar.bz2 upstream-21ccc9c8a9f106419b1ee9109362ecb589fd4dd6.zip |
add support for the IXDPG425
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10756 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/ixp4xx/patches-2.6.24')
-rw-r--r-- | target/linux/ixp4xx/patches-2.6.24/170-ixdpg425_mac_plat_info.patch | 41 |
1 files changed, 41 insertions, 0 deletions
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) |