2 * Driver for the IDT RC32434 (Korina) on-chip ethernet controller.
4 * Copyright 2004 IDT Inc. (rischelp@idt.com)
5 * Copyright 2006 Felix Fietkau <nbd@openwrt.org>
6 * Copyright 2008 Florian Fainelli <florian@openwrt.org>
7 * Copyright 2017 Roman Yeryomin <roman@advem.lv>
9 * This program is free software; you can redistribute it and/or modify it
10 * under the terms of the GNU General Public License as published by the
11 * Free Software Foundation; either version 2 of the License, or (at your
12 * option) any later version.
14 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
15 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
16 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN
17 * NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
18 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
19 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
20 * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
21 * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
23 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 * You should have received a copy of the GNU General Public License along
26 * with this program; if not, write to the Free Software Foundation, Inc.,
27 * 675 Mass Ave, Cambridge, MA 02139, USA.
29 * Writing to a DMA status register:
31 * When writing to the status register, you should mask the bit you have
32 * been testing the status register with. Both Tx and Rx DMA registers
33 * should stick to this procedure.
36 #include <linux/module.h>
37 #include <linux/kernel.h>
38 #include <linux/moduleparam.h>
39 #include <linux/sched.h>
40 #include <linux/ctype.h>
41 #include <linux/types.h>
42 #include <linux/interrupt.h>
43 #include <linux/ioport.h>
45 #include <linux/slab.h>
46 #include <linux/string.h>
47 #include <linux/delay.h>
48 #include <linux/netdevice.h>
49 #include <linux/etherdevice.h>
50 #include <linux/skbuff.h>
51 #include <linux/errno.h>
52 #include <linux/platform_device.h>
53 #include <linux/mii.h>
54 #include <linux/ethtool.h>
55 #include <linux/crc32.h>
57 #include <asm/bootinfo.h>
58 #include <asm/bitops.h>
59 #include <asm/pgtable.h>
63 #include <asm/mach-rc32434/rb.h>
64 #include <asm/mach-rc32434/rc32434.h>
65 #include <asm/mach-rc32434/eth.h>
66 #include <asm/mach-rc32434/dma_v.h>
68 #define DRV_NAME "korina"
69 #define DRV_VERSION "0.20"
70 #define DRV_RELDATE "15Sep2017"
72 #define STATION_ADDRESS_HIGH(dev) (((dev)->dev_addr[0] << 8) | \
74 #define STATION_ADDRESS_LOW(dev) (((dev)->dev_addr[2] << 24) | \
75 ((dev)->dev_addr[3] << 16) | \
76 ((dev)->dev_addr[4] << 8) | \
79 #define MII_CLOCK 1250000 /* no more than 2.5MHz */
81 /* the following must be powers of two */
82 #define KORINA_NUM_RDS 64 /* number of receive descriptors */
83 #define KORINA_NUM_TDS 64 /* number of transmit descriptors */
85 /* KORINA_RBSIZE is the hardware's default maximum receive
86 * frame size in bytes. Having this hardcoded means that there
87 * is no support for MTU sizes greater than 1500. */
88 #define KORINA_RBSIZE 1536 /* size of one resource buffer = Ether MTU */
89 #define KORINA_RDS_MASK (KORINA_NUM_RDS - 1)
90 #define KORINA_TDS_MASK (KORINA_NUM_TDS - 1)
91 #define RD_RING_SIZE (KORINA_NUM_RDS * sizeof(struct dma_desc))
92 #define TD_RING_SIZE (KORINA_NUM_TDS * sizeof(struct dma_desc))
94 #define TX_TIMEOUT (6000 * HZ / 1000)
101 #define IS_DMA_FINISHED(X) (((X) & (DMA_DESC_FINI)) != 0)
102 #define IS_DMA_DONE(X) (((X) & (DMA_DESC_DONE)) != 0)
103 #define RCVPKT_LENGTH(X) (((X) & ETH_RX_LEN) >> ETH_RX_LEN_BIT)
105 /* Information that need to be kept for each board. */
106 struct korina_private {
107 struct eth_regs *eth_regs;
108 struct dma_reg *rx_dma_regs;
109 struct dma_reg *tx_dma_regs;
110 struct dma_desc *td_ring; /* transmit descriptor ring */
111 struct dma_desc *rd_ring; /* receive descriptor ring */
113 struct sk_buff *tx_skb[KORINA_NUM_TDS];
114 struct sk_buff *rx_skb[KORINA_NUM_RDS];
119 enum chain_status rx_chain_status;
124 enum chain_status tx_chain_status;
131 spinlock_t lock; /* NIC xmit lock */
135 struct napi_struct napi;
136 struct timer_list media_check_timer;
137 struct mii_if_info mii_if;
138 struct work_struct restart_task;
139 struct net_device *dev;
143 extern unsigned int idt_cpu_freq;
145 static inline void korina_start_dma(struct dma_reg *ch, u32 dma_addr)
147 writel(0, &ch->dmandptr);
148 writel(dma_addr, &ch->dmadptr);
151 static inline void korina_abort_dma(struct net_device *dev,
154 if (readl(&ch->dmac) & DMA_CHAN_RUN_BIT) {
155 writel(0x10, &ch->dmac);
157 while (!(readl(&ch->dmas) & DMA_STAT_HALT))
158 netif_trans_update(dev);
160 writel(0, &ch->dmas);
163 writel(0, &ch->dmadptr);
164 writel(0, &ch->dmandptr);
167 static inline void korina_chain_dma(struct dma_reg *ch, u32 dma_addr)
169 writel(dma_addr, &ch->dmandptr);
172 static void korina_abort_tx(struct net_device *dev)
174 struct korina_private *lp = netdev_priv(dev);
176 korina_abort_dma(dev, lp->tx_dma_regs);
179 static void korina_abort_rx(struct net_device *dev)
181 struct korina_private *lp = netdev_priv(dev);
183 korina_abort_dma(dev, lp->rx_dma_regs);
186 static void korina_start_rx(struct korina_private *lp,
189 korina_start_dma(lp->rx_dma_regs, CPHYSADDR(rd));
192 static void korina_chain_rx(struct korina_private *lp,
195 korina_chain_dma(lp->rx_dma_regs, CPHYSADDR(rd));
198 /* transmit packet */
199 static int korina_send_packet(struct sk_buff *skb, struct net_device *dev)
201 struct korina_private *lp = netdev_priv(dev);
204 u32 chain_prev, chain_next;
207 spin_lock_irqsave(&lp->lock, flags);
209 td = &lp->td_ring[lp->tx_chain_tail];
211 /* stop queue when full, drop pkts if queue already full */
212 if (lp->tx_count >= (KORINA_NUM_TDS - 2)) {
215 if (lp->tx_count == (KORINA_NUM_TDS - 2))
216 netif_stop_queue(dev);
218 dev->stats.tx_dropped++;
219 dev_kfree_skb_any(skb);
220 spin_unlock_irqrestore(&lp->lock, flags);
228 lp->tx_skb[lp->tx_chain_tail] = skb;
231 dma_cache_wback((u32)skb->data, skb->len);
233 /* Setup the transmit descriptor. */
234 dma_cache_inv((u32) td, sizeof(*td));
235 td->ca = CPHYSADDR(skb->data);
236 chain_prev = (lp->tx_chain_tail - 1) & KORINA_TDS_MASK;
237 chain_next = (lp->tx_chain_tail + 1) & KORINA_TDS_MASK;
239 if (readl(&(lp->tx_dma_regs->dmandptr)) == 0) {
240 if (lp->tx_chain_status == desc_empty) {
242 td->control = DMA_COUNT(length) |
243 DMA_DESC_COF | DMA_DESC_IOF;
245 lp->tx_chain_tail = chain_next;
247 writel(CPHYSADDR(&lp->td_ring[lp->tx_chain_head]),
248 &lp->tx_dma_regs->dmandptr);
249 /* Move head to tail */
250 lp->tx_chain_head = lp->tx_chain_tail;
253 td->control = DMA_COUNT(length) |
254 DMA_DESC_COF | DMA_DESC_IOF;
256 lp->td_ring[chain_prev].control &=
259 lp->td_ring[chain_prev].link = CPHYSADDR(td);
261 lp->tx_chain_tail = chain_next;
263 writel(CPHYSADDR(&lp->td_ring[lp->tx_chain_head]),
264 &(lp->tx_dma_regs->dmandptr));
265 /* Move head to tail */
266 lp->tx_chain_head = lp->tx_chain_tail;
267 lp->tx_chain_status = desc_empty;
270 if (lp->tx_chain_status == desc_empty) {
272 td->control = DMA_COUNT(length) |
273 DMA_DESC_COF | DMA_DESC_IOF;
275 lp->tx_chain_tail = chain_next;
276 lp->tx_chain_status = desc_filled;
279 td->control = DMA_COUNT(length) |
280 DMA_DESC_COF | DMA_DESC_IOF;
281 lp->td_ring[chain_prev].control &=
283 lp->td_ring[chain_prev].link = CPHYSADDR(td);
284 lp->tx_chain_tail = chain_next;
287 dma_cache_wback((u32) td, sizeof(*td));
289 netif_trans_update(dev);
290 spin_unlock_irqrestore(&lp->lock, flags);
295 static int mdio_read(struct net_device *dev, int mii_id, int reg)
297 struct korina_private *lp = netdev_priv(dev);
300 mii_id = ((lp->rx_irq == 0x2c ? 1 : 0) << 8);
302 writel(0, &lp->eth_regs->miimcfg);
303 writel(0, &lp->eth_regs->miimcmd);
304 writel(mii_id | reg, &lp->eth_regs->miimaddr);
305 writel(ETH_MII_CMD_SCN, &lp->eth_regs->miimcmd);
307 ret = (int)(readl(&lp->eth_regs->miimrdd));
311 static void mdio_write(struct net_device *dev, int mii_id, int reg, int val)
313 struct korina_private *lp = netdev_priv(dev);
315 mii_id = ((lp->rx_irq == 0x2c ? 1 : 0) << 8);
317 writel(0, &lp->eth_regs->miimcfg);
318 writel(1, &lp->eth_regs->miimcmd);
319 writel(mii_id | reg, &lp->eth_regs->miimaddr);
320 writel(ETH_MII_CMD_SCN, &lp->eth_regs->miimcmd);
321 writel(val, &lp->eth_regs->miimwtd);
324 /* Ethernet Rx DMA interrupt */
325 static irqreturn_t korina_rx_dma_interrupt(int irq, void *dev_id)
327 struct net_device *dev = dev_id;
328 struct korina_private *lp = netdev_priv(dev);
332 dmas = readl(&lp->rx_dma_regs->dmas);
333 if (dmas & (DMA_STAT_DONE | DMA_STAT_HALT | DMA_STAT_ERR)) {
334 dmasm = readl(&lp->rx_dma_regs->dmasm);
335 writel(dmasm | (DMA_STAT_DONE |
336 DMA_STAT_HALT | DMA_STAT_ERR),
337 &lp->rx_dma_regs->dmasm);
339 napi_schedule(&lp->napi);
341 if (dmas & DMA_STAT_ERR)
342 printk(KERN_ERR "%s: DMA error\n", dev->name);
344 retval = IRQ_HANDLED;
351 static int korina_rx(struct net_device *dev, int limit)
353 struct korina_private *lp = netdev_priv(dev);
354 struct dma_desc *rd = &lp->rd_ring[lp->rx_next_done];
355 struct sk_buff *skb, *skb_new;
357 u32 devcs, pkt_len, dmas;
360 dma_cache_inv((u32)rd, sizeof(*rd));
362 for (count = 0; count < limit; count++) {
363 skb = lp->rx_skb[lp->rx_next_done];
368 if ((KORINA_RBSIZE - (u32)DMA_COUNT(rd->control)) == 0)
371 /* check that this is a whole packet
372 * WARNING: DMA_FD bit incorrectly set
373 * in Rc32434 (errata ref #077) */
374 if (!(devcs & ETH_RX_LD))
377 if (!(devcs & ETH_RX_ROK)) {
378 /* Update statistics counters */
379 dev->stats.rx_errors++;
380 dev->stats.rx_dropped++;
381 if (devcs & ETH_RX_CRC)
382 dev->stats.rx_crc_errors++;
383 if (devcs & ETH_RX_LE)
384 dev->stats.rx_length_errors++;
385 if (devcs & ETH_RX_OVR)
386 dev->stats.rx_fifo_errors++;
387 if (devcs & ETH_RX_CV)
388 dev->stats.rx_frame_errors++;
389 if (devcs & ETH_RX_CES)
390 dev->stats.rx_frame_errors++;
395 pkt_len = RCVPKT_LENGTH(devcs);
397 /* must be the (first and) last
399 pkt_buf = (u8 *)lp->rx_skb[lp->rx_next_done]->data;
401 /* invalidate the cache */
402 dma_cache_inv((unsigned long)pkt_buf, pkt_len - 4);
404 /* Malloc up new buffer. */
405 skb_new = netdev_alloc_skb_ip_align(dev, KORINA_RBSIZE);
409 /* Do not count the CRC */
410 skb_put(skb, pkt_len - 4);
411 skb->protocol = eth_type_trans(skb, dev);
413 /* Pass the packet to upper layers */
414 napi_gro_receive(&lp->napi, skb);
415 dev->stats.rx_packets++;
416 dev->stats.rx_bytes += pkt_len;
418 /* Update the mcast stats */
419 if (devcs & ETH_RX_MP)
420 dev->stats.multicast++;
422 lp->rx_skb[lp->rx_next_done] = skb_new;
427 /* Restore descriptor's curr_addr */
429 rd->ca = CPHYSADDR(skb_new->data);
431 rd->ca = CPHYSADDR(skb->data);
433 rd->control = DMA_COUNT(KORINA_RBSIZE) |
434 DMA_DESC_COD | DMA_DESC_IOD;
435 lp->rd_ring[(lp->rx_next_done - 1) &
436 KORINA_RDS_MASK].control &=
439 lp->rx_next_done = (lp->rx_next_done + 1) & KORINA_RDS_MASK;
440 dma_cache_wback((u32)rd, sizeof(*rd));
441 rd = &lp->rd_ring[lp->rx_next_done];
442 writel(~DMA_STAT_DONE, &lp->rx_dma_regs->dmas);
445 dmas = readl(&lp->rx_dma_regs->dmas);
447 if (dmas & DMA_STAT_HALT) {
448 writel(~(DMA_STAT_HALT | DMA_STAT_ERR),
449 &lp->rx_dma_regs->dmas);
453 skb = lp->rx_skb[lp->rx_next_done];
454 rd->ca = CPHYSADDR(skb->data);
455 dma_cache_wback((u32)rd, sizeof(*rd));
456 korina_chain_rx(lp, rd);
462 static int korina_poll(struct napi_struct *napi, int budget)
464 struct korina_private *lp =
465 container_of(napi, struct korina_private, napi);
466 struct net_device *dev = lp->dev;
469 work_done = korina_rx(dev, budget);
470 if (work_done < budget) {
471 napi_complete_done(napi, work_done);
473 writel(readl(&lp->rx_dma_regs->dmasm) &
474 ~(DMA_STAT_DONE | DMA_STAT_HALT | DMA_STAT_ERR),
475 &lp->rx_dma_regs->dmasm);
481 * Set or clear the multicast filter for this adaptor.
483 static void korina_multicast_list(struct net_device *dev)
485 struct korina_private *lp = netdev_priv(dev);
487 struct netdev_hw_addr *ha;
488 u32 recognise = ETH_ARC_AB; /* always accept broadcasts */
490 /* Set promiscuous mode */
491 if (dev->flags & IFF_PROMISC)
492 recognise |= ETH_ARC_PRO;
494 else if ((dev->flags & IFF_ALLMULTI) || (netdev_mc_count(dev) > 4))
495 /* All multicast and broadcast */
496 recognise |= ETH_ARC_AM;
498 /* Build the hash table */
499 if (netdev_mc_count(dev) > 4) {
500 u16 hash_table[4] = { 0 };
503 netdev_for_each_mc_addr(ha, dev) {
504 crc = ether_crc_le(6, ha->addr);
506 hash_table[crc >> 4] |= 1 << (15 - (crc & 0xf));
508 /* Accept filtered multicast */
509 recognise |= ETH_ARC_AFM;
511 /* Fill the MAC hash tables with their values */
512 writel((u32)(hash_table[1] << 16 | hash_table[0]),
513 &lp->eth_regs->ethhash0);
514 writel((u32)(hash_table[3] << 16 | hash_table[2]),
515 &lp->eth_regs->ethhash1);
518 spin_lock_irqsave(&lp->lock, flags);
519 writel(recognise, &lp->eth_regs->etharc);
520 spin_unlock_irqrestore(&lp->lock, flags);
523 static void korina_tx(struct net_device *dev)
525 struct korina_private *lp = netdev_priv(dev);
526 struct dma_desc *td = &lp->td_ring[lp->tx_next_done];
530 spin_lock(&lp->lock);
532 /* Process all desc that are done */
533 while (IS_DMA_FINISHED(td->control)) {
534 if (lp->tx_full == 1) {
535 netif_wake_queue(dev);
539 devcs = lp->td_ring[lp->tx_next_done].devcs;
540 if ((devcs & (ETH_TX_FD | ETH_TX_LD)) !=
541 (ETH_TX_FD | ETH_TX_LD)) {
542 dev->stats.tx_errors++;
543 dev->stats.tx_dropped++;
545 /* Should never happen */
546 printk(KERN_ERR "%s: split tx ignored\n",
548 } else if (devcs & ETH_TX_TOK) {
549 dev->stats.tx_packets++;
550 dev->stats.tx_bytes +=
551 lp->tx_skb[lp->tx_next_done]->len;
553 dev->stats.tx_errors++;
554 dev->stats.tx_dropped++;
557 if (devcs & ETH_TX_UND)
558 dev->stats.tx_fifo_errors++;
560 /* Oversized frame */
561 if (devcs & ETH_TX_OF)
562 dev->stats.tx_aborted_errors++;
564 /* Excessive deferrals */
565 if (devcs & ETH_TX_ED)
566 dev->stats.tx_carrier_errors++;
568 /* Collisions: medium busy */
569 if (devcs & ETH_TX_EC)
570 dev->stats.collisions++;
573 if (devcs & ETH_TX_LC)
574 dev->stats.tx_window_errors++;
577 /* We must always free the original skb */
578 if (lp->tx_skb[lp->tx_next_done]) {
579 dev_kfree_skb_any(lp->tx_skb[lp->tx_next_done]);
580 lp->tx_skb[lp->tx_next_done] = NULL;
583 lp->td_ring[lp->tx_next_done].control = DMA_DESC_IOF;
584 lp->td_ring[lp->tx_next_done].devcs = ETH_TX_FD | ETH_TX_LD;
585 lp->td_ring[lp->tx_next_done].link = 0;
586 lp->td_ring[lp->tx_next_done].ca = 0;
589 /* Go on to next transmission */
590 lp->tx_next_done = (lp->tx_next_done + 1) & KORINA_TDS_MASK;
591 td = &lp->td_ring[lp->tx_next_done];
595 /* Clear the DMA status register */
596 dmas = readl(&lp->tx_dma_regs->dmas);
597 writel(~dmas, &lp->tx_dma_regs->dmas);
599 writel(readl(&lp->tx_dma_regs->dmasm) &
600 ~(DMA_STAT_FINI | DMA_STAT_ERR),
601 &lp->tx_dma_regs->dmasm);
603 spin_unlock(&lp->lock);
607 korina_tx_dma_interrupt(int irq, void *dev_id)
609 struct net_device *dev = dev_id;
610 struct korina_private *lp = netdev_priv(dev);
614 dmas = readl(&lp->tx_dma_regs->dmas);
616 if (dmas & (DMA_STAT_FINI | DMA_STAT_ERR)) {
617 dmasm = readl(&lp->tx_dma_regs->dmasm);
618 writel(dmasm | (DMA_STAT_FINI | DMA_STAT_ERR),
619 &lp->tx_dma_regs->dmasm);
623 if (lp->tx_chain_status == desc_filled &&
624 (readl(&(lp->tx_dma_regs->dmandptr)) == 0)) {
625 writel(CPHYSADDR(&lp->td_ring[lp->tx_chain_head]),
626 &(lp->tx_dma_regs->dmandptr));
627 lp->tx_chain_status = desc_empty;
628 lp->tx_chain_head = lp->tx_chain_tail;
629 netif_trans_update(dev);
631 if (dmas & DMA_STAT_ERR)
632 printk(KERN_ERR "%s: DMA error\n", dev->name);
634 retval = IRQ_HANDLED;
642 static void korina_check_media(struct net_device *dev, unsigned int init_media)
644 struct korina_private *lp = netdev_priv(dev);
646 mii_check_media(&lp->mii_if, 0, init_media);
648 if (lp->mii_if.full_duplex)
649 writel(readl(&lp->eth_regs->ethmac2) | ETH_MAC2_FD,
650 &lp->eth_regs->ethmac2);
652 writel(readl(&lp->eth_regs->ethmac2) & ~ETH_MAC2_FD,
653 &lp->eth_regs->ethmac2);
656 static void korina_poll_media(struct timer_list *t)
658 struct korina_private *lp = from_timer(lp, t, media_check_timer);
659 struct net_device *dev = lp->dev;
661 korina_check_media(dev, 0);
662 mod_timer(&lp->media_check_timer, jiffies + HZ);
665 static void korina_set_carrier(struct mii_if_info *mii)
667 if (mii->force_media) {
668 /* autoneg is off: Link is always assumed to be up */
669 if (!netif_carrier_ok(mii->dev))
670 netif_carrier_on(mii->dev);
671 } else /* Let MMI library update carrier status */
672 korina_check_media(mii->dev, 0);
675 static int korina_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
677 struct korina_private *lp = netdev_priv(dev);
678 struct mii_ioctl_data *data = if_mii(rq);
681 if (!netif_running(dev))
683 spin_lock_irq(&lp->lock);
684 rc = generic_mii_ioctl(&lp->mii_if, data, cmd, NULL);
685 spin_unlock_irq(&lp->lock);
686 korina_set_carrier(&lp->mii_if);
691 /* ethtool helpers */
692 static void netdev_get_drvinfo(struct net_device *dev,
693 struct ethtool_drvinfo *info)
695 struct korina_private *lp = netdev_priv(dev);
697 strlcpy(info->driver, DRV_NAME, sizeof(info->driver));
698 strlcpy(info->version, DRV_VERSION, sizeof(info->version));
699 strlcpy(info->bus_info, lp->dev->name, sizeof(info->bus_info));
702 static int netdev_get_link_ksettings(struct net_device *dev,
703 struct ethtool_link_ksettings *cmd)
705 struct korina_private *lp = netdev_priv(dev);
707 spin_lock_irq(&lp->lock);
708 mii_ethtool_get_link_ksettings(&lp->mii_if, cmd);
709 spin_unlock_irq(&lp->lock);
714 static int netdev_set_link_ksettings(struct net_device *dev,
715 const struct ethtool_link_ksettings *cmd)
717 struct korina_private *lp = netdev_priv(dev);
720 spin_lock_irq(&lp->lock);
721 rc = mii_ethtool_set_link_ksettings(&lp->mii_if, cmd);
722 spin_unlock_irq(&lp->lock);
723 korina_set_carrier(&lp->mii_if);
728 static u32 netdev_get_link(struct net_device *dev)
730 struct korina_private *lp = netdev_priv(dev);
732 return mii_link_ok(&lp->mii_if);
735 static const struct ethtool_ops netdev_ethtool_ops = {
736 .get_drvinfo = netdev_get_drvinfo,
737 .get_link = netdev_get_link,
738 .get_link_ksettings = netdev_get_link_ksettings,
739 .set_link_ksettings = netdev_set_link_ksettings,
742 static int korina_alloc_ring(struct net_device *dev)
744 struct korina_private *lp = netdev_priv(dev);
748 /* Initialize the transmit descriptors */
749 for (i = 0; i < KORINA_NUM_TDS; i++) {
750 lp->td_ring[i].control = DMA_DESC_IOF;
751 lp->td_ring[i].devcs = ETH_TX_FD | ETH_TX_LD;
752 lp->td_ring[i].ca = 0;
753 lp->td_ring[i].link = 0;
755 lp->tx_next_done = lp->tx_chain_head = lp->tx_chain_tail =
756 lp->tx_full = lp->tx_count = 0;
757 lp->tx_chain_status = desc_empty;
759 /* Initialize the receive descriptors */
760 for (i = 0; i < KORINA_NUM_RDS; i++) {
761 skb = netdev_alloc_skb_ip_align(dev, KORINA_RBSIZE);
765 lp->rd_ring[i].control = DMA_DESC_IOD |
766 DMA_COUNT(KORINA_RBSIZE);
767 lp->rd_ring[i].devcs = 0;
768 lp->rd_ring[i].ca = CPHYSADDR(skb->data);
769 lp->rd_ring[i].link = CPHYSADDR(&lp->rd_ring[i+1]);
772 /* loop back receive descriptors, so the last
773 * descriptor points to the first one */
774 lp->rd_ring[i - 1].link = CPHYSADDR(&lp->rd_ring[0]);
775 lp->rd_ring[i - 1].control |= DMA_DESC_COD;
777 lp->rx_next_done = 0;
778 lp->rx_chain_head = 0;
779 lp->rx_chain_tail = 0;
780 lp->rx_chain_status = desc_empty;
785 static void korina_free_ring(struct net_device *dev)
787 struct korina_private *lp = netdev_priv(dev);
790 for (i = 0; i < KORINA_NUM_RDS; i++) {
791 lp->rd_ring[i].control = 0;
793 dev_kfree_skb_any(lp->rx_skb[i]);
794 lp->rx_skb[i] = NULL;
797 for (i = 0; i < KORINA_NUM_TDS; i++) {
798 lp->td_ring[i].control = 0;
800 dev_kfree_skb_any(lp->tx_skb[i]);
801 lp->tx_skb[i] = NULL;
806 * Initialize the RC32434 ethernet controller.
808 static int korina_init(struct net_device *dev)
810 struct korina_private *lp = netdev_priv(dev);
813 korina_abort_tx(dev);
814 korina_abort_rx(dev);
816 /* reset ethernet logic */
817 writel(0, &lp->eth_regs->ethintfc);
818 while ((readl(&lp->eth_regs->ethintfc) & ETH_INT_FC_RIP))
819 netif_trans_update(dev);
821 /* Enable Ethernet Interface */
822 writel(ETH_INT_FC_EN, &lp->eth_regs->ethintfc);
825 if (korina_alloc_ring(dev)) {
826 printk(KERN_ERR "%s: descriptor allocation failed\n", dev->name);
827 korina_free_ring(dev);
831 writel(0, &lp->rx_dma_regs->dmas);
833 korina_start_rx(lp, &lp->rd_ring[0]);
835 writel(readl(&lp->tx_dma_regs->dmasm) &
836 ~(DMA_STAT_FINI | DMA_STAT_ERR),
837 &lp->tx_dma_regs->dmasm);
838 writel(readl(&lp->rx_dma_regs->dmasm) &
839 ~(DMA_STAT_DONE | DMA_STAT_HALT | DMA_STAT_ERR),
840 &lp->rx_dma_regs->dmasm);
842 /* Accept only packets destined for this Ethernet device address */
843 writel(ETH_ARC_AB, &lp->eth_regs->etharc);
845 /* Set all Ether station address registers to their initial values */
846 writel(STATION_ADDRESS_LOW(dev), &lp->eth_regs->ethsal0);
847 writel(STATION_ADDRESS_HIGH(dev), &lp->eth_regs->ethsah0);
849 writel(STATION_ADDRESS_LOW(dev), &lp->eth_regs->ethsal1);
850 writel(STATION_ADDRESS_HIGH(dev), &lp->eth_regs->ethsah1);
852 writel(STATION_ADDRESS_LOW(dev), &lp->eth_regs->ethsal2);
853 writel(STATION_ADDRESS_HIGH(dev), &lp->eth_regs->ethsah2);
855 writel(STATION_ADDRESS_LOW(dev), &lp->eth_regs->ethsal3);
856 writel(STATION_ADDRESS_HIGH(dev), &lp->eth_regs->ethsah3);
859 /* Frame Length Checking, Pad Enable, CRC Enable, Full Duplex set */
860 writel(ETH_MAC2_PE | ETH_MAC2_CEN | ETH_MAC2_FD,
861 &lp->eth_regs->ethmac2);
863 /* Back to back inter-packet-gap */
864 writel(0x15, &lp->eth_regs->ethipgt);
865 /* Non - Back to back inter-packet-gap */
866 writel(0x12, &lp->eth_regs->ethipgr);
868 /* Management Clock Prescaler Divisor
869 * Clock independent setting */
870 writel(((idt_cpu_freq) / MII_CLOCK + 1) & ~1,
871 &lp->eth_regs->ethmcp);
873 /* don't transmit until fifo contains 48b */
874 writel(48, &lp->eth_regs->ethfifott);
876 writel(ETH_MAC1_RE, &lp->eth_regs->ethmac1);
878 napi_enable(&lp->napi);
879 netif_start_queue(dev);
885 * Restart the RC32434 ethernet controller.
887 static void korina_restart_task(struct work_struct *work)
889 struct korina_private *lp = container_of(work,
890 struct korina_private, restart_task);
891 struct net_device *dev = lp->dev;
896 disable_irq(lp->rx_irq);
897 disable_irq(lp->tx_irq);
899 writel(readl(&lp->tx_dma_regs->dmasm) |
900 DMA_STAT_FINI | DMA_STAT_ERR,
901 &lp->tx_dma_regs->dmasm);
902 writel(readl(&lp->rx_dma_regs->dmasm) |
903 DMA_STAT_DONE | DMA_STAT_HALT | DMA_STAT_ERR,
904 &lp->rx_dma_regs->dmasm);
906 napi_disable(&lp->napi);
908 korina_free_ring(dev);
910 if (korina_init(dev) < 0) {
911 printk(KERN_ERR "%s: cannot restart device\n", dev->name);
914 korina_multicast_list(dev);
916 enable_irq(lp->tx_irq);
917 enable_irq(lp->rx_irq);
920 static void korina_tx_timeout(struct net_device *dev)
922 struct korina_private *lp = netdev_priv(dev);
924 schedule_work(&lp->restart_task);
927 #ifdef CONFIG_NET_POLL_CONTROLLER
928 static void korina_poll_controller(struct net_device *dev)
930 disable_irq(dev->irq);
931 korina_tx_dma_interrupt(dev->irq, dev);
932 enable_irq(dev->irq);
936 static int korina_open(struct net_device *dev)
938 struct korina_private *lp = netdev_priv(dev);
942 ret = korina_init(dev);
944 printk(KERN_ERR "%s: cannot open device\n", dev->name);
948 /* Install the interrupt handler
949 * that handles the Done Finished */
950 ret = request_irq(lp->rx_irq, korina_rx_dma_interrupt,
951 0, "Korina ethernet Rx", dev);
953 printk(KERN_ERR "%s: unable to get Rx DMA IRQ %d\n",
954 dev->name, lp->rx_irq);
957 ret = request_irq(lp->tx_irq, korina_tx_dma_interrupt,
958 0, "Korina ethernet Tx", dev);
960 printk(KERN_ERR "%s: unable to get Tx DMA IRQ %d\n",
961 dev->name, lp->tx_irq);
962 goto err_free_rx_irq;
965 mod_timer(&lp->media_check_timer, jiffies + 1);
970 free_irq(lp->rx_irq, dev);
972 korina_free_ring(dev);
976 static int korina_close(struct net_device *dev)
978 struct korina_private *lp = netdev_priv(dev);
981 del_timer(&lp->media_check_timer);
983 /* Disable interrupts */
984 disable_irq(lp->rx_irq);
985 disable_irq(lp->tx_irq);
987 korina_abort_tx(dev);
988 tmp = readl(&lp->tx_dma_regs->dmasm);
989 tmp = tmp | DMA_STAT_FINI | DMA_STAT_ERR;
990 writel(tmp, &lp->tx_dma_regs->dmasm);
992 korina_abort_rx(dev);
993 tmp = readl(&lp->rx_dma_regs->dmasm);
994 tmp = tmp | DMA_STAT_DONE | DMA_STAT_HALT | DMA_STAT_ERR;
995 writel(tmp, &lp->rx_dma_regs->dmasm);
997 napi_disable(&lp->napi);
999 cancel_work_sync(&lp->restart_task);
1001 korina_free_ring(dev);
1003 free_irq(lp->rx_irq, dev);
1004 free_irq(lp->tx_irq, dev);
1009 static const struct net_device_ops korina_netdev_ops = {
1010 .ndo_open = korina_open,
1011 .ndo_stop = korina_close,
1012 .ndo_start_xmit = korina_send_packet,
1013 .ndo_set_rx_mode = korina_multicast_list,
1014 .ndo_tx_timeout = korina_tx_timeout,
1015 .ndo_do_ioctl = korina_ioctl,
1016 .ndo_validate_addr = eth_validate_addr,
1017 .ndo_set_mac_address = eth_mac_addr,
1018 #ifdef CONFIG_NET_POLL_CONTROLLER
1019 .ndo_poll_controller = korina_poll_controller,
1023 static int korina_probe(struct platform_device *pdev)
1025 struct korina_device *bif = platform_get_drvdata(pdev);
1026 struct korina_private *lp;
1027 struct net_device *dev;
1031 dev = alloc_etherdev(sizeof(struct korina_private));
1035 SET_NETDEV_DEV(dev, &pdev->dev);
1036 lp = netdev_priv(dev);
1039 memcpy(dev->dev_addr, bif->mac, ETH_ALEN);
1041 lp->rx_irq = platform_get_irq_byname(pdev, "korina_rx");
1042 lp->tx_irq = platform_get_irq_byname(pdev, "korina_tx");
1044 r = platform_get_resource_byname(pdev, IORESOURCE_MEM, "korina_regs");
1045 dev->base_addr = r->start;
1046 lp->eth_regs = ioremap_nocache(r->start, resource_size(r));
1047 if (!lp->eth_regs) {
1048 printk(KERN_ERR DRV_NAME ": cannot remap registers\n");
1053 r = platform_get_resource_byname(pdev, IORESOURCE_MEM, "korina_dma_rx");
1054 lp->rx_dma_regs = ioremap_nocache(r->start, resource_size(r));
1055 if (!lp->rx_dma_regs) {
1056 printk(KERN_ERR DRV_NAME ": cannot remap Rx DMA registers\n");
1058 goto probe_err_dma_rx;
1061 r = platform_get_resource_byname(pdev, IORESOURCE_MEM, "korina_dma_tx");
1062 lp->tx_dma_regs = ioremap_nocache(r->start, resource_size(r));
1063 if (!lp->tx_dma_regs) {
1064 printk(KERN_ERR DRV_NAME ": cannot remap Tx DMA registers\n");
1066 goto probe_err_dma_tx;
1069 lp->td_ring = kmalloc(TD_RING_SIZE + RD_RING_SIZE, GFP_KERNEL);
1072 goto probe_err_td_ring;
1075 dma_cache_inv((unsigned long)(lp->td_ring),
1076 TD_RING_SIZE + RD_RING_SIZE);
1078 /* now convert TD_RING pointer to KSEG1 */
1079 lp->td_ring = (struct dma_desc *)KSEG1ADDR(lp->td_ring);
1080 lp->rd_ring = &lp->td_ring[KORINA_NUM_TDS];
1082 spin_lock_init(&lp->lock);
1083 /* just use the rx dma irq */
1084 dev->irq = lp->rx_irq;
1087 dev->netdev_ops = &korina_netdev_ops;
1088 dev->ethtool_ops = &netdev_ethtool_ops;
1089 dev->watchdog_timeo = TX_TIMEOUT;
1090 netif_napi_add(dev, &lp->napi, korina_poll, NAPI_POLL_WEIGHT);
1092 lp->phy_addr = (((lp->rx_irq == 0x2c? 1:0) << 8) | 0x05);
1093 lp->mii_if.dev = dev;
1094 lp->mii_if.mdio_read = mdio_read;
1095 lp->mii_if.mdio_write = mdio_write;
1096 lp->mii_if.phy_id = lp->phy_addr;
1097 lp->mii_if.phy_id_mask = 0x1f;
1098 lp->mii_if.reg_num_mask = 0x1f;
1100 rc = register_netdev(dev);
1102 printk(KERN_ERR DRV_NAME
1103 ": cannot register net device: %d\n", rc);
1104 goto probe_err_register;
1106 timer_setup(&lp->media_check_timer, korina_poll_media, 0);
1108 INIT_WORK(&lp->restart_task, korina_restart_task);
1110 printk(KERN_INFO "%s: " DRV_NAME "-" DRV_VERSION " " DRV_RELDATE "\n",
1116 kfree((struct dma_desc *)KSEG0ADDR(lp->td_ring));
1118 iounmap(lp->tx_dma_regs);
1120 iounmap(lp->rx_dma_regs);
1122 iounmap(lp->eth_regs);
1128 static int korina_remove(struct platform_device *pdev)
1130 struct korina_device *bif = platform_get_drvdata(pdev);
1131 struct korina_private *lp = netdev_priv(bif->dev);
1133 iounmap(lp->eth_regs);
1134 iounmap(lp->rx_dma_regs);
1135 iounmap(lp->tx_dma_regs);
1136 kfree((struct dma_desc *)KSEG0ADDR(lp->td_ring));
1138 unregister_netdev(bif->dev);
1139 free_netdev(bif->dev);
1144 static struct platform_driver korina_driver = {
1145 .driver.name = "korina",
1146 .probe = korina_probe,
1147 .remove = korina_remove,
1150 module_platform_driver(korina_driver);
1152 MODULE_AUTHOR("Philip Rischel <rischelp@idt.com>");
1153 MODULE_AUTHOR("Felix Fietkau <nbd@openwrt.org>");
1154 MODULE_AUTHOR("Florian Fainelli <florian@openwrt.org>");
1155 MODULE_AUTHOR("Roman Yeryomin <roman@advem.lv>");
1156 MODULE_DESCRIPTION("IDT RC32434 (Korina) Ethernet driver");
1157 MODULE_LICENSE("GPL");