IXP4xx patches for NSLU2 and NAS100D
[openwrt/openwrt.git] / target / linux / ixp4xx-2.6 / patches / 142-nas100d_setup_mac.patch
1 Index: linux-2.6.19/arch/arm/mach-ixp4xx/nas100d-setup.c
2 ===================================================================
3 --- linux-2.6.19.orig/arch/arm/mach-ixp4xx/nas100d-setup.c
4 +++ linux-2.6.19/arch/arm/mach-ixp4xx/nas100d-setup.c
5 @@ -123,12 +123,35 @@ static struct platform_device nas100d_ua
6 .resource = nas100d_uart_resources,
7 };
8
9 +static struct resource res_mac0 = {
10 + .start = IXP4XX_EthB_BASE_PHYS,
11 + .end = IXP4XX_EthB_BASE_PHYS + 0x1ff,
12 + .flags = IORESOURCE_MEM,
13 +};
14 +
15 +static struct mac_plat_info plat_mac0 = {
16 + .npe_id = 1,
17 + .phy_id = 0,
18 + .eth_id = 0,
19 + .rxq_id = 27,
20 + .txq_id = 24,
21 +};
22 +
23 +static struct platform_device mac0 = {
24 + .name = "ixp4xx_mac",
25 + .id = 0,
26 + .dev.platform_data = &plat_mac0,
27 + .num_resources = 1,
28 + .resource = &res_mac0,
29 +};
30 +
31 static struct platform_device *nas100d_devices[] __initdata = {
32 &nas100d_i2c_controller,
33 &nas100d_flash,
34 #ifdef CONFIG_LEDS_IXP4XX
35 &nas100d_leds,
36 #endif
37 + &mac0
38 };
39
40 static void nas100d_power_off(void)