2 * Copyright (C) 2006-2007 PA Semi, Inc
4 * Driver for the PA Semi PWRficient onchip 1G/10G Ethernet MACs
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, see <http://www.gnu.org/licenses/>.
19 #include <linux/module.h>
20 #include <linux/pci.h>
21 #include <linux/slab.h>
22 #include <linux/interrupt.h>
23 #include <linux/dmaengine.h>
24 #include <linux/delay.h>
25 #include <linux/netdevice.h>
26 #include <linux/of_mdio.h>
27 #include <linux/etherdevice.h>
28 #include <asm/dma-mapping.h>
30 #include <linux/skbuff.h>
33 #include <net/checksum.h>
34 #include <linux/prefetch.h>
37 #include <asm/firmware.h>
38 #include <asm/pasemi_dma.h>
40 #include "pasemi_mac.h"
42 /* We have our own align, since ppc64 in general has it at 0 because
43 * of design flaws in some of the server bridge chips. However, for
44 * PWRficient doing the unaligned copies is more expensive than doing
45 * unaligned DMA, so make sure the data is aligned instead.
47 #define LOCAL_SKB_ALIGN 2
56 #define PE_MIN_MTU (ETH_ZLEN + ETH_HLEN)
57 #define PE_MAX_MTU 9000
58 #define PE_DEF_MTU ETH_DATA_LEN
60 #define DEFAULT_MSG_ENABLE \
70 MODULE_LICENSE("GPL");
71 MODULE_AUTHOR ("Olof Johansson <olof@lixom.net>");
72 MODULE_DESCRIPTION("PA Semi PWRficient Ethernet driver");
74 static int debug
= -1; /* -1 == use DEFAULT_MSG_ENABLE as value */
75 module_param(debug
, int, 0);
76 MODULE_PARM_DESC(debug
, "PA Semi MAC bitmapped debugging message enable value");
78 extern const struct ethtool_ops pasemi_mac_ethtool_ops
;
80 static int translation_enabled(void)
82 #if defined(CONFIG_PPC_PASEMI_IOMMU_DMA_FORCE)
85 return firmware_has_feature(FW_FEATURE_LPAR
);
89 static void write_iob_reg(unsigned int reg
, unsigned int val
)
91 pasemi_write_iob_reg(reg
, val
);
94 static unsigned int read_mac_reg(const struct pasemi_mac
*mac
, unsigned int reg
)
96 return pasemi_read_mac_reg(mac
->dma_if
, reg
);
99 static void write_mac_reg(const struct pasemi_mac
*mac
, unsigned int reg
,
102 pasemi_write_mac_reg(mac
->dma_if
, reg
, val
);
105 static unsigned int read_dma_reg(unsigned int reg
)
107 return pasemi_read_dma_reg(reg
);
110 static void write_dma_reg(unsigned int reg
, unsigned int val
)
112 pasemi_write_dma_reg(reg
, val
);
115 static struct pasemi_mac_rxring
*rx_ring(const struct pasemi_mac
*mac
)
120 static struct pasemi_mac_txring
*tx_ring(const struct pasemi_mac
*mac
)
125 static inline void prefetch_skb(const struct sk_buff
*skb
)
135 static int mac_to_intf(struct pasemi_mac
*mac
)
137 struct pci_dev
*pdev
= mac
->pdev
;
139 int nintf
, off
, i
, j
;
140 int devfn
= pdev
->devfn
;
142 tmp
= read_dma_reg(PAS_DMA_CAP_IFI
);
143 nintf
= (tmp
& PAS_DMA_CAP_IFI_NIN_M
) >> PAS_DMA_CAP_IFI_NIN_S
;
144 off
= (tmp
& PAS_DMA_CAP_IFI_IOFF_M
) >> PAS_DMA_CAP_IFI_IOFF_S
;
146 /* IOFF contains the offset to the registers containing the
147 * DMA interface-to-MAC-pci-id mappings, and NIN contains number
148 * of total interfaces. Each register contains 4 devfns.
149 * Just do a linear search until we find the devfn of the MAC
150 * we're trying to look up.
153 for (i
= 0; i
< (nintf
+3)/4; i
++) {
154 tmp
= read_dma_reg(off
+4*i
);
155 for (j
= 0; j
< 4; j
++) {
156 if (((tmp
>> (8*j
)) & 0xff) == devfn
)
163 static void pasemi_mac_intf_disable(struct pasemi_mac
*mac
)
167 flags
= read_mac_reg(mac
, PAS_MAC_CFG_PCFG
);
168 flags
&= ~PAS_MAC_CFG_PCFG_PE
;
169 write_mac_reg(mac
, PAS_MAC_CFG_PCFG
, flags
);
172 static void pasemi_mac_intf_enable(struct pasemi_mac
*mac
)
176 flags
= read_mac_reg(mac
, PAS_MAC_CFG_PCFG
);
177 flags
|= PAS_MAC_CFG_PCFG_PE
;
178 write_mac_reg(mac
, PAS_MAC_CFG_PCFG
, flags
);
181 static int pasemi_get_mac_addr(struct pasemi_mac
*mac
)
183 struct pci_dev
*pdev
= mac
->pdev
;
184 struct device_node
*dn
= pci_device_to_OF_node(pdev
);
191 "No device node for mac, not configuring\n");
195 maddr
= of_get_property(dn
, "local-mac-address", &len
);
197 if (maddr
&& len
== ETH_ALEN
) {
198 memcpy(mac
->mac_addr
, maddr
, ETH_ALEN
);
202 /* Some old versions of firmware mistakenly uses mac-address
203 * (and as a string) instead of a byte array in local-mac-address.
207 maddr
= of_get_property(dn
, "mac-address", NULL
);
211 "no mac address in device tree, not configuring\n");
215 if (!mac_pton(maddr
, addr
)) {
217 "can't parse mac address, not configuring\n");
221 memcpy(mac
->mac_addr
, addr
, ETH_ALEN
);
226 static int pasemi_mac_set_mac_addr(struct net_device
*dev
, void *p
)
228 struct pasemi_mac
*mac
= netdev_priv(dev
);
229 struct sockaddr
*addr
= p
;
230 unsigned int adr0
, adr1
;
232 if (!is_valid_ether_addr(addr
->sa_data
))
233 return -EADDRNOTAVAIL
;
235 memcpy(dev
->dev_addr
, addr
->sa_data
, dev
->addr_len
);
237 adr0
= dev
->dev_addr
[2] << 24 |
238 dev
->dev_addr
[3] << 16 |
239 dev
->dev_addr
[4] << 8 |
241 adr1
= read_mac_reg(mac
, PAS_MAC_CFG_ADR1
);
243 adr1
|= dev
->dev_addr
[0] << 8 | dev
->dev_addr
[1];
245 pasemi_mac_intf_disable(mac
);
246 write_mac_reg(mac
, PAS_MAC_CFG_ADR0
, adr0
);
247 write_mac_reg(mac
, PAS_MAC_CFG_ADR1
, adr1
);
248 pasemi_mac_intf_enable(mac
);
253 static int pasemi_mac_unmap_tx_skb(struct pasemi_mac
*mac
,
256 const dma_addr_t
*dmas
)
259 struct pci_dev
*pdev
= mac
->dma_pdev
;
261 pci_unmap_single(pdev
, dmas
[0], skb_headlen(skb
), PCI_DMA_TODEVICE
);
263 for (f
= 0; f
< nfrags
; f
++) {
264 const skb_frag_t
*frag
= &skb_shinfo(skb
)->frags
[f
];
266 pci_unmap_page(pdev
, dmas
[f
+1], skb_frag_size(frag
), PCI_DMA_TODEVICE
);
268 dev_kfree_skb_irq(skb
);
270 /* Freed descriptor slot + main SKB ptr + nfrags additional ptrs,
271 * aligned up to a power of 2
273 return (nfrags
+ 3) & ~1;
276 static struct pasemi_mac_csring
*pasemi_mac_setup_csring(struct pasemi_mac
*mac
)
278 struct pasemi_mac_csring
*ring
;
283 ring
= pasemi_dma_alloc_chan(TXCHAN
, sizeof(struct pasemi_mac_csring
),
284 offsetof(struct pasemi_mac_csring
, chan
));
287 dev_err(&mac
->pdev
->dev
, "Can't allocate checksum channel\n");
291 chno
= ring
->chan
.chno
;
293 ring
->size
= CS_RING_SIZE
;
294 ring
->next_to_fill
= 0;
296 /* Allocate descriptors */
297 if (pasemi_dma_alloc_ring(&ring
->chan
, CS_RING_SIZE
))
300 write_dma_reg(PAS_DMA_TXCHAN_BASEL(chno
),
301 PAS_DMA_TXCHAN_BASEL_BRBL(ring
->chan
.ring_dma
));
302 val
= PAS_DMA_TXCHAN_BASEU_BRBH(ring
->chan
.ring_dma
>> 32);
303 val
|= PAS_DMA_TXCHAN_BASEU_SIZ(CS_RING_SIZE
>> 3);
305 write_dma_reg(PAS_DMA_TXCHAN_BASEU(chno
), val
);
307 ring
->events
[0] = pasemi_dma_alloc_flag();
308 ring
->events
[1] = pasemi_dma_alloc_flag();
309 if (ring
->events
[0] < 0 || ring
->events
[1] < 0)
312 pasemi_dma_clear_flag(ring
->events
[0]);
313 pasemi_dma_clear_flag(ring
->events
[1]);
315 ring
->fun
= pasemi_dma_alloc_fun();
319 cfg
= PAS_DMA_TXCHAN_CFG_TY_FUNC
| PAS_DMA_TXCHAN_CFG_UP
|
320 PAS_DMA_TXCHAN_CFG_TATTR(ring
->fun
) |
321 PAS_DMA_TXCHAN_CFG_LPSQ
| PAS_DMA_TXCHAN_CFG_LPDQ
;
323 if (translation_enabled())
324 cfg
|= PAS_DMA_TXCHAN_CFG_TRD
| PAS_DMA_TXCHAN_CFG_TRR
;
326 write_dma_reg(PAS_DMA_TXCHAN_CFG(chno
), cfg
);
329 pasemi_dma_start_chan(&ring
->chan
, PAS_DMA_TXCHAN_TCMDSTA_SZ
|
330 PAS_DMA_TXCHAN_TCMDSTA_DB
|
331 PAS_DMA_TXCHAN_TCMDSTA_DE
|
332 PAS_DMA_TXCHAN_TCMDSTA_DA
);
338 if (ring
->events
[0] >= 0)
339 pasemi_dma_free_flag(ring
->events
[0]);
340 if (ring
->events
[1] >= 0)
341 pasemi_dma_free_flag(ring
->events
[1]);
342 pasemi_dma_free_ring(&ring
->chan
);
344 pasemi_dma_free_chan(&ring
->chan
);
350 static void pasemi_mac_setup_csrings(struct pasemi_mac
*mac
)
353 mac
->cs
[0] = pasemi_mac_setup_csring(mac
);
354 if (mac
->type
== MAC_TYPE_XAUI
)
355 mac
->cs
[1] = pasemi_mac_setup_csring(mac
);
359 for (i
= 0; i
< MAX_CS
; i
++)
364 static void pasemi_mac_free_csring(struct pasemi_mac_csring
*csring
)
366 pasemi_dma_stop_chan(&csring
->chan
);
367 pasemi_dma_free_flag(csring
->events
[0]);
368 pasemi_dma_free_flag(csring
->events
[1]);
369 pasemi_dma_free_ring(&csring
->chan
);
370 pasemi_dma_free_chan(&csring
->chan
);
371 pasemi_dma_free_fun(csring
->fun
);
374 static int pasemi_mac_setup_rx_resources(const struct net_device
*dev
)
376 struct pasemi_mac_rxring
*ring
;
377 struct pasemi_mac
*mac
= netdev_priv(dev
);
381 ring
= pasemi_dma_alloc_chan(RXCHAN
, sizeof(struct pasemi_mac_rxring
),
382 offsetof(struct pasemi_mac_rxring
, chan
));
385 dev_err(&mac
->pdev
->dev
, "Can't allocate RX channel\n");
388 chno
= ring
->chan
.chno
;
390 spin_lock_init(&ring
->lock
);
392 ring
->size
= RX_RING_SIZE
;
393 ring
->ring_info
= kzalloc(sizeof(struct pasemi_mac_buffer
) *
394 RX_RING_SIZE
, GFP_KERNEL
);
396 if (!ring
->ring_info
)
399 /* Allocate descriptors */
400 if (pasemi_dma_alloc_ring(&ring
->chan
, RX_RING_SIZE
))
403 ring
->buffers
= dma_zalloc_coherent(&mac
->dma_pdev
->dev
,
404 RX_RING_SIZE
* sizeof(u64
),
405 &ring
->buf_dma
, GFP_KERNEL
);
409 write_dma_reg(PAS_DMA_RXCHAN_BASEL(chno
),
410 PAS_DMA_RXCHAN_BASEL_BRBL(ring
->chan
.ring_dma
));
412 write_dma_reg(PAS_DMA_RXCHAN_BASEU(chno
),
413 PAS_DMA_RXCHAN_BASEU_BRBH(ring
->chan
.ring_dma
>> 32) |
414 PAS_DMA_RXCHAN_BASEU_SIZ(RX_RING_SIZE
>> 3));
416 cfg
= PAS_DMA_RXCHAN_CFG_HBU(2);
418 if (translation_enabled())
419 cfg
|= PAS_DMA_RXCHAN_CFG_CTR
;
421 write_dma_reg(PAS_DMA_RXCHAN_CFG(chno
), cfg
);
423 write_dma_reg(PAS_DMA_RXINT_BASEL(mac
->dma_if
),
424 PAS_DMA_RXINT_BASEL_BRBL(ring
->buf_dma
));
426 write_dma_reg(PAS_DMA_RXINT_BASEU(mac
->dma_if
),
427 PAS_DMA_RXINT_BASEU_BRBH(ring
->buf_dma
>> 32) |
428 PAS_DMA_RXINT_BASEU_SIZ(RX_RING_SIZE
>> 3));
430 cfg
= PAS_DMA_RXINT_CFG_DHL(2) | PAS_DMA_RXINT_CFG_L2
|
431 PAS_DMA_RXINT_CFG_LW
| PAS_DMA_RXINT_CFG_RBP
|
432 PAS_DMA_RXINT_CFG_HEN
;
434 if (translation_enabled())
435 cfg
|= PAS_DMA_RXINT_CFG_ITRR
| PAS_DMA_RXINT_CFG_ITR
;
437 write_dma_reg(PAS_DMA_RXINT_CFG(mac
->dma_if
), cfg
);
439 ring
->next_to_fill
= 0;
440 ring
->next_to_clean
= 0;
447 kfree(ring
->ring_info
);
449 pasemi_dma_free_chan(&ring
->chan
);
454 static struct pasemi_mac_txring
*
455 pasemi_mac_setup_tx_resources(const struct net_device
*dev
)
457 struct pasemi_mac
*mac
= netdev_priv(dev
);
459 struct pasemi_mac_txring
*ring
;
463 ring
= pasemi_dma_alloc_chan(TXCHAN
, sizeof(struct pasemi_mac_txring
),
464 offsetof(struct pasemi_mac_txring
, chan
));
467 dev_err(&mac
->pdev
->dev
, "Can't allocate TX channel\n");
471 chno
= ring
->chan
.chno
;
473 spin_lock_init(&ring
->lock
);
475 ring
->size
= TX_RING_SIZE
;
476 ring
->ring_info
= kzalloc(sizeof(struct pasemi_mac_buffer
) *
477 TX_RING_SIZE
, GFP_KERNEL
);
478 if (!ring
->ring_info
)
481 /* Allocate descriptors */
482 if (pasemi_dma_alloc_ring(&ring
->chan
, TX_RING_SIZE
))
485 write_dma_reg(PAS_DMA_TXCHAN_BASEL(chno
),
486 PAS_DMA_TXCHAN_BASEL_BRBL(ring
->chan
.ring_dma
));
487 val
= PAS_DMA_TXCHAN_BASEU_BRBH(ring
->chan
.ring_dma
>> 32);
488 val
|= PAS_DMA_TXCHAN_BASEU_SIZ(TX_RING_SIZE
>> 3);
490 write_dma_reg(PAS_DMA_TXCHAN_BASEU(chno
), val
);
492 cfg
= PAS_DMA_TXCHAN_CFG_TY_IFACE
|
493 PAS_DMA_TXCHAN_CFG_TATTR(mac
->dma_if
) |
494 PAS_DMA_TXCHAN_CFG_UP
|
495 PAS_DMA_TXCHAN_CFG_WT(4);
497 if (translation_enabled())
498 cfg
|= PAS_DMA_TXCHAN_CFG_TRD
| PAS_DMA_TXCHAN_CFG_TRR
;
500 write_dma_reg(PAS_DMA_TXCHAN_CFG(chno
), cfg
);
502 ring
->next_to_fill
= 0;
503 ring
->next_to_clean
= 0;
509 kfree(ring
->ring_info
);
511 pasemi_dma_free_chan(&ring
->chan
);
516 static void pasemi_mac_free_tx_resources(struct pasemi_mac
*mac
)
518 struct pasemi_mac_txring
*txring
= tx_ring(mac
);
520 struct pasemi_mac_buffer
*info
;
521 dma_addr_t dmas
[MAX_SKB_FRAGS
+1];
525 start
= txring
->next_to_clean
;
526 limit
= txring
->next_to_fill
;
528 /* Compensate for when fill has wrapped and clean has not */
530 limit
+= TX_RING_SIZE
;
532 for (i
= start
; i
< limit
; i
+= freed
) {
533 info
= &txring
->ring_info
[(i
+1) & (TX_RING_SIZE
-1)];
534 if (info
->dma
&& info
->skb
) {
535 nfrags
= skb_shinfo(info
->skb
)->nr_frags
;
536 for (j
= 0; j
<= nfrags
; j
++)
537 dmas
[j
] = txring
->ring_info
[(i
+1+j
) &
538 (TX_RING_SIZE
-1)].dma
;
539 freed
= pasemi_mac_unmap_tx_skb(mac
, nfrags
,
546 kfree(txring
->ring_info
);
547 pasemi_dma_free_chan(&txring
->chan
);
551 static void pasemi_mac_free_rx_buffers(struct pasemi_mac
*mac
)
553 struct pasemi_mac_rxring
*rx
= rx_ring(mac
);
555 struct pasemi_mac_buffer
*info
;
557 for (i
= 0; i
< RX_RING_SIZE
; i
++) {
558 info
= &RX_DESC_INFO(rx
, i
);
559 if (info
->skb
&& info
->dma
) {
560 pci_unmap_single(mac
->dma_pdev
,
564 dev_kfree_skb_any(info
->skb
);
570 for (i
= 0; i
< RX_RING_SIZE
; i
++)
574 static void pasemi_mac_free_rx_resources(struct pasemi_mac
*mac
)
576 pasemi_mac_free_rx_buffers(mac
);
578 dma_free_coherent(&mac
->dma_pdev
->dev
, RX_RING_SIZE
* sizeof(u64
),
579 rx_ring(mac
)->buffers
, rx_ring(mac
)->buf_dma
);
581 kfree(rx_ring(mac
)->ring_info
);
582 pasemi_dma_free_chan(&rx_ring(mac
)->chan
);
586 static void pasemi_mac_replenish_rx_ring(struct net_device
*dev
,
589 const struct pasemi_mac
*mac
= netdev_priv(dev
);
590 struct pasemi_mac_rxring
*rx
= rx_ring(mac
);
596 fill
= rx_ring(mac
)->next_to_fill
;
597 for (count
= 0; count
< limit
; count
++) {
598 struct pasemi_mac_buffer
*info
= &RX_DESC_INFO(rx
, fill
);
599 u64
*buff
= &RX_BUFF(rx
, fill
);
606 skb
= netdev_alloc_skb(dev
, mac
->bufsz
);
607 skb_reserve(skb
, LOCAL_SKB_ALIGN
);
612 dma
= pci_map_single(mac
->dma_pdev
, skb
->data
,
613 mac
->bufsz
- LOCAL_SKB_ALIGN
,
616 if (unlikely(pci_dma_mapping_error(mac
->dma_pdev
, dma
))) {
617 dev_kfree_skb_irq(info
->skb
);
623 *buff
= XCT_RXB_LEN(mac
->bufsz
) | XCT_RXB_ADDR(dma
);
629 write_dma_reg(PAS_DMA_RXINT_INCR(mac
->dma_if
), count
);
631 rx_ring(mac
)->next_to_fill
= (rx_ring(mac
)->next_to_fill
+ count
) &
635 static void pasemi_mac_restart_rx_intr(const struct pasemi_mac
*mac
)
637 struct pasemi_mac_rxring
*rx
= rx_ring(mac
);
638 unsigned int reg
, pcnt
;
639 /* Re-enable packet count interrupts: finally
640 * ack the packet count interrupt we got in rx_intr.
643 pcnt
= *rx
->chan
.status
& PAS_STATUS_PCNT_M
;
645 reg
= PAS_IOB_DMA_RXCH_RESET_PCNT(pcnt
) | PAS_IOB_DMA_RXCH_RESET_PINTC
;
647 if (*rx
->chan
.status
& PAS_STATUS_TIMER
)
648 reg
|= PAS_IOB_DMA_RXCH_RESET_TINTC
;
650 write_iob_reg(PAS_IOB_DMA_RXCH_RESET(mac
->rx
->chan
.chno
), reg
);
653 static void pasemi_mac_restart_tx_intr(const struct pasemi_mac
*mac
)
655 unsigned int reg
, pcnt
;
657 /* Re-enable packet count interrupts */
658 pcnt
= *tx_ring(mac
)->chan
.status
& PAS_STATUS_PCNT_M
;
660 reg
= PAS_IOB_DMA_TXCH_RESET_PCNT(pcnt
) | PAS_IOB_DMA_TXCH_RESET_PINTC
;
662 write_iob_reg(PAS_IOB_DMA_TXCH_RESET(tx_ring(mac
)->chan
.chno
), reg
);
666 static inline void pasemi_mac_rx_error(const struct pasemi_mac
*mac
,
669 unsigned int rcmdsta
, ccmdsta
;
670 struct pasemi_dmachan
*chan
= &rx_ring(mac
)->chan
;
672 if (!netif_msg_rx_err(mac
))
675 rcmdsta
= read_dma_reg(PAS_DMA_RXINT_RCMDSTA(mac
->dma_if
));
676 ccmdsta
= read_dma_reg(PAS_DMA_RXCHAN_CCMDSTA(chan
->chno
));
678 printk(KERN_ERR
"pasemi_mac: rx error. macrx %016llx, rx status %llx\n",
679 macrx
, *chan
->status
);
681 printk(KERN_ERR
"pasemi_mac: rcmdsta %08x ccmdsta %08x\n",
685 static inline void pasemi_mac_tx_error(const struct pasemi_mac
*mac
,
689 struct pasemi_dmachan
*chan
= &tx_ring(mac
)->chan
;
691 if (!netif_msg_tx_err(mac
))
694 cmdsta
= read_dma_reg(PAS_DMA_TXCHAN_TCMDSTA(chan
->chno
));
696 printk(KERN_ERR
"pasemi_mac: tx error. mactx 0x%016llx, "\
697 "tx status 0x%016llx\n", mactx
, *chan
->status
);
699 printk(KERN_ERR
"pasemi_mac: tcmdsta 0x%08x\n", cmdsta
);
702 static int pasemi_mac_clean_rx(struct pasemi_mac_rxring
*rx
,
705 const struct pasemi_dmachan
*chan
= &rx
->chan
;
706 struct pasemi_mac
*mac
= rx
->mac
;
707 struct pci_dev
*pdev
= mac
->dma_pdev
;
709 int count
, buf_index
, tot_bytes
, packets
;
710 struct pasemi_mac_buffer
*info
;
719 spin_lock(&rx
->lock
);
721 n
= rx
->next_to_clean
;
723 prefetch(&RX_DESC(rx
, n
));
725 for (count
= 0; count
< limit
; count
++) {
726 macrx
= RX_DESC(rx
, n
);
727 prefetch(&RX_DESC(rx
, n
+4));
729 if ((macrx
& XCT_MACRX_E
) ||
730 (*chan
->status
& PAS_STATUS_ERROR
))
731 pasemi_mac_rx_error(mac
, macrx
);
733 if (!(macrx
& XCT_MACRX_O
))
738 BUG_ON(!(macrx
& XCT_MACRX_RR_8BRES
));
740 eval
= (RX_DESC(rx
, n
+1) & XCT_RXRES_8B_EVAL_M
) >>
744 dma
= (RX_DESC(rx
, n
+2) & XCT_PTR_ADDR_M
);
745 info
= &RX_DESC_INFO(rx
, buf_index
);
751 len
= (macrx
& XCT_MACRX_LLEN_M
) >> XCT_MACRX_LLEN_S
;
753 pci_unmap_single(pdev
, dma
, mac
->bufsz
- LOCAL_SKB_ALIGN
,
756 if (macrx
& XCT_MACRX_CRC
) {
757 /* CRC error flagged */
758 mac
->netdev
->stats
.rx_errors
++;
759 mac
->netdev
->stats
.rx_crc_errors
++;
760 /* No need to free skb, it'll be reused */
767 if (likely((macrx
& XCT_MACRX_HTY_M
) == XCT_MACRX_HTY_IPV4_OK
)) {
768 skb
->ip_summed
= CHECKSUM_UNNECESSARY
;
769 skb
->csum
= (macrx
& XCT_MACRX_CSUM_M
) >>
772 skb_checksum_none_assert(skb
);
778 /* Don't include CRC */
781 skb
->protocol
= eth_type_trans(skb
, mac
->netdev
);
782 napi_gro_receive(&mac
->napi
, skb
);
786 RX_DESC(rx
, n
+1) = 0;
788 /* Need to zero it out since hardware doesn't, since the
789 * replenish loop uses it to tell when it's done.
791 RX_BUFF(rx
, buf_index
) = 0;
796 if (n
> RX_RING_SIZE
) {
797 /* Errata 5971 workaround: L2 target of headers */
798 write_iob_reg(PAS_IOB_COM_PKTHDRCNT
, 0);
799 n
&= (RX_RING_SIZE
-1);
802 rx_ring(mac
)->next_to_clean
= n
;
804 /* Increase is in number of 16-byte entries, and since each descriptor
805 * with an 8BRES takes up 3x8 bytes (padded to 4x8), increase with
808 write_dma_reg(PAS_DMA_RXCHAN_INCR(mac
->rx
->chan
.chno
), count
<< 1);
810 pasemi_mac_replenish_rx_ring(mac
->netdev
, count
);
812 mac
->netdev
->stats
.rx_bytes
+= tot_bytes
;
813 mac
->netdev
->stats
.rx_packets
+= packets
;
815 spin_unlock(&rx_ring(mac
)->lock
);
820 /* Can't make this too large or we blow the kernel stack limits */
821 #define TX_CLEAN_BATCHSIZE (128/MAX_SKB_FRAGS)
823 static int pasemi_mac_clean_tx(struct pasemi_mac_txring
*txring
)
825 struct pasemi_dmachan
*chan
= &txring
->chan
;
826 struct pasemi_mac
*mac
= txring
->mac
;
828 unsigned int start
, descr_count
, buf_count
, batch_limit
;
829 unsigned int ring_limit
;
830 unsigned int total_count
;
832 struct sk_buff
*skbs
[TX_CLEAN_BATCHSIZE
];
833 dma_addr_t dmas
[TX_CLEAN_BATCHSIZE
][MAX_SKB_FRAGS
+1];
834 int nf
[TX_CLEAN_BATCHSIZE
];
838 batch_limit
= TX_CLEAN_BATCHSIZE
;
840 spin_lock_irqsave(&txring
->lock
, flags
);
842 start
= txring
->next_to_clean
;
843 ring_limit
= txring
->next_to_fill
;
845 prefetch(&TX_DESC_INFO(txring
, start
+1).skb
);
847 /* Compensate for when fill has wrapped but clean has not */
848 if (start
> ring_limit
)
849 ring_limit
+= TX_RING_SIZE
;
855 descr_count
< batch_limit
&& i
< ring_limit
;
857 u64 mactx
= TX_DESC(txring
, i
);
860 if ((mactx
& XCT_MACTX_E
) ||
861 (*chan
->status
& PAS_STATUS_ERROR
))
862 pasemi_mac_tx_error(mac
, mactx
);
864 /* Skip over control descriptors */
865 if (!(mactx
& XCT_MACTX_LLEN_M
)) {
866 TX_DESC(txring
, i
) = 0;
867 TX_DESC(txring
, i
+1) = 0;
872 skb
= TX_DESC_INFO(txring
, i
+1).skb
;
873 nr_frags
= TX_DESC_INFO(txring
, i
).dma
;
875 if (unlikely(mactx
& XCT_MACTX_O
))
876 /* Not yet transmitted */
879 buf_count
= 2 + nr_frags
;
880 /* Since we always fill with an even number of entries, make
881 * sure we skip any unused one at the end as well.
886 for (j
= 0; j
<= nr_frags
; j
++)
887 dmas
[descr_count
][j
] = TX_DESC_INFO(txring
, i
+1+j
).dma
;
889 skbs
[descr_count
] = skb
;
890 nf
[descr_count
] = nr_frags
;
892 TX_DESC(txring
, i
) = 0;
893 TX_DESC(txring
, i
+1) = 0;
897 txring
->next_to_clean
= i
& (TX_RING_SIZE
-1);
899 spin_unlock_irqrestore(&txring
->lock
, flags
);
900 netif_wake_queue(mac
->netdev
);
902 for (i
= 0; i
< descr_count
; i
++)
903 pasemi_mac_unmap_tx_skb(mac
, nf
[i
], skbs
[i
], dmas
[i
]);
905 total_count
+= descr_count
;
907 /* If the batch was full, try to clean more */
908 if (descr_count
== batch_limit
)
915 static irqreturn_t
pasemi_mac_rx_intr(int irq
, void *data
)
917 const struct pasemi_mac_rxring
*rxring
= data
;
918 struct pasemi_mac
*mac
= rxring
->mac
;
919 const struct pasemi_dmachan
*chan
= &rxring
->chan
;
922 if (!(*chan
->status
& PAS_STATUS_CAUSE_M
))
925 /* Don't reset packet count so it won't fire again but clear
930 if (*chan
->status
& PAS_STATUS_SOFT
)
931 reg
|= PAS_IOB_DMA_RXCH_RESET_SINTC
;
932 if (*chan
->status
& PAS_STATUS_ERROR
)
933 reg
|= PAS_IOB_DMA_RXCH_RESET_DINTC
;
935 napi_schedule(&mac
->napi
);
937 write_iob_reg(PAS_IOB_DMA_RXCH_RESET(chan
->chno
), reg
);
942 #define TX_CLEAN_INTERVAL HZ
944 static void pasemi_mac_tx_timer(struct timer_list
*t
)
946 struct pasemi_mac_txring
*txring
= from_timer(txring
, t
, clean_timer
);
947 struct pasemi_mac
*mac
= txring
->mac
;
949 pasemi_mac_clean_tx(txring
);
951 mod_timer(&txring
->clean_timer
, jiffies
+ TX_CLEAN_INTERVAL
);
953 pasemi_mac_restart_tx_intr(mac
);
956 static irqreturn_t
pasemi_mac_tx_intr(int irq
, void *data
)
958 struct pasemi_mac_txring
*txring
= data
;
959 const struct pasemi_dmachan
*chan
= &txring
->chan
;
960 struct pasemi_mac
*mac
= txring
->mac
;
963 if (!(*chan
->status
& PAS_STATUS_CAUSE_M
))
968 if (*chan
->status
& PAS_STATUS_SOFT
)
969 reg
|= PAS_IOB_DMA_TXCH_RESET_SINTC
;
970 if (*chan
->status
& PAS_STATUS_ERROR
)
971 reg
|= PAS_IOB_DMA_TXCH_RESET_DINTC
;
973 mod_timer(&txring
->clean_timer
, jiffies
+ (TX_CLEAN_INTERVAL
)*2);
975 napi_schedule(&mac
->napi
);
978 write_iob_reg(PAS_IOB_DMA_TXCH_RESET(chan
->chno
), reg
);
983 static void pasemi_adjust_link(struct net_device
*dev
)
985 struct pasemi_mac
*mac
= netdev_priv(dev
);
988 unsigned int new_flags
;
990 if (!dev
->phydev
->link
) {
991 /* If no link, MAC speed settings don't matter. Just report
992 * link down and return.
994 if (mac
->link
&& netif_msg_link(mac
))
995 printk(KERN_INFO
"%s: Link is down.\n", dev
->name
);
997 netif_carrier_off(dev
);
998 pasemi_mac_intf_disable(mac
);
1003 pasemi_mac_intf_enable(mac
);
1004 netif_carrier_on(dev
);
1007 flags
= read_mac_reg(mac
, PAS_MAC_CFG_PCFG
);
1008 new_flags
= flags
& ~(PAS_MAC_CFG_PCFG_HD
| PAS_MAC_CFG_PCFG_SPD_M
|
1009 PAS_MAC_CFG_PCFG_TSR_M
);
1011 if (!dev
->phydev
->duplex
)
1012 new_flags
|= PAS_MAC_CFG_PCFG_HD
;
1014 switch (dev
->phydev
->speed
) {
1016 new_flags
|= PAS_MAC_CFG_PCFG_SPD_1G
|
1017 PAS_MAC_CFG_PCFG_TSR_1G
;
1020 new_flags
|= PAS_MAC_CFG_PCFG_SPD_100M
|
1021 PAS_MAC_CFG_PCFG_TSR_100M
;
1024 new_flags
|= PAS_MAC_CFG_PCFG_SPD_10M
|
1025 PAS_MAC_CFG_PCFG_TSR_10M
;
1028 printk("Unsupported speed %d\n", dev
->phydev
->speed
);
1031 /* Print on link or speed/duplex change */
1032 msg
= mac
->link
!= dev
->phydev
->link
|| flags
!= new_flags
;
1034 mac
->duplex
= dev
->phydev
->duplex
;
1035 mac
->speed
= dev
->phydev
->speed
;
1036 mac
->link
= dev
->phydev
->link
;
1038 if (new_flags
!= flags
)
1039 write_mac_reg(mac
, PAS_MAC_CFG_PCFG
, new_flags
);
1041 if (msg
&& netif_msg_link(mac
))
1042 printk(KERN_INFO
"%s: Link is up at %d Mbps, %s duplex.\n",
1043 dev
->name
, mac
->speed
, mac
->duplex
? "full" : "half");
1046 static int pasemi_mac_phy_init(struct net_device
*dev
)
1048 struct pasemi_mac
*mac
= netdev_priv(dev
);
1049 struct device_node
*dn
, *phy_dn
;
1050 struct phy_device
*phydev
;
1052 dn
= pci_device_to_OF_node(mac
->pdev
);
1053 phy_dn
= of_parse_phandle(dn
, "phy-handle", 0);
1054 of_node_put(phy_dn
);
1060 phydev
= of_phy_connect(dev
, phy_dn
, &pasemi_adjust_link
, 0,
1061 PHY_INTERFACE_MODE_SGMII
);
1064 printk(KERN_ERR
"%s: Could not attach to phy\n", dev
->name
);
1072 static int pasemi_mac_open(struct net_device
*dev
)
1074 struct pasemi_mac
*mac
= netdev_priv(dev
);
1078 flags
= PAS_MAC_CFG_TXP_FCE
| PAS_MAC_CFG_TXP_FPC(3) |
1079 PAS_MAC_CFG_TXP_SL(3) | PAS_MAC_CFG_TXP_COB(0xf) |
1080 PAS_MAC_CFG_TXP_TIFT(8) | PAS_MAC_CFG_TXP_TIFG(12);
1082 write_mac_reg(mac
, PAS_MAC_CFG_TXP
, flags
);
1084 ret
= pasemi_mac_setup_rx_resources(dev
);
1086 goto out_rx_resources
;
1088 mac
->tx
= pasemi_mac_setup_tx_resources(dev
);
1093 /* We might already have allocated rings in case mtu was changed
1094 * before interface was brought up.
1096 if (dev
->mtu
> 1500 && !mac
->num_cs
) {
1097 pasemi_mac_setup_csrings(mac
);
1102 /* Zero out rmon counters */
1103 for (i
= 0; i
< 32; i
++)
1104 write_mac_reg(mac
, PAS_MAC_RMON(i
), 0);
1106 /* 0x3ff with 33MHz clock is about 31us */
1107 write_iob_reg(PAS_IOB_DMA_COM_TIMEOUTCFG
,
1108 PAS_IOB_DMA_COM_TIMEOUTCFG_TCNT(0x3ff));
1110 write_iob_reg(PAS_IOB_DMA_RXCH_CFG(mac
->rx
->chan
.chno
),
1111 PAS_IOB_DMA_RXCH_CFG_CNTTH(256));
1113 write_iob_reg(PAS_IOB_DMA_TXCH_CFG(mac
->tx
->chan
.chno
),
1114 PAS_IOB_DMA_TXCH_CFG_CNTTH(32));
1116 write_mac_reg(mac
, PAS_MAC_IPC_CHNL
,
1117 PAS_MAC_IPC_CHNL_DCHNO(mac
->rx
->chan
.chno
) |
1118 PAS_MAC_IPC_CHNL_BCH(mac
->rx
->chan
.chno
));
1121 write_dma_reg(PAS_DMA_RXINT_RCMDSTA(mac
->dma_if
),
1122 PAS_DMA_RXINT_RCMDSTA_EN
|
1123 PAS_DMA_RXINT_RCMDSTA_DROPS_M
|
1124 PAS_DMA_RXINT_RCMDSTA_BP
|
1125 PAS_DMA_RXINT_RCMDSTA_OO
|
1126 PAS_DMA_RXINT_RCMDSTA_BT
);
1128 /* enable rx channel */
1129 pasemi_dma_start_chan(&rx_ring(mac
)->chan
, PAS_DMA_RXCHAN_CCMDSTA_DU
|
1130 PAS_DMA_RXCHAN_CCMDSTA_OD
|
1131 PAS_DMA_RXCHAN_CCMDSTA_FD
|
1132 PAS_DMA_RXCHAN_CCMDSTA_DT
);
1134 /* enable tx channel */
1135 pasemi_dma_start_chan(&tx_ring(mac
)->chan
, PAS_DMA_TXCHAN_TCMDSTA_SZ
|
1136 PAS_DMA_TXCHAN_TCMDSTA_DB
|
1137 PAS_DMA_TXCHAN_TCMDSTA_DE
|
1138 PAS_DMA_TXCHAN_TCMDSTA_DA
);
1140 pasemi_mac_replenish_rx_ring(dev
, RX_RING_SIZE
);
1142 write_dma_reg(PAS_DMA_RXCHAN_INCR(rx_ring(mac
)->chan
.chno
),
1145 /* Clear out any residual packet count state from firmware */
1146 pasemi_mac_restart_rx_intr(mac
);
1147 pasemi_mac_restart_tx_intr(mac
);
1149 flags
= PAS_MAC_CFG_PCFG_S1
| PAS_MAC_CFG_PCFG_PR
| PAS_MAC_CFG_PCFG_CE
;
1151 if (mac
->type
== MAC_TYPE_GMAC
)
1152 flags
|= PAS_MAC_CFG_PCFG_TSR_1G
| PAS_MAC_CFG_PCFG_SPD_1G
;
1154 flags
|= PAS_MAC_CFG_PCFG_TSR_10G
| PAS_MAC_CFG_PCFG_SPD_10G
;
1156 /* Enable interface in MAC */
1157 write_mac_reg(mac
, PAS_MAC_CFG_PCFG
, flags
);
1159 ret
= pasemi_mac_phy_init(dev
);
1161 /* Since we won't get link notification, just enable RX */
1162 pasemi_mac_intf_enable(mac
);
1163 if (mac
->type
== MAC_TYPE_GMAC
) {
1164 /* Warn for missing PHY on SGMII (1Gig) ports */
1165 dev_warn(&mac
->pdev
->dev
,
1166 "PHY init failed: %d.\n", ret
);
1167 dev_warn(&mac
->pdev
->dev
,
1168 "Defaulting to 1Gbit full duplex\n");
1172 netif_start_queue(dev
);
1173 napi_enable(&mac
->napi
);
1175 snprintf(mac
->tx_irq_name
, sizeof(mac
->tx_irq_name
), "%s tx",
1178 ret
= request_irq(mac
->tx
->chan
.irq
, pasemi_mac_tx_intr
, 0,
1179 mac
->tx_irq_name
, mac
->tx
);
1181 dev_err(&mac
->pdev
->dev
, "request_irq of irq %d failed: %d\n",
1182 mac
->tx
->chan
.irq
, ret
);
1186 snprintf(mac
->rx_irq_name
, sizeof(mac
->rx_irq_name
), "%s rx",
1189 ret
= request_irq(mac
->rx
->chan
.irq
, pasemi_mac_rx_intr
, 0,
1190 mac
->rx_irq_name
, mac
->rx
);
1192 dev_err(&mac
->pdev
->dev
, "request_irq of irq %d failed: %d\n",
1193 mac
->rx
->chan
.irq
, ret
);
1198 phy_start(dev
->phydev
);
1200 timer_setup(&mac
->tx
->clean_timer
, pasemi_mac_tx_timer
, 0);
1201 mod_timer(&mac
->tx
->clean_timer
, jiffies
+ HZ
);
1206 free_irq(mac
->tx
->chan
.irq
, mac
->tx
);
1208 napi_disable(&mac
->napi
);
1209 netif_stop_queue(dev
);
1212 pasemi_mac_free_tx_resources(mac
);
1213 pasemi_mac_free_rx_resources(mac
);
1219 #define MAX_RETRIES 5000
1221 static void pasemi_mac_pause_txchan(struct pasemi_mac
*mac
)
1223 unsigned int sta
, retries
;
1224 int txch
= tx_ring(mac
)->chan
.chno
;
1226 write_dma_reg(PAS_DMA_TXCHAN_TCMDSTA(txch
),
1227 PAS_DMA_TXCHAN_TCMDSTA_ST
);
1229 for (retries
= 0; retries
< MAX_RETRIES
; retries
++) {
1230 sta
= read_dma_reg(PAS_DMA_TXCHAN_TCMDSTA(txch
));
1231 if (!(sta
& PAS_DMA_TXCHAN_TCMDSTA_ACT
))
1236 if (sta
& PAS_DMA_TXCHAN_TCMDSTA_ACT
)
1237 dev_err(&mac
->dma_pdev
->dev
,
1238 "Failed to stop tx channel, tcmdsta %08x\n", sta
);
1240 write_dma_reg(PAS_DMA_TXCHAN_TCMDSTA(txch
), 0);
1243 static void pasemi_mac_pause_rxchan(struct pasemi_mac
*mac
)
1245 unsigned int sta
, retries
;
1246 int rxch
= rx_ring(mac
)->chan
.chno
;
1248 write_dma_reg(PAS_DMA_RXCHAN_CCMDSTA(rxch
),
1249 PAS_DMA_RXCHAN_CCMDSTA_ST
);
1250 for (retries
= 0; retries
< MAX_RETRIES
; retries
++) {
1251 sta
= read_dma_reg(PAS_DMA_RXCHAN_CCMDSTA(rxch
));
1252 if (!(sta
& PAS_DMA_RXCHAN_CCMDSTA_ACT
))
1257 if (sta
& PAS_DMA_RXCHAN_CCMDSTA_ACT
)
1258 dev_err(&mac
->dma_pdev
->dev
,
1259 "Failed to stop rx channel, ccmdsta 08%x\n", sta
);
1260 write_dma_reg(PAS_DMA_RXCHAN_CCMDSTA(rxch
), 0);
1263 static void pasemi_mac_pause_rxint(struct pasemi_mac
*mac
)
1265 unsigned int sta
, retries
;
1267 write_dma_reg(PAS_DMA_RXINT_RCMDSTA(mac
->dma_if
),
1268 PAS_DMA_RXINT_RCMDSTA_ST
);
1269 for (retries
= 0; retries
< MAX_RETRIES
; retries
++) {
1270 sta
= read_dma_reg(PAS_DMA_RXINT_RCMDSTA(mac
->dma_if
));
1271 if (!(sta
& PAS_DMA_RXINT_RCMDSTA_ACT
))
1276 if (sta
& PAS_DMA_RXINT_RCMDSTA_ACT
)
1277 dev_err(&mac
->dma_pdev
->dev
,
1278 "Failed to stop rx interface, rcmdsta %08x\n", sta
);
1279 write_dma_reg(PAS_DMA_RXINT_RCMDSTA(mac
->dma_if
), 0);
1282 static int pasemi_mac_close(struct net_device
*dev
)
1284 struct pasemi_mac
*mac
= netdev_priv(dev
);
1288 rxch
= rx_ring(mac
)->chan
.chno
;
1289 txch
= tx_ring(mac
)->chan
.chno
;
1292 phy_stop(dev
->phydev
);
1293 phy_disconnect(dev
->phydev
);
1296 del_timer_sync(&mac
->tx
->clean_timer
);
1298 netif_stop_queue(dev
);
1299 napi_disable(&mac
->napi
);
1301 sta
= read_dma_reg(PAS_DMA_RXINT_RCMDSTA(mac
->dma_if
));
1302 if (sta
& (PAS_DMA_RXINT_RCMDSTA_BP
|
1303 PAS_DMA_RXINT_RCMDSTA_OO
|
1304 PAS_DMA_RXINT_RCMDSTA_BT
))
1305 printk(KERN_DEBUG
"pasemi_mac: rcmdsta error: 0x%08x\n", sta
);
1307 sta
= read_dma_reg(PAS_DMA_RXCHAN_CCMDSTA(rxch
));
1308 if (sta
& (PAS_DMA_RXCHAN_CCMDSTA_DU
|
1309 PAS_DMA_RXCHAN_CCMDSTA_OD
|
1310 PAS_DMA_RXCHAN_CCMDSTA_FD
|
1311 PAS_DMA_RXCHAN_CCMDSTA_DT
))
1312 printk(KERN_DEBUG
"pasemi_mac: ccmdsta error: 0x%08x\n", sta
);
1314 sta
= read_dma_reg(PAS_DMA_TXCHAN_TCMDSTA(txch
));
1315 if (sta
& (PAS_DMA_TXCHAN_TCMDSTA_SZ
| PAS_DMA_TXCHAN_TCMDSTA_DB
|
1316 PAS_DMA_TXCHAN_TCMDSTA_DE
| PAS_DMA_TXCHAN_TCMDSTA_DA
))
1317 printk(KERN_DEBUG
"pasemi_mac: tcmdsta error: 0x%08x\n", sta
);
1319 /* Clean out any pending buffers */
1320 pasemi_mac_clean_tx(tx_ring(mac
));
1321 pasemi_mac_clean_rx(rx_ring(mac
), RX_RING_SIZE
);
1323 pasemi_mac_pause_txchan(mac
);
1324 pasemi_mac_pause_rxint(mac
);
1325 pasemi_mac_pause_rxchan(mac
);
1326 pasemi_mac_intf_disable(mac
);
1328 free_irq(mac
->tx
->chan
.irq
, mac
->tx
);
1329 free_irq(mac
->rx
->chan
.irq
, mac
->rx
);
1331 for (i
= 0; i
< mac
->num_cs
; i
++) {
1332 pasemi_mac_free_csring(mac
->cs
[i
]);
1338 /* Free resources */
1339 pasemi_mac_free_rx_resources(mac
);
1340 pasemi_mac_free_tx_resources(mac
);
1345 static void pasemi_mac_queue_csdesc(const struct sk_buff
*skb
,
1346 const dma_addr_t
*map
,
1347 const unsigned int *map_size
,
1348 struct pasemi_mac_txring
*txring
,
1349 struct pasemi_mac_csring
*csring
)
1353 const int nh_off
= skb_network_offset(skb
);
1354 const int nh_len
= skb_network_header_len(skb
);
1355 const int nfrags
= skb_shinfo(skb
)->nr_frags
;
1356 int cs_size
, i
, fill
, hdr
, cpyhdr
, evt
;
1359 fund
= XCT_FUN_ST
| XCT_FUN_RR_8BRES
|
1360 XCT_FUN_O
| XCT_FUN_FUN(csring
->fun
) |
1361 XCT_FUN_CRM_SIG
| XCT_FUN_LLEN(skb
->len
- nh_off
) |
1362 XCT_FUN_SHL(nh_len
>> 2) | XCT_FUN_SE
;
1364 switch (ip_hdr(skb
)->protocol
) {
1366 fund
|= XCT_FUN_SIG_TCP4
;
1367 /* TCP checksum is 16 bytes into the header */
1368 cs_dest
= map
[0] + skb_transport_offset(skb
) + 16;
1371 fund
|= XCT_FUN_SIG_UDP4
;
1372 /* UDP checksum is 6 bytes into the header */
1373 cs_dest
= map
[0] + skb_transport_offset(skb
) + 6;
1379 /* Do the checksum offloaded */
1380 fill
= csring
->next_to_fill
;
1383 CS_DESC(csring
, fill
++) = fund
;
1384 /* Room for 8BRES. Checksum result is really 2 bytes into it */
1385 csdma
= csring
->chan
.ring_dma
+ (fill
& (CS_RING_SIZE
-1)) * 8 + 2;
1386 CS_DESC(csring
, fill
++) = 0;
1388 CS_DESC(csring
, fill
) = XCT_PTR_LEN(map_size
[0]-nh_off
) | XCT_PTR_ADDR(map
[0]+nh_off
);
1389 for (i
= 1; i
<= nfrags
; i
++)
1390 CS_DESC(csring
, fill
+i
) = XCT_PTR_LEN(map_size
[i
]) | XCT_PTR_ADDR(map
[i
]);
1396 /* Copy the result into the TCP packet */
1398 CS_DESC(csring
, fill
++) = XCT_FUN_O
| XCT_FUN_FUN(csring
->fun
) |
1399 XCT_FUN_LLEN(2) | XCT_FUN_SE
;
1400 CS_DESC(csring
, fill
++) = XCT_PTR_LEN(2) | XCT_PTR_ADDR(cs_dest
) | XCT_PTR_T
;
1401 CS_DESC(csring
, fill
++) = XCT_PTR_LEN(2) | XCT_PTR_ADDR(csdma
);
1404 evt
= !csring
->last_event
;
1405 csring
->last_event
= evt
;
1407 /* Event handshaking with MAC TX */
1408 CS_DESC(csring
, fill
++) = CTRL_CMD_T
| CTRL_CMD_META_EVT
| CTRL_CMD_O
|
1409 CTRL_CMD_ETYPE_SET
| CTRL_CMD_REG(csring
->events
[evt
]);
1410 CS_DESC(csring
, fill
++) = 0;
1411 CS_DESC(csring
, fill
++) = CTRL_CMD_T
| CTRL_CMD_META_EVT
| CTRL_CMD_O
|
1412 CTRL_CMD_ETYPE_WCLR
| CTRL_CMD_REG(csring
->events
[!evt
]);
1413 CS_DESC(csring
, fill
++) = 0;
1414 csring
->next_to_fill
= fill
& (CS_RING_SIZE
-1);
1416 cs_size
= fill
- hdr
;
1417 write_dma_reg(PAS_DMA_TXCHAN_INCR(csring
->chan
.chno
), (cs_size
) >> 1);
1419 /* TX-side event handshaking */
1420 fill
= txring
->next_to_fill
;
1421 TX_DESC(txring
, fill
++) = CTRL_CMD_T
| CTRL_CMD_META_EVT
| CTRL_CMD_O
|
1422 CTRL_CMD_ETYPE_WSET
| CTRL_CMD_REG(csring
->events
[evt
]);
1423 TX_DESC(txring
, fill
++) = 0;
1424 TX_DESC(txring
, fill
++) = CTRL_CMD_T
| CTRL_CMD_META_EVT
| CTRL_CMD_O
|
1425 CTRL_CMD_ETYPE_CLR
| CTRL_CMD_REG(csring
->events
[!evt
]);
1426 TX_DESC(txring
, fill
++) = 0;
1427 txring
->next_to_fill
= fill
;
1429 write_dma_reg(PAS_DMA_TXCHAN_INCR(txring
->chan
.chno
), 2);
1432 static int pasemi_mac_start_tx(struct sk_buff
*skb
, struct net_device
*dev
)
1434 struct pasemi_mac
* const mac
= netdev_priv(dev
);
1435 struct pasemi_mac_txring
* const txring
= tx_ring(mac
);
1436 struct pasemi_mac_csring
*csring
;
1439 dma_addr_t map
[MAX_SKB_FRAGS
+1];
1440 unsigned int map_size
[MAX_SKB_FRAGS
+1];
1441 unsigned long flags
;
1444 const int nh_off
= skb_network_offset(skb
);
1445 const int nh_len
= skb_network_header_len(skb
);
1447 prefetch(&txring
->ring_info
);
1449 dflags
= XCT_MACTX_O
| XCT_MACTX_ST
| XCT_MACTX_CRC_PAD
;
1451 nfrags
= skb_shinfo(skb
)->nr_frags
;
1453 map
[0] = pci_map_single(mac
->dma_pdev
, skb
->data
, skb_headlen(skb
),
1455 map_size
[0] = skb_headlen(skb
);
1456 if (pci_dma_mapping_error(mac
->dma_pdev
, map
[0]))
1457 goto out_err_nolock
;
1459 for (i
= 0; i
< nfrags
; i
++) {
1460 skb_frag_t
*frag
= &skb_shinfo(skb
)->frags
[i
];
1462 map
[i
+ 1] = skb_frag_dma_map(&mac
->dma_pdev
->dev
, frag
, 0,
1463 skb_frag_size(frag
), DMA_TO_DEVICE
);
1464 map_size
[i
+1] = skb_frag_size(frag
);
1465 if (dma_mapping_error(&mac
->dma_pdev
->dev
, map
[i
+ 1])) {
1467 goto out_err_nolock
;
1471 if (skb
->ip_summed
== CHECKSUM_PARTIAL
&& skb
->len
<= 1540) {
1472 switch (ip_hdr(skb
)->protocol
) {
1474 dflags
|= XCT_MACTX_CSUM_TCP
;
1475 dflags
|= XCT_MACTX_IPH(nh_len
>> 2);
1476 dflags
|= XCT_MACTX_IPO(nh_off
);
1479 dflags
|= XCT_MACTX_CSUM_UDP
;
1480 dflags
|= XCT_MACTX_IPH(nh_len
>> 2);
1481 dflags
|= XCT_MACTX_IPO(nh_off
);
1488 mactx
= dflags
| XCT_MACTX_LLEN(skb
->len
);
1490 spin_lock_irqsave(&txring
->lock
, flags
);
1492 /* Avoid stepping on the same cache line that the DMA controller
1493 * is currently about to send, so leave at least 8 words available.
1494 * Total free space needed is mactx + fragments + 8
1496 if (RING_AVAIL(txring
) < nfrags
+ 14) {
1497 /* no room -- stop the queue and wait for tx intr */
1498 netif_stop_queue(dev
);
1502 /* Queue up checksum + event descriptors, if needed */
1503 if (mac
->num_cs
&& skb
->ip_summed
== CHECKSUM_PARTIAL
&& skb
->len
> 1540) {
1504 csring
= mac
->cs
[mac
->last_cs
];
1505 mac
->last_cs
= (mac
->last_cs
+ 1) % mac
->num_cs
;
1507 pasemi_mac_queue_csdesc(skb
, map
, map_size
, txring
, csring
);
1510 fill
= txring
->next_to_fill
;
1511 TX_DESC(txring
, fill
) = mactx
;
1512 TX_DESC_INFO(txring
, fill
).dma
= nfrags
;
1514 TX_DESC_INFO(txring
, fill
).skb
= skb
;
1515 for (i
= 0; i
<= nfrags
; i
++) {
1516 TX_DESC(txring
, fill
+i
) =
1517 XCT_PTR_LEN(map_size
[i
]) | XCT_PTR_ADDR(map
[i
]);
1518 TX_DESC_INFO(txring
, fill
+i
).dma
= map
[i
];
1521 /* We have to add an even number of 8-byte entries to the ring
1522 * even if the last one is unused. That means always an odd number
1523 * of pointers + one mactx descriptor.
1528 txring
->next_to_fill
= (fill
+ nfrags
+ 1) & (TX_RING_SIZE
-1);
1530 dev
->stats
.tx_packets
++;
1531 dev
->stats
.tx_bytes
+= skb
->len
;
1533 spin_unlock_irqrestore(&txring
->lock
, flags
);
1535 write_dma_reg(PAS_DMA_TXCHAN_INCR(txring
->chan
.chno
), (nfrags
+2) >> 1);
1537 return NETDEV_TX_OK
;
1540 spin_unlock_irqrestore(&txring
->lock
, flags
);
1543 pci_unmap_single(mac
->dma_pdev
, map
[nfrags
], map_size
[nfrags
],
1546 return NETDEV_TX_BUSY
;
1549 static void pasemi_mac_set_rx_mode(struct net_device
*dev
)
1551 const struct pasemi_mac
*mac
= netdev_priv(dev
);
1554 flags
= read_mac_reg(mac
, PAS_MAC_CFG_PCFG
);
1556 /* Set promiscuous */
1557 if (dev
->flags
& IFF_PROMISC
)
1558 flags
|= PAS_MAC_CFG_PCFG_PR
;
1560 flags
&= ~PAS_MAC_CFG_PCFG_PR
;
1562 write_mac_reg(mac
, PAS_MAC_CFG_PCFG
, flags
);
1566 static int pasemi_mac_poll(struct napi_struct
*napi
, int budget
)
1568 struct pasemi_mac
*mac
= container_of(napi
, struct pasemi_mac
, napi
);
1571 pasemi_mac_clean_tx(tx_ring(mac
));
1572 pkts
= pasemi_mac_clean_rx(rx_ring(mac
), budget
);
1573 if (pkts
< budget
) {
1574 /* all done, no more packets present */
1575 napi_complete_done(napi
, pkts
);
1577 pasemi_mac_restart_rx_intr(mac
);
1578 pasemi_mac_restart_tx_intr(mac
);
1583 #ifdef CONFIG_NET_POLL_CONTROLLER
1585 * Polling 'interrupt' - used by things like netconsole to send skbs
1586 * without having to re-enable interrupts. It's not called while
1587 * the interrupt routine is executing.
1589 static void pasemi_mac_netpoll(struct net_device
*dev
)
1591 const struct pasemi_mac
*mac
= netdev_priv(dev
);
1593 disable_irq(mac
->tx
->chan
.irq
);
1594 pasemi_mac_tx_intr(mac
->tx
->chan
.irq
, mac
->tx
);
1595 enable_irq(mac
->tx
->chan
.irq
);
1597 disable_irq(mac
->rx
->chan
.irq
);
1598 pasemi_mac_rx_intr(mac
->rx
->chan
.irq
, mac
->rx
);
1599 enable_irq(mac
->rx
->chan
.irq
);
1603 static int pasemi_mac_change_mtu(struct net_device
*dev
, int new_mtu
)
1605 struct pasemi_mac
*mac
= netdev_priv(dev
);
1607 unsigned int rcmdsta
= 0;
1611 running
= netif_running(dev
);
1614 /* Need to stop the interface, clean out all already
1615 * received buffers, free all unused buffers on the RX
1616 * interface ring, then finally re-fill the rx ring with
1617 * the new-size buffers and restart.
1620 napi_disable(&mac
->napi
);
1621 netif_tx_disable(dev
);
1622 pasemi_mac_intf_disable(mac
);
1624 rcmdsta
= read_dma_reg(PAS_DMA_RXINT_RCMDSTA(mac
->dma_if
));
1625 pasemi_mac_pause_rxint(mac
);
1626 pasemi_mac_clean_rx(rx_ring(mac
), RX_RING_SIZE
);
1627 pasemi_mac_free_rx_buffers(mac
);
1631 /* Setup checksum channels if large MTU and none already allocated */
1632 if (new_mtu
> PE_DEF_MTU
&& !mac
->num_cs
) {
1633 pasemi_mac_setup_csrings(mac
);
1640 /* Change maxf, i.e. what size frames are accepted.
1641 * Need room for ethernet header and CRC word
1643 reg
= read_mac_reg(mac
, PAS_MAC_CFG_MACCFG
);
1644 reg
&= ~PAS_MAC_CFG_MACCFG_MAXF_M
;
1645 reg
|= PAS_MAC_CFG_MACCFG_MAXF(new_mtu
+ ETH_HLEN
+ 4);
1646 write_mac_reg(mac
, PAS_MAC_CFG_MACCFG
, reg
);
1649 /* MTU + ETH_HLEN + VLAN_HLEN + 2 64B cachelines */
1650 mac
->bufsz
= new_mtu
+ ETH_HLEN
+ ETH_FCS_LEN
+ LOCAL_SKB_ALIGN
+ 128;
1654 write_dma_reg(PAS_DMA_RXINT_RCMDSTA(mac
->dma_if
),
1655 rcmdsta
| PAS_DMA_RXINT_RCMDSTA_EN
);
1657 rx_ring(mac
)->next_to_fill
= 0;
1658 pasemi_mac_replenish_rx_ring(dev
, RX_RING_SIZE
-1);
1660 napi_enable(&mac
->napi
);
1661 netif_start_queue(dev
);
1662 pasemi_mac_intf_enable(mac
);
1668 static const struct net_device_ops pasemi_netdev_ops
= {
1669 .ndo_open
= pasemi_mac_open
,
1670 .ndo_stop
= pasemi_mac_close
,
1671 .ndo_start_xmit
= pasemi_mac_start_tx
,
1672 .ndo_set_rx_mode
= pasemi_mac_set_rx_mode
,
1673 .ndo_set_mac_address
= pasemi_mac_set_mac_addr
,
1674 .ndo_change_mtu
= pasemi_mac_change_mtu
,
1675 .ndo_validate_addr
= eth_validate_addr
,
1676 #ifdef CONFIG_NET_POLL_CONTROLLER
1677 .ndo_poll_controller
= pasemi_mac_netpoll
,
1682 pasemi_mac_probe(struct pci_dev
*pdev
, const struct pci_device_id
*ent
)
1684 struct net_device
*dev
;
1685 struct pasemi_mac
*mac
;
1688 err
= pci_enable_device(pdev
);
1692 dev
= alloc_etherdev(sizeof(struct pasemi_mac
));
1695 goto out_disable_device
;
1698 pci_set_drvdata(pdev
, dev
);
1699 SET_NETDEV_DEV(dev
, &pdev
->dev
);
1701 mac
= netdev_priv(dev
);
1706 netif_napi_add(dev
, &mac
->napi
, pasemi_mac_poll
, 64);
1708 dev
->features
= NETIF_F_IP_CSUM
| NETIF_F_LLTX
| NETIF_F_SG
|
1709 NETIF_F_HIGHDMA
| NETIF_F_GSO
;
1711 mac
->dma_pdev
= pci_get_device(PCI_VENDOR_ID_PASEMI
, 0xa007, NULL
);
1712 if (!mac
->dma_pdev
) {
1713 dev_err(&mac
->pdev
->dev
, "Can't find DMA Controller\n");
1718 mac
->iob_pdev
= pci_get_device(PCI_VENDOR_ID_PASEMI
, 0xa001, NULL
);
1719 if (!mac
->iob_pdev
) {
1720 dev_err(&mac
->pdev
->dev
, "Can't find I/O Bridge\n");
1725 /* get mac addr from device tree */
1726 if (pasemi_get_mac_addr(mac
) || !is_valid_ether_addr(mac
->mac_addr
)) {
1730 memcpy(dev
->dev_addr
, mac
->mac_addr
, sizeof(mac
->mac_addr
));
1732 ret
= mac_to_intf(mac
);
1734 dev_err(&mac
->pdev
->dev
, "Can't map DMA interface\n");
1740 switch (pdev
->device
) {
1742 mac
->type
= MAC_TYPE_GMAC
;
1745 mac
->type
= MAC_TYPE_XAUI
;
1752 dev
->netdev_ops
= &pasemi_netdev_ops
;
1753 dev
->mtu
= PE_DEF_MTU
;
1755 /* MTU range: 64 - 9000 */
1756 dev
->min_mtu
= PE_MIN_MTU
;
1757 dev
->max_mtu
= PE_MAX_MTU
;
1759 /* 1500 MTU + ETH_HLEN + VLAN_HLEN + 2 64B cachelines */
1760 mac
->bufsz
= dev
->mtu
+ ETH_HLEN
+ ETH_FCS_LEN
+ LOCAL_SKB_ALIGN
+ 128;
1762 dev
->ethtool_ops
= &pasemi_mac_ethtool_ops
;
1767 mac
->msg_enable
= netif_msg_init(debug
, DEFAULT_MSG_ENABLE
);
1769 /* Enable most messages by default */
1770 mac
->msg_enable
= (NETIF_MSG_IFUP
<< 1 ) - 1;
1772 err
= register_netdev(dev
);
1775 dev_err(&mac
->pdev
->dev
, "register_netdev failed with error %d\n",
1778 } else if (netif_msg_probe(mac
)) {
1779 printk(KERN_INFO
"%s: PA Semi %s: intf %d, hw addr %pM\n",
1780 dev
->name
, mac
->type
== MAC_TYPE_GMAC
? "GMAC" : "XAUI",
1781 mac
->dma_if
, dev
->dev_addr
);
1787 pci_dev_put(mac
->iob_pdev
);
1788 pci_dev_put(mac
->dma_pdev
);
1792 pci_disable_device(pdev
);
1797 static void pasemi_mac_remove(struct pci_dev
*pdev
)
1799 struct net_device
*netdev
= pci_get_drvdata(pdev
);
1800 struct pasemi_mac
*mac
;
1805 mac
= netdev_priv(netdev
);
1807 unregister_netdev(netdev
);
1809 pci_disable_device(pdev
);
1810 pci_dev_put(mac
->dma_pdev
);
1811 pci_dev_put(mac
->iob_pdev
);
1813 pasemi_dma_free_chan(&mac
->tx
->chan
);
1814 pasemi_dma_free_chan(&mac
->rx
->chan
);
1816 free_netdev(netdev
);
1819 static const struct pci_device_id pasemi_mac_pci_tbl
[] = {
1820 { PCI_DEVICE(PCI_VENDOR_ID_PASEMI
, 0xa005) },
1821 { PCI_DEVICE(PCI_VENDOR_ID_PASEMI
, 0xa006) },
1825 MODULE_DEVICE_TABLE(pci
, pasemi_mac_pci_tbl
);
1827 static struct pci_driver pasemi_mac_driver
= {
1828 .name
= "pasemi_mac",
1829 .id_table
= pasemi_mac_pci_tbl
,
1830 .probe
= pasemi_mac_probe
,
1831 .remove
= pasemi_mac_remove
,
1834 static void __exit
pasemi_mac_cleanup_module(void)
1836 pci_unregister_driver(&pasemi_mac_driver
);
1839 int pasemi_mac_init_module(void)
1843 err
= pasemi_dma_init();
1847 return pci_register_driver(&pasemi_mac_driver
);
1850 module_init(pasemi_mac_init_module
);
1851 module_exit(pasemi_mac_cleanup_module
);