ixp4xx: add support for jumbo frames to the ethernet driver
[openwrt/openwrt.git] / target / linux / ixp4xx / patches-2.6.28 / 304-ixp4xx_eth_jumboframe.patch
1 --- a/drivers/net/arm/ixp4xx_eth.c
2 +++ b/drivers/net/arm/ixp4xx_eth.c
3 @@ -54,7 +54,7 @@
4
5 #define POOL_ALLOC_SIZE (sizeof(struct desc) * (RX_DESCS + TX_DESCS))
6 #define REGS_SIZE 0x1000
7 -#define MAX_MRU 1536 /* 0x600 */
8 +#define MAX_MRU 16384
9 #define RX_BUFF_SIZE ALIGN((NET_IP_ALIGN) + MAX_MRU, 4)
10
11 #define NAPI_WEIGHT 16
12 @@ -1011,6 +1011,30 @@ static void destroy_queues(struct port *
13 }
14 }
15
16 +static int eth_do_change_mtu(struct net_device *dev, int mtu)
17 +{
18 + struct port *port;
19 + struct msg msg;
20 +
21 + port = netdev_priv(dev);
22 +
23 + memset(&msg, 0, sizeof(msg));
24 + msg.cmd = NPE_SETMAXFRAMELENGTHS;
25 + msg.eth_id = port->id;
26 +
27 + /* max rx/tx 64 byte blocks */
28 + msg.byte2 = ((mtu + 63) / 64) << 8;
29 + msg.byte3 = ((mtu + 63) / 64) << 8;
30 +
31 + msg.byte4 = msg.byte6 = mtu >> 8;
32 + msg.byte5 = msg.byte7 = mtu & 0xff;
33 +
34 + if (npe_send_recv_message(port->npe, &msg, "ETH_SET_MAX_FRAME_LENGTH"))
35 + return -EIO;
36 +
37 + return 0;
38 +}
39 +
40 static int eth_open(struct net_device *dev)
41 {
42 struct port *port = netdev_priv(dev);
43 @@ -1061,6 +1085,8 @@ static int eth_open(struct net_device *d
44 if (npe_send_recv_message(port->npe, &msg, "ETH_SET_FIREWALL_MODE"))
45 return -EIO;
46
47 + eth_do_change_mtu(dev, dev->mtu);
48 +
49 if ((err = request_queues(port)) != 0)
50 return err;
51
52 @@ -1238,6 +1264,24 @@ static void eth_init_mii(struct net_devi
53
54 }
55
56 +static int eth_change_mtu(struct net_device *dev, int mtu)
57 +{
58 + int ret;
59 +
60 + if (mtu > MAX_MRU)
61 + return -EINVAL;
62 +
63 + if (dev->flags & IFF_UP) {
64 + ret = eth_do_change_mtu(dev, mtu);
65 + if (ret < 0)
66 + return ret;
67 + }
68 +
69 + dev->mtu = mtu;
70 +
71 + return 0;
72 +}
73 +
74 static int __devinit eth_init_one(struct platform_device *pdev)
75 {
76 struct port *port;
77 @@ -1272,6 +1316,7 @@ static int __devinit eth_init_one(struct
78 goto err_free;
79 }
80
81 + dev->change_mtu = eth_change_mtu;
82 dev->open = eth_open;
83 dev->hard_start_xmit = eth_xmit;
84 dev->stop = eth_close;