summaryrefslogtreecommitdiffstats
path: root/target/linux/ar7/patches-2.6.32/973-cpmac_handle_mvswitch.patch
blob: 13cfdc28f561d0b022e1d88998a04dd7849a689f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
--- a/drivers/net/cpmac.c
+++ b/drivers/net/cpmac.c
@@ -369,6 +369,7 @@ static struct sk_buff *cpmac_rx_one(stru
 				    struct cpmac_desc *desc)
 {
 	struct sk_buff *skb, *result = NULL;
+	int offset;
 
 	if (unlikely(netif_msg_hw(priv)))
 		cpmac_dump_desc(priv->dev, desc);
@@ -382,9 +383,13 @@ static struct sk_buff *cpmac_rx_one(stru
 
 	skb = netdev_alloc_skb(priv->dev, CPMAC_SKB_SIZE);
 	if (likely(skb)) {
-		skb_reserve(skb, 2);
+		offset = 2;
+		if (priv->phy) {
+			offset += priv->phy->pkt_align;
+		}
+		skb_reserve(skb, offset);
+
 		skb_put(desc->skb, desc->datalen);
-		desc->skb->protocol = eth_type_trans(desc->skb, priv->dev);
 		desc->skb->ip_summed = CHECKSUM_NONE;
 		priv->dev->stats.rx_packets++;
 		priv->dev->stats.rx_bytes += desc->datalen;
@@ -456,7 +461,12 @@ static int cpmac_poll(struct napi_struct
 
 		skb = cpmac_rx_one(priv, desc);
 		if (likely(skb)) {
-			netif_receive_skb(skb);
+			if (priv->phy->netif_receive_skb) {
+				priv->phy->netif_receive_skb(skb);
+			} else {
+				skb->protocol = eth_type_trans(skb, priv->dev);
+				netif_receive_skb(skb);
+			}
 			received++;
 		}
 		desc = desc->next;
@@ -951,7 +961,7 @@ static void cpmac_adjust_link(struct net
 
 static int cpmac_open(struct net_device *dev)
 {
-	int i, size, res;
+	int i, size, res, offset;
 	struct cpmac_priv *priv = netdev_priv(dev);
 	struct resource *mem;
 	struct cpmac_desc *desc;
@@ -995,7 +1005,12 @@ static int cpmac_open(struct net_device
 			res = -ENOMEM;
 			goto fail_desc;
 		}
-		skb_reserve(skb, 2);
+		offset = 2;
+		if (priv->phy) {
+			offset += priv->phy->pkt_align;
+		}
+		skb_reserve(skb, offset);
+
 		desc->skb = skb;
 		desc->data_mapping = dma_map_single(&dev->dev, skb->data,
 						    CPMAC_SKB_SIZE,