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
;
445 skb
->truesize
+= PAGE_SIZE
;
446 /* We pull the minimum amount into linear part */
447 __pskb_pull_tail(skb
, ETH_HLEN
);
449 /* Small frames are copied into linear part to free one page */
450 __pskb_pull_tail(skb
, length
);
452 ftmac100_alloc_rx_page(priv
, rxdes
, GFP_ATOMIC
);
454 ftmac100_rx_pointer_advance(priv
);
456 skb
->protocol
= eth_type_trans(skb
, netdev
);
458 netdev
->stats
.rx_packets
++;
459 netdev
->stats
.rx_bytes
+= skb
->len
;
461 /* push packet to protocol stack */
462 netif_receive_skb(skb
);
468 /******************************************************************************
469 * internal functions (transmit descriptor)
470 *****************************************************************************/
471 static void ftmac100_txdes_reset(struct ftmac100_txdes
*txdes
)
473 /* clear all except end of ring bit */
475 txdes
->txdes1
&= cpu_to_le32(FTMAC100_TXDES1_EDOTR
);
480 static bool ftmac100_txdes_owned_by_dma(struct ftmac100_txdes
*txdes
)
482 return txdes
->txdes0
& cpu_to_le32(FTMAC100_TXDES0_TXDMA_OWN
);
485 static void ftmac100_txdes_set_dma_own(struct ftmac100_txdes
*txdes
)
488 * Make sure dma own bit will not be set before any other
492 txdes
->txdes0
|= cpu_to_le32(FTMAC100_TXDES0_TXDMA_OWN
);
495 static bool ftmac100_txdes_excessive_collision(struct ftmac100_txdes
*txdes
)
497 return txdes
->txdes0
& cpu_to_le32(FTMAC100_TXDES0_TXPKT_EXSCOL
);
500 static bool ftmac100_txdes_late_collision(struct ftmac100_txdes
*txdes
)
502 return txdes
->txdes0
& cpu_to_le32(FTMAC100_TXDES0_TXPKT_LATECOL
);
505 static void ftmac100_txdes_set_end_of_ring(struct ftmac100_txdes
*txdes
)
507 txdes
->txdes1
|= cpu_to_le32(FTMAC100_TXDES1_EDOTR
);
510 static void ftmac100_txdes_set_first_segment(struct ftmac100_txdes
*txdes
)
512 txdes
->txdes1
|= cpu_to_le32(FTMAC100_TXDES1_FTS
);
515 static void ftmac100_txdes_set_last_segment(struct ftmac100_txdes
*txdes
)
517 txdes
->txdes1
|= cpu_to_le32(FTMAC100_TXDES1_LTS
);
520 static void ftmac100_txdes_set_txint(struct ftmac100_txdes
*txdes
)
522 txdes
->txdes1
|= cpu_to_le32(FTMAC100_TXDES1_TXIC
);
525 static void ftmac100_txdes_set_buffer_size(struct ftmac100_txdes
*txdes
,
528 txdes
->txdes1
|= cpu_to_le32(FTMAC100_TXDES1_TXBUF_SIZE(len
));
531 static void ftmac100_txdes_set_dma_addr(struct ftmac100_txdes
*txdes
,
534 txdes
->txdes2
= cpu_to_le32(addr
);
537 static dma_addr_t
ftmac100_txdes_get_dma_addr(struct ftmac100_txdes
*txdes
)
539 return le32_to_cpu(txdes
->txdes2
);
543 * txdes3 is not used by hardware. We use it to keep track of socket buffer.
544 * Since hardware does not touch it, we can skip cpu_to_le32()/le32_to_cpu().
546 static void ftmac100_txdes_set_skb(struct ftmac100_txdes
*txdes
, struct sk_buff
*skb
)
548 txdes
->txdes3
= (unsigned int)skb
;
551 static struct sk_buff
*ftmac100_txdes_get_skb(struct ftmac100_txdes
*txdes
)
553 return (struct sk_buff
*)txdes
->txdes3
;
556 /******************************************************************************
557 * internal functions (transmit)
558 *****************************************************************************/
559 static int ftmac100_next_tx_pointer(int pointer
)
561 return (pointer
+ 1) & (TX_QUEUE_ENTRIES
- 1);
564 static void ftmac100_tx_pointer_advance(struct ftmac100
*priv
)
566 priv
->tx_pointer
= ftmac100_next_tx_pointer(priv
->tx_pointer
);
569 static void ftmac100_tx_clean_pointer_advance(struct ftmac100
*priv
)
571 priv
->tx_clean_pointer
= ftmac100_next_tx_pointer(priv
->tx_clean_pointer
);
574 static struct ftmac100_txdes
*ftmac100_current_txdes(struct ftmac100
*priv
)
576 return &priv
->descs
->txdes
[priv
->tx_pointer
];
579 static struct ftmac100_txdes
*ftmac100_current_clean_txdes(struct ftmac100
*priv
)
581 return &priv
->descs
->txdes
[priv
->tx_clean_pointer
];
584 static bool ftmac100_tx_complete_packet(struct ftmac100
*priv
)
586 struct net_device
*netdev
= priv
->netdev
;
587 struct ftmac100_txdes
*txdes
;
591 if (priv
->tx_pending
== 0)
594 txdes
= ftmac100_current_clean_txdes(priv
);
596 if (ftmac100_txdes_owned_by_dma(txdes
))
599 skb
= ftmac100_txdes_get_skb(txdes
);
600 map
= ftmac100_txdes_get_dma_addr(txdes
);
602 if (unlikely(ftmac100_txdes_excessive_collision(txdes
) ||
603 ftmac100_txdes_late_collision(txdes
))) {
605 * packet transmitted to ethernet lost due to late collision
606 * or excessive collision
608 netdev
->stats
.tx_aborted_errors
++;
610 netdev
->stats
.tx_packets
++;
611 netdev
->stats
.tx_bytes
+= skb
->len
;
614 dma_unmap_single(priv
->dev
, map
, skb_headlen(skb
), DMA_TO_DEVICE
);
617 ftmac100_txdes_reset(txdes
);
619 ftmac100_tx_clean_pointer_advance(priv
);
621 spin_lock(&priv
->tx_lock
);
623 spin_unlock(&priv
->tx_lock
);
624 netif_wake_queue(netdev
);
629 static void ftmac100_tx_complete(struct ftmac100
*priv
)
631 while (ftmac100_tx_complete_packet(priv
))
635 static int ftmac100_xmit(struct ftmac100
*priv
, struct sk_buff
*skb
,
638 struct net_device
*netdev
= priv
->netdev
;
639 struct ftmac100_txdes
*txdes
;
640 unsigned int len
= (skb
->len
< ETH_ZLEN
) ? ETH_ZLEN
: skb
->len
;
642 txdes
= ftmac100_current_txdes(priv
);
643 ftmac100_tx_pointer_advance(priv
);
645 /* setup TX descriptor */
646 ftmac100_txdes_set_skb(txdes
, skb
);
647 ftmac100_txdes_set_dma_addr(txdes
, map
);
649 ftmac100_txdes_set_first_segment(txdes
);
650 ftmac100_txdes_set_last_segment(txdes
);
651 ftmac100_txdes_set_txint(txdes
);
652 ftmac100_txdes_set_buffer_size(txdes
, len
);
654 spin_lock(&priv
->tx_lock
);
656 if (priv
->tx_pending
== TX_QUEUE_ENTRIES
)
657 netif_stop_queue(netdev
);
660 ftmac100_txdes_set_dma_own(txdes
);
661 spin_unlock(&priv
->tx_lock
);
663 ftmac100_txdma_start_polling(priv
);
667 /******************************************************************************
668 * internal functions (buffer)
669 *****************************************************************************/
670 static int ftmac100_alloc_rx_page(struct ftmac100
*priv
,
671 struct ftmac100_rxdes
*rxdes
, gfp_t gfp
)
673 struct net_device
*netdev
= priv
->netdev
;
677 page
= alloc_page(gfp
);
680 netdev_err(netdev
, "failed to allocate rx page\n");
684 map
= dma_map_page(priv
->dev
, page
, 0, RX_BUF_SIZE
, DMA_FROM_DEVICE
);
685 if (unlikely(dma_mapping_error(priv
->dev
, map
))) {
687 netdev_err(netdev
, "failed to map rx page\n");
692 ftmac100_rxdes_set_page(rxdes
, page
);
693 ftmac100_rxdes_set_dma_addr(rxdes
, map
);
694 ftmac100_rxdes_set_buffer_size(rxdes
, RX_BUF_SIZE
);
695 ftmac100_rxdes_set_dma_own(rxdes
);
699 static void ftmac100_free_buffers(struct ftmac100
*priv
)
703 for (i
= 0; i
< RX_QUEUE_ENTRIES
; i
++) {
704 struct ftmac100_rxdes
*rxdes
= &priv
->descs
->rxdes
[i
];
705 struct page
*page
= ftmac100_rxdes_get_page(rxdes
);
706 dma_addr_t map
= ftmac100_rxdes_get_dma_addr(rxdes
);
711 dma_unmap_page(priv
->dev
, map
, RX_BUF_SIZE
, DMA_FROM_DEVICE
);
715 for (i
= 0; i
< TX_QUEUE_ENTRIES
; i
++) {
716 struct ftmac100_txdes
*txdes
= &priv
->descs
->txdes
[i
];
717 struct sk_buff
*skb
= ftmac100_txdes_get_skb(txdes
);
718 dma_addr_t map
= ftmac100_txdes_get_dma_addr(txdes
);
723 dma_unmap_single(priv
->dev
, map
, skb_headlen(skb
), DMA_TO_DEVICE
);
727 dma_free_coherent(priv
->dev
, sizeof(struct ftmac100_descs
),
728 priv
->descs
, priv
->descs_dma_addr
);
731 static int ftmac100_alloc_buffers(struct ftmac100
*priv
)
735 priv
->descs
= dma_alloc_coherent(priv
->dev
,
736 sizeof(struct ftmac100_descs
),
737 &priv
->descs_dma_addr
,
738 GFP_KERNEL
| __GFP_ZERO
);
742 /* initialize RX ring */
743 ftmac100_rxdes_set_end_of_ring(&priv
->descs
->rxdes
[RX_QUEUE_ENTRIES
- 1]);
745 for (i
= 0; i
< RX_QUEUE_ENTRIES
; i
++) {
746 struct ftmac100_rxdes
*rxdes
= &priv
->descs
->rxdes
[i
];
748 if (ftmac100_alloc_rx_page(priv
, rxdes
, GFP_KERNEL
))
752 /* initialize TX ring */
753 ftmac100_txdes_set_end_of_ring(&priv
->descs
->txdes
[TX_QUEUE_ENTRIES
- 1]);
757 ftmac100_free_buffers(priv
);
761 /******************************************************************************
762 * struct mii_if_info functions
763 *****************************************************************************/
764 static int ftmac100_mdio_read(struct net_device
*netdev
, int phy_id
, int reg
)
766 struct ftmac100
*priv
= netdev_priv(netdev
);
770 phycr
= FTMAC100_PHYCR_PHYAD(phy_id
) |
771 FTMAC100_PHYCR_REGAD(reg
) |
772 FTMAC100_PHYCR_MIIRD
;
774 iowrite32(phycr
, priv
->base
+ FTMAC100_OFFSET_PHYCR
);
776 for (i
= 0; i
< 10; i
++) {
777 phycr
= ioread32(priv
->base
+ FTMAC100_OFFSET_PHYCR
);
779 if ((phycr
& FTMAC100_PHYCR_MIIRD
) == 0)
780 return phycr
& FTMAC100_PHYCR_MIIRDATA
;
785 netdev_err(netdev
, "mdio read timed out\n");
789 static void ftmac100_mdio_write(struct net_device
*netdev
, int phy_id
, int reg
,
792 struct ftmac100
*priv
= netdev_priv(netdev
);
796 phycr
= FTMAC100_PHYCR_PHYAD(phy_id
) |
797 FTMAC100_PHYCR_REGAD(reg
) |
798 FTMAC100_PHYCR_MIIWR
;
800 data
= FTMAC100_PHYWDATA_MIIWDATA(data
);
802 iowrite32(data
, priv
->base
+ FTMAC100_OFFSET_PHYWDATA
);
803 iowrite32(phycr
, priv
->base
+ FTMAC100_OFFSET_PHYCR
);
805 for (i
= 0; i
< 10; i
++) {
806 phycr
= ioread32(priv
->base
+ FTMAC100_OFFSET_PHYCR
);
808 if ((phycr
& FTMAC100_PHYCR_MIIWR
) == 0)
814 netdev_err(netdev
, "mdio write timed out\n");
817 /******************************************************************************
818 * struct ethtool_ops functions
819 *****************************************************************************/
820 static void ftmac100_get_drvinfo(struct net_device
*netdev
,
821 struct ethtool_drvinfo
*info
)
823 strlcpy(info
->driver
, DRV_NAME
, sizeof(info
->driver
));
824 strlcpy(info
->version
, DRV_VERSION
, sizeof(info
->version
));
825 strlcpy(info
->bus_info
, dev_name(&netdev
->dev
), sizeof(info
->bus_info
));
828 static int ftmac100_get_settings(struct net_device
*netdev
, struct ethtool_cmd
*cmd
)
830 struct ftmac100
*priv
= netdev_priv(netdev
);
831 return mii_ethtool_gset(&priv
->mii
, cmd
);
834 static int ftmac100_set_settings(struct net_device
*netdev
, struct ethtool_cmd
*cmd
)
836 struct ftmac100
*priv
= netdev_priv(netdev
);
837 return mii_ethtool_sset(&priv
->mii
, cmd
);
840 static int ftmac100_nway_reset(struct net_device
*netdev
)
842 struct ftmac100
*priv
= netdev_priv(netdev
);
843 return mii_nway_restart(&priv
->mii
);
846 static u32
ftmac100_get_link(struct net_device
*netdev
)
848 struct ftmac100
*priv
= netdev_priv(netdev
);
849 return mii_link_ok(&priv
->mii
);
852 static const struct ethtool_ops ftmac100_ethtool_ops
= {
853 .set_settings
= ftmac100_set_settings
,
854 .get_settings
= ftmac100_get_settings
,
855 .get_drvinfo
= ftmac100_get_drvinfo
,
856 .nway_reset
= ftmac100_nway_reset
,
857 .get_link
= ftmac100_get_link
,
860 /******************************************************************************
862 *****************************************************************************/
863 static irqreturn_t
ftmac100_interrupt(int irq
, void *dev_id
)
865 struct net_device
*netdev
= dev_id
;
866 struct ftmac100
*priv
= netdev_priv(netdev
);
868 if (likely(netif_running(netdev
))) {
869 /* Disable interrupts for polling */
870 ftmac100_disable_all_int(priv
);
871 napi_schedule(&priv
->napi
);
877 /******************************************************************************
878 * struct napi_struct functions
879 *****************************************************************************/
880 static int ftmac100_poll(struct napi_struct
*napi
, int budget
)
882 struct ftmac100
*priv
= container_of(napi
, struct ftmac100
, napi
);
883 struct net_device
*netdev
= priv
->netdev
;
885 bool completed
= true;
888 status
= ioread32(priv
->base
+ FTMAC100_OFFSET_ISR
);
890 if (status
& (FTMAC100_INT_RPKT_FINISH
| FTMAC100_INT_NORXBUF
)) {
892 * FTMAC100_INT_RPKT_FINISH:
893 * RX DMA has received packets into RX buffer successfully
895 * FTMAC100_INT_NORXBUF:
896 * RX buffer unavailable
901 retry
= ftmac100_rx_packet(priv
, &rx
);
902 } while (retry
&& rx
< budget
);
904 if (retry
&& rx
== budget
)
908 if (status
& (FTMAC100_INT_XPKT_OK
| FTMAC100_INT_XPKT_LOST
)) {
910 * FTMAC100_INT_XPKT_OK:
911 * packet transmitted to ethernet successfully
913 * FTMAC100_INT_XPKT_LOST:
914 * packet transmitted to ethernet lost due to late
915 * collision or excessive collision
917 ftmac100_tx_complete(priv
);
920 if (status
& (FTMAC100_INT_NORXBUF
| FTMAC100_INT_RPKT_LOST
|
921 FTMAC100_INT_AHB_ERR
| FTMAC100_INT_PHYSTS_CHG
)) {
923 netdev_info(netdev
, "[ISR] = 0x%x: %s%s%s%s\n", status
,
924 status
& FTMAC100_INT_NORXBUF
? "NORXBUF " : "",
925 status
& FTMAC100_INT_RPKT_LOST
? "RPKT_LOST " : "",
926 status
& FTMAC100_INT_AHB_ERR
? "AHB_ERR " : "",
927 status
& FTMAC100_INT_PHYSTS_CHG
? "PHYSTS_CHG" : "");
929 if (status
& FTMAC100_INT_NORXBUF
) {
930 /* RX buffer unavailable */
931 netdev
->stats
.rx_over_errors
++;
934 if (status
& FTMAC100_INT_RPKT_LOST
) {
935 /* received packet lost due to RX FIFO full */
936 netdev
->stats
.rx_fifo_errors
++;
939 if (status
& FTMAC100_INT_PHYSTS_CHG
) {
940 /* PHY link status change */
941 mii_check_link(&priv
->mii
);
948 ftmac100_enable_all_int(priv
);
954 /******************************************************************************
955 * struct net_device_ops functions
956 *****************************************************************************/
957 static int ftmac100_open(struct net_device
*netdev
)
959 struct ftmac100
*priv
= netdev_priv(netdev
);
962 err
= ftmac100_alloc_buffers(priv
);
964 netdev_err(netdev
, "failed to allocate buffers\n");
968 err
= request_irq(priv
->irq
, ftmac100_interrupt
, 0, netdev
->name
, netdev
);
970 netdev_err(netdev
, "failed to request irq %d\n", priv
->irq
);
974 priv
->rx_pointer
= 0;
975 priv
->tx_clean_pointer
= 0;
976 priv
->tx_pointer
= 0;
977 priv
->tx_pending
= 0;
979 err
= ftmac100_start_hw(priv
);
983 napi_enable(&priv
->napi
);
984 netif_start_queue(netdev
);
986 ftmac100_enable_all_int(priv
);
991 free_irq(priv
->irq
, netdev
);
993 ftmac100_free_buffers(priv
);
998 static int ftmac100_stop(struct net_device
*netdev
)
1000 struct ftmac100
*priv
= netdev_priv(netdev
);
1002 ftmac100_disable_all_int(priv
);
1003 netif_stop_queue(netdev
);
1004 napi_disable(&priv
->napi
);
1005 ftmac100_stop_hw(priv
);
1006 free_irq(priv
->irq
, netdev
);
1007 ftmac100_free_buffers(priv
);
1012 static int ftmac100_hard_start_xmit(struct sk_buff
*skb
, struct net_device
*netdev
)
1014 struct ftmac100
*priv
= netdev_priv(netdev
);
1017 if (unlikely(skb
->len
> MAX_PKT_SIZE
)) {
1018 if (net_ratelimit())
1019 netdev_dbg(netdev
, "tx packet too big\n");
1021 netdev
->stats
.tx_dropped
++;
1023 return NETDEV_TX_OK
;
1026 map
= dma_map_single(priv
->dev
, skb
->data
, skb_headlen(skb
), DMA_TO_DEVICE
);
1027 if (unlikely(dma_mapping_error(priv
->dev
, map
))) {
1029 if (net_ratelimit())
1030 netdev_err(netdev
, "map socket buffer failed\n");
1032 netdev
->stats
.tx_dropped
++;
1034 return NETDEV_TX_OK
;
1037 return ftmac100_xmit(priv
, skb
, map
);
1041 static int ftmac100_do_ioctl(struct net_device
*netdev
, struct ifreq
*ifr
, int cmd
)
1043 struct ftmac100
*priv
= netdev_priv(netdev
);
1044 struct mii_ioctl_data
*data
= if_mii(ifr
);
1046 return generic_mii_ioctl(&priv
->mii
, data
, cmd
, NULL
);
1049 static const struct net_device_ops ftmac100_netdev_ops
= {
1050 .ndo_open
= ftmac100_open
,
1051 .ndo_stop
= ftmac100_stop
,
1052 .ndo_start_xmit
= ftmac100_hard_start_xmit
,
1053 .ndo_set_mac_address
= eth_mac_addr
,
1054 .ndo_validate_addr
= eth_validate_addr
,
1055 .ndo_do_ioctl
= ftmac100_do_ioctl
,
1058 /******************************************************************************
1059 * struct platform_driver functions
1060 *****************************************************************************/
1061 static int ftmac100_probe(struct platform_device
*pdev
)
1063 struct resource
*res
;
1065 struct net_device
*netdev
;
1066 struct ftmac100
*priv
;
1072 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
1076 irq
= platform_get_irq(pdev
, 0);
1080 /* setup net_device */
1081 netdev
= alloc_etherdev(sizeof(*priv
));
1084 goto err_alloc_etherdev
;
1087 SET_NETDEV_DEV(netdev
, &pdev
->dev
);
1088 SET_ETHTOOL_OPS(netdev
, &ftmac100_ethtool_ops
);
1089 netdev
->netdev_ops
= &ftmac100_netdev_ops
;
1091 platform_set_drvdata(pdev
, netdev
);
1093 /* setup private data */
1094 priv
= netdev_priv(netdev
);
1095 priv
->netdev
= netdev
;
1096 priv
->dev
= &pdev
->dev
;
1098 spin_lock_init(&priv
->tx_lock
);
1100 /* initialize NAPI */
1101 netif_napi_add(netdev
, &priv
->napi
, ftmac100_poll
, 64);
1104 priv
->res
= request_mem_region(res
->start
, resource_size(res
),
1105 dev_name(&pdev
->dev
));
1107 dev_err(&pdev
->dev
, "Could not reserve memory region\n");
1112 priv
->base
= ioremap(res
->start
, resource_size(res
));
1114 dev_err(&pdev
->dev
, "Failed to ioremap ethernet registers\n");
1121 /* initialize struct mii_if_info */
1122 priv
->mii
.phy_id
= 0;
1123 priv
->mii
.phy_id_mask
= 0x1f;
1124 priv
->mii
.reg_num_mask
= 0x1f;
1125 priv
->mii
.dev
= netdev
;
1126 priv
->mii
.mdio_read
= ftmac100_mdio_read
;
1127 priv
->mii
.mdio_write
= ftmac100_mdio_write
;
1129 /* register network device */
1130 err
= register_netdev(netdev
);
1132 dev_err(&pdev
->dev
, "Failed to register netdev\n");
1133 goto err_register_netdev
;
1136 netdev_info(netdev
, "irq %d, mapped at %p\n", priv
->irq
, priv
->base
);
1138 if (!is_valid_ether_addr(netdev
->dev_addr
)) {
1139 eth_hw_addr_random(netdev
);
1140 netdev_info(netdev
, "generated random MAC address %pM\n",
1146 err_register_netdev
:
1147 iounmap(priv
->base
);
1149 release_resource(priv
->res
);
1151 netif_napi_del(&priv
->napi
);
1152 free_netdev(netdev
);
1157 static int __exit
ftmac100_remove(struct platform_device
*pdev
)
1159 struct net_device
*netdev
;
1160 struct ftmac100
*priv
;
1162 netdev
= platform_get_drvdata(pdev
);
1163 priv
= netdev_priv(netdev
);
1165 unregister_netdev(netdev
);
1167 iounmap(priv
->base
);
1168 release_resource(priv
->res
);
1170 netif_napi_del(&priv
->napi
);
1171 free_netdev(netdev
);
1175 static struct platform_driver ftmac100_driver
= {
1176 .probe
= ftmac100_probe
,
1177 .remove
= __exit_p(ftmac100_remove
),
1180 .owner
= THIS_MODULE
,
1184 /******************************************************************************
1185 * initialization / finalization
1186 *****************************************************************************/
1187 static int __init
ftmac100_init(void)
1189 pr_info("Loading version " DRV_VERSION
" ...\n");
1190 return platform_driver_register(&ftmac100_driver
);
1193 static void __exit
ftmac100_exit(void)
1195 platform_driver_unregister(&ftmac100_driver
);
1198 module_init(ftmac100_init
);
1199 module_exit(ftmac100_exit
);
1201 MODULE_AUTHOR("Po-Yu Chuang <ratbert@faraday-tech.com>");
1202 MODULE_DESCRIPTION("FTMAC100 driver");
1203 MODULE_LICENSE("GPL");