2 * Faraday FTMAC100 10/100 Ethernet
4 * (C) Copyright 2009-2011 Faraday Technology
5 * Po-Yu Chuang <ratbert@faraday-tech.com>
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
24 #include <linux/dma-mapping.h>
25 #include <linux/etherdevice.h>
26 #include <linux/ethtool.h>
27 #include <linux/init.h>
28 #include <linux/interrupt.h>
30 #include <linux/mii.h>
31 #include <linux/module.h>
32 #include <linux/netdevice.h>
33 #include <linux/platform_device.h>
37 #define DRV_NAME "ftmac100"
38 #define DRV_VERSION "0.2"
40 #define RX_QUEUE_ENTRIES 128 /* must be power of 2 */
41 #define TX_QUEUE_ENTRIES 16 /* must be power of 2 */
43 #define MAX_PKT_SIZE 1518
44 #define RX_BUF_SIZE 2044 /* must be smaller than 0x7ff */
46 #if MAX_PKT_SIZE > 0x7ff
47 #error invalid MAX_PKT_SIZE
50 #if RX_BUF_SIZE > 0x7ff || RX_BUF_SIZE > PAGE_SIZE
51 #error invalid RX_BUF_SIZE
54 /******************************************************************************
56 *****************************************************************************/
57 struct ftmac100_descs
{
58 struct ftmac100_rxdes rxdes
[RX_QUEUE_ENTRIES
];
59 struct ftmac100_txdes txdes
[TX_QUEUE_ENTRIES
];
67 struct ftmac100_descs
*descs
;
68 dma_addr_t descs_dma_addr
;
70 unsigned int rx_pointer
;
71 unsigned int tx_clean_pointer
;
72 unsigned int tx_pointer
;
73 unsigned int tx_pending
;
77 struct net_device
*netdev
;
79 struct napi_struct napi
;
81 struct mii_if_info mii
;
84 static int ftmac100_alloc_rx_page(struct ftmac100
*priv
,
85 struct ftmac100_rxdes
*rxdes
, gfp_t gfp
);
87 /******************************************************************************
88 * internal functions (hardware register access)
89 *****************************************************************************/
90 #define INT_MASK_ALL_ENABLED (FTMAC100_INT_RPKT_FINISH | \
91 FTMAC100_INT_NORXBUF | \
92 FTMAC100_INT_XPKT_OK | \
93 FTMAC100_INT_XPKT_LOST | \
94 FTMAC100_INT_RPKT_LOST | \
95 FTMAC100_INT_AHB_ERR | \
96 FTMAC100_INT_PHYSTS_CHG)
98 #define INT_MASK_ALL_DISABLED 0
100 static void ftmac100_enable_all_int(struct ftmac100
*priv
)
102 iowrite32(INT_MASK_ALL_ENABLED
, priv
->base
+ FTMAC100_OFFSET_IMR
);
105 static void ftmac100_disable_all_int(struct ftmac100
*priv
)
107 iowrite32(INT_MASK_ALL_DISABLED
, priv
->base
+ FTMAC100_OFFSET_IMR
);
110 static void ftmac100_set_rx_ring_base(struct ftmac100
*priv
, dma_addr_t addr
)
112 iowrite32(addr
, priv
->base
+ FTMAC100_OFFSET_RXR_BADR
);
115 static void ftmac100_set_tx_ring_base(struct ftmac100
*priv
, dma_addr_t addr
)
117 iowrite32(addr
, priv
->base
+ FTMAC100_OFFSET_TXR_BADR
);
120 static void ftmac100_txdma_start_polling(struct ftmac100
*priv
)
122 iowrite32(1, priv
->base
+ FTMAC100_OFFSET_TXPD
);
125 static int ftmac100_reset(struct ftmac100
*priv
)
127 struct net_device
*netdev
= priv
->netdev
;
130 /* NOTE: reset clears all registers */
131 iowrite32(FTMAC100_MACCR_SW_RST
, priv
->base
+ FTMAC100_OFFSET_MACCR
);
133 for (i
= 0; i
< 5; i
++) {
136 maccr
= ioread32(priv
->base
+ FTMAC100_OFFSET_MACCR
);
137 if (!(maccr
& FTMAC100_MACCR_SW_RST
)) {
139 * FTMAC100_MACCR_SW_RST cleared does not indicate
140 * that hardware reset completed (what the f*ck).
141 * We still need to wait for a while.
150 netdev_err(netdev
, "software reset failed\n");
154 static void ftmac100_set_mac(struct ftmac100
*priv
, const unsigned char *mac
)
156 unsigned int maddr
= mac
[0] << 8 | mac
[1];
157 unsigned int laddr
= mac
[2] << 24 | mac
[3] << 16 | mac
[4] << 8 | mac
[5];
159 iowrite32(maddr
, priv
->base
+ FTMAC100_OFFSET_MAC_MADR
);
160 iowrite32(laddr
, priv
->base
+ FTMAC100_OFFSET_MAC_LADR
);
163 #define MACCR_ENABLE_ALL (FTMAC100_MACCR_XMT_EN | \
164 FTMAC100_MACCR_RCV_EN | \
165 FTMAC100_MACCR_XDMA_EN | \
166 FTMAC100_MACCR_RDMA_EN | \
167 FTMAC100_MACCR_CRC_APD | \
168 FTMAC100_MACCR_FULLDUP | \
169 FTMAC100_MACCR_RX_RUNT | \
170 FTMAC100_MACCR_RX_BROADPKT)
172 static int ftmac100_start_hw(struct ftmac100
*priv
)
174 struct net_device
*netdev
= priv
->netdev
;
176 if (ftmac100_reset(priv
))
179 /* setup ring buffer base registers */
180 ftmac100_set_rx_ring_base(priv
,
181 priv
->descs_dma_addr
+
182 offsetof(struct ftmac100_descs
, rxdes
));
183 ftmac100_set_tx_ring_base(priv
,
184 priv
->descs_dma_addr
+
185 offsetof(struct ftmac100_descs
, txdes
));
187 iowrite32(FTMAC100_APTC_RXPOLL_CNT(1), priv
->base
+ FTMAC100_OFFSET_APTC
);
189 ftmac100_set_mac(priv
, netdev
->dev_addr
);
191 iowrite32(MACCR_ENABLE_ALL
, priv
->base
+ FTMAC100_OFFSET_MACCR
);
195 static void ftmac100_stop_hw(struct ftmac100
*priv
)
197 iowrite32(0, priv
->base
+ FTMAC100_OFFSET_MACCR
);
200 /******************************************************************************
201 * internal functions (receive descriptor)
202 *****************************************************************************/
203 static bool ftmac100_rxdes_first_segment(struct ftmac100_rxdes
*rxdes
)
205 return rxdes
->rxdes0
& cpu_to_le32(FTMAC100_RXDES0_FRS
);
208 static bool ftmac100_rxdes_last_segment(struct ftmac100_rxdes
*rxdes
)
210 return rxdes
->rxdes0
& cpu_to_le32(FTMAC100_RXDES0_LRS
);
213 static bool ftmac100_rxdes_owned_by_dma(struct ftmac100_rxdes
*rxdes
)
215 return rxdes
->rxdes0
& cpu_to_le32(FTMAC100_RXDES0_RXDMA_OWN
);
218 static void ftmac100_rxdes_set_dma_own(struct ftmac100_rxdes
*rxdes
)
220 /* clear status bits */
221 rxdes
->rxdes0
= cpu_to_le32(FTMAC100_RXDES0_RXDMA_OWN
);
224 static bool ftmac100_rxdes_rx_error(struct ftmac100_rxdes
*rxdes
)
226 return rxdes
->rxdes0
& cpu_to_le32(FTMAC100_RXDES0_RX_ERR
);
229 static bool ftmac100_rxdes_crc_error(struct ftmac100_rxdes
*rxdes
)
231 return rxdes
->rxdes0
& cpu_to_le32(FTMAC100_RXDES0_CRC_ERR
);
234 static bool ftmac100_rxdes_frame_too_long(struct ftmac100_rxdes
*rxdes
)
236 return rxdes
->rxdes0
& cpu_to_le32(FTMAC100_RXDES0_FTL
);
239 static bool ftmac100_rxdes_runt(struct ftmac100_rxdes
*rxdes
)
241 return rxdes
->rxdes0
& cpu_to_le32(FTMAC100_RXDES0_RUNT
);
244 static bool ftmac100_rxdes_odd_nibble(struct ftmac100_rxdes
*rxdes
)
246 return rxdes
->rxdes0
& cpu_to_le32(FTMAC100_RXDES0_RX_ODD_NB
);
249 static unsigned int ftmac100_rxdes_frame_length(struct ftmac100_rxdes
*rxdes
)
251 return le32_to_cpu(rxdes
->rxdes0
) & FTMAC100_RXDES0_RFL
;
254 static bool ftmac100_rxdes_multicast(struct ftmac100_rxdes
*rxdes
)
256 return rxdes
->rxdes0
& cpu_to_le32(FTMAC100_RXDES0_MULTICAST
);
259 static void ftmac100_rxdes_set_buffer_size(struct ftmac100_rxdes
*rxdes
,
262 rxdes
->rxdes1
&= cpu_to_le32(FTMAC100_RXDES1_EDORR
);
263 rxdes
->rxdes1
|= cpu_to_le32(FTMAC100_RXDES1_RXBUF_SIZE(size
));
266 static void ftmac100_rxdes_set_end_of_ring(struct ftmac100_rxdes
*rxdes
)
268 rxdes
->rxdes1
|= cpu_to_le32(FTMAC100_RXDES1_EDORR
);
271 static void ftmac100_rxdes_set_dma_addr(struct ftmac100_rxdes
*rxdes
,
274 rxdes
->rxdes2
= cpu_to_le32(addr
);
277 static dma_addr_t
ftmac100_rxdes_get_dma_addr(struct ftmac100_rxdes
*rxdes
)
279 return le32_to_cpu(rxdes
->rxdes2
);
283 * rxdes3 is not used by hardware. We use it to keep track of page.
284 * Since hardware does not touch it, we can skip cpu_to_le32()/le32_to_cpu().
286 static void ftmac100_rxdes_set_page(struct ftmac100_rxdes
*rxdes
, struct page
*page
)
288 rxdes
->rxdes3
= (unsigned int)page
;
291 static struct page
*ftmac100_rxdes_get_page(struct ftmac100_rxdes
*rxdes
)
293 return (struct page
*)rxdes
->rxdes3
;
296 /******************************************************************************
297 * internal functions (receive)
298 *****************************************************************************/
299 static int ftmac100_next_rx_pointer(int pointer
)
301 return (pointer
+ 1) & (RX_QUEUE_ENTRIES
- 1);
304 static void ftmac100_rx_pointer_advance(struct ftmac100
*priv
)
306 priv
->rx_pointer
= ftmac100_next_rx_pointer(priv
->rx_pointer
);
309 static struct ftmac100_rxdes
*ftmac100_current_rxdes(struct ftmac100
*priv
)
311 return &priv
->descs
->rxdes
[priv
->rx_pointer
];
314 static struct ftmac100_rxdes
*
315 ftmac100_rx_locate_first_segment(struct ftmac100
*priv
)
317 struct ftmac100_rxdes
*rxdes
= ftmac100_current_rxdes(priv
);
319 while (!ftmac100_rxdes_owned_by_dma(rxdes
)) {
320 if (ftmac100_rxdes_first_segment(rxdes
))
323 ftmac100_rxdes_set_dma_own(rxdes
);
324 ftmac100_rx_pointer_advance(priv
);
325 rxdes
= ftmac100_current_rxdes(priv
);
331 static bool ftmac100_rx_packet_error(struct ftmac100
*priv
,
332 struct ftmac100_rxdes
*rxdes
)
334 struct net_device
*netdev
= priv
->netdev
;
337 if (unlikely(ftmac100_rxdes_rx_error(rxdes
))) {
339 netdev_info(netdev
, "rx err\n");
341 netdev
->stats
.rx_errors
++;
345 if (unlikely(ftmac100_rxdes_crc_error(rxdes
))) {
347 netdev_info(netdev
, "rx crc err\n");
349 netdev
->stats
.rx_crc_errors
++;
353 if (unlikely(ftmac100_rxdes_frame_too_long(rxdes
))) {
355 netdev_info(netdev
, "rx frame too long\n");
357 netdev
->stats
.rx_length_errors
++;
359 } else if (unlikely(ftmac100_rxdes_runt(rxdes
))) {
361 netdev_info(netdev
, "rx runt\n");
363 netdev
->stats
.rx_length_errors
++;
365 } else if (unlikely(ftmac100_rxdes_odd_nibble(rxdes
))) {
367 netdev_info(netdev
, "rx odd nibble\n");
369 netdev
->stats
.rx_length_errors
++;
376 static void ftmac100_rx_drop_packet(struct ftmac100
*priv
)
378 struct net_device
*netdev
= priv
->netdev
;
379 struct ftmac100_rxdes
*rxdes
= ftmac100_current_rxdes(priv
);
383 netdev_dbg(netdev
, "drop packet %p\n", rxdes
);
386 if (ftmac100_rxdes_last_segment(rxdes
))
389 ftmac100_rxdes_set_dma_own(rxdes
);
390 ftmac100_rx_pointer_advance(priv
);
391 rxdes
= ftmac100_current_rxdes(priv
);
392 } while (!done
&& !ftmac100_rxdes_owned_by_dma(rxdes
));
394 netdev
->stats
.rx_dropped
++;
397 static bool ftmac100_rx_packet(struct ftmac100
*priv
, int *processed
)
399 struct net_device
*netdev
= priv
->netdev
;
400 struct ftmac100_rxdes
*rxdes
;
406 rxdes
= ftmac100_rx_locate_first_segment(priv
);
410 if (unlikely(ftmac100_rx_packet_error(priv
, rxdes
))) {
411 ftmac100_rx_drop_packet(priv
);
416 * It is impossible to get multi-segment packets
417 * because we always provide big enough receive buffers.
419 if (unlikely(!ftmac100_rxdes_last_segment(rxdes
)))
422 /* start processing */
423 skb
= netdev_alloc_skb_ip_align(netdev
, 128);
424 if (unlikely(!skb
)) {
426 netdev_err(netdev
, "rx skb alloc failed\n");
428 ftmac100_rx_drop_packet(priv
);
432 if (unlikely(ftmac100_rxdes_multicast(rxdes
)))
433 netdev
->stats
.multicast
++;
435 map
= ftmac100_rxdes_get_dma_addr(rxdes
);
436 dma_unmap_page(priv
->dev
, map
, RX_BUF_SIZE
, DMA_FROM_DEVICE
);
438 length
= ftmac100_rxdes_frame_length(rxdes
);
439 page
= ftmac100_rxdes_get_page(rxdes
);
440 skb_fill_page_desc(skb
, 0, page
, 0, length
);
442 skb
->data_len
+= length
;
444 /* page might be freed in __pskb_pull_tail() */
446 skb
->truesize
+= PAGE_SIZE
;
447 __pskb_pull_tail(skb
, min(length
, 64));
449 ftmac100_alloc_rx_page(priv
, rxdes
, GFP_ATOMIC
);
451 ftmac100_rx_pointer_advance(priv
);
453 skb
->protocol
= eth_type_trans(skb
, netdev
);
455 netdev
->stats
.rx_packets
++;
456 netdev
->stats
.rx_bytes
+= skb
->len
;
458 /* push packet to protocol stack */
459 netif_receive_skb(skb
);
465 /******************************************************************************
466 * internal functions (transmit descriptor)
467 *****************************************************************************/
468 static void ftmac100_txdes_reset(struct ftmac100_txdes
*txdes
)
470 /* clear all except end of ring bit */
472 txdes
->txdes1
&= cpu_to_le32(FTMAC100_TXDES1_EDOTR
);
477 static bool ftmac100_txdes_owned_by_dma(struct ftmac100_txdes
*txdes
)
479 return txdes
->txdes0
& cpu_to_le32(FTMAC100_TXDES0_TXDMA_OWN
);
482 static void ftmac100_txdes_set_dma_own(struct ftmac100_txdes
*txdes
)
485 * Make sure dma own bit will not be set before any other
489 txdes
->txdes0
|= cpu_to_le32(FTMAC100_TXDES0_TXDMA_OWN
);
492 static bool ftmac100_txdes_excessive_collision(struct ftmac100_txdes
*txdes
)
494 return txdes
->txdes0
& cpu_to_le32(FTMAC100_TXDES0_TXPKT_EXSCOL
);
497 static bool ftmac100_txdes_late_collision(struct ftmac100_txdes
*txdes
)
499 return txdes
->txdes0
& cpu_to_le32(FTMAC100_TXDES0_TXPKT_LATECOL
);
502 static void ftmac100_txdes_set_end_of_ring(struct ftmac100_txdes
*txdes
)
504 txdes
->txdes1
|= cpu_to_le32(FTMAC100_TXDES1_EDOTR
);
507 static void ftmac100_txdes_set_first_segment(struct ftmac100_txdes
*txdes
)
509 txdes
->txdes1
|= cpu_to_le32(FTMAC100_TXDES1_FTS
);
512 static void ftmac100_txdes_set_last_segment(struct ftmac100_txdes
*txdes
)
514 txdes
->txdes1
|= cpu_to_le32(FTMAC100_TXDES1_LTS
);
517 static void ftmac100_txdes_set_txint(struct ftmac100_txdes
*txdes
)
519 txdes
->txdes1
|= cpu_to_le32(FTMAC100_TXDES1_TXIC
);
522 static void ftmac100_txdes_set_buffer_size(struct ftmac100_txdes
*txdes
,
525 txdes
->txdes1
|= cpu_to_le32(FTMAC100_TXDES1_TXBUF_SIZE(len
));
528 static void ftmac100_txdes_set_dma_addr(struct ftmac100_txdes
*txdes
,
531 txdes
->txdes2
= cpu_to_le32(addr
);
534 static dma_addr_t
ftmac100_txdes_get_dma_addr(struct ftmac100_txdes
*txdes
)
536 return le32_to_cpu(txdes
->txdes2
);
540 * txdes3 is not used by hardware. We use it to keep track of socket buffer.
541 * Since hardware does not touch it, we can skip cpu_to_le32()/le32_to_cpu().
543 static void ftmac100_txdes_set_skb(struct ftmac100_txdes
*txdes
, struct sk_buff
*skb
)
545 txdes
->txdes3
= (unsigned int)skb
;
548 static struct sk_buff
*ftmac100_txdes_get_skb(struct ftmac100_txdes
*txdes
)
550 return (struct sk_buff
*)txdes
->txdes3
;
553 /******************************************************************************
554 * internal functions (transmit)
555 *****************************************************************************/
556 static int ftmac100_next_tx_pointer(int pointer
)
558 return (pointer
+ 1) & (TX_QUEUE_ENTRIES
- 1);
561 static void ftmac100_tx_pointer_advance(struct ftmac100
*priv
)
563 priv
->tx_pointer
= ftmac100_next_tx_pointer(priv
->tx_pointer
);
566 static void ftmac100_tx_clean_pointer_advance(struct ftmac100
*priv
)
568 priv
->tx_clean_pointer
= ftmac100_next_tx_pointer(priv
->tx_clean_pointer
);
571 static struct ftmac100_txdes
*ftmac100_current_txdes(struct ftmac100
*priv
)
573 return &priv
->descs
->txdes
[priv
->tx_pointer
];
576 static struct ftmac100_txdes
*ftmac100_current_clean_txdes(struct ftmac100
*priv
)
578 return &priv
->descs
->txdes
[priv
->tx_clean_pointer
];
581 static bool ftmac100_tx_complete_packet(struct ftmac100
*priv
)
583 struct net_device
*netdev
= priv
->netdev
;
584 struct ftmac100_txdes
*txdes
;
588 if (priv
->tx_pending
== 0)
591 txdes
= ftmac100_current_clean_txdes(priv
);
593 if (ftmac100_txdes_owned_by_dma(txdes
))
596 skb
= ftmac100_txdes_get_skb(txdes
);
597 map
= ftmac100_txdes_get_dma_addr(txdes
);
599 if (unlikely(ftmac100_txdes_excessive_collision(txdes
) ||
600 ftmac100_txdes_late_collision(txdes
))) {
602 * packet transmitted to ethernet lost due to late collision
603 * or excessive collision
605 netdev
->stats
.tx_aborted_errors
++;
607 netdev
->stats
.tx_packets
++;
608 netdev
->stats
.tx_bytes
+= skb
->len
;
611 dma_unmap_single(priv
->dev
, map
, skb_headlen(skb
), DMA_TO_DEVICE
);
614 ftmac100_txdes_reset(txdes
);
616 ftmac100_tx_clean_pointer_advance(priv
);
618 spin_lock(&priv
->tx_lock
);
620 spin_unlock(&priv
->tx_lock
);
621 netif_wake_queue(netdev
);
626 static void ftmac100_tx_complete(struct ftmac100
*priv
)
628 while (ftmac100_tx_complete_packet(priv
))
632 static int ftmac100_xmit(struct ftmac100
*priv
, struct sk_buff
*skb
,
635 struct net_device
*netdev
= priv
->netdev
;
636 struct ftmac100_txdes
*txdes
;
637 unsigned int len
= (skb
->len
< ETH_ZLEN
) ? ETH_ZLEN
: skb
->len
;
639 txdes
= ftmac100_current_txdes(priv
);
640 ftmac100_tx_pointer_advance(priv
);
642 /* setup TX descriptor */
643 ftmac100_txdes_set_skb(txdes
, skb
);
644 ftmac100_txdes_set_dma_addr(txdes
, map
);
646 ftmac100_txdes_set_first_segment(txdes
);
647 ftmac100_txdes_set_last_segment(txdes
);
648 ftmac100_txdes_set_txint(txdes
);
649 ftmac100_txdes_set_buffer_size(txdes
, len
);
651 spin_lock(&priv
->tx_lock
);
653 if (priv
->tx_pending
== TX_QUEUE_ENTRIES
)
654 netif_stop_queue(netdev
);
657 ftmac100_txdes_set_dma_own(txdes
);
658 spin_unlock(&priv
->tx_lock
);
660 ftmac100_txdma_start_polling(priv
);
664 /******************************************************************************
665 * internal functions (buffer)
666 *****************************************************************************/
667 static int ftmac100_alloc_rx_page(struct ftmac100
*priv
,
668 struct ftmac100_rxdes
*rxdes
, gfp_t gfp
)
670 struct net_device
*netdev
= priv
->netdev
;
674 page
= alloc_page(gfp
);
677 netdev_err(netdev
, "failed to allocate rx page\n");
681 map
= dma_map_page(priv
->dev
, page
, 0, RX_BUF_SIZE
, DMA_FROM_DEVICE
);
682 if (unlikely(dma_mapping_error(priv
->dev
, map
))) {
684 netdev_err(netdev
, "failed to map rx page\n");
689 ftmac100_rxdes_set_page(rxdes
, page
);
690 ftmac100_rxdes_set_dma_addr(rxdes
, map
);
691 ftmac100_rxdes_set_buffer_size(rxdes
, RX_BUF_SIZE
);
692 ftmac100_rxdes_set_dma_own(rxdes
);
696 static void ftmac100_free_buffers(struct ftmac100
*priv
)
700 for (i
= 0; i
< RX_QUEUE_ENTRIES
; i
++) {
701 struct ftmac100_rxdes
*rxdes
= &priv
->descs
->rxdes
[i
];
702 struct page
*page
= ftmac100_rxdes_get_page(rxdes
);
703 dma_addr_t map
= ftmac100_rxdes_get_dma_addr(rxdes
);
708 dma_unmap_page(priv
->dev
, map
, RX_BUF_SIZE
, DMA_FROM_DEVICE
);
712 for (i
= 0; i
< TX_QUEUE_ENTRIES
; i
++) {
713 struct ftmac100_txdes
*txdes
= &priv
->descs
->txdes
[i
];
714 struct sk_buff
*skb
= ftmac100_txdes_get_skb(txdes
);
715 dma_addr_t map
= ftmac100_txdes_get_dma_addr(txdes
);
720 dma_unmap_single(priv
->dev
, map
, skb_headlen(skb
), DMA_TO_DEVICE
);
724 dma_free_coherent(priv
->dev
, sizeof(struct ftmac100_descs
),
725 priv
->descs
, priv
->descs_dma_addr
);
728 static int ftmac100_alloc_buffers(struct ftmac100
*priv
)
732 priv
->descs
= dma_alloc_coherent(priv
->dev
, sizeof(struct ftmac100_descs
),
733 &priv
->descs_dma_addr
, GFP_KERNEL
);
737 memset(priv
->descs
, 0, sizeof(struct ftmac100_descs
));
739 /* initialize RX ring */
740 ftmac100_rxdes_set_end_of_ring(&priv
->descs
->rxdes
[RX_QUEUE_ENTRIES
- 1]);
742 for (i
= 0; i
< RX_QUEUE_ENTRIES
; i
++) {
743 struct ftmac100_rxdes
*rxdes
= &priv
->descs
->rxdes
[i
];
745 if (ftmac100_alloc_rx_page(priv
, rxdes
, GFP_KERNEL
))
749 /* initialize TX ring */
750 ftmac100_txdes_set_end_of_ring(&priv
->descs
->txdes
[TX_QUEUE_ENTRIES
- 1]);
754 ftmac100_free_buffers(priv
);
758 /******************************************************************************
759 * struct mii_if_info functions
760 *****************************************************************************/
761 static int ftmac100_mdio_read(struct net_device
*netdev
, int phy_id
, int reg
)
763 struct ftmac100
*priv
= netdev_priv(netdev
);
767 phycr
= FTMAC100_PHYCR_PHYAD(phy_id
) |
768 FTMAC100_PHYCR_REGAD(reg
) |
769 FTMAC100_PHYCR_MIIRD
;
771 iowrite32(phycr
, priv
->base
+ FTMAC100_OFFSET_PHYCR
);
773 for (i
= 0; i
< 10; i
++) {
774 phycr
= ioread32(priv
->base
+ FTMAC100_OFFSET_PHYCR
);
776 if ((phycr
& FTMAC100_PHYCR_MIIRD
) == 0)
777 return phycr
& FTMAC100_PHYCR_MIIRDATA
;
782 netdev_err(netdev
, "mdio read timed out\n");
786 static void ftmac100_mdio_write(struct net_device
*netdev
, int phy_id
, int reg
,
789 struct ftmac100
*priv
= netdev_priv(netdev
);
793 phycr
= FTMAC100_PHYCR_PHYAD(phy_id
) |
794 FTMAC100_PHYCR_REGAD(reg
) |
795 FTMAC100_PHYCR_MIIWR
;
797 data
= FTMAC100_PHYWDATA_MIIWDATA(data
);
799 iowrite32(data
, priv
->base
+ FTMAC100_OFFSET_PHYWDATA
);
800 iowrite32(phycr
, priv
->base
+ FTMAC100_OFFSET_PHYCR
);
802 for (i
= 0; i
< 10; i
++) {
803 phycr
= ioread32(priv
->base
+ FTMAC100_OFFSET_PHYCR
);
805 if ((phycr
& FTMAC100_PHYCR_MIIWR
) == 0)
811 netdev_err(netdev
, "mdio write timed out\n");
814 /******************************************************************************
815 * struct ethtool_ops functions
816 *****************************************************************************/
817 static void ftmac100_get_drvinfo(struct net_device
*netdev
,
818 struct ethtool_drvinfo
*info
)
820 strcpy(info
->driver
, DRV_NAME
);
821 strcpy(info
->version
, DRV_VERSION
);
822 strcpy(info
->bus_info
, dev_name(&netdev
->dev
));
825 static int ftmac100_get_settings(struct net_device
*netdev
, struct ethtool_cmd
*cmd
)
827 struct ftmac100
*priv
= netdev_priv(netdev
);
828 return mii_ethtool_gset(&priv
->mii
, cmd
);
831 static int ftmac100_set_settings(struct net_device
*netdev
, struct ethtool_cmd
*cmd
)
833 struct ftmac100
*priv
= netdev_priv(netdev
);
834 return mii_ethtool_sset(&priv
->mii
, cmd
);
837 static int ftmac100_nway_reset(struct net_device
*netdev
)
839 struct ftmac100
*priv
= netdev_priv(netdev
);
840 return mii_nway_restart(&priv
->mii
);
843 static u32
ftmac100_get_link(struct net_device
*netdev
)
845 struct ftmac100
*priv
= netdev_priv(netdev
);
846 return mii_link_ok(&priv
->mii
);
849 static const struct ethtool_ops ftmac100_ethtool_ops
= {
850 .set_settings
= ftmac100_set_settings
,
851 .get_settings
= ftmac100_get_settings
,
852 .get_drvinfo
= ftmac100_get_drvinfo
,
853 .nway_reset
= ftmac100_nway_reset
,
854 .get_link
= ftmac100_get_link
,
857 /******************************************************************************
859 *****************************************************************************/
860 static irqreturn_t
ftmac100_interrupt(int irq
, void *dev_id
)
862 struct net_device
*netdev
= dev_id
;
863 struct ftmac100
*priv
= netdev_priv(netdev
);
865 if (likely(netif_running(netdev
))) {
866 /* Disable interrupts for polling */
867 ftmac100_disable_all_int(priv
);
868 napi_schedule(&priv
->napi
);
874 /******************************************************************************
875 * struct napi_struct functions
876 *****************************************************************************/
877 static int ftmac100_poll(struct napi_struct
*napi
, int budget
)
879 struct ftmac100
*priv
= container_of(napi
, struct ftmac100
, napi
);
880 struct net_device
*netdev
= priv
->netdev
;
882 bool completed
= true;
885 status
= ioread32(priv
->base
+ FTMAC100_OFFSET_ISR
);
887 if (status
& (FTMAC100_INT_RPKT_FINISH
| FTMAC100_INT_NORXBUF
)) {
889 * FTMAC100_INT_RPKT_FINISH:
890 * RX DMA has received packets into RX buffer successfully
892 * FTMAC100_INT_NORXBUF:
893 * RX buffer unavailable
898 retry
= ftmac100_rx_packet(priv
, &rx
);
899 } while (retry
&& rx
< budget
);
901 if (retry
&& rx
== budget
)
905 if (status
& (FTMAC100_INT_XPKT_OK
| FTMAC100_INT_XPKT_LOST
)) {
907 * FTMAC100_INT_XPKT_OK:
908 * packet transmitted to ethernet successfully
910 * FTMAC100_INT_XPKT_LOST:
911 * packet transmitted to ethernet lost due to late
912 * collision or excessive collision
914 ftmac100_tx_complete(priv
);
917 if (status
& (FTMAC100_INT_NORXBUF
| FTMAC100_INT_RPKT_LOST
|
918 FTMAC100_INT_AHB_ERR
| FTMAC100_INT_PHYSTS_CHG
)) {
920 netdev_info(netdev
, "[ISR] = 0x%x: %s%s%s%s\n", status
,
921 status
& FTMAC100_INT_NORXBUF
? "NORXBUF " : "",
922 status
& FTMAC100_INT_RPKT_LOST
? "RPKT_LOST " : "",
923 status
& FTMAC100_INT_AHB_ERR
? "AHB_ERR " : "",
924 status
& FTMAC100_INT_PHYSTS_CHG
? "PHYSTS_CHG" : "");
926 if (status
& FTMAC100_INT_NORXBUF
) {
927 /* RX buffer unavailable */
928 netdev
->stats
.rx_over_errors
++;
931 if (status
& FTMAC100_INT_RPKT_LOST
) {
932 /* received packet lost due to RX FIFO full */
933 netdev
->stats
.rx_fifo_errors
++;
936 if (status
& FTMAC100_INT_PHYSTS_CHG
) {
937 /* PHY link status change */
938 mii_check_link(&priv
->mii
);
945 ftmac100_enable_all_int(priv
);
951 /******************************************************************************
952 * struct net_device_ops functions
953 *****************************************************************************/
954 static int ftmac100_open(struct net_device
*netdev
)
956 struct ftmac100
*priv
= netdev_priv(netdev
);
959 err
= ftmac100_alloc_buffers(priv
);
961 netdev_err(netdev
, "failed to allocate buffers\n");
965 err
= request_irq(priv
->irq
, ftmac100_interrupt
, 0, netdev
->name
, netdev
);
967 netdev_err(netdev
, "failed to request irq %d\n", priv
->irq
);
971 priv
->rx_pointer
= 0;
972 priv
->tx_clean_pointer
= 0;
973 priv
->tx_pointer
= 0;
974 priv
->tx_pending
= 0;
976 err
= ftmac100_start_hw(priv
);
980 napi_enable(&priv
->napi
);
981 netif_start_queue(netdev
);
983 ftmac100_enable_all_int(priv
);
988 free_irq(priv
->irq
, netdev
);
990 ftmac100_free_buffers(priv
);
995 static int ftmac100_stop(struct net_device
*netdev
)
997 struct ftmac100
*priv
= netdev_priv(netdev
);
999 ftmac100_disable_all_int(priv
);
1000 netif_stop_queue(netdev
);
1001 napi_disable(&priv
->napi
);
1002 ftmac100_stop_hw(priv
);
1003 free_irq(priv
->irq
, netdev
);
1004 ftmac100_free_buffers(priv
);
1009 static int ftmac100_hard_start_xmit(struct sk_buff
*skb
, struct net_device
*netdev
)
1011 struct ftmac100
*priv
= netdev_priv(netdev
);
1014 if (unlikely(skb
->len
> MAX_PKT_SIZE
)) {
1015 if (net_ratelimit())
1016 netdev_dbg(netdev
, "tx packet too big\n");
1018 netdev
->stats
.tx_dropped
++;
1020 return NETDEV_TX_OK
;
1023 map
= dma_map_single(priv
->dev
, skb
->data
, skb_headlen(skb
), DMA_TO_DEVICE
);
1024 if (unlikely(dma_mapping_error(priv
->dev
, map
))) {
1026 if (net_ratelimit())
1027 netdev_err(netdev
, "map socket buffer failed\n");
1029 netdev
->stats
.tx_dropped
++;
1031 return NETDEV_TX_OK
;
1034 return ftmac100_xmit(priv
, skb
, map
);
1038 static int ftmac100_do_ioctl(struct net_device
*netdev
, struct ifreq
*ifr
, int cmd
)
1040 struct ftmac100
*priv
= netdev_priv(netdev
);
1041 struct mii_ioctl_data
*data
= if_mii(ifr
);
1043 return generic_mii_ioctl(&priv
->mii
, data
, cmd
, NULL
);
1046 static const struct net_device_ops ftmac100_netdev_ops
= {
1047 .ndo_open
= ftmac100_open
,
1048 .ndo_stop
= ftmac100_stop
,
1049 .ndo_start_xmit
= ftmac100_hard_start_xmit
,
1050 .ndo_set_mac_address
= eth_mac_addr
,
1051 .ndo_validate_addr
= eth_validate_addr
,
1052 .ndo_do_ioctl
= ftmac100_do_ioctl
,
1055 /******************************************************************************
1056 * struct platform_driver functions
1057 *****************************************************************************/
1058 static int ftmac100_probe(struct platform_device
*pdev
)
1060 struct resource
*res
;
1062 struct net_device
*netdev
;
1063 struct ftmac100
*priv
;
1069 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
1073 irq
= platform_get_irq(pdev
, 0);
1077 /* setup net_device */
1078 netdev
= alloc_etherdev(sizeof(*priv
));
1081 goto err_alloc_etherdev
;
1084 SET_NETDEV_DEV(netdev
, &pdev
->dev
);
1085 SET_ETHTOOL_OPS(netdev
, &ftmac100_ethtool_ops
);
1086 netdev
->netdev_ops
= &ftmac100_netdev_ops
;
1088 platform_set_drvdata(pdev
, netdev
);
1090 /* setup private data */
1091 priv
= netdev_priv(netdev
);
1092 priv
->netdev
= netdev
;
1093 priv
->dev
= &pdev
->dev
;
1095 spin_lock_init(&priv
->tx_lock
);
1097 /* initialize NAPI */
1098 netif_napi_add(netdev
, &priv
->napi
, ftmac100_poll
, 64);
1101 priv
->res
= request_mem_region(res
->start
, resource_size(res
),
1102 dev_name(&pdev
->dev
));
1104 dev_err(&pdev
->dev
, "Could not reserve memory region\n");
1109 priv
->base
= ioremap(res
->start
, resource_size(res
));
1111 dev_err(&pdev
->dev
, "Failed to ioremap ethernet registers\n");
1118 /* initialize struct mii_if_info */
1119 priv
->mii
.phy_id
= 0;
1120 priv
->mii
.phy_id_mask
= 0x1f;
1121 priv
->mii
.reg_num_mask
= 0x1f;
1122 priv
->mii
.dev
= netdev
;
1123 priv
->mii
.mdio_read
= ftmac100_mdio_read
;
1124 priv
->mii
.mdio_write
= ftmac100_mdio_write
;
1126 /* register network device */
1127 err
= register_netdev(netdev
);
1129 dev_err(&pdev
->dev
, "Failed to register netdev\n");
1130 goto err_register_netdev
;
1133 netdev_info(netdev
, "irq %d, mapped at %p\n", priv
->irq
, priv
->base
);
1135 if (!is_valid_ether_addr(netdev
->dev_addr
)) {
1136 eth_hw_addr_random(netdev
);
1137 netdev_info(netdev
, "generated random MAC address %pM\n",
1143 err_register_netdev
:
1144 iounmap(priv
->base
);
1146 release_resource(priv
->res
);
1148 netif_napi_del(&priv
->napi
);
1149 platform_set_drvdata(pdev
, NULL
);
1150 free_netdev(netdev
);
1155 static int __exit
ftmac100_remove(struct platform_device
*pdev
)
1157 struct net_device
*netdev
;
1158 struct ftmac100
*priv
;
1160 netdev
= platform_get_drvdata(pdev
);
1161 priv
= netdev_priv(netdev
);
1163 unregister_netdev(netdev
);
1165 iounmap(priv
->base
);
1166 release_resource(priv
->res
);
1168 netif_napi_del(&priv
->napi
);
1169 platform_set_drvdata(pdev
, NULL
);
1170 free_netdev(netdev
);
1174 static struct platform_driver ftmac100_driver
= {
1175 .probe
= ftmac100_probe
,
1176 .remove
= __exit_p(ftmac100_remove
),
1179 .owner
= THIS_MODULE
,
1183 /******************************************************************************
1184 * initialization / finalization
1185 *****************************************************************************/
1186 static int __init
ftmac100_init(void)
1188 pr_info("Loading version " DRV_VERSION
" ...\n");
1189 return platform_driver_register(&ftmac100_driver
);
1192 static void __exit
ftmac100_exit(void)
1194 platform_driver_unregister(&ftmac100_driver
);
1197 module_init(ftmac100_init
);
1198 module_exit(ftmac100_exit
);
1200 MODULE_AUTHOR("Po-Yu Chuang <ratbert@faraday-tech.com>");
1201 MODULE_DESCRIPTION("FTMAC100 driver");
1202 MODULE_LICENSE("GPL");