2 * Copyright (C) 2006-2009 Freescale Semicondutor, Inc. All rights reserved.
4 * Author: Shlomi Gridish <gridish@freescale.com>
5 * Li Yang <leoli@freescale.com>
8 * QE UCC Gigabit Ethernet Driver
10 * This program is free software; you can redistribute it and/or modify it
11 * under the terms of the GNU General Public License as published by the
12 * Free Software Foundation; either version 2 of the License, or (at your
13 * option) any later version.
15 #include <linux/kernel.h>
16 #include <linux/init.h>
17 #include <linux/errno.h>
18 #include <linux/slab.h>
19 #include <linux/stddef.h>
20 #include <linux/interrupt.h>
21 #include <linux/netdevice.h>
22 #include <linux/etherdevice.h>
23 #include <linux/skbuff.h>
24 #include <linux/spinlock.h>
26 #include <linux/dma-mapping.h>
27 #include <linux/mii.h>
28 #include <linux/phy.h>
29 #include <linux/workqueue.h>
30 #include <linux/of_mdio.h>
31 #include <linux/of_platform.h>
33 #include <asm/uaccess.h>
36 #include <asm/immap_qe.h>
39 #include <asm/ucc_fast.h>
42 #include "fsl_pq_mdio.h"
46 #define ugeth_printk(level, format, arg...) \
47 printk(level format "\n", ## arg)
49 #define ugeth_dbg(format, arg...) \
50 ugeth_printk(KERN_DEBUG , format , ## arg)
51 #define ugeth_err(format, arg...) \
52 ugeth_printk(KERN_ERR , format , ## arg)
53 #define ugeth_info(format, arg...) \
54 ugeth_printk(KERN_INFO , format , ## arg)
55 #define ugeth_warn(format, arg...) \
56 ugeth_printk(KERN_WARNING , format , ## arg)
58 #ifdef UGETH_VERBOSE_DEBUG
59 #define ugeth_vdbg ugeth_dbg
61 #define ugeth_vdbg(fmt, args...) do { } while (0)
62 #endif /* UGETH_VERBOSE_DEBUG */
63 #define UGETH_MSG_DEFAULT (NETIF_MSG_IFUP << 1 ) - 1
66 static DEFINE_SPINLOCK(ugeth_lock);
68 static void uec_configure_serdes(struct net_device *dev);
74 module_param_named(debug, debug.msg_enable, int, 0);
75 MODULE_PARM_DESC(debug, "Debug verbosity level (0=none, ..., 0xffff=all)");
77 static struct ucc_geth_info ugeth_primary_info = {
79 .bd_mem_part = MEM_PART_SYSTEM,
80 .rtsm = UCC_FAST_SEND_IDLES_BETWEEN_FRAMES,
81 .max_rx_buf_length = 1536,
82 /* adjusted at startup if max-speed 1000 */
83 .urfs = UCC_GETH_URFS_INIT,
84 .urfet = UCC_GETH_URFET_INIT,
85 .urfset = UCC_GETH_URFSET_INIT,
86 .utfs = UCC_GETH_UTFS_INIT,
87 .utfet = UCC_GETH_UTFET_INIT,
88 .utftt = UCC_GETH_UTFTT_INIT,
90 .mode = UCC_FAST_PROTOCOL_MODE_ETHERNET,
91 .ttx_trx = UCC_FAST_GUMR_TRANSPARENT_TTX_TRX_NORMAL,
92 .tenc = UCC_FAST_TX_ENCODING_NRZ,
93 .renc = UCC_FAST_RX_ENCODING_NRZ,
94 .tcrc = UCC_FAST_16_BIT_CRC,
95 .synl = UCC_FAST_SYNC_LEN_NOT_USED,
99 .extendedFilteringChainPointer = ((uint32_t) NULL),
100 .typeorlen = 3072 /*1536 */ ,
101 .nonBackToBackIfgPart1 = 0x40,
102 .nonBackToBackIfgPart2 = 0x60,
103 .miminumInterFrameGapEnforcement = 0x50,
104 .backToBackInterFrameGap = 0x60,
108 .strictpriorityq = 0xff,
109 .altBebTruncation = 0xa,
111 .maxRetransmission = 0xf,
112 .collisionWindow = 0x37,
113 .receiveFlowControl = 1,
114 .transmitFlowControl = 1,
115 .maxGroupAddrInHash = 4,
116 .maxIndAddrInHash = 4,
118 .maxFrameLength = 1518,
119 .minFrameLength = 64,
123 .ecamptr = ((uint32_t) NULL),
124 .eventRegMask = UCCE_OTHER,
125 .pausePeriod = 0xf000,
126 .interruptcoalescingmaxvalue = {1, 1, 1, 1, 1, 1, 1, 1},
147 .numStationAddresses = UCC_GETH_NUM_OF_STATION_ADDRESSES_1,
148 .largestexternallookupkeysize =
149 QE_FLTR_LARGEST_EXTERNAL_TABLE_LOOKUP_KEY_SIZE_NONE,
150 .statisticsMode = UCC_GETH_STATISTICS_GATHERING_MODE_HARDWARE |
151 UCC_GETH_STATISTICS_GATHERING_MODE_FIRMWARE_TX |
152 UCC_GETH_STATISTICS_GATHERING_MODE_FIRMWARE_RX,
153 .vlanOperationTagged = UCC_GETH_VLAN_OPERATION_TAGGED_NOP,
154 .vlanOperationNonTagged = UCC_GETH_VLAN_OPERATION_NON_TAGGED_NOP,
155 .rxQoSMode = UCC_GETH_QOS_MODE_DEFAULT,
156 .aufc = UPSMR_AUTOMATIC_FLOW_CONTROL_MODE_NONE,
157 .padAndCrc = MACCFG2_PAD_AND_CRC_MODE_PAD_AND_CRC,
158 .numThreadsTx = UCC_GETH_NUM_OF_THREADS_1,
159 .numThreadsRx = UCC_GETH_NUM_OF_THREADS_1,
160 .riscTx = QE_RISC_ALLOCATION_RISC1_AND_RISC2,
161 .riscRx = QE_RISC_ALLOCATION_RISC1_AND_RISC2,
164 static struct ucc_geth_info ugeth_info[8];
167 static void mem_disp(u8 *addr, int size)
170 int size16Aling = (size >> 4) << 4;
171 int size4Aling = (size >> 2) << 2;
176 for (i = addr; (u32) i < (u32) addr + size16Aling; i += 16)
177 printk("0x%08x: %08x %08x %08x %08x\r\n",
181 *((u32 *) (i + 8)), *((u32 *) (i + 12)));
183 printk("0x%08x: ", (u32) i);
184 for (; (u32) i < (u32) addr + size4Aling; i += 4)
185 printk("%08x ", *((u32 *) (i)));
186 for (; (u32) i < (u32) addr + size; i++)
187 printk("%02x", *((u8 *) (i)));
193 static struct list_head *dequeue(struct list_head *lh)
197 spin_lock_irqsave(&ugeth_lock, flags);
198 if (!list_empty(lh)) {
199 struct list_head *node = lh->next;
201 spin_unlock_irqrestore(&ugeth_lock, flags);
204 spin_unlock_irqrestore(&ugeth_lock, flags);
209 static struct sk_buff *get_new_skb(struct ucc_geth_private *ugeth,
212 struct sk_buff *skb = NULL;
214 skb = dev_alloc_skb(ugeth->ug_info->uf_info.max_rx_buf_length +
215 UCC_GETH_RX_DATA_BUF_ALIGNMENT);
220 /* We need the data buffer to be aligned properly. We will reserve
221 * as many bytes as needed to align the data properly
224 UCC_GETH_RX_DATA_BUF_ALIGNMENT -
225 (((unsigned)skb->data) & (UCC_GETH_RX_DATA_BUF_ALIGNMENT -
228 skb->dev = ugeth->ndev;
230 out_be32(&((struct qe_bd __iomem *)bd)->buf,
231 dma_map_single(ugeth->dev,
233 ugeth->ug_info->uf_info.max_rx_buf_length +
234 UCC_GETH_RX_DATA_BUF_ALIGNMENT,
237 out_be32((u32 __iomem *)bd,
238 (R_E | R_I | (in_be32((u32 __iomem*)bd) & R_W)));
243 static int rx_bd_buffer_set(struct ucc_geth_private *ugeth, u8 rxQ)
250 bd = ugeth->p_rx_bd_ring[rxQ];
254 bd_status = in_be32((u32 __iomem *)bd);
255 skb = get_new_skb(ugeth, bd);
257 if (!skb) /* If can not allocate data buffer,
258 abort. Cleanup will be elsewhere */
261 ugeth->rx_skbuff[rxQ][i] = skb;
263 /* advance the BD pointer */
264 bd += sizeof(struct qe_bd);
266 } while (!(bd_status & R_W));
271 static int fill_init_enet_entries(struct ucc_geth_private *ugeth,
275 u32 thread_alignment,
277 int skip_page_for_first_entry)
279 u32 init_enet_offset;
283 for (i = 0; i < num_entries; i++) {
284 if ((snum = qe_get_snum()) < 0) {
285 if (netif_msg_ifup(ugeth))
286 ugeth_err("fill_init_enet_entries: Can not get SNUM.");
289 if ((i == 0) && skip_page_for_first_entry)
290 /* First entry of Rx does not have page */
291 init_enet_offset = 0;
294 qe_muram_alloc(thread_size, thread_alignment);
295 if (IS_ERR_VALUE(init_enet_offset)) {
296 if (netif_msg_ifup(ugeth))
297 ugeth_err("fill_init_enet_entries: Can not allocate DPRAM memory.");
298 qe_put_snum((u8) snum);
303 ((u8) snum << ENET_INIT_PARAM_SNUM_SHIFT) | init_enet_offset
310 static int return_init_enet_entries(struct ucc_geth_private *ugeth,
314 int skip_page_for_first_entry)
316 u32 init_enet_offset;
320 for (i = 0; i < num_entries; i++) {
323 /* Check that this entry was actually valid --
324 needed in case failed in allocations */
325 if ((val & ENET_INIT_PARAM_RISC_MASK) == risc) {
327 (u32) (val & ENET_INIT_PARAM_SNUM_MASK) >>
328 ENET_INIT_PARAM_SNUM_SHIFT;
329 qe_put_snum((u8) snum);
330 if (!((i == 0) && skip_page_for_first_entry)) {
331 /* First entry of Rx does not have page */
333 (val & ENET_INIT_PARAM_PTR_MASK);
334 qe_muram_free(init_enet_offset);
344 static int dump_init_enet_entries(struct ucc_geth_private *ugeth,
345 u32 __iomem *p_start,
349 int skip_page_for_first_entry)
351 u32 init_enet_offset;
355 for (i = 0; i < num_entries; i++) {
356 u32 val = in_be32(p_start);
358 /* Check that this entry was actually valid --
359 needed in case failed in allocations */
360 if ((val & ENET_INIT_PARAM_RISC_MASK) == risc) {
362 (u32) (val & ENET_INIT_PARAM_SNUM_MASK) >>
363 ENET_INIT_PARAM_SNUM_SHIFT;
364 qe_put_snum((u8) snum);
365 if (!((i == 0) && skip_page_for_first_entry)) {
366 /* First entry of Rx does not have page */
369 ENET_INIT_PARAM_PTR_MASK);
370 ugeth_info("Init enet entry %d:", i);
371 ugeth_info("Base address: 0x%08x",
373 qe_muram_addr(init_enet_offset));
374 mem_disp(qe_muram_addr(init_enet_offset),
385 static void put_enet_addr_container(struct enet_addr_container *enet_addr_cont)
387 kfree(enet_addr_cont);
390 static void set_mac_addr(__be16 __iomem *reg, u8 *mac)
392 out_be16(®[0], ((u16)mac[5] << 8) | mac[4]);
393 out_be16(®[1], ((u16)mac[3] << 8) | mac[2]);
394 out_be16(®[2], ((u16)mac[1] << 8) | mac[0]);
397 static int hw_clear_addr_in_paddr(struct ucc_geth_private *ugeth, u8 paddr_num)
399 struct ucc_geth_82xx_address_filtering_pram __iomem *p_82xx_addr_filt;
401 if (!(paddr_num < NUM_OF_PADDRS)) {
402 ugeth_warn("%s: Illagel paddr_num.", __func__);
407 (struct ucc_geth_82xx_address_filtering_pram __iomem *) ugeth->p_rx_glbl_pram->
410 /* Writing address ff.ff.ff.ff.ff.ff disables address
411 recognition for this register */
412 out_be16(&p_82xx_addr_filt->paddr[paddr_num].h, 0xffff);
413 out_be16(&p_82xx_addr_filt->paddr[paddr_num].m, 0xffff);
414 out_be16(&p_82xx_addr_filt->paddr[paddr_num].l, 0xffff);
419 static void hw_add_addr_in_hash(struct ucc_geth_private *ugeth,
422 struct ucc_geth_82xx_address_filtering_pram __iomem *p_82xx_addr_filt;
426 (struct ucc_geth_82xx_address_filtering_pram __iomem *) ugeth->p_rx_glbl_pram->
430 ucc_fast_get_qe_cr_subblock(ugeth->ug_info->uf_info.ucc_num);
432 /* Ethernet frames are defined in Little Endian mode,
433 therefor to insert */
434 /* the address to the hash (Big Endian mode), we reverse the bytes.*/
436 set_mac_addr(&p_82xx_addr_filt->taddr.h, p_enet_addr);
438 qe_issue_cmd(QE_SET_GROUP_ADDRESS, cecr_subblock,
439 QE_CR_PROTOCOL_ETHERNET, 0);
442 #ifdef CONFIG_UGETH_MAGIC_PACKET
443 static void magic_packet_detection_enable(struct ucc_geth_private *ugeth)
445 struct ucc_fast_private *uccf;
446 struct ucc_geth __iomem *ug_regs;
449 ug_regs = ugeth->ug_regs;
451 /* Enable interrupts for magic packet detection */
452 setbits32(uccf->p_uccm, UCC_GETH_UCCE_MPD);
454 /* Enable magic packet detection */
455 setbits32(&ug_regs->maccfg2, MACCFG2_MPE);
458 static void magic_packet_detection_disable(struct ucc_geth_private *ugeth)
460 struct ucc_fast_private *uccf;
461 struct ucc_geth __iomem *ug_regs;
464 ug_regs = ugeth->ug_regs;
466 /* Disable interrupts for magic packet detection */
467 clrbits32(uccf->p_uccm, UCC_GETH_UCCE_MPD);
469 /* Disable magic packet detection */
470 clrbits32(&ug_regs->maccfg2, MACCFG2_MPE);
472 #endif /* MAGIC_PACKET */
474 static inline int compare_addr(u8 **addr1, u8 **addr2)
476 return memcmp(addr1, addr2, ENET_NUM_OCTETS_PER_ADDRESS);
480 static void get_statistics(struct ucc_geth_private *ugeth,
481 struct ucc_geth_tx_firmware_statistics *
482 tx_firmware_statistics,
483 struct ucc_geth_rx_firmware_statistics *
484 rx_firmware_statistics,
485 struct ucc_geth_hardware_statistics *hardware_statistics)
487 struct ucc_fast __iomem *uf_regs;
488 struct ucc_geth __iomem *ug_regs;
489 struct ucc_geth_tx_firmware_statistics_pram *p_tx_fw_statistics_pram;
490 struct ucc_geth_rx_firmware_statistics_pram *p_rx_fw_statistics_pram;
492 ug_regs = ugeth->ug_regs;
493 uf_regs = (struct ucc_fast __iomem *) ug_regs;
494 p_tx_fw_statistics_pram = ugeth->p_tx_fw_statistics_pram;
495 p_rx_fw_statistics_pram = ugeth->p_rx_fw_statistics_pram;
497 /* Tx firmware only if user handed pointer and driver actually
498 gathers Tx firmware statistics */
499 if (tx_firmware_statistics && p_tx_fw_statistics_pram) {
500 tx_firmware_statistics->sicoltx =
501 in_be32(&p_tx_fw_statistics_pram->sicoltx);
502 tx_firmware_statistics->mulcoltx =
503 in_be32(&p_tx_fw_statistics_pram->mulcoltx);
504 tx_firmware_statistics->latecoltxfr =
505 in_be32(&p_tx_fw_statistics_pram->latecoltxfr);
506 tx_firmware_statistics->frabortduecol =
507 in_be32(&p_tx_fw_statistics_pram->frabortduecol);
508 tx_firmware_statistics->frlostinmactxer =
509 in_be32(&p_tx_fw_statistics_pram->frlostinmactxer);
510 tx_firmware_statistics->carriersenseertx =
511 in_be32(&p_tx_fw_statistics_pram->carriersenseertx);
512 tx_firmware_statistics->frtxok =
513 in_be32(&p_tx_fw_statistics_pram->frtxok);
514 tx_firmware_statistics->txfrexcessivedefer =
515 in_be32(&p_tx_fw_statistics_pram->txfrexcessivedefer);
516 tx_firmware_statistics->txpkts256 =
517 in_be32(&p_tx_fw_statistics_pram->txpkts256);
518 tx_firmware_statistics->txpkts512 =
519 in_be32(&p_tx_fw_statistics_pram->txpkts512);
520 tx_firmware_statistics->txpkts1024 =
521 in_be32(&p_tx_fw_statistics_pram->txpkts1024);
522 tx_firmware_statistics->txpktsjumbo =
523 in_be32(&p_tx_fw_statistics_pram->txpktsjumbo);
526 /* Rx firmware only if user handed pointer and driver actually
527 * gathers Rx firmware statistics */
528 if (rx_firmware_statistics && p_rx_fw_statistics_pram) {
530 rx_firmware_statistics->frrxfcser =
531 in_be32(&p_rx_fw_statistics_pram->frrxfcser);
532 rx_firmware_statistics->fraligner =
533 in_be32(&p_rx_fw_statistics_pram->fraligner);
534 rx_firmware_statistics->inrangelenrxer =
535 in_be32(&p_rx_fw_statistics_pram->inrangelenrxer);
536 rx_firmware_statistics->outrangelenrxer =
537 in_be32(&p_rx_fw_statistics_pram->outrangelenrxer);
538 rx_firmware_statistics->frtoolong =
539 in_be32(&p_rx_fw_statistics_pram->frtoolong);
540 rx_firmware_statistics->runt =
541 in_be32(&p_rx_fw_statistics_pram->runt);
542 rx_firmware_statistics->verylongevent =
543 in_be32(&p_rx_fw_statistics_pram->verylongevent);
544 rx_firmware_statistics->symbolerror =
545 in_be32(&p_rx_fw_statistics_pram->symbolerror);
546 rx_firmware_statistics->dropbsy =
547 in_be32(&p_rx_fw_statistics_pram->dropbsy);
548 for (i = 0; i < 0x8; i++)
549 rx_firmware_statistics->res0[i] =
550 p_rx_fw_statistics_pram->res0[i];
551 rx_firmware_statistics->mismatchdrop =
552 in_be32(&p_rx_fw_statistics_pram->mismatchdrop);
553 rx_firmware_statistics->underpkts =
554 in_be32(&p_rx_fw_statistics_pram->underpkts);
555 rx_firmware_statistics->pkts256 =
556 in_be32(&p_rx_fw_statistics_pram->pkts256);
557 rx_firmware_statistics->pkts512 =
558 in_be32(&p_rx_fw_statistics_pram->pkts512);
559 rx_firmware_statistics->pkts1024 =
560 in_be32(&p_rx_fw_statistics_pram->pkts1024);
561 rx_firmware_statistics->pktsjumbo =
562 in_be32(&p_rx_fw_statistics_pram->pktsjumbo);
563 rx_firmware_statistics->frlossinmacer =
564 in_be32(&p_rx_fw_statistics_pram->frlossinmacer);
565 rx_firmware_statistics->pausefr =
566 in_be32(&p_rx_fw_statistics_pram->pausefr);
567 for (i = 0; i < 0x4; i++)
568 rx_firmware_statistics->res1[i] =
569 p_rx_fw_statistics_pram->res1[i];
570 rx_firmware_statistics->removevlan =
571 in_be32(&p_rx_fw_statistics_pram->removevlan);
572 rx_firmware_statistics->replacevlan =
573 in_be32(&p_rx_fw_statistics_pram->replacevlan);
574 rx_firmware_statistics->insertvlan =
575 in_be32(&p_rx_fw_statistics_pram->insertvlan);
578 /* Hardware only if user handed pointer and driver actually
579 gathers hardware statistics */
580 if (hardware_statistics &&
581 (in_be32(&uf_regs->upsmr) & UCC_GETH_UPSMR_HSE)) {
582 hardware_statistics->tx64 = in_be32(&ug_regs->tx64);
583 hardware_statistics->tx127 = in_be32(&ug_regs->tx127);
584 hardware_statistics->tx255 = in_be32(&ug_regs->tx255);
585 hardware_statistics->rx64 = in_be32(&ug_regs->rx64);
586 hardware_statistics->rx127 = in_be32(&ug_regs->rx127);
587 hardware_statistics->rx255 = in_be32(&ug_regs->rx255);
588 hardware_statistics->txok = in_be32(&ug_regs->txok);
589 hardware_statistics->txcf = in_be16(&ug_regs->txcf);
590 hardware_statistics->tmca = in_be32(&ug_regs->tmca);
591 hardware_statistics->tbca = in_be32(&ug_regs->tbca);
592 hardware_statistics->rxfok = in_be32(&ug_regs->rxfok);
593 hardware_statistics->rxbok = in_be32(&ug_regs->rxbok);
594 hardware_statistics->rbyt = in_be32(&ug_regs->rbyt);
595 hardware_statistics->rmca = in_be32(&ug_regs->rmca);
596 hardware_statistics->rbca = in_be32(&ug_regs->rbca);
600 static void dump_bds(struct ucc_geth_private *ugeth)
605 for (i = 0; i < ugeth->ug_info->numQueuesTx; i++) {
606 if (ugeth->p_tx_bd_ring[i]) {
608 (ugeth->ug_info->bdRingLenTx[i] *
609 sizeof(struct qe_bd));
610 ugeth_info("TX BDs[%d]", i);
611 mem_disp(ugeth->p_tx_bd_ring[i], length);
614 for (i = 0; i < ugeth->ug_info->numQueuesRx; i++) {
615 if (ugeth->p_rx_bd_ring[i]) {
617 (ugeth->ug_info->bdRingLenRx[i] *
618 sizeof(struct qe_bd));
619 ugeth_info("RX BDs[%d]", i);
620 mem_disp(ugeth->p_rx_bd_ring[i], length);
625 static void dump_regs(struct ucc_geth_private *ugeth)
629 ugeth_info("UCC%d Geth registers:", ugeth->ug_info->uf_info.ucc_num);
630 ugeth_info("Base address: 0x%08x", (u32) ugeth->ug_regs);
632 ugeth_info("maccfg1 : addr - 0x%08x, val - 0x%08x",
633 (u32) & ugeth->ug_regs->maccfg1,
634 in_be32(&ugeth->ug_regs->maccfg1));
635 ugeth_info("maccfg2 : addr - 0x%08x, val - 0x%08x",
636 (u32) & ugeth->ug_regs->maccfg2,
637 in_be32(&ugeth->ug_regs->maccfg2));
638 ugeth_info("ipgifg : addr - 0x%08x, val - 0x%08x",
639 (u32) & ugeth->ug_regs->ipgifg,
640 in_be32(&ugeth->ug_regs->ipgifg));
641 ugeth_info("hafdup : addr - 0x%08x, val - 0x%08x",
642 (u32) & ugeth->ug_regs->hafdup,
643 in_be32(&ugeth->ug_regs->hafdup));
644 ugeth_info("ifctl : addr - 0x%08x, val - 0x%08x",
645 (u32) & ugeth->ug_regs->ifctl,
646 in_be32(&ugeth->ug_regs->ifctl));
647 ugeth_info("ifstat : addr - 0x%08x, val - 0x%08x",
648 (u32) & ugeth->ug_regs->ifstat,
649 in_be32(&ugeth->ug_regs->ifstat));
650 ugeth_info("macstnaddr1: addr - 0x%08x, val - 0x%08x",
651 (u32) & ugeth->ug_regs->macstnaddr1,
652 in_be32(&ugeth->ug_regs->macstnaddr1));
653 ugeth_info("macstnaddr2: addr - 0x%08x, val - 0x%08x",
654 (u32) & ugeth->ug_regs->macstnaddr2,
655 in_be32(&ugeth->ug_regs->macstnaddr2));
656 ugeth_info("uempr : addr - 0x%08x, val - 0x%08x",
657 (u32) & ugeth->ug_regs->uempr,
658 in_be32(&ugeth->ug_regs->uempr));
659 ugeth_info("utbipar : addr - 0x%08x, val - 0x%08x",
660 (u32) & ugeth->ug_regs->utbipar,
661 in_be32(&ugeth->ug_regs->utbipar));
662 ugeth_info("uescr : addr - 0x%08x, val - 0x%04x",
663 (u32) & ugeth->ug_regs->uescr,
664 in_be16(&ugeth->ug_regs->uescr));
665 ugeth_info("tx64 : addr - 0x%08x, val - 0x%08x",
666 (u32) & ugeth->ug_regs->tx64,
667 in_be32(&ugeth->ug_regs->tx64));
668 ugeth_info("tx127 : addr - 0x%08x, val - 0x%08x",
669 (u32) & ugeth->ug_regs->tx127,
670 in_be32(&ugeth->ug_regs->tx127));
671 ugeth_info("tx255 : addr - 0x%08x, val - 0x%08x",
672 (u32) & ugeth->ug_regs->tx255,
673 in_be32(&ugeth->ug_regs->tx255));
674 ugeth_info("rx64 : addr - 0x%08x, val - 0x%08x",
675 (u32) & ugeth->ug_regs->rx64,
676 in_be32(&ugeth->ug_regs->rx64));
677 ugeth_info("rx127 : addr - 0x%08x, val - 0x%08x",
678 (u32) & ugeth->ug_regs->rx127,
679 in_be32(&ugeth->ug_regs->rx127));
680 ugeth_info("rx255 : addr - 0x%08x, val - 0x%08x",
681 (u32) & ugeth->ug_regs->rx255,
682 in_be32(&ugeth->ug_regs->rx255));
683 ugeth_info("txok : addr - 0x%08x, val - 0x%08x",
684 (u32) & ugeth->ug_regs->txok,
685 in_be32(&ugeth->ug_regs->txok));
686 ugeth_info("txcf : addr - 0x%08x, val - 0x%04x",
687 (u32) & ugeth->ug_regs->txcf,
688 in_be16(&ugeth->ug_regs->txcf));
689 ugeth_info("tmca : addr - 0x%08x, val - 0x%08x",
690 (u32) & ugeth->ug_regs->tmca,
691 in_be32(&ugeth->ug_regs->tmca));
692 ugeth_info("tbca : addr - 0x%08x, val - 0x%08x",
693 (u32) & ugeth->ug_regs->tbca,
694 in_be32(&ugeth->ug_regs->tbca));
695 ugeth_info("rxfok : addr - 0x%08x, val - 0x%08x",
696 (u32) & ugeth->ug_regs->rxfok,
697 in_be32(&ugeth->ug_regs->rxfok));
698 ugeth_info("rxbok : addr - 0x%08x, val - 0x%08x",
699 (u32) & ugeth->ug_regs->rxbok,
700 in_be32(&ugeth->ug_regs->rxbok));
701 ugeth_info("rbyt : addr - 0x%08x, val - 0x%08x",
702 (u32) & ugeth->ug_regs->rbyt,
703 in_be32(&ugeth->ug_regs->rbyt));
704 ugeth_info("rmca : addr - 0x%08x, val - 0x%08x",
705 (u32) & ugeth->ug_regs->rmca,
706 in_be32(&ugeth->ug_regs->rmca));
707 ugeth_info("rbca : addr - 0x%08x, val - 0x%08x",
708 (u32) & ugeth->ug_regs->rbca,
709 in_be32(&ugeth->ug_regs->rbca));
710 ugeth_info("scar : addr - 0x%08x, val - 0x%08x",
711 (u32) & ugeth->ug_regs->scar,
712 in_be32(&ugeth->ug_regs->scar));
713 ugeth_info("scam : addr - 0x%08x, val - 0x%08x",
714 (u32) & ugeth->ug_regs->scam,
715 in_be32(&ugeth->ug_regs->scam));
717 if (ugeth->p_thread_data_tx) {
718 int numThreadsTxNumerical;
719 switch (ugeth->ug_info->numThreadsTx) {
720 case UCC_GETH_NUM_OF_THREADS_1:
721 numThreadsTxNumerical = 1;
723 case UCC_GETH_NUM_OF_THREADS_2:
724 numThreadsTxNumerical = 2;
726 case UCC_GETH_NUM_OF_THREADS_4:
727 numThreadsTxNumerical = 4;
729 case UCC_GETH_NUM_OF_THREADS_6:
730 numThreadsTxNumerical = 6;
732 case UCC_GETH_NUM_OF_THREADS_8:
733 numThreadsTxNumerical = 8;
736 numThreadsTxNumerical = 0;
740 ugeth_info("Thread data TXs:");
741 ugeth_info("Base address: 0x%08x",
742 (u32) ugeth->p_thread_data_tx);
743 for (i = 0; i < numThreadsTxNumerical; i++) {
744 ugeth_info("Thread data TX[%d]:", i);
745 ugeth_info("Base address: 0x%08x",
746 (u32) & ugeth->p_thread_data_tx[i]);
747 mem_disp((u8 *) & ugeth->p_thread_data_tx[i],
748 sizeof(struct ucc_geth_thread_data_tx));
751 if (ugeth->p_thread_data_rx) {
752 int numThreadsRxNumerical;
753 switch (ugeth->ug_info->numThreadsRx) {
754 case UCC_GETH_NUM_OF_THREADS_1:
755 numThreadsRxNumerical = 1;
757 case UCC_GETH_NUM_OF_THREADS_2:
758 numThreadsRxNumerical = 2;
760 case UCC_GETH_NUM_OF_THREADS_4:
761 numThreadsRxNumerical = 4;
763 case UCC_GETH_NUM_OF_THREADS_6:
764 numThreadsRxNumerical = 6;
766 case UCC_GETH_NUM_OF_THREADS_8:
767 numThreadsRxNumerical = 8;
770 numThreadsRxNumerical = 0;
774 ugeth_info("Thread data RX:");
775 ugeth_info("Base address: 0x%08x",
776 (u32) ugeth->p_thread_data_rx);
777 for (i = 0; i < numThreadsRxNumerical; i++) {
778 ugeth_info("Thread data RX[%d]:", i);
779 ugeth_info("Base address: 0x%08x",
780 (u32) & ugeth->p_thread_data_rx[i]);
781 mem_disp((u8 *) & ugeth->p_thread_data_rx[i],
782 sizeof(struct ucc_geth_thread_data_rx));
785 if (ugeth->p_exf_glbl_param) {
786 ugeth_info("EXF global param:");
787 ugeth_info("Base address: 0x%08x",
788 (u32) ugeth->p_exf_glbl_param);
789 mem_disp((u8 *) ugeth->p_exf_glbl_param,
790 sizeof(*ugeth->p_exf_glbl_param));
792 if (ugeth->p_tx_glbl_pram) {
793 ugeth_info("TX global param:");
794 ugeth_info("Base address: 0x%08x", (u32) ugeth->p_tx_glbl_pram);
795 ugeth_info("temoder : addr - 0x%08x, val - 0x%04x",
796 (u32) & ugeth->p_tx_glbl_pram->temoder,
797 in_be16(&ugeth->p_tx_glbl_pram->temoder));
798 ugeth_info("sqptr : addr - 0x%08x, val - 0x%08x",
799 (u32) & ugeth->p_tx_glbl_pram->sqptr,
800 in_be32(&ugeth->p_tx_glbl_pram->sqptr));
801 ugeth_info("schedulerbasepointer: addr - 0x%08x, val - 0x%08x",
802 (u32) & ugeth->p_tx_glbl_pram->schedulerbasepointer,
803 in_be32(&ugeth->p_tx_glbl_pram->
804 schedulerbasepointer));
805 ugeth_info("txrmonbaseptr: addr - 0x%08x, val - 0x%08x",
806 (u32) & ugeth->p_tx_glbl_pram->txrmonbaseptr,
807 in_be32(&ugeth->p_tx_glbl_pram->txrmonbaseptr));
808 ugeth_info("tstate : addr - 0x%08x, val - 0x%08x",
809 (u32) & ugeth->p_tx_glbl_pram->tstate,
810 in_be32(&ugeth->p_tx_glbl_pram->tstate));
811 ugeth_info("iphoffset[0] : addr - 0x%08x, val - 0x%02x",
812 (u32) & ugeth->p_tx_glbl_pram->iphoffset[0],
813 ugeth->p_tx_glbl_pram->iphoffset[0]);
814 ugeth_info("iphoffset[1] : addr - 0x%08x, val - 0x%02x",
815 (u32) & ugeth->p_tx_glbl_pram->iphoffset[1],
816 ugeth->p_tx_glbl_pram->iphoffset[1]);
817 ugeth_info("iphoffset[2] : addr - 0x%08x, val - 0x%02x",
818 (u32) & ugeth->p_tx_glbl_pram->iphoffset[2],
819 ugeth->p_tx_glbl_pram->iphoffset[2]);
820 ugeth_info("iphoffset[3] : addr - 0x%08x, val - 0x%02x",
821 (u32) & ugeth->p_tx_glbl_pram->iphoffset[3],
822 ugeth->p_tx_glbl_pram->iphoffset[3]);
823 ugeth_info("iphoffset[4] : addr - 0x%08x, val - 0x%02x",
824 (u32) & ugeth->p_tx_glbl_pram->iphoffset[4],
825 ugeth->p_tx_glbl_pram->iphoffset[4]);
826 ugeth_info("iphoffset[5] : addr - 0x%08x, val - 0x%02x",
827 (u32) & ugeth->p_tx_glbl_pram->iphoffset[5],
828 ugeth->p_tx_glbl_pram->iphoffset[5]);
829 ugeth_info("iphoffset[6] : addr - 0x%08x, val - 0x%02x",
830 (u32) & ugeth->p_tx_glbl_pram->iphoffset[6],
831 ugeth->p_tx_glbl_pram->iphoffset[6]);
832 ugeth_info("iphoffset[7] : addr - 0x%08x, val - 0x%02x",
833 (u32) & ugeth->p_tx_glbl_pram->iphoffset[7],
834 ugeth->p_tx_glbl_pram->iphoffset[7]);
835 ugeth_info("vtagtable[0] : addr - 0x%08x, val - 0x%08x",
836 (u32) & ugeth->p_tx_glbl_pram->vtagtable[0],
837 in_be32(&ugeth->p_tx_glbl_pram->vtagtable[0]));
838 ugeth_info("vtagtable[1] : addr - 0x%08x, val - 0x%08x",
839 (u32) & ugeth->p_tx_glbl_pram->vtagtable[1],
840 in_be32(&ugeth->p_tx_glbl_pram->vtagtable[1]));
841 ugeth_info("vtagtable[2] : addr - 0x%08x, val - 0x%08x",
842 (u32) & ugeth->p_tx_glbl_pram->vtagtable[2],
843 in_be32(&ugeth->p_tx_glbl_pram->vtagtable[2]));
844 ugeth_info("vtagtable[3] : addr - 0x%08x, val - 0x%08x",
845 (u32) & ugeth->p_tx_glbl_pram->vtagtable[3],
846 in_be32(&ugeth->p_tx_glbl_pram->vtagtable[3]));
847 ugeth_info("vtagtable[4] : addr - 0x%08x, val - 0x%08x",
848 (u32) & ugeth->p_tx_glbl_pram->vtagtable[4],
849 in_be32(&ugeth->p_tx_glbl_pram->vtagtable[4]));
850 ugeth_info("vtagtable[5] : addr - 0x%08x, val - 0x%08x",
851 (u32) & ugeth->p_tx_glbl_pram->vtagtable[5],
852 in_be32(&ugeth->p_tx_glbl_pram->vtagtable[5]));
853 ugeth_info("vtagtable[6] : addr - 0x%08x, val - 0x%08x",
854 (u32) & ugeth->p_tx_glbl_pram->vtagtable[6],
855 in_be32(&ugeth->p_tx_glbl_pram->vtagtable[6]));
856 ugeth_info("vtagtable[7] : addr - 0x%08x, val - 0x%08x",
857 (u32) & ugeth->p_tx_glbl_pram->vtagtable[7],
858 in_be32(&ugeth->p_tx_glbl_pram->vtagtable[7]));
859 ugeth_info("tqptr : addr - 0x%08x, val - 0x%08x",
860 (u32) & ugeth->p_tx_glbl_pram->tqptr,
861 in_be32(&ugeth->p_tx_glbl_pram->tqptr));
863 if (ugeth->p_rx_glbl_pram) {
864 ugeth_info("RX global param:");
865 ugeth_info("Base address: 0x%08x", (u32) ugeth->p_rx_glbl_pram);
866 ugeth_info("remoder : addr - 0x%08x, val - 0x%08x",
867 (u32) & ugeth->p_rx_glbl_pram->remoder,
868 in_be32(&ugeth->p_rx_glbl_pram->remoder));
869 ugeth_info("rqptr : addr - 0x%08x, val - 0x%08x",
870 (u32) & ugeth->p_rx_glbl_pram->rqptr,
871 in_be32(&ugeth->p_rx_glbl_pram->rqptr));
872 ugeth_info("typeorlen : addr - 0x%08x, val - 0x%04x",
873 (u32) & ugeth->p_rx_glbl_pram->typeorlen,
874 in_be16(&ugeth->p_rx_glbl_pram->typeorlen));
875 ugeth_info("rxgstpack : addr - 0x%08x, val - 0x%02x",
876 (u32) & ugeth->p_rx_glbl_pram->rxgstpack,
877 ugeth->p_rx_glbl_pram->rxgstpack);
878 ugeth_info("rxrmonbaseptr : addr - 0x%08x, val - 0x%08x",
879 (u32) & ugeth->p_rx_glbl_pram->rxrmonbaseptr,
880 in_be32(&ugeth->p_rx_glbl_pram->rxrmonbaseptr));
881 ugeth_info("intcoalescingptr: addr - 0x%08x, val - 0x%08x",
882 (u32) & ugeth->p_rx_glbl_pram->intcoalescingptr,
883 in_be32(&ugeth->p_rx_glbl_pram->intcoalescingptr));
884 ugeth_info("rstate : addr - 0x%08x, val - 0x%02x",
885 (u32) & ugeth->p_rx_glbl_pram->rstate,
886 ugeth->p_rx_glbl_pram->rstate);
887 ugeth_info("mrblr : addr - 0x%08x, val - 0x%04x",
888 (u32) & ugeth->p_rx_glbl_pram->mrblr,
889 in_be16(&ugeth->p_rx_glbl_pram->mrblr));
890 ugeth_info("rbdqptr : addr - 0x%08x, val - 0x%08x",
891 (u32) & ugeth->p_rx_glbl_pram->rbdqptr,
892 in_be32(&ugeth->p_rx_glbl_pram->rbdqptr));
893 ugeth_info("mflr : addr - 0x%08x, val - 0x%04x",
894 (u32) & ugeth->p_rx_glbl_pram->mflr,
895 in_be16(&ugeth->p_rx_glbl_pram->mflr));
896 ugeth_info("minflr : addr - 0x%08x, val - 0x%04x",
897 (u32) & ugeth->p_rx_glbl_pram->minflr,
898 in_be16(&ugeth->p_rx_glbl_pram->minflr));
899 ugeth_info("maxd1 : addr - 0x%08x, val - 0x%04x",
900 (u32) & ugeth->p_rx_glbl_pram->maxd1,
901 in_be16(&ugeth->p_rx_glbl_pram->maxd1));
902 ugeth_info("maxd2 : addr - 0x%08x, val - 0x%04x",
903 (u32) & ugeth->p_rx_glbl_pram->maxd2,
904 in_be16(&ugeth->p_rx_glbl_pram->maxd2));
905 ugeth_info("ecamptr : addr - 0x%08x, val - 0x%08x",
906 (u32) & ugeth->p_rx_glbl_pram->ecamptr,
907 in_be32(&ugeth->p_rx_glbl_pram->ecamptr));
908 ugeth_info("l2qt : addr - 0x%08x, val - 0x%08x",
909 (u32) & ugeth->p_rx_glbl_pram->l2qt,
910 in_be32(&ugeth->p_rx_glbl_pram->l2qt));
911 ugeth_info("l3qt[0] : addr - 0x%08x, val - 0x%08x",
912 (u32) & ugeth->p_rx_glbl_pram->l3qt[0],
913 in_be32(&ugeth->p_rx_glbl_pram->l3qt[0]));
914 ugeth_info("l3qt[1] : addr - 0x%08x, val - 0x%08x",
915 (u32) & ugeth->p_rx_glbl_pram->l3qt[1],
916 in_be32(&ugeth->p_rx_glbl_pram->l3qt[1]));
917 ugeth_info("l3qt[2] : addr - 0x%08x, val - 0x%08x",
918 (u32) & ugeth->p_rx_glbl_pram->l3qt[2],
919 in_be32(&ugeth->p_rx_glbl_pram->l3qt[2]));
920 ugeth_info("l3qt[3] : addr - 0x%08x, val - 0x%08x",
921 (u32) & ugeth->p_rx_glbl_pram->l3qt[3],
922 in_be32(&ugeth->p_rx_glbl_pram->l3qt[3]));
923 ugeth_info("l3qt[4] : addr - 0x%08x, val - 0x%08x",
924 (u32) & ugeth->p_rx_glbl_pram->l3qt[4],
925 in_be32(&ugeth->p_rx_glbl_pram->l3qt[4]));
926 ugeth_info("l3qt[5] : addr - 0x%08x, val - 0x%08x",
927 (u32) & ugeth->p_rx_glbl_pram->l3qt[5],
928 in_be32(&ugeth->p_rx_glbl_pram->l3qt[5]));
929 ugeth_info("l3qt[6] : addr - 0x%08x, val - 0x%08x",
930 (u32) & ugeth->p_rx_glbl_pram->l3qt[6],
931 in_be32(&ugeth->p_rx_glbl_pram->l3qt[6]));
932 ugeth_info("l3qt[7] : addr - 0x%08x, val - 0x%08x",
933 (u32) & ugeth->p_rx_glbl_pram->l3qt[7],
934 in_be32(&ugeth->p_rx_glbl_pram->l3qt[7]));
935 ugeth_info("vlantype : addr - 0x%08x, val - 0x%04x",
936 (u32) & ugeth->p_rx_glbl_pram->vlantype,
937 in_be16(&ugeth->p_rx_glbl_pram->vlantype));
938 ugeth_info("vlantci : addr - 0x%08x, val - 0x%04x",
939 (u32) & ugeth->p_rx_glbl_pram->vlantci,
940 in_be16(&ugeth->p_rx_glbl_pram->vlantci));
941 for (i = 0; i < 64; i++)
943 ("addressfiltering[%d]: addr - 0x%08x, val - 0x%02x",
945 (u32) & ugeth->p_rx_glbl_pram->addressfiltering[i],
946 ugeth->p_rx_glbl_pram->addressfiltering[i]);
947 ugeth_info("exfGlobalParam : addr - 0x%08x, val - 0x%08x",
948 (u32) & ugeth->p_rx_glbl_pram->exfGlobalParam,
949 in_be32(&ugeth->p_rx_glbl_pram->exfGlobalParam));
951 if (ugeth->p_send_q_mem_reg) {
952 ugeth_info("Send Q memory registers:");
953 ugeth_info("Base address: 0x%08x",
954 (u32) ugeth->p_send_q_mem_reg);
955 for (i = 0; i < ugeth->ug_info->numQueuesTx; i++) {
956 ugeth_info("SQQD[%d]:", i);
957 ugeth_info("Base address: 0x%08x",
958 (u32) & ugeth->p_send_q_mem_reg->sqqd[i]);
959 mem_disp((u8 *) & ugeth->p_send_q_mem_reg->sqqd[i],
960 sizeof(struct ucc_geth_send_queue_qd));
963 if (ugeth->p_scheduler) {
964 ugeth_info("Scheduler:");
965 ugeth_info("Base address: 0x%08x", (u32) ugeth->p_scheduler);
966 mem_disp((u8 *) ugeth->p_scheduler,
967 sizeof(*ugeth->p_scheduler));
969 if (ugeth->p_tx_fw_statistics_pram) {
970 ugeth_info("TX FW statistics pram:");
971 ugeth_info("Base address: 0x%08x",
972 (u32) ugeth->p_tx_fw_statistics_pram);
973 mem_disp((u8 *) ugeth->p_tx_fw_statistics_pram,
974 sizeof(*ugeth->p_tx_fw_statistics_pram));
976 if (ugeth->p_rx_fw_statistics_pram) {
977 ugeth_info("RX FW statistics pram:");
978 ugeth_info("Base address: 0x%08x",
979 (u32) ugeth->p_rx_fw_statistics_pram);
980 mem_disp((u8 *) ugeth->p_rx_fw_statistics_pram,
981 sizeof(*ugeth->p_rx_fw_statistics_pram));
983 if (ugeth->p_rx_irq_coalescing_tbl) {
984 ugeth_info("RX IRQ coalescing tables:");
985 ugeth_info("Base address: 0x%08x",
986 (u32) ugeth->p_rx_irq_coalescing_tbl);
987 for (i = 0; i < ugeth->ug_info->numQueuesRx; i++) {
988 ugeth_info("RX IRQ coalescing table entry[%d]:", i);
989 ugeth_info("Base address: 0x%08x",
990 (u32) & ugeth->p_rx_irq_coalescing_tbl->
993 ("interruptcoalescingmaxvalue: addr - 0x%08x, val - 0x%08x",
994 (u32) & ugeth->p_rx_irq_coalescing_tbl->
995 coalescingentry[i].interruptcoalescingmaxvalue,
996 in_be32(&ugeth->p_rx_irq_coalescing_tbl->
998 interruptcoalescingmaxvalue));
1000 ("interruptcoalescingcounter : addr - 0x%08x, val - 0x%08x",
1001 (u32) & ugeth->p_rx_irq_coalescing_tbl->
1002 coalescingentry[i].interruptcoalescingcounter,
1003 in_be32(&ugeth->p_rx_irq_coalescing_tbl->
1005 interruptcoalescingcounter));
1008 if (ugeth->p_rx_bd_qs_tbl) {
1009 ugeth_info("RX BD QS tables:");
1010 ugeth_info("Base address: 0x%08x", (u32) ugeth->p_rx_bd_qs_tbl);
1011 for (i = 0; i < ugeth->ug_info->numQueuesRx; i++) {
1012 ugeth_info("RX BD QS table[%d]:", i);
1013 ugeth_info("Base address: 0x%08x",
1014 (u32) & ugeth->p_rx_bd_qs_tbl[i]);
1016 ("bdbaseptr : addr - 0x%08x, val - 0x%08x",
1017 (u32) & ugeth->p_rx_bd_qs_tbl[i].bdbaseptr,
1018 in_be32(&ugeth->p_rx_bd_qs_tbl[i].bdbaseptr));
1020 ("bdptr : addr - 0x%08x, val - 0x%08x",
1021 (u32) & ugeth->p_rx_bd_qs_tbl[i].bdptr,
1022 in_be32(&ugeth->p_rx_bd_qs_tbl[i].bdptr));
1024 ("externalbdbaseptr: addr - 0x%08x, val - 0x%08x",
1025 (u32) & ugeth->p_rx_bd_qs_tbl[i].externalbdbaseptr,
1026 in_be32(&ugeth->p_rx_bd_qs_tbl[i].
1027 externalbdbaseptr));
1029 ("externalbdptr : addr - 0x%08x, val - 0x%08x",
1030 (u32) & ugeth->p_rx_bd_qs_tbl[i].externalbdptr,
1031 in_be32(&ugeth->p_rx_bd_qs_tbl[i].externalbdptr));
1032 ugeth_info("ucode RX Prefetched BDs:");
1033 ugeth_info("Base address: 0x%08x",
1035 qe_muram_addr(in_be32
1036 (&ugeth->p_rx_bd_qs_tbl[i].
1039 qe_muram_addr(in_be32
1040 (&ugeth->p_rx_bd_qs_tbl[i].
1042 sizeof(struct ucc_geth_rx_prefetched_bds));
1045 if (ugeth->p_init_enet_param_shadow) {
1047 ugeth_info("Init enet param shadow:");
1048 ugeth_info("Base address: 0x%08x",
1049 (u32) ugeth->p_init_enet_param_shadow);
1050 mem_disp((u8 *) ugeth->p_init_enet_param_shadow,
1051 sizeof(*ugeth->p_init_enet_param_shadow));
1053 size = sizeof(struct ucc_geth_thread_rx_pram);
1054 if (ugeth->ug_info->rxExtendedFiltering) {
1056 THREAD_RX_PRAM_ADDITIONAL_FOR_EXTENDED_FILTERING;
1057 if (ugeth->ug_info->largestexternallookupkeysize ==
1058 QE_FLTR_TABLE_LOOKUP_KEY_SIZE_8_BYTES)
1060 THREAD_RX_PRAM_ADDITIONAL_FOR_EXTENDED_FILTERING_8;
1061 if (ugeth->ug_info->largestexternallookupkeysize ==
1062 QE_FLTR_TABLE_LOOKUP_KEY_SIZE_16_BYTES)
1064 THREAD_RX_PRAM_ADDITIONAL_FOR_EXTENDED_FILTERING_16;
1067 dump_init_enet_entries(ugeth,
1068 &(ugeth->p_init_enet_param_shadow->
1070 ENET_INIT_PARAM_MAX_ENTRIES_TX,
1071 sizeof(struct ucc_geth_thread_tx_pram),
1072 ugeth->ug_info->riscTx, 0);
1073 dump_init_enet_entries(ugeth,
1074 &(ugeth->p_init_enet_param_shadow->
1076 ENET_INIT_PARAM_MAX_ENTRIES_RX, size,
1077 ugeth->ug_info->riscRx, 1);
1082 static void init_default_reg_vals(u32 __iomem *upsmr_register,
1083 u32 __iomem *maccfg1_register,
1084 u32 __iomem *maccfg2_register)
1086 out_be32(upsmr_register, UCC_GETH_UPSMR_INIT);
1087 out_be32(maccfg1_register, UCC_GETH_MACCFG1_INIT);
1088 out_be32(maccfg2_register, UCC_GETH_MACCFG2_INIT);
1091 static int init_half_duplex_params(int alt_beb,
1092 int back_pressure_no_backoff,
1095 u8 alt_beb_truncation,
1096 u8 max_retransmissions,
1097 u8 collision_window,
1098 u32 __iomem *hafdup_register)
1102 if ((alt_beb_truncation > HALFDUP_ALT_BEB_TRUNCATION_MAX) ||
1103 (max_retransmissions > HALFDUP_MAX_RETRANSMISSION_MAX) ||
1104 (collision_window > HALFDUP_COLLISION_WINDOW_MAX))
1107 value = (u32) (alt_beb_truncation << HALFDUP_ALT_BEB_TRUNCATION_SHIFT);
1110 value |= HALFDUP_ALT_BEB;
1111 if (back_pressure_no_backoff)
1112 value |= HALFDUP_BACK_PRESSURE_NO_BACKOFF;
1114 value |= HALFDUP_NO_BACKOFF;
1116 value |= HALFDUP_EXCESSIVE_DEFER;
1118 value |= (max_retransmissions << HALFDUP_MAX_RETRANSMISSION_SHIFT);
1120 value |= collision_window;
1122 out_be32(hafdup_register, value);
1126 static int init_inter_frame_gap_params(u8 non_btb_cs_ipg,
1130 u32 __iomem *ipgifg_register)
1134 /* Non-Back-to-back IPG part 1 should be <= Non-Back-to-back
1136 if (non_btb_cs_ipg > non_btb_ipg)
1139 if ((non_btb_cs_ipg > IPGIFG_NON_BACK_TO_BACK_IFG_PART1_MAX) ||
1140 (non_btb_ipg > IPGIFG_NON_BACK_TO_BACK_IFG_PART2_MAX) ||
1141 /*(min_ifg > IPGIFG_MINIMUM_IFG_ENFORCEMENT_MAX) || */
1142 (btb_ipg > IPGIFG_BACK_TO_BACK_IFG_MAX))
1146 ((non_btb_cs_ipg << IPGIFG_NON_BACK_TO_BACK_IFG_PART1_SHIFT) &
1147 IPGIFG_NBTB_CS_IPG_MASK);
1149 ((non_btb_ipg << IPGIFG_NON_BACK_TO_BACK_IFG_PART2_SHIFT) &
1150 IPGIFG_NBTB_IPG_MASK);
1152 ((min_ifg << IPGIFG_MINIMUM_IFG_ENFORCEMENT_SHIFT) &
1153 IPGIFG_MIN_IFG_MASK);
1154 value |= (btb_ipg & IPGIFG_BTB_IPG_MASK);
1156 out_be32(ipgifg_register, value);
1160 int init_flow_control_params(u32 automatic_flow_control_mode,
1161 int rx_flow_control_enable,
1162 int tx_flow_control_enable,
1164 u16 extension_field,
1165 u32 __iomem *upsmr_register,
1166 u32 __iomem *uempr_register,
1167 u32 __iomem *maccfg1_register)
1171 /* Set UEMPR register */
1172 value = (u32) pause_period << UEMPR_PAUSE_TIME_VALUE_SHIFT;
1173 value |= (u32) extension_field << UEMPR_EXTENDED_PAUSE_TIME_VALUE_SHIFT;
1174 out_be32(uempr_register, value);
1176 /* Set UPSMR register */
1177 setbits32(upsmr_register, automatic_flow_control_mode);
1179 value = in_be32(maccfg1_register);
1180 if (rx_flow_control_enable)
1181 value |= MACCFG1_FLOW_RX;
1182 if (tx_flow_control_enable)
1183 value |= MACCFG1_FLOW_TX;
1184 out_be32(maccfg1_register, value);
1189 static int init_hw_statistics_gathering_mode(int enable_hardware_statistics,
1190 int auto_zero_hardware_statistics,
1191 u32 __iomem *upsmr_register,
1192 u16 __iomem *uescr_register)
1194 u16 uescr_value = 0;
1196 /* Enable hardware statistics gathering if requested */
1197 if (enable_hardware_statistics)
1198 setbits32(upsmr_register, UCC_GETH_UPSMR_HSE);
1200 /* Clear hardware statistics counters */
1201 uescr_value = in_be16(uescr_register);
1202 uescr_value |= UESCR_CLRCNT;
1203 /* Automatically zero hardware statistics counters on read,
1205 if (auto_zero_hardware_statistics)
1206 uescr_value |= UESCR_AUTOZ;
1207 out_be16(uescr_register, uescr_value);
1212 static int init_firmware_statistics_gathering_mode(int
1213 enable_tx_firmware_statistics,
1214 int enable_rx_firmware_statistics,
1215 u32 __iomem *tx_rmon_base_ptr,
1216 u32 tx_firmware_statistics_structure_address,
1217 u32 __iomem *rx_rmon_base_ptr,
1218 u32 rx_firmware_statistics_structure_address,
1219 u16 __iomem *temoder_register,
1220 u32 __iomem *remoder_register)
1222 /* Note: this function does not check if */
1223 /* the parameters it receives are NULL */
1225 if (enable_tx_firmware_statistics) {
1226 out_be32(tx_rmon_base_ptr,
1227 tx_firmware_statistics_structure_address);
1228 setbits16(temoder_register, TEMODER_TX_RMON_STATISTICS_ENABLE);
1231 if (enable_rx_firmware_statistics) {
1232 out_be32(rx_rmon_base_ptr,
1233 rx_firmware_statistics_structure_address);
1234 setbits32(remoder_register, REMODER_RX_RMON_STATISTICS_ENABLE);
1240 static int init_mac_station_addr_regs(u8 address_byte_0,
1246 u32 __iomem *macstnaddr1_register,
1247 u32 __iomem *macstnaddr2_register)
1251 /* Example: for a station address of 0x12345678ABCD, */
1252 /* 0x12 is byte 0, 0x34 is byte 1 and so on and 0xCD is byte 5 */
1254 /* MACSTNADDR1 Register: */
1257 /* station address byte 5 station address byte 4 */
1259 /* station address byte 3 station address byte 2 */
1260 value |= (u32) ((address_byte_2 << 0) & 0x000000FF);
1261 value |= (u32) ((address_byte_3 << 8) & 0x0000FF00);
1262 value |= (u32) ((address_byte_4 << 16) & 0x00FF0000);
1263 value |= (u32) ((address_byte_5 << 24) & 0xFF000000);
1265 out_be32(macstnaddr1_register, value);
1267 /* MACSTNADDR2 Register: */
1270 /* station address byte 1 station address byte 0 */
1272 /* reserved reserved */
1274 value |= (u32) ((address_byte_0 << 16) & 0x00FF0000);
1275 value |= (u32) ((address_byte_1 << 24) & 0xFF000000);
1277 out_be32(macstnaddr2_register, value);
1282 static int init_check_frame_length_mode(int length_check,
1283 u32 __iomem *maccfg2_register)
1287 value = in_be32(maccfg2_register);
1290 value |= MACCFG2_LC;
1292 value &= ~MACCFG2_LC;
1294 out_be32(maccfg2_register, value);
1298 static int init_preamble_length(u8 preamble_length,
1299 u32 __iomem *maccfg2_register)
1301 if ((preamble_length < 3) || (preamble_length > 7))
1304 clrsetbits_be32(maccfg2_register, MACCFG2_PREL_MASK,
1305 preamble_length << MACCFG2_PREL_SHIFT);
1310 static int init_rx_parameters(int reject_broadcast,
1311 int receive_short_frames,
1312 int promiscuous, u32 __iomem *upsmr_register)
1316 value = in_be32(upsmr_register);
1318 if (reject_broadcast)
1319 value |= UCC_GETH_UPSMR_BRO;
1321 value &= ~UCC_GETH_UPSMR_BRO;
1323 if (receive_short_frames)
1324 value |= UCC_GETH_UPSMR_RSH;
1326 value &= ~UCC_GETH_UPSMR_RSH;
1329 value |= UCC_GETH_UPSMR_PRO;
1331 value &= ~UCC_GETH_UPSMR_PRO;
1333 out_be32(upsmr_register, value);
1338 static int init_max_rx_buff_len(u16 max_rx_buf_len,
1339 u16 __iomem *mrblr_register)
1341 /* max_rx_buf_len value must be a multiple of 128 */
1342 if ((max_rx_buf_len == 0)
1343 || (max_rx_buf_len % UCC_GETH_MRBLR_ALIGNMENT))
1346 out_be16(mrblr_register, max_rx_buf_len);
1350 static int init_min_frame_len(u16 min_frame_length,
1351 u16 __iomem *minflr_register,
1352 u16 __iomem *mrblr_register)
1354 u16 mrblr_value = 0;
1356 mrblr_value = in_be16(mrblr_register);
1357 if (min_frame_length >= (mrblr_value - 4))
1360 out_be16(minflr_register, min_frame_length);
1364 static int adjust_enet_interface(struct ucc_geth_private *ugeth)
1366 struct ucc_geth_info *ug_info;
1367 struct ucc_geth __iomem *ug_regs;
1368 struct ucc_fast __iomem *uf_regs;
1370 u32 upsmr, maccfg2, tbiBaseAddress;
1373 ugeth_vdbg("%s: IN", __func__);
1375 ug_info = ugeth->ug_info;
1376 ug_regs = ugeth->ug_regs;
1377 uf_regs = ugeth->uccf->uf_regs;
1380 maccfg2 = in_be32(&ug_regs->maccfg2);
1381 maccfg2 &= ~MACCFG2_INTERFACE_MODE_MASK;
1382 if ((ugeth->max_speed == SPEED_10) ||
1383 (ugeth->max_speed == SPEED_100))
1384 maccfg2 |= MACCFG2_INTERFACE_MODE_NIBBLE;
1385 else if (ugeth->max_speed == SPEED_1000)
1386 maccfg2 |= MACCFG2_INTERFACE_MODE_BYTE;
1387 maccfg2 |= ug_info->padAndCrc;
1388 out_be32(&ug_regs->maccfg2, maccfg2);
1391 upsmr = in_be32(&uf_regs->upsmr);
1392 upsmr &= ~(UCC_GETH_UPSMR_RPM | UCC_GETH_UPSMR_R10M |
1393 UCC_GETH_UPSMR_TBIM | UCC_GETH_UPSMR_RMM);
1394 if ((ugeth->phy_interface == PHY_INTERFACE_MODE_RMII) ||
1395 (ugeth->phy_interface == PHY_INTERFACE_MODE_RGMII) ||
1396 (ugeth->phy_interface == PHY_INTERFACE_MODE_RGMII_ID) ||
1397 (ugeth->phy_interface == PHY_INTERFACE_MODE_RGMII_RXID) ||
1398 (ugeth->phy_interface == PHY_INTERFACE_MODE_RGMII_TXID) ||
1399 (ugeth->phy_interface == PHY_INTERFACE_MODE_RTBI)) {
1400 if (ugeth->phy_interface != PHY_INTERFACE_MODE_RMII)
1401 upsmr |= UCC_GETH_UPSMR_RPM;
1402 switch (ugeth->max_speed) {
1404 upsmr |= UCC_GETH_UPSMR_R10M;
1407 if (ugeth->phy_interface != PHY_INTERFACE_MODE_RTBI)
1408 upsmr |= UCC_GETH_UPSMR_RMM;
1411 if ((ugeth->phy_interface == PHY_INTERFACE_MODE_TBI) ||
1412 (ugeth->phy_interface == PHY_INTERFACE_MODE_RTBI)) {
1413 upsmr |= UCC_GETH_UPSMR_TBIM;
1415 if ((ugeth->phy_interface == PHY_INTERFACE_MODE_SGMII))
1416 upsmr |= UCC_GETH_UPSMR_SGMM;
1418 out_be32(&uf_regs->upsmr, upsmr);
1420 /* Disable autonegotiation in tbi mode, because by default it
1421 comes up in autonegotiation mode. */
1422 /* Note that this depends on proper setting in utbipar register. */
1423 if ((ugeth->phy_interface == PHY_INTERFACE_MODE_TBI) ||
1424 (ugeth->phy_interface == PHY_INTERFACE_MODE_RTBI)) {
1425 tbiBaseAddress = in_be32(&ug_regs->utbipar);
1426 tbiBaseAddress &= UTBIPAR_PHY_ADDRESS_MASK;
1427 tbiBaseAddress >>= UTBIPAR_PHY_ADDRESS_SHIFT;
1428 value = ugeth->phydev->bus->read(ugeth->phydev->bus,
1429 (u8) tbiBaseAddress, ENET_TBI_MII_CR);
1430 value &= ~0x1000; /* Turn off autonegotiation */
1431 ugeth->phydev->bus->write(ugeth->phydev->bus,
1432 (u8) tbiBaseAddress, ENET_TBI_MII_CR, value);
1435 init_check_frame_length_mode(ug_info->lengthCheckRx, &ug_regs->maccfg2);
1437 ret_val = init_preamble_length(ug_info->prel, &ug_regs->maccfg2);
1439 if (netif_msg_probe(ugeth))
1440 ugeth_err("%s: Preamble length must be between 3 and 7 inclusive.",
1448 /* Called every time the controller might need to be made
1449 * aware of new link state. The PHY code conveys this
1450 * information through variables in the ugeth structure, and this
1451 * function converts those variables into the appropriate
1452 * register values, and can bring down the device if needed.
1455 static void adjust_link(struct net_device *dev)
1457 struct ucc_geth_private *ugeth = netdev_priv(dev);
1458 struct ucc_geth __iomem *ug_regs;
1459 struct ucc_fast __iomem *uf_regs;
1460 struct phy_device *phydev = ugeth->phydev;
1461 unsigned long flags;
1464 ug_regs = ugeth->ug_regs;
1465 uf_regs = ugeth->uccf->uf_regs;
1467 spin_lock_irqsave(&ugeth->lock, flags);
1470 u32 tempval = in_be32(&ug_regs->maccfg2);
1471 u32 upsmr = in_be32(&uf_regs->upsmr);
1472 /* Now we make sure that we can be in full duplex mode.
1473 * If not, we operate in half-duplex mode. */
1474 if (phydev->duplex != ugeth->oldduplex) {
1476 if (!(phydev->duplex))
1477 tempval &= ~(MACCFG2_FDX);
1479 tempval |= MACCFG2_FDX;
1480 ugeth->oldduplex = phydev->duplex;
1483 if (phydev->speed != ugeth->oldspeed) {
1485 switch (phydev->speed) {
1487 tempval = ((tempval &
1488 ~(MACCFG2_INTERFACE_MODE_MASK)) |
1489 MACCFG2_INTERFACE_MODE_BYTE);
1493 tempval = ((tempval &
1494 ~(MACCFG2_INTERFACE_MODE_MASK)) |
1495 MACCFG2_INTERFACE_MODE_NIBBLE);
1496 /* if reduced mode, re-set UPSMR.R10M */
1497 if ((ugeth->phy_interface == PHY_INTERFACE_MODE_RMII) ||
1498 (ugeth->phy_interface == PHY_INTERFACE_MODE_RGMII) ||
1499 (ugeth->phy_interface == PHY_INTERFACE_MODE_RGMII_ID) ||
1500 (ugeth->phy_interface == PHY_INTERFACE_MODE_RGMII_RXID) ||
1501 (ugeth->phy_interface == PHY_INTERFACE_MODE_RGMII_TXID) ||
1502 (ugeth->phy_interface == PHY_INTERFACE_MODE_RTBI)) {
1503 if (phydev->speed == SPEED_10)
1504 upsmr |= UCC_GETH_UPSMR_R10M;
1506 upsmr &= ~UCC_GETH_UPSMR_R10M;
1510 if (netif_msg_link(ugeth))
1512 "%s: Ack! Speed (%d) is not 10/100/1000!",
1513 dev->name, phydev->speed);
1516 ugeth->oldspeed = phydev->speed;
1519 out_be32(&ug_regs->maccfg2, tempval);
1520 out_be32(&uf_regs->upsmr, upsmr);
1522 if (!ugeth->oldlink) {
1526 } else if (ugeth->oldlink) {
1529 ugeth->oldspeed = 0;
1530 ugeth->oldduplex = -1;
1533 if (new_state && netif_msg_link(ugeth))
1534 phy_print_status(phydev);
1536 spin_unlock_irqrestore(&ugeth->lock, flags);
1539 /* Configure the PHY for dev.
1540 * returns 0 if success. -1 if failure
1542 static int init_phy(struct net_device *dev)
1544 struct ucc_geth_private *priv = netdev_priv(dev);
1545 struct ucc_geth_info *ug_info = priv->ug_info;
1546 struct phy_device *phydev;
1550 priv->oldduplex = -1;
1552 if (!ug_info->phy_node)
1555 phydev = of_phy_connect(dev, ug_info->phy_node, &adjust_link, 0,
1556 priv->phy_interface);
1558 printk("%s: Could not attach to PHY\n", dev->name);
1562 if (priv->phy_interface == PHY_INTERFACE_MODE_SGMII)
1563 uec_configure_serdes(dev);
1565 phydev->supported &= (ADVERTISED_10baseT_Half |
1566 ADVERTISED_10baseT_Full |
1567 ADVERTISED_100baseT_Half |
1568 ADVERTISED_100baseT_Full);
1570 if (priv->max_speed == SPEED_1000)
1571 phydev->supported |= ADVERTISED_1000baseT_Full;
1573 phydev->advertising = phydev->supported;
1575 priv->phydev = phydev;
1580 /* Initialize TBI PHY interface for communicating with the
1581 * SERDES lynx PHY on the chip. We communicate with this PHY
1582 * through the MDIO bus on each controller, treating it as a
1583 * "normal" PHY at the address found in the UTBIPA register. We assume
1584 * that the UTBIPA register is valid. Either the MDIO bus code will set
1585 * it to a value that doesn't conflict with other PHYs on the bus, or the
1586 * value doesn't matter, as there are no other PHYs on the bus.
1588 static void uec_configure_serdes(struct net_device *dev)
1590 struct ucc_geth_private *ugeth = netdev_priv(dev);
1592 if (!ugeth->tbiphy) {
1593 printk(KERN_WARNING "SGMII mode requires that the device "
1594 "tree specify a tbi-handle\n");
1599 * If the link is already up, we must already be ok, and don't need to
1600 * configure and reset the TBI<->SerDes link. Maybe U-Boot configured
1601 * everything for us? Resetting it takes the link down and requires
1602 * several seconds for it to come back.
1604 if (phy_read(ugeth->tbiphy, ENET_TBI_MII_SR) & TBISR_LSTATUS)
1607 /* Single clk mode, mii mode off(for serdes communication) */
1608 phy_write(ugeth->tbiphy, ENET_TBI_MII_ANA, TBIANA_SETTINGS);
1610 phy_write(ugeth->tbiphy, ENET_TBI_MII_TBICON, TBICON_CLK_SELECT);
1612 phy_write(ugeth->tbiphy, ENET_TBI_MII_CR, TBICR_SETTINGS);
1616 static int ugeth_graceful_stop_tx(struct ucc_geth_private *ugeth)
1618 struct ucc_fast_private *uccf;
1625 /* Mask GRACEFUL STOP TX interrupt bit and clear it */
1626 clrbits32(uccf->p_uccm, UCC_GETH_UCCE_GRA);
1627 out_be32(uccf->p_ucce, UCC_GETH_UCCE_GRA); /* clear by writing 1 */
1629 /* Issue host command */
1631 ucc_fast_get_qe_cr_subblock(ugeth->ug_info->uf_info.ucc_num);
1632 qe_issue_cmd(QE_GRACEFUL_STOP_TX, cecr_subblock,
1633 QE_CR_PROTOCOL_ETHERNET, 0);
1635 /* Wait for command to complete */
1638 temp = in_be32(uccf->p_ucce);
1639 } while (!(temp & UCC_GETH_UCCE_GRA) && --i);
1641 uccf->stopped_tx = 1;
1646 static int ugeth_graceful_stop_rx(struct ucc_geth_private * ugeth)
1648 struct ucc_fast_private *uccf;
1655 /* Clear acknowledge bit */
1656 temp = in_8(&ugeth->p_rx_glbl_pram->rxgstpack);
1657 temp &= ~GRACEFUL_STOP_ACKNOWLEDGE_RX;
1658 out_8(&ugeth->p_rx_glbl_pram->rxgstpack, temp);
1660 /* Keep issuing command and checking acknowledge bit until
1661 it is asserted, according to spec */
1663 /* Issue host command */
1665 ucc_fast_get_qe_cr_subblock(ugeth->ug_info->uf_info.
1667 qe_issue_cmd(QE_GRACEFUL_STOP_RX, cecr_subblock,
1668 QE_CR_PROTOCOL_ETHERNET, 0);
1670 temp = in_8(&ugeth->p_rx_glbl_pram->rxgstpack);
1671 } while (!(temp & GRACEFUL_STOP_ACKNOWLEDGE_RX) && --i);
1673 uccf->stopped_rx = 1;
1678 static int ugeth_restart_tx(struct ucc_geth_private *ugeth)
1680 struct ucc_fast_private *uccf;
1686 ucc_fast_get_qe_cr_subblock(ugeth->ug_info->uf_info.ucc_num);
1687 qe_issue_cmd(QE_RESTART_TX, cecr_subblock, QE_CR_PROTOCOL_ETHERNET, 0);
1688 uccf->stopped_tx = 0;
1693 static int ugeth_restart_rx(struct ucc_geth_private *ugeth)
1695 struct ucc_fast_private *uccf;
1701 ucc_fast_get_qe_cr_subblock(ugeth->ug_info->uf_info.ucc_num);
1702 qe_issue_cmd(QE_RESTART_RX, cecr_subblock, QE_CR_PROTOCOL_ETHERNET,
1704 uccf->stopped_rx = 0;
1709 static int ugeth_enable(struct ucc_geth_private *ugeth, enum comm_dir mode)
1711 struct ucc_fast_private *uccf;
1712 int enabled_tx, enabled_rx;
1716 /* check if the UCC number is in range. */
1717 if (ugeth->ug_info->uf_info.ucc_num >= UCC_MAX_NUM) {
1718 if (netif_msg_probe(ugeth))
1719 ugeth_err("%s: ucc_num out of range.", __func__);
1723 enabled_tx = uccf->enabled_tx;
1724 enabled_rx = uccf->enabled_rx;
1726 /* Get Tx and Rx going again, in case this channel was actively
1728 if ((mode & COMM_DIR_TX) && (!enabled_tx) && uccf->stopped_tx)
1729 ugeth_restart_tx(ugeth);
1730 if ((mode & COMM_DIR_RX) && (!enabled_rx) && uccf->stopped_rx)
1731 ugeth_restart_rx(ugeth);
1733 ucc_fast_enable(uccf, mode); /* OK to do even if not disabled */
1739 static int ugeth_disable(struct ucc_geth_private * ugeth, enum comm_dir mode)
1741 struct ucc_fast_private *uccf;
1745 /* check if the UCC number is in range. */
1746 if (ugeth->ug_info->uf_info.ucc_num >= UCC_MAX_NUM) {
1747 if (netif_msg_probe(ugeth))
1748 ugeth_err("%s: ucc_num out of range.", __func__);
1752 /* Stop any transmissions */
1753 if ((mode & COMM_DIR_TX) && uccf->enabled_tx && !uccf->stopped_tx)
1754 ugeth_graceful_stop_tx(ugeth);
1756 /* Stop any receptions */
1757 if ((mode & COMM_DIR_RX) && uccf->enabled_rx && !uccf->stopped_rx)
1758 ugeth_graceful_stop_rx(ugeth);
1760 ucc_fast_disable(ugeth->uccf, mode); /* OK to do even if not enabled */
1765 static void ugeth_dump_regs(struct ucc_geth_private *ugeth)
1768 ucc_fast_dump_regs(ugeth->uccf);
1774 static int ugeth_82xx_filtering_clear_all_addr_in_hash(struct ucc_geth_private *
1779 struct ucc_geth_82xx_address_filtering_pram __iomem *p_82xx_addr_filt;
1780 struct ucc_fast_private *uccf;
1781 enum comm_dir comm_dir;
1782 struct list_head *p_lh;
1784 u32 __iomem *addr_h;
1785 u32 __iomem *addr_l;
1791 (struct ucc_geth_82xx_address_filtering_pram __iomem *)
1792 ugeth->p_rx_glbl_pram->addressfiltering;
1794 if (enet_addr_type == ENET_ADDR_TYPE_GROUP) {
1795 addr_h = &(p_82xx_addr_filt->gaddr_h);
1796 addr_l = &(p_82xx_addr_filt->gaddr_l);
1797 p_lh = &ugeth->group_hash_q;
1798 p_counter = &(ugeth->numGroupAddrInHash);
1799 } else if (enet_addr_type == ENET_ADDR_TYPE_INDIVIDUAL) {
1800 addr_h = &(p_82xx_addr_filt->iaddr_h);
1801 addr_l = &(p_82xx_addr_filt->iaddr_l);
1802 p_lh = &ugeth->ind_hash_q;
1803 p_counter = &(ugeth->numIndAddrInHash);
1808 if (uccf->enabled_tx)
1809 comm_dir |= COMM_DIR_TX;
1810 if (uccf->enabled_rx)
1811 comm_dir |= COMM_DIR_RX;
1813 ugeth_disable(ugeth, comm_dir);
1815 /* Clear the hash table. */
1816 out_be32(addr_h, 0x00000000);
1817 out_be32(addr_l, 0x00000000);
1824 /* Delete all remaining CQ elements */
1825 for (i = 0; i < num; i++)
1826 put_enet_addr_container(ENET_ADDR_CONT_ENTRY(dequeue(p_lh)));
1831 ugeth_enable(ugeth, comm_dir);
1836 static int ugeth_82xx_filtering_clear_addr_in_paddr(struct ucc_geth_private *ugeth,
1839 ugeth->indAddrRegUsed[paddr_num] = 0; /* mark this paddr as not used */
1840 return hw_clear_addr_in_paddr(ugeth, paddr_num);/* clear in hardware */
1843 static void ucc_geth_memclean(struct ucc_geth_private *ugeth)
1852 ucc_fast_free(ugeth->uccf);
1856 if (ugeth->p_thread_data_tx) {
1857 qe_muram_free(ugeth->thread_dat_tx_offset);
1858 ugeth->p_thread_data_tx = NULL;
1860 if (ugeth->p_thread_data_rx) {
1861 qe_muram_free(ugeth->thread_dat_rx_offset);
1862 ugeth->p_thread_data_rx = NULL;
1864 if (ugeth->p_exf_glbl_param) {
1865 qe_muram_free(ugeth->exf_glbl_param_offset);
1866 ugeth->p_exf_glbl_param = NULL;
1868 if (ugeth->p_rx_glbl_pram) {
1869 qe_muram_free(ugeth->rx_glbl_pram_offset);
1870 ugeth->p_rx_glbl_pram = NULL;
1872 if (ugeth->p_tx_glbl_pram) {
1873 qe_muram_free(ugeth->tx_glbl_pram_offset);
1874 ugeth->p_tx_glbl_pram = NULL;
1876 if (ugeth->p_send_q_mem_reg) {
1877 qe_muram_free(ugeth->send_q_mem_reg_offset);
1878 ugeth->p_send_q_mem_reg = NULL;
1880 if (ugeth->p_scheduler) {
1881 qe_muram_free(ugeth->scheduler_offset);
1882 ugeth->p_scheduler = NULL;
1884 if (ugeth->p_tx_fw_statistics_pram) {
1885 qe_muram_free(ugeth->tx_fw_statistics_pram_offset);
1886 ugeth->p_tx_fw_statistics_pram = NULL;
1888 if (ugeth->p_rx_fw_statistics_pram) {
1889 qe_muram_free(ugeth->rx_fw_statistics_pram_offset);
1890 ugeth->p_rx_fw_statistics_pram = NULL;
1892 if (ugeth->p_rx_irq_coalescing_tbl) {
1893 qe_muram_free(ugeth->rx_irq_coalescing_tbl_offset);
1894 ugeth->p_rx_irq_coalescing_tbl = NULL;
1896 if (ugeth->p_rx_bd_qs_tbl) {
1897 qe_muram_free(ugeth->rx_bd_qs_tbl_offset);
1898 ugeth->p_rx_bd_qs_tbl = NULL;
1900 if (ugeth->p_init_enet_param_shadow) {
1901 return_init_enet_entries(ugeth,
1902 &(ugeth->p_init_enet_param_shadow->
1904 ENET_INIT_PARAM_MAX_ENTRIES_RX,
1905 ugeth->ug_info->riscRx, 1);
1906 return_init_enet_entries(ugeth,
1907 &(ugeth->p_init_enet_param_shadow->
1909 ENET_INIT_PARAM_MAX_ENTRIES_TX,
1910 ugeth->ug_info->riscTx, 0);
1911 kfree(ugeth->p_init_enet_param_shadow);
1912 ugeth->p_init_enet_param_shadow = NULL;
1914 for (i = 0; i < ugeth->ug_info->numQueuesTx; i++) {
1915 bd = ugeth->p_tx_bd_ring[i];
1918 for (j = 0; j < ugeth->ug_info->bdRingLenTx[i]; j++) {
1919 if (ugeth->tx_skbuff[i][j]) {
1920 dma_unmap_single(ugeth->dev,
1921 in_be32(&((struct qe_bd __iomem *)bd)->buf),
1922 (in_be32((u32 __iomem *)bd) &
1925 dev_kfree_skb_any(ugeth->tx_skbuff[i][j]);
1926 ugeth->tx_skbuff[i][j] = NULL;
1930 kfree(ugeth->tx_skbuff[i]);
1932 if (ugeth->p_tx_bd_ring[i]) {
1933 if (ugeth->ug_info->uf_info.bd_mem_part ==
1935 kfree((void *)ugeth->tx_bd_ring_offset[i]);
1936 else if (ugeth->ug_info->uf_info.bd_mem_part ==
1938 qe_muram_free(ugeth->tx_bd_ring_offset[i]);
1939 ugeth->p_tx_bd_ring[i] = NULL;
1942 for (i = 0; i < ugeth->ug_info->numQueuesRx; i++) {
1943 if (ugeth->p_rx_bd_ring[i]) {
1944 /* Return existing data buffers in ring */
1945 bd = ugeth->p_rx_bd_ring[i];
1946 for (j = 0; j < ugeth->ug_info->bdRingLenRx[i]; j++) {
1947 if (ugeth->rx_skbuff[i][j]) {
1948 dma_unmap_single(ugeth->dev,
1949 in_be32(&((struct qe_bd __iomem *)bd)->buf),
1951 uf_info.max_rx_buf_length +
1952 UCC_GETH_RX_DATA_BUF_ALIGNMENT,
1955 ugeth->rx_skbuff[i][j]);
1956 ugeth->rx_skbuff[i][j] = NULL;
1958 bd += sizeof(struct qe_bd);
1961 kfree(ugeth->rx_skbuff[i]);
1963 if (ugeth->ug_info->uf_info.bd_mem_part ==
1965 kfree((void *)ugeth->rx_bd_ring_offset[i]);
1966 else if (ugeth->ug_info->uf_info.bd_mem_part ==
1968 qe_muram_free(ugeth->rx_bd_ring_offset[i]);
1969 ugeth->p_rx_bd_ring[i] = NULL;
1972 while (!list_empty(&ugeth->group_hash_q))
1973 put_enet_addr_container(ENET_ADDR_CONT_ENTRY
1974 (dequeue(&ugeth->group_hash_q)));
1975 while (!list_empty(&ugeth->ind_hash_q))
1976 put_enet_addr_container(ENET_ADDR_CONT_ENTRY
1977 (dequeue(&ugeth->ind_hash_q)));
1978 if (ugeth->ug_regs) {
1979 iounmap(ugeth->ug_regs);
1980 ugeth->ug_regs = NULL;
1984 static void ucc_geth_set_multi(struct net_device *dev)
1986 struct ucc_geth_private *ugeth;
1987 struct dev_mc_list *dmi;
1988 struct ucc_fast __iomem *uf_regs;
1989 struct ucc_geth_82xx_address_filtering_pram __iomem *p_82xx_addr_filt;
1992 ugeth = netdev_priv(dev);
1994 uf_regs = ugeth->uccf->uf_regs;
1996 if (dev->flags & IFF_PROMISC) {
1997 setbits32(&uf_regs->upsmr, UCC_GETH_UPSMR_PRO);
1999 clrbits32(&uf_regs->upsmr, UCC_GETH_UPSMR_PRO);
2002 (struct ucc_geth_82xx_address_filtering_pram __iomem *) ugeth->
2003 p_rx_glbl_pram->addressfiltering;
2005 if (dev->flags & IFF_ALLMULTI) {
2006 /* Catch all multicast addresses, so set the
2007 * filter to all 1's.
2009 out_be32(&p_82xx_addr_filt->gaddr_h, 0xffffffff);
2010 out_be32(&p_82xx_addr_filt->gaddr_l, 0xffffffff);
2012 /* Clear filter and add the addresses in the list.
2014 out_be32(&p_82xx_addr_filt->gaddr_h, 0x0);
2015 out_be32(&p_82xx_addr_filt->gaddr_l, 0x0);
2019 for (i = 0; i < dev->mc_count; i++, dmi = dmi->next) {
2021 /* Only support group multicast for now.
2023 if (!(dmi->dmi_addr[0] & 1))
2026 /* Ask CPM to run CRC and set bit in
2029 hw_add_addr_in_hash(ugeth, dmi->dmi_addr);
2035 static void ucc_geth_stop(struct ucc_geth_private *ugeth)
2037 struct ucc_geth __iomem *ug_regs = ugeth->ug_regs;
2038 struct phy_device *phydev = ugeth->phydev;
2040 ugeth_vdbg("%s: IN", __func__);
2042 /* Disable the controller */
2043 ugeth_disable(ugeth, COMM_DIR_RX_AND_TX);
2045 /* Tell the kernel the link is down */
2048 /* Mask all interrupts */
2049 out_be32(ugeth->uccf->p_uccm, 0x00000000);
2051 /* Clear all interrupts */
2052 out_be32(ugeth->uccf->p_ucce, 0xffffffff);
2054 /* Disable Rx and Tx */
2055 clrbits32(&ug_regs->maccfg1, MACCFG1_ENABLE_RX | MACCFG1_ENABLE_TX);
2057 phy_disconnect(ugeth->phydev);
2058 ugeth->phydev = NULL;
2060 ucc_geth_memclean(ugeth);
2063 static int ucc_struct_init(struct ucc_geth_private *ugeth)
2065 struct ucc_geth_info *ug_info;
2066 struct ucc_fast_info *uf_info;
2069 ug_info = ugeth->ug_info;
2070 uf_info = &ug_info->uf_info;
2072 if (!((uf_info->bd_mem_part == MEM_PART_SYSTEM) ||
2073 (uf_info->bd_mem_part == MEM_PART_MURAM))) {
2074 if (netif_msg_probe(ugeth))
2075 ugeth_err("%s: Bad memory partition value.",
2081 for (i = 0; i < ug_info->numQueuesRx; i++) {
2082 if ((ug_info->bdRingLenRx[i] < UCC_GETH_RX_BD_RING_SIZE_MIN) ||
2083 (ug_info->bdRingLenRx[i] %
2084 UCC_GETH_RX_BD_RING_SIZE_ALIGNMENT)) {
2085 if (netif_msg_probe(ugeth))
2087 ("%s: Rx BD ring length must be multiple of 4, no smaller than 8.",
2094 for (i = 0; i < ug_info->numQueuesTx; i++) {
2095 if (ug_info->bdRingLenTx[i] < UCC_GETH_TX_BD_RING_SIZE_MIN) {
2096 if (netif_msg_probe(ugeth))
2098 ("%s: Tx BD ring length must be no smaller than 2.",
2105 if ((uf_info->max_rx_buf_length == 0) ||
2106 (uf_info->max_rx_buf_length % UCC_GETH_MRBLR_ALIGNMENT)) {
2107 if (netif_msg_probe(ugeth))
2109 ("%s: max_rx_buf_length must be non-zero multiple of 128.",
2115 if (ug_info->numQueuesTx > NUM_TX_QUEUES) {
2116 if (netif_msg_probe(ugeth))
2117 ugeth_err("%s: number of tx queues too large.", __func__);
2122 if (ug_info->numQueuesRx > NUM_RX_QUEUES) {
2123 if (netif_msg_probe(ugeth))
2124 ugeth_err("%s: number of rx queues too large.", __func__);
2129 for (i = 0; i < UCC_GETH_VLAN_PRIORITY_MAX; i++) {
2130 if (ug_info->l2qt[i] >= ug_info->numQueuesRx) {
2131 if (netif_msg_probe(ugeth))
2133 ("%s: VLAN priority table entry must not be"
2134 " larger than number of Rx queues.",
2141 for (i = 0; i < UCC_GETH_IP_PRIORITY_MAX; i++) {
2142 if (ug_info->l3qt[i] >= ug_info->numQueuesRx) {
2143 if (netif_msg_probe(ugeth))
2145 ("%s: IP priority table entry must not be"
2146 " larger than number of Rx queues.",
2152 if (ug_info->cam && !ug_info->ecamptr) {
2153 if (netif_msg_probe(ugeth))
2154 ugeth_err("%s: If cam mode is chosen, must supply cam ptr.",
2159 if ((ug_info->numStationAddresses !=
2160 UCC_GETH_NUM_OF_STATION_ADDRESSES_1)
2161 && ug_info->rxExtendedFiltering) {
2162 if (netif_msg_probe(ugeth))
2163 ugeth_err("%s: Number of station addresses greater than 1 "
2164 "not allowed in extended parsing mode.",
2169 /* Generate uccm_mask for receive */
2170 uf_info->uccm_mask = ug_info->eventRegMask & UCCE_OTHER;/* Errors */
2171 for (i = 0; i < ug_info->numQueuesRx; i++)
2172 uf_info->uccm_mask |= (UCC_GETH_UCCE_RXF0 << i);
2174 for (i = 0; i < ug_info->numQueuesTx; i++)
2175 uf_info->uccm_mask |= (UCC_GETH_UCCE_TXB0 << i);
2176 /* Initialize the general fast UCC block. */
2177 if (ucc_fast_init(uf_info, &ugeth->uccf)) {
2178 if (netif_msg_probe(ugeth))
2179 ugeth_err("%s: Failed to init uccf.", __func__);
2183 /* read the number of risc engines, update the riscTx and riscRx
2184 * if there are 4 riscs in QE
2186 if (qe_get_num_of_risc() == 4) {
2187 ug_info->riscTx = QE_RISC_ALLOCATION_FOUR_RISCS;
2188 ug_info->riscRx = QE_RISC_ALLOCATION_FOUR_RISCS;
2191 ugeth->ug_regs = ioremap(uf_info->regs, sizeof(*ugeth->ug_regs));
2192 if (!ugeth->ug_regs) {
2193 if (netif_msg_probe(ugeth))
2194 ugeth_err("%s: Failed to ioremap regs.", __func__);
2201 static int ucc_geth_startup(struct ucc_geth_private *ugeth)
2203 struct ucc_geth_82xx_address_filtering_pram __iomem *p_82xx_addr_filt;
2204 struct ucc_geth_init_pram __iomem *p_init_enet_pram;
2205 struct ucc_fast_private *uccf;
2206 struct ucc_geth_info *ug_info;
2207 struct ucc_fast_info *uf_info;
2208 struct ucc_fast __iomem *uf_regs;
2209 struct ucc_geth __iomem *ug_regs;
2210 int ret_val = -EINVAL;
2211 u32 remoder = UCC_GETH_REMODER_INIT;
2212 u32 init_enet_pram_offset, cecr_subblock, command;
2213 u32 ifstat, i, j, size, l2qt, l3qt, length;
2214 u16 temoder = UCC_GETH_TEMODER_INIT;
2216 u8 function_code = 0;
2218 u8 __iomem *endOfRing;
2219 u8 numThreadsRxNumerical, numThreadsTxNumerical;
2221 ugeth_vdbg("%s: IN", __func__);
2223 ug_info = ugeth->ug_info;
2224 uf_info = &ug_info->uf_info;
2225 uf_regs = uccf->uf_regs;
2226 ug_regs = ugeth->ug_regs;
2228 switch (ug_info->numThreadsRx) {
2229 case UCC_GETH_NUM_OF_THREADS_1:
2230 numThreadsRxNumerical = 1;
2232 case UCC_GETH_NUM_OF_THREADS_2:
2233 numThreadsRxNumerical = 2;
2235 case UCC_GETH_NUM_OF_THREADS_4:
2236 numThreadsRxNumerical = 4;
2238 case UCC_GETH_NUM_OF_THREADS_6:
2239 numThreadsRxNumerical = 6;
2241 case UCC_GETH_NUM_OF_THREADS_8:
2242 numThreadsRxNumerical = 8;
2245 if (netif_msg_ifup(ugeth))
2246 ugeth_err("%s: Bad number of Rx threads value.",
2252 switch (ug_info->numThreadsTx) {
2253 case UCC_GETH_NUM_OF_THREADS_1:
2254 numThreadsTxNumerical = 1;
2256 case UCC_GETH_NUM_OF_THREADS_2:
2257 numThreadsTxNumerical = 2;
2259 case UCC_GETH_NUM_OF_THREADS_4:
2260 numThreadsTxNumerical = 4;
2262 case UCC_GETH_NUM_OF_THREADS_6:
2263 numThreadsTxNumerical = 6;
2265 case UCC_GETH_NUM_OF_THREADS_8:
2266 numThreadsTxNumerical = 8;
2269 if (netif_msg_ifup(ugeth))
2270 ugeth_err("%s: Bad number of Tx threads value.",
2276 /* Calculate rx_extended_features */
2277 ugeth->rx_non_dynamic_extended_features = ug_info->ipCheckSumCheck ||
2278 ug_info->ipAddressAlignment ||
2279 (ug_info->numStationAddresses !=
2280 UCC_GETH_NUM_OF_STATION_ADDRESSES_1);
2282 ugeth->rx_extended_features = ugeth->rx_non_dynamic_extended_features ||
2283 (ug_info->vlanOperationTagged != UCC_GETH_VLAN_OPERATION_TAGGED_NOP)
2284 || (ug_info->vlanOperationNonTagged !=
2285 UCC_GETH_VLAN_OPERATION_NON_TAGGED_NOP);
2287 init_default_reg_vals(&uf_regs->upsmr,
2288 &ug_regs->maccfg1, &ug_regs->maccfg2);
2291 /* For more details see the hardware spec. */
2292 init_rx_parameters(ug_info->bro,
2293 ug_info->rsh, ug_info->pro, &uf_regs->upsmr);
2295 /* We're going to ignore other registers for now, */
2296 /* except as needed to get up and running */
2299 /* For more details see the hardware spec. */
2300 init_flow_control_params(ug_info->aufc,
2301 ug_info->receiveFlowControl,
2302 ug_info->transmitFlowControl,
2303 ug_info->pausePeriod,
2304 ug_info->extensionField,
2306 &ug_regs->uempr, &ug_regs->maccfg1);
2308 setbits32(&ug_regs->maccfg1, MACCFG1_ENABLE_RX | MACCFG1_ENABLE_TX);
2311 /* For more details see the hardware spec. */
2312 ret_val = init_inter_frame_gap_params(ug_info->nonBackToBackIfgPart1,
2313 ug_info->nonBackToBackIfgPart2,
2315 miminumInterFrameGapEnforcement,
2316 ug_info->backToBackInterFrameGap,
2319 if (netif_msg_ifup(ugeth))
2320 ugeth_err("%s: IPGIFG initialization parameter too large.",
2326 /* For more details see the hardware spec. */
2327 ret_val = init_half_duplex_params(ug_info->altBeb,
2328 ug_info->backPressureNoBackoff,
2330 ug_info->excessDefer,
2331 ug_info->altBebTruncation,
2332 ug_info->maxRetransmission,
2333 ug_info->collisionWindow,
2336 if (netif_msg_ifup(ugeth))
2337 ugeth_err("%s: Half Duplex initialization parameter too large.",
2343 /* For more details see the hardware spec. */
2344 /* Read only - resets upon read */
2345 ifstat = in_be32(&ug_regs->ifstat);
2348 /* For more details see the hardware spec. */
2349 out_be32(&ug_regs->uempr, 0);
2352 /* For more details see the hardware spec. */
2353 init_hw_statistics_gathering_mode((ug_info->statisticsMode &
2354 UCC_GETH_STATISTICS_GATHERING_MODE_HARDWARE),
2355 0, &uf_regs->upsmr, &ug_regs->uescr);
2357 /* Allocate Tx bds */
2358 for (j = 0; j < ug_info->numQueuesTx; j++) {
2359 /* Allocate in multiple of
2360 UCC_GETH_TX_BD_RING_SIZE_MEMORY_ALIGNMENT,
2361 according to spec */
2362 length = ((ug_info->bdRingLenTx[j] * sizeof(struct qe_bd))
2363 / UCC_GETH_TX_BD_RING_SIZE_MEMORY_ALIGNMENT)
2364 * UCC_GETH_TX_BD_RING_SIZE_MEMORY_ALIGNMENT;
2365 if ((ug_info->bdRingLenTx[j] * sizeof(struct qe_bd)) %
2366 UCC_GETH_TX_BD_RING_SIZE_MEMORY_ALIGNMENT)
2367 length += UCC_GETH_TX_BD_RING_SIZE_MEMORY_ALIGNMENT;
2368 if (uf_info->bd_mem_part == MEM_PART_SYSTEM) {
2370 if (UCC_GETH_TX_BD_RING_ALIGNMENT > 4)
2371 align = UCC_GETH_TX_BD_RING_ALIGNMENT;
2372 ugeth->tx_bd_ring_offset[j] =
2373 (u32) kmalloc((u32) (length + align), GFP_KERNEL);
2375 if (ugeth->tx_bd_ring_offset[j] != 0)
2376 ugeth->p_tx_bd_ring[j] =
2377 (u8 __iomem *)((ugeth->tx_bd_ring_offset[j] +
2378 align) & ~(align - 1));
2379 } else if (uf_info->bd_mem_part == MEM_PART_MURAM) {
2380 ugeth->tx_bd_ring_offset[j] =
2381 qe_muram_alloc(length,
2382 UCC_GETH_TX_BD_RING_ALIGNMENT);
2383 if (!IS_ERR_VALUE(ugeth->tx_bd_ring_offset[j]))
2384 ugeth->p_tx_bd_ring[j] =
2385 (u8 __iomem *) qe_muram_addr(ugeth->
2386 tx_bd_ring_offset[j]);
2388 if (!ugeth->p_tx_bd_ring[j]) {
2389 if (netif_msg_ifup(ugeth))
2391 ("%s: Can not allocate memory for Tx bd rings.",
2395 /* Zero unused end of bd ring, according to spec */
2396 memset_io((void __iomem *)(ugeth->p_tx_bd_ring[j] +
2397 ug_info->bdRingLenTx[j] * sizeof(struct qe_bd)), 0,
2398 length - ug_info->bdRingLenTx[j] * sizeof(struct qe_bd));
2401 /* Allocate Rx bds */
2402 for (j = 0; j < ug_info->numQueuesRx; j++) {
2403 length = ug_info->bdRingLenRx[j] * sizeof(struct qe_bd);
2404 if (uf_info->bd_mem_part == MEM_PART_SYSTEM) {
2406 if (UCC_GETH_RX_BD_RING_ALIGNMENT > 4)
2407 align = UCC_GETH_RX_BD_RING_ALIGNMENT;
2408 ugeth->rx_bd_ring_offset[j] =
2409 (u32) kmalloc((u32) (length + align), GFP_KERNEL);
2410 if (ugeth->rx_bd_ring_offset[j] != 0)
2411 ugeth->p_rx_bd_ring[j] =
2412 (u8 __iomem *)((ugeth->rx_bd_ring_offset[j] +
2413 align) & ~(align - 1));
2414 } else if (uf_info->bd_mem_part == MEM_PART_MURAM) {
2415 ugeth->rx_bd_ring_offset[j] =
2416 qe_muram_alloc(length,
2417 UCC_GETH_RX_BD_RING_ALIGNMENT);
2418 if (!IS_ERR_VALUE(ugeth->rx_bd_ring_offset[j]))
2419 ugeth->p_rx_bd_ring[j] =
2420 (u8 __iomem *) qe_muram_addr(ugeth->
2421 rx_bd_ring_offset[j]);
2423 if (!ugeth->p_rx_bd_ring[j]) {
2424 if (netif_msg_ifup(ugeth))
2426 ("%s: Can not allocate memory for Rx bd rings.",
2433 for (j = 0; j < ug_info->numQueuesTx; j++) {
2434 /* Setup the skbuff rings */
2435 ugeth->tx_skbuff[j] = kmalloc(sizeof(struct sk_buff *) *
2436 ugeth->ug_info->bdRingLenTx[j],
2439 if (ugeth->tx_skbuff[j] == NULL) {
2440 if (netif_msg_ifup(ugeth))
2441 ugeth_err("%s: Could not allocate tx_skbuff",
2446 for (i = 0; i < ugeth->ug_info->bdRingLenTx[j]; i++)
2447 ugeth->tx_skbuff[j][i] = NULL;
2449 ugeth->skb_curtx[j] = ugeth->skb_dirtytx[j] = 0;
2450 bd = ugeth->confBd[j] = ugeth->txBd[j] = ugeth->p_tx_bd_ring[j];
2451 for (i = 0; i < ug_info->bdRingLenTx[j]; i++) {
2452 /* clear bd buffer */
2453 out_be32(&((struct qe_bd __iomem *)bd)->buf, 0);
2454 /* set bd status and length */
2455 out_be32((u32 __iomem *)bd, 0);
2456 bd += sizeof(struct qe_bd);
2458 bd -= sizeof(struct qe_bd);
2459 /* set bd status and length */
2460 out_be32((u32 __iomem *)bd, T_W); /* for last BD set Wrap bit */
2464 for (j = 0; j < ug_info->numQueuesRx; j++) {
2465 /* Setup the skbuff rings */
2466 ugeth->rx_skbuff[j] = kmalloc(sizeof(struct sk_buff *) *
2467 ugeth->ug_info->bdRingLenRx[j],
2470 if (ugeth->rx_skbuff[j] == NULL) {
2471 if (netif_msg_ifup(ugeth))
2472 ugeth_err("%s: Could not allocate rx_skbuff",
2477 for (i = 0; i < ugeth->ug_info->bdRingLenRx[j]; i++)
2478 ugeth->rx_skbuff[j][i] = NULL;
2480 ugeth->skb_currx[j] = 0;
2481 bd = ugeth->rxBd[j] = ugeth->p_rx_bd_ring[j];
2482 for (i = 0; i < ug_info->bdRingLenRx[j]; i++) {
2483 /* set bd status and length */
2484 out_be32((u32 __iomem *)bd, R_I);
2485 /* clear bd buffer */
2486 out_be32(&((struct qe_bd __iomem *)bd)->buf, 0);
2487 bd += sizeof(struct qe_bd);
2489 bd -= sizeof(struct qe_bd);
2490 /* set bd status and length */
2491 out_be32((u32 __iomem *)bd, R_W); /* for last BD set Wrap bit */
2497 /* Tx global PRAM */
2498 /* Allocate global tx parameter RAM page */
2499 ugeth->tx_glbl_pram_offset =
2500 qe_muram_alloc(sizeof(struct ucc_geth_tx_global_pram),
2501 UCC_GETH_TX_GLOBAL_PRAM_ALIGNMENT);
2502 if (IS_ERR_VALUE(ugeth->tx_glbl_pram_offset)) {
2503 if (netif_msg_ifup(ugeth))
2505 ("%s: Can not allocate DPRAM memory for p_tx_glbl_pram.",
2509 ugeth->p_tx_glbl_pram =
2510 (struct ucc_geth_tx_global_pram __iomem *) qe_muram_addr(ugeth->
2511 tx_glbl_pram_offset);
2512 /* Zero out p_tx_glbl_pram */
2513 memset_io((void __iomem *)ugeth->p_tx_glbl_pram, 0, sizeof(struct ucc_geth_tx_global_pram));
2515 /* Fill global PRAM */
2518 /* Size varies with number of Tx threads */
2519 ugeth->thread_dat_tx_offset =
2520 qe_muram_alloc(numThreadsTxNumerical *
2521 sizeof(struct ucc_geth_thread_data_tx) +
2522 32 * (numThreadsTxNumerical == 1),
2523 UCC_GETH_THREAD_DATA_ALIGNMENT);
2524 if (IS_ERR_VALUE(ugeth->thread_dat_tx_offset)) {
2525 if (netif_msg_ifup(ugeth))
2527 ("%s: Can not allocate DPRAM memory for p_thread_data_tx.",
2532 ugeth->p_thread_data_tx =
2533 (struct ucc_geth_thread_data_tx __iomem *) qe_muram_addr(ugeth->
2534 thread_dat_tx_offset);
2535 out_be32(&ugeth->p_tx_glbl_pram->tqptr, ugeth->thread_dat_tx_offset);
2538 for (i = 0; i < UCC_GETH_TX_VTAG_TABLE_ENTRY_MAX; i++)
2539 out_be32(&ugeth->p_tx_glbl_pram->vtagtable[i],
2540 ug_info->vtagtable[i]);
2543 for (i = 0; i < TX_IP_OFFSET_ENTRY_MAX; i++)
2544 out_8(&ugeth->p_tx_glbl_pram->iphoffset[i],
2545 ug_info->iphoffset[i]);
2548 /* Size varies with number of Tx queues */
2549 ugeth->send_q_mem_reg_offset =
2550 qe_muram_alloc(ug_info->numQueuesTx *
2551 sizeof(struct ucc_geth_send_queue_qd),
2552 UCC_GETH_SEND_QUEUE_QUEUE_DESCRIPTOR_ALIGNMENT);
2553 if (IS_ERR_VALUE(ugeth->send_q_mem_reg_offset)) {
2554 if (netif_msg_ifup(ugeth))
2556 ("%s: Can not allocate DPRAM memory for p_send_q_mem_reg.",
2561 ugeth->p_send_q_mem_reg =
2562 (struct ucc_geth_send_queue_mem_region __iomem *) qe_muram_addr(ugeth->
2563 send_q_mem_reg_offset);
2564 out_be32(&ugeth->p_tx_glbl_pram->sqptr, ugeth->send_q_mem_reg_offset);
2566 /* Setup the table */
2567 /* Assume BD rings are already established */
2568 for (i = 0; i < ug_info->numQueuesTx; i++) {
2570 ugeth->p_tx_bd_ring[i] + (ug_info->bdRingLenTx[i] -
2571 1) * sizeof(struct qe_bd);
2572 if (ugeth->ug_info->uf_info.bd_mem_part == MEM_PART_SYSTEM) {
2573 out_be32(&ugeth->p_send_q_mem_reg->sqqd[i].bd_ring_base,
2574 (u32) virt_to_phys(ugeth->p_tx_bd_ring[i]));
2575 out_be32(&ugeth->p_send_q_mem_reg->sqqd[i].
2576 last_bd_completed_address,
2577 (u32) virt_to_phys(endOfRing));
2578 } else if (ugeth->ug_info->uf_info.bd_mem_part ==
2580 out_be32(&ugeth->p_send_q_mem_reg->sqqd[i].bd_ring_base,
2581 (u32) immrbar_virt_to_phys(ugeth->
2583 out_be32(&ugeth->p_send_q_mem_reg->sqqd[i].
2584 last_bd_completed_address,
2585 (u32) immrbar_virt_to_phys(endOfRing));
2589 /* schedulerbasepointer */
2591 if (ug_info->numQueuesTx > 1) {
2592 /* scheduler exists only if more than 1 tx queue */
2593 ugeth->scheduler_offset =
2594 qe_muram_alloc(sizeof(struct ucc_geth_scheduler),
2595 UCC_GETH_SCHEDULER_ALIGNMENT);
2596 if (IS_ERR_VALUE(ugeth->scheduler_offset)) {
2597 if (netif_msg_ifup(ugeth))
2599 ("%s: Can not allocate DPRAM memory for p_scheduler.",
2604 ugeth->p_scheduler =
2605 (struct ucc_geth_scheduler __iomem *) qe_muram_addr(ugeth->
2607 out_be32(&ugeth->p_tx_glbl_pram->schedulerbasepointer,
2608 ugeth->scheduler_offset);
2609 /* Zero out p_scheduler */
2610 memset_io((void __iomem *)ugeth->p_scheduler, 0, sizeof(struct ucc_geth_scheduler));
2612 /* Set values in scheduler */
2613 out_be32(&ugeth->p_scheduler->mblinterval,
2614 ug_info->mblinterval);
2615 out_be16(&ugeth->p_scheduler->nortsrbytetime,
2616 ug_info->nortsrbytetime);
2617 out_8(&ugeth->p_scheduler->fracsiz, ug_info->fracsiz);
2618 out_8(&ugeth->p_scheduler->strictpriorityq,
2619 ug_info->strictpriorityq);
2620 out_8(&ugeth->p_scheduler->txasap, ug_info->txasap);
2621 out_8(&ugeth->p_scheduler->extrabw, ug_info->extrabw);
2622 for (i = 0; i < NUM_TX_QUEUES; i++)
2623 out_8(&ugeth->p_scheduler->weightfactor[i],
2624 ug_info->weightfactor[i]);
2626 /* Set pointers to cpucount registers in scheduler */
2627 ugeth->p_cpucount[0] = &(ugeth->p_scheduler->cpucount0);
2628 ugeth->p_cpucount[1] = &(ugeth->p_scheduler->cpucount1);
2629 ugeth->p_cpucount[2] = &(ugeth->p_scheduler->cpucount2);
2630 ugeth->p_cpucount[3] = &(ugeth->p_scheduler->cpucount3);
2631 ugeth->p_cpucount[4] = &(ugeth->p_scheduler->cpucount4);
2632 ugeth->p_cpucount[5] = &(ugeth->p_scheduler->cpucount5);
2633 ugeth->p_cpucount[6] = &(ugeth->p_scheduler->cpucount6);
2634 ugeth->p_cpucount[7] = &(ugeth->p_scheduler->cpucount7);
2637 /* schedulerbasepointer */
2638 /* TxRMON_PTR (statistics) */
2640 statisticsMode & UCC_GETH_STATISTICS_GATHERING_MODE_FIRMWARE_TX) {
2641 ugeth->tx_fw_statistics_pram_offset =
2642 qe_muram_alloc(sizeof
2643 (struct ucc_geth_tx_firmware_statistics_pram),
2644 UCC_GETH_TX_STATISTICS_ALIGNMENT);
2645 if (IS_ERR_VALUE(ugeth->tx_fw_statistics_pram_offset)) {
2646 if (netif_msg_ifup(ugeth))
2648 ("%s: Can not allocate DPRAM memory for"
2649 " p_tx_fw_statistics_pram.",
2653 ugeth->p_tx_fw_statistics_pram =
2654 (struct ucc_geth_tx_firmware_statistics_pram __iomem *)
2655 qe_muram_addr(ugeth->tx_fw_statistics_pram_offset);
2656 /* Zero out p_tx_fw_statistics_pram */
2657 memset_io((void __iomem *)ugeth->p_tx_fw_statistics_pram,
2658 0, sizeof(struct ucc_geth_tx_firmware_statistics_pram));
2662 /* Already has speed set */
2664 if (ug_info->numQueuesTx > 1)
2665 temoder |= TEMODER_SCHEDULER_ENABLE;
2666 if (ug_info->ipCheckSumGenerate)
2667 temoder |= TEMODER_IP_CHECKSUM_GENERATE;
2668 temoder |= ((ug_info->numQueuesTx - 1) << TEMODER_NUM_OF_QUEUES_SHIFT);
2669 out_be16(&ugeth->p_tx_glbl_pram->temoder, temoder);
2671 test = in_be16(&ugeth->p_tx_glbl_pram->temoder);
2673 /* Function code register value to be used later */
2674 function_code = UCC_BMR_BO_BE | UCC_BMR_GBL;
2675 /* Required for QE */
2677 /* function code register */
2678 out_be32(&ugeth->p_tx_glbl_pram->tstate, ((u32) function_code) << 24);
2680 /* Rx global PRAM */
2681 /* Allocate global rx parameter RAM page */
2682 ugeth->rx_glbl_pram_offset =
2683 qe_muram_alloc(sizeof(struct ucc_geth_rx_global_pram),
2684 UCC_GETH_RX_GLOBAL_PRAM_ALIGNMENT);
2685 if (IS_ERR_VALUE(ugeth->rx_glbl_pram_offset)) {
2686 if (netif_msg_ifup(ugeth))
2688 ("%s: Can not allocate DPRAM memory for p_rx_glbl_pram.",
2692 ugeth->p_rx_glbl_pram =
2693 (struct ucc_geth_rx_global_pram __iomem *) qe_muram_addr(ugeth->
2694 rx_glbl_pram_offset);
2695 /* Zero out p_rx_glbl_pram */
2696 memset_io((void __iomem *)ugeth->p_rx_glbl_pram, 0, sizeof(struct ucc_geth_rx_global_pram));
2698 /* Fill global PRAM */
2701 /* Size varies with number of Rx threads */
2702 ugeth->thread_dat_rx_offset =
2703 qe_muram_alloc(numThreadsRxNumerical *
2704 sizeof(struct ucc_geth_thread_data_rx),
2705 UCC_GETH_THREAD_DATA_ALIGNMENT);
2706 if (IS_ERR_VALUE(ugeth->thread_dat_rx_offset)) {
2707 if (netif_msg_ifup(ugeth))
2709 ("%s: Can not allocate DPRAM memory for p_thread_data_rx.",
2714 ugeth->p_thread_data_rx =
2715 (struct ucc_geth_thread_data_rx __iomem *) qe_muram_addr(ugeth->
2716 thread_dat_rx_offset);
2717 out_be32(&ugeth->p_rx_glbl_pram->rqptr, ugeth->thread_dat_rx_offset);
2720 out_be16(&ugeth->p_rx_glbl_pram->typeorlen, ug_info->typeorlen);
2722 /* rxrmonbaseptr (statistics) */
2724 statisticsMode & UCC_GETH_STATISTICS_GATHERING_MODE_FIRMWARE_RX) {
2725 ugeth->rx_fw_statistics_pram_offset =
2726 qe_muram_alloc(sizeof
2727 (struct ucc_geth_rx_firmware_statistics_pram),
2728 UCC_GETH_RX_STATISTICS_ALIGNMENT);
2729 if (IS_ERR_VALUE(ugeth->rx_fw_statistics_pram_offset)) {
2730 if (netif_msg_ifup(ugeth))
2732 ("%s: Can not allocate DPRAM memory for"
2733 " p_rx_fw_statistics_pram.", __func__);
2736 ugeth->p_rx_fw_statistics_pram =
2737 (struct ucc_geth_rx_firmware_statistics_pram __iomem *)
2738 qe_muram_addr(ugeth->rx_fw_statistics_pram_offset);
2739 /* Zero out p_rx_fw_statistics_pram */
2740 memset_io((void __iomem *)ugeth->p_rx_fw_statistics_pram, 0,
2741 sizeof(struct ucc_geth_rx_firmware_statistics_pram));
2744 /* intCoalescingPtr */
2746 /* Size varies with number of Rx queues */
2747 ugeth->rx_irq_coalescing_tbl_offset =
2748 qe_muram_alloc(ug_info->numQueuesRx *
2749 sizeof(struct ucc_geth_rx_interrupt_coalescing_entry)
2750 + 4, UCC_GETH_RX_INTERRUPT_COALESCING_ALIGNMENT);
2751 if (IS_ERR_VALUE(ugeth->rx_irq_coalescing_tbl_offset)) {
2752 if (netif_msg_ifup(ugeth))
2754 ("%s: Can not allocate DPRAM memory for"
2755 " p_rx_irq_coalescing_tbl.", __func__);
2759 ugeth->p_rx_irq_coalescing_tbl =
2760 (struct ucc_geth_rx_interrupt_coalescing_table __iomem *)
2761 qe_muram_addr(ugeth->rx_irq_coalescing_tbl_offset);
2762 out_be32(&ugeth->p_rx_glbl_pram->intcoalescingptr,
2763 ugeth->rx_irq_coalescing_tbl_offset);
2765 /* Fill interrupt coalescing table */
2766 for (i = 0; i < ug_info->numQueuesRx; i++) {
2767 out_be32(&ugeth->p_rx_irq_coalescing_tbl->coalescingentry[i].
2768 interruptcoalescingmaxvalue,
2769 ug_info->interruptcoalescingmaxvalue[i]);
2770 out_be32(&ugeth->p_rx_irq_coalescing_tbl->coalescingentry[i].
2771 interruptcoalescingcounter,
2772 ug_info->interruptcoalescingmaxvalue[i]);
2776 init_max_rx_buff_len(uf_info->max_rx_buf_length,
2777 &ugeth->p_rx_glbl_pram->mrblr);
2779 out_be16(&ugeth->p_rx_glbl_pram->mflr, ug_info->maxFrameLength);
2781 init_min_frame_len(ug_info->minFrameLength,
2782 &ugeth->p_rx_glbl_pram->minflr,
2783 &ugeth->p_rx_glbl_pram->mrblr);
2785 out_be16(&ugeth->p_rx_glbl_pram->maxd1, ug_info->maxD1Length);
2787 out_be16(&ugeth->p_rx_glbl_pram->maxd2, ug_info->maxD2Length);
2791 for (i = 0; i < UCC_GETH_VLAN_PRIORITY_MAX; i++)
2792 l2qt |= (ug_info->l2qt[i] << (28 - 4 * i));
2793 out_be32(&ugeth->p_rx_glbl_pram->l2qt, l2qt);
2796 for (j = 0; j < UCC_GETH_IP_PRIORITY_MAX; j += 8) {
2798 for (i = 0; i < 8; i++)
2799 l3qt |= (ug_info->l3qt[j + i] << (28 - 4 * i));
2800 out_be32(&ugeth->p_rx_glbl_pram->l3qt[j/8], l3qt);
2804 out_be16(&ugeth->p_rx_glbl_pram->vlantype, ug_info->vlantype);
2807 out_be16(&ugeth->p_rx_glbl_pram->vlantci, ug_info->vlantci);
2810 out_be32(&ugeth->p_rx_glbl_pram->ecamptr, ug_info->ecamptr);
2813 /* Size varies with number of Rx queues */
2814 ugeth->rx_bd_qs_tbl_offset =
2815 qe_muram_alloc(ug_info->numQueuesRx *
2816 (sizeof(struct ucc_geth_rx_bd_queues_entry) +
2817 sizeof(struct ucc_geth_rx_prefetched_bds)),
2818 UCC_GETH_RX_BD_QUEUES_ALIGNMENT);
2819 if (IS_ERR_VALUE(ugeth->rx_bd_qs_tbl_offset)) {
2820 if (netif_msg_ifup(ugeth))
2822 ("%s: Can not allocate DPRAM memory for p_rx_bd_qs_tbl.",
2827 ugeth->p_rx_bd_qs_tbl =
2828 (struct ucc_geth_rx_bd_queues_entry __iomem *) qe_muram_addr(ugeth->
2829 rx_bd_qs_tbl_offset);
2830 out_be32(&ugeth->p_rx_glbl_pram->rbdqptr, ugeth->rx_bd_qs_tbl_offset);
2831 /* Zero out p_rx_bd_qs_tbl */
2832 memset_io((void __iomem *)ugeth->p_rx_bd_qs_tbl,
2834 ug_info->numQueuesRx * (sizeof(struct ucc_geth_rx_bd_queues_entry) +
2835 sizeof(struct ucc_geth_rx_prefetched_bds)));
2837 /* Setup the table */
2838 /* Assume BD rings are already established */
2839 for (i = 0; i < ug_info->numQueuesRx; i++) {
2840 if (ugeth->ug_info->uf_info.bd_mem_part == MEM_PART_SYSTEM) {
2841 out_be32(&ugeth->p_rx_bd_qs_tbl[i].externalbdbaseptr,
2842 (u32) virt_to_phys(ugeth->p_rx_bd_ring[i]));
2843 } else if (ugeth->ug_info->uf_info.bd_mem_part ==
2845 out_be32(&ugeth->p_rx_bd_qs_tbl[i].externalbdbaseptr,
2846 (u32) immrbar_virt_to_phys(ugeth->
2849 /* rest of fields handled by QE */
2853 /* Already has speed set */
2855 if (ugeth->rx_extended_features)
2856 remoder |= REMODER_RX_EXTENDED_FEATURES;
2857 if (ug_info->rxExtendedFiltering)
2858 remoder |= REMODER_RX_EXTENDED_FILTERING;
2859 if (ug_info->dynamicMaxFrameLength)
2860 remoder |= REMODER_DYNAMIC_MAX_FRAME_LENGTH;
2861 if (ug_info->dynamicMinFrameLength)
2862 remoder |= REMODER_DYNAMIC_MIN_FRAME_LENGTH;
2864 ug_info->vlanOperationTagged << REMODER_VLAN_OPERATION_TAGGED_SHIFT;
2867 vlanOperationNonTagged << REMODER_VLAN_OPERATION_NON_TAGGED_SHIFT;
2868 remoder |= ug_info->rxQoSMode << REMODER_RX_QOS_MODE_SHIFT;
2869 remoder |= ((ug_info->numQueuesRx - 1) << REMODER_NUM_OF_QUEUES_SHIFT);
2870 if (ug_info->ipCheckSumCheck)
2871 remoder |= REMODER_IP_CHECKSUM_CHECK;
2872 if (ug_info->ipAddressAlignment)
2873 remoder |= REMODER_IP_ADDRESS_ALIGNMENT;
2874 out_be32(&ugeth->p_rx_glbl_pram->remoder, remoder);
2876 /* Note that this function must be called */
2877 /* ONLY AFTER p_tx_fw_statistics_pram */
2878 /* andp_UccGethRxFirmwareStatisticsPram are allocated ! */
2879 init_firmware_statistics_gathering_mode((ug_info->
2881 UCC_GETH_STATISTICS_GATHERING_MODE_FIRMWARE_TX),
2882 (ug_info->statisticsMode &
2883 UCC_GETH_STATISTICS_GATHERING_MODE_FIRMWARE_RX),
2884 &ugeth->p_tx_glbl_pram->txrmonbaseptr,
2885 ugeth->tx_fw_statistics_pram_offset,
2886 &ugeth->p_rx_glbl_pram->rxrmonbaseptr,
2887 ugeth->rx_fw_statistics_pram_offset,
2888 &ugeth->p_tx_glbl_pram->temoder,
2889 &ugeth->p_rx_glbl_pram->remoder);
2891 /* function code register */
2892 out_8(&ugeth->p_rx_glbl_pram->rstate, function_code);
2894 /* initialize extended filtering */
2895 if (ug_info->rxExtendedFiltering) {
2896 if (!ug_info->extendedFilteringChainPointer) {
2897 if (netif_msg_ifup(ugeth))
2898 ugeth_err("%s: Null Extended Filtering Chain Pointer.",
2903 /* Allocate memory for extended filtering Mode Global
2905 ugeth->exf_glbl_param_offset =
2906 qe_muram_alloc(sizeof(struct ucc_geth_exf_global_pram),
2907 UCC_GETH_RX_EXTENDED_FILTERING_GLOBAL_PARAMETERS_ALIGNMENT);
2908 if (IS_ERR_VALUE(ugeth->exf_glbl_param_offset)) {
2909 if (netif_msg_ifup(ugeth))
2911 ("%s: Can not allocate DPRAM memory for"
2912 " p_exf_glbl_param.", __func__);
2916 ugeth->p_exf_glbl_param =
2917 (struct ucc_geth_exf_global_pram __iomem *) qe_muram_addr(ugeth->
2918 exf_glbl_param_offset);
2919 out_be32(&ugeth->p_rx_glbl_pram->exfGlobalParam,
2920 ugeth->exf_glbl_param_offset);
2921 out_be32(&ugeth->p_exf_glbl_param->l2pcdptr,
2922 (u32) ug_info->extendedFilteringChainPointer);
2924 } else { /* initialize 82xx style address filtering */
2926 /* Init individual address recognition registers to disabled */
2928 for (j = 0; j < NUM_OF_PADDRS; j++)
2929 ugeth_82xx_filtering_clear_addr_in_paddr(ugeth, (u8) j);
2932 (struct ucc_geth_82xx_address_filtering_pram __iomem *) ugeth->
2933 p_rx_glbl_pram->addressfiltering;
2935 ugeth_82xx_filtering_clear_all_addr_in_hash(ugeth,
2936 ENET_ADDR_TYPE_GROUP);
2937 ugeth_82xx_filtering_clear_all_addr_in_hash(ugeth,
2938 ENET_ADDR_TYPE_INDIVIDUAL);
2942 * Initialize UCC at QE level
2945 command = QE_INIT_TX_RX;
2947 /* Allocate shadow InitEnet command parameter structure.
2948 * This is needed because after the InitEnet command is executed,
2949 * the structure in DPRAM is released, because DPRAM is a premium
2951 * This shadow structure keeps a copy of what was done so that the
2952 * allocated resources can be released when the channel is freed.
2954 if (!(ugeth->p_init_enet_param_shadow =
2955 kmalloc(sizeof(struct ucc_geth_init_pram), GFP_KERNEL))) {
2956 if (netif_msg_ifup(ugeth))
2958 ("%s: Can not allocate memory for"
2959 " p_UccInitEnetParamShadows.", __func__);
2962 /* Zero out *p_init_enet_param_shadow */
2963 memset((char *)ugeth->p_init_enet_param_shadow,
2964 0, sizeof(struct ucc_geth_init_pram));
2966 /* Fill shadow InitEnet command parameter structure */
2968 ugeth->p_init_enet_param_shadow->resinit1 =
2969 ENET_INIT_PARAM_MAGIC_RES_INIT1;
2970 ugeth->p_init_enet_param_shadow->resinit2 =
2971 ENET_INIT_PARAM_MAGIC_RES_INIT2;
2972 ugeth->p_init_enet_param_shadow->resinit3 =
2973 ENET_INIT_PARAM_MAGIC_RES_INIT3;
2974 ugeth->p_init_enet_param_shadow->resinit4 =
2975 ENET_INIT_PARAM_MAGIC_RES_INIT4;
2976 ugeth->p_init_enet_param_shadow->resinit5 =
2977 ENET_INIT_PARAM_MAGIC_RES_INIT5;
2978 ugeth->p_init_enet_param_shadow->rgftgfrxglobal |=
2979 ((u32) ug_info->numThreadsRx) << ENET_INIT_PARAM_RGF_SHIFT;
2980 ugeth->p_init_enet_param_shadow->rgftgfrxglobal |=
2981 ((u32) ug_info->numThreadsTx) << ENET_INIT_PARAM_TGF_SHIFT;
2983 ugeth->p_init_enet_param_shadow->rgftgfrxglobal |=
2984 ugeth->rx_glbl_pram_offset | ug_info->riscRx;
2985 if ((ug_info->largestexternallookupkeysize !=
2986 QE_FLTR_LARGEST_EXTERNAL_TABLE_LOOKUP_KEY_SIZE_NONE)
2987 && (ug_info->largestexternallookupkeysize !=
2988 QE_FLTR_LARGEST_EXTERNAL_TABLE_LOOKUP_KEY_SIZE_8_BYTES)
2989 && (ug_info->largestexternallookupkeysize !=
2990 QE_FLTR_LARGEST_EXTERNAL_TABLE_LOOKUP_KEY_SIZE_16_BYTES)) {
2991 if (netif_msg_ifup(ugeth))
2992 ugeth_err("%s: Invalid largest External Lookup Key Size.",
2996 ugeth->p_init_enet_param_shadow->largestexternallookupkeysize =
2997 ug_info->largestexternallookupkeysize;
2998 size = sizeof(struct ucc_geth_thread_rx_pram);
2999 if (ug_info->rxExtendedFiltering) {
3000 size += THREAD_RX_PRAM_ADDITIONAL_FOR_EXTENDED_FILTERING;
3001 if (ug_info->largestexternallookupkeysize ==
3002 QE_FLTR_TABLE_LOOKUP_KEY_SIZE_8_BYTES)
3004 THREAD_RX_PRAM_ADDITIONAL_FOR_EXTENDED_FILTERING_8;
3005 if (ug_info->largestexternallookupkeysize ==
3006 QE_FLTR_TABLE_LOOKUP_KEY_SIZE_16_BYTES)
3008 THREAD_RX_PRAM_ADDITIONAL_FOR_EXTENDED_FILTERING_16;
3011 if ((ret_val = fill_init_enet_entries(ugeth, &(ugeth->
3012 p_init_enet_param_shadow->rxthread[0]),
3013 (u8) (numThreadsRxNumerical + 1)
3014 /* Rx needs one extra for terminator */
3015 , size, UCC_GETH_THREAD_RX_PRAM_ALIGNMENT,
3016 ug_info->riscRx, 1)) != 0) {
3017 if (netif_msg_ifup(ugeth))
3018 ugeth_err("%s: Can not fill p_init_enet_param_shadow.",
3023 ugeth->p_init_enet_param_shadow->txglobal =
3024 ugeth->tx_glbl_pram_offset | ug_info->riscTx;
3026 fill_init_enet_entries(ugeth,
3027 &(ugeth->p_init_enet_param_shadow->
3028 txthread[0]), numThreadsTxNumerical,
3029 sizeof(struct ucc_geth_thread_tx_pram),
3030 UCC_GETH_THREAD_TX_PRAM_ALIGNMENT,
3031 ug_info->riscTx, 0)) != 0) {
3032 if (netif_msg_ifup(ugeth))
3033 ugeth_err("%s: Can not fill p_init_enet_param_shadow.",
3038 /* Load Rx bds with buffers */
3039 for (i = 0; i < ug_info->numQueuesRx; i++) {
3040 if ((ret_val = rx_bd_buffer_set(ugeth, (u8) i)) != 0) {
3041 if (netif_msg_ifup(ugeth))
3042 ugeth_err("%s: Can not fill Rx bds with buffers.",
3048 /* Allocate InitEnet command parameter structure */
3049 init_enet_pram_offset = qe_muram_alloc(sizeof(struct ucc_geth_init_pram), 4);
3050 if (IS_ERR_VALUE(init_enet_pram_offset)) {
3051 if (netif_msg_ifup(ugeth))
3053 ("%s: Can not allocate DPRAM memory for p_init_enet_pram.",
3058 (struct ucc_geth_init_pram __iomem *) qe_muram_addr(init_enet_pram_offset);
3060 /* Copy shadow InitEnet command parameter structure into PRAM */
3061 out_8(&p_init_enet_pram->resinit1,
3062 ugeth->p_init_enet_param_shadow->resinit1);
3063 out_8(&p_init_enet_pram->resinit2,
3064 ugeth->p_init_enet_param_shadow->resinit2);
3065 out_8(&p_init_enet_pram->resinit3,
3066 ugeth->p_init_enet_param_shadow->resinit3);
3067 out_8(&p_init_enet_pram->resinit4,
3068 ugeth->p_init_enet_param_shadow->resinit4);
3069 out_be16(&p_init_enet_pram->resinit5,
3070 ugeth->p_init_enet_param_shadow->resinit5);
3071 out_8(&p_init_enet_pram->largestexternallookupkeysize,
3072 ugeth->p_init_enet_param_shadow->largestexternallookupkeysize);
3073 out_be32(&p_init_enet_pram->rgftgfrxglobal,
3074 ugeth->p_init_enet_param_shadow->rgftgfrxglobal);
3075 for (i = 0; i < ENET_INIT_PARAM_MAX_ENTRIES_RX; i++)
3076 out_be32(&p_init_enet_pram->rxthread[i],
3077 ugeth->p_init_enet_param_shadow->rxthread[i]);
3078 out_be32(&p_init_enet_pram->txglobal,
3079 ugeth->p_init_enet_param_shadow->txglobal);
3080 for (i = 0; i < ENET_INIT_PARAM_MAX_ENTRIES_TX; i++)
3081 out_be32(&p_init_enet_pram->txthread[i],
3082 ugeth->p_init_enet_param_shadow->txthread[i]);
3084 /* Issue QE command */
3086 ucc_fast_get_qe_cr_subblock(ugeth->ug_info->uf_info.ucc_num);
3087 qe_issue_cmd(command, cecr_subblock, QE_CR_PROTOCOL_ETHERNET,
3088 init_enet_pram_offset);
3090 /* Free InitEnet command parameter */
3091 qe_muram_free(init_enet_pram_offset);
3096 /* This is called by the kernel when a frame is ready for transmission. */
3097 /* It is pointed to by the dev->hard_start_xmit function pointer */
3098 static int ucc_geth_start_xmit(struct sk_buff *skb, struct net_device *dev)
3100 struct ucc_geth_private *ugeth = netdev_priv(dev);
3101 #ifdef CONFIG_UGETH_TX_ON_DEMAND
3102 struct ucc_fast_private *uccf;
3104 u8 __iomem *bd; /* BD pointer */
3108 ugeth_vdbg("%s: IN", __func__);
3110 spin_lock_irq(&ugeth->lock);
3112 dev->stats.tx_bytes += skb->len;
3114 /* Start from the next BD that should be filled */
3115 bd = ugeth->txBd[txQ];
3116 bd_status = in_be32((u32 __iomem *)bd);
3117 /* Save the skb pointer so we can free it later */
3118 ugeth->tx_skbuff[txQ][ugeth->skb_curtx[txQ]] = skb;
3120 /* Update the current skb pointer (wrapping if this was the last) */
3121 ugeth->skb_curtx[txQ] =
3122 (ugeth->skb_curtx[txQ] +
3123 1) & TX_RING_MOD_MASK(ugeth->ug_info->bdRingLenTx[txQ]);
3125 /* set up the buffer descriptor */
3126 out_be32(&((struct qe_bd __iomem *)bd)->buf,
3127 dma_map_single(ugeth->dev, skb->data,
3128 skb->len, DMA_TO_DEVICE));
3130 /* printk(KERN_DEBUG"skb->data is 0x%x\n",skb->data); */
3132 bd_status = (bd_status & T_W) | T_R | T_I | T_L | skb->len;
3134 /* set bd status and length */
3135 out_be32((u32 __iomem *)bd, bd_status);
3137 dev->trans_start = jiffies;
3139 /* Move to next BD in the ring */
3140 if (!(bd_status & T_W))
3141 bd += sizeof(struct qe_bd);
3143 bd = ugeth->p_tx_bd_ring[txQ];
3145 /* If the next BD still needs to be cleaned up, then the bds
3146 are full. We need to tell the kernel to stop sending us stuff. */
3147 if (bd == ugeth->confBd[txQ]) {
3148 if (!netif_queue_stopped(dev))
3149 netif_stop_queue(dev);
3152 ugeth->txBd[txQ] = bd;
3154 if (ugeth->p_scheduler) {
3155 ugeth->cpucount[txQ]++;
3156 /* Indicate to QE that there are more Tx bds ready for
3158 /* This is done by writing a running counter of the bd
3159 count to the scheduler PRAM. */
3160 out_be16(ugeth->p_cpucount[txQ], ugeth->cpucount[txQ]);
3163 #ifdef CONFIG_UGETH_TX_ON_DEMAND
3165 out_be16(uccf->p_utodr, UCC_FAST_TOD);
3167 spin_unlock_irq(&ugeth->lock);
3172 static int ucc_geth_rx(struct ucc_geth_private *ugeth, u8 rxQ, int rx_work_limit)
3174 struct sk_buff *skb;
3176 u16 length, howmany = 0;
3179 struct net_device *dev;
3181 ugeth_vdbg("%s: IN", __func__);
3185 /* collect received buffers */
3186 bd = ugeth->rxBd[rxQ];
3188 bd_status = in_be32((u32 __iomem *)bd);
3190 /* while there are received buffers and BD is full (~R_E) */
3191 while (!((bd_status & (R_E)) || (--rx_work_limit < 0))) {
3192 bdBuffer = (u8 *) in_be32(&((struct qe_bd __iomem *)bd)->buf);
3193 length = (u16) ((bd_status & BD_LENGTH_MASK) - 4);
3194 skb = ugeth->rx_skbuff[rxQ][ugeth->skb_currx[rxQ]];
3196 /* determine whether buffer is first, last, first and last
3197 (single buffer frame) or middle (not first and not last) */
3199 (!(bd_status & (R_F | R_L))) ||
3200 (bd_status & R_ERRORS_FATAL)) {
3201 if (netif_msg_rx_err(ugeth))
3202 ugeth_err("%s, %d: ERROR!!! skb - 0x%08x",
3203 __func__, __LINE__, (u32) skb);
3205 dev_kfree_skb_any(skb);
3207 ugeth->rx_skbuff[rxQ][ugeth->skb_currx[rxQ]] = NULL;
3208 dev->stats.rx_dropped++;
3210 dev->stats.rx_packets++;
3213 /* Prep the skb for the packet */
3214 skb_put(skb, length);
3216 /* Tell the skb what kind of packet this is */
3217 skb->protocol = eth_type_trans(skb, ugeth->ndev);
3219 dev->stats.rx_bytes += length;
3220 /* Send the packet up the stack */
3221 netif_receive_skb(skb);
3224 skb = get_new_skb(ugeth, bd);
3226 if (netif_msg_rx_err(ugeth))
3227 ugeth_warn("%s: No Rx Data Buffer", __func__);
3228 dev->stats.rx_dropped++;
3232 ugeth->rx_skbuff[rxQ][ugeth->skb_currx[rxQ]] = skb;
3234 /* update to point at the next skb */
3235 ugeth->skb_currx[rxQ] =
3236 (ugeth->skb_currx[rxQ] +
3237 1) & RX_RING_MOD_MASK(ugeth->ug_info->bdRingLenRx[rxQ]);
3239 if (bd_status & R_W)
3240 bd = ugeth->p_rx_bd_ring[rxQ];
3242 bd += sizeof(struct qe_bd);
3244 bd_status = in_be32((u32 __iomem *)bd);
3247 ugeth->rxBd[rxQ] = bd;
3251 static int ucc_geth_tx(struct net_device *dev, u8 txQ)
3253 /* Start from the next BD that should be filled */
3254 struct ucc_geth_private *ugeth = netdev_priv(dev);
3255 u8 __iomem *bd; /* BD pointer */
3258 bd = ugeth->confBd[txQ];
3259 bd_status = in_be32((u32 __iomem *)bd);
3261 /* Normal processing. */
3262 while ((bd_status & T_R) == 0) {
3263 /* BD contains already transmitted buffer. */
3264 /* Handle the transmitted buffer and release */
3265 /* the BD to be used with the current frame */
3267 if ((bd == ugeth->txBd[txQ]) && (netif_queue_stopped(dev) == 0))
3270 dev->stats.tx_packets++;
3272 /* Free the sk buffer associated with this TxBD */
3273 dev_kfree_skb(ugeth->
3274 tx_skbuff[txQ][ugeth->skb_dirtytx[txQ]]);
3275 ugeth->tx_skbuff[txQ][ugeth->skb_dirtytx[txQ]] = NULL;
3276 ugeth->skb_dirtytx[txQ] =
3277 (ugeth->skb_dirtytx[txQ] +
3278 1) & TX_RING_MOD_MASK(ugeth->ug_info->bdRingLenTx[txQ]);
3280 /* We freed a buffer, so now we can restart transmission */
3281 if (netif_queue_stopped(dev))
3282 netif_wake_queue(dev);
3284 /* Advance the confirmation BD pointer */
3285 if (!(bd_status & T_W))
3286 bd += sizeof(struct qe_bd);
3288 bd = ugeth->p_tx_bd_ring[txQ];
3289 bd_status = in_be32((u32 __iomem *)bd);
3291 ugeth->confBd[txQ] = bd;
3295 static int ucc_geth_poll(struct napi_struct *napi, int budget)
3297 struct ucc_geth_private *ugeth = container_of(napi, struct ucc_geth_private, napi);
3298 struct ucc_geth_info *ug_info;
3301 ug_info = ugeth->ug_info;
3304 for (i = 0; i < ug_info->numQueuesRx; i++)
3305 howmany += ucc_geth_rx(ugeth, i, budget - howmany);
3307 /* Tx event processing */
3308 spin_lock(&ugeth->lock);
3309 for (i = 0; i < ug_info->numQueuesTx; i++)
3310 ucc_geth_tx(ugeth->ndev, i);
3311 spin_unlock(&ugeth->lock);
3313 if (howmany < budget) {
3314 napi_complete(napi);
3315 setbits32(ugeth->uccf->p_uccm, UCCE_RX_EVENTS | UCCE_TX_EVENTS);
3321 static irqreturn_t ucc_geth_irq_handler(int irq, void *info)
3323 struct net_device *dev = info;
3324 struct ucc_geth_private *ugeth = netdev_priv(dev);
3325 struct ucc_fast_private *uccf;
3326 struct ucc_geth_info *ug_info;
3330 ugeth_vdbg("%s: IN", __func__);
3333 ug_info = ugeth->ug_info;
3335 /* read and clear events */
3336 ucce = (u32) in_be32(uccf->p_ucce);
3337 uccm = (u32) in_be32(uccf->p_uccm);
3339 out_be32(uccf->p_ucce, ucce);
3341 /* check for receive events that require processing */
3342 if (ucce & (UCCE_RX_EVENTS | UCCE_TX_EVENTS)) {
3343 if (napi_schedule_prep(&ugeth->napi)) {
3344 uccm &= ~(UCCE_RX_EVENTS | UCCE_TX_EVENTS);
3345 out_be32(uccf->p_uccm, uccm);
3346 __napi_schedule(&ugeth->napi);
3350 /* Errors and other events */
3351 if (ucce & UCCE_OTHER) {
3352 if (ucce & UCC_GETH_UCCE_BSY)
3353 dev->stats.rx_errors++;
3354 if (ucce & UCC_GETH_UCCE_TXE)
3355 dev->stats.tx_errors++;
3361 #ifdef CONFIG_NET_POLL_CONTROLLER
3363 * Polling 'interrupt' - used by things like netconsole to send skbs
3364 * without having to re-enable interrupts. It's not called while
3365 * the interrupt routine is executing.
3367 static void ucc_netpoll(struct net_device *dev)
3369 struct ucc_geth_private *ugeth = netdev_priv(dev);
3370 int irq = ugeth->ug_info->uf_info.irq;
3373 ucc_geth_irq_handler(irq, dev);
3376 #endif /* CONFIG_NET_POLL_CONTROLLER */
3378 static int ucc_geth_set_mac_addr(struct net_device *dev, void *p)
3380 struct ucc_geth_private *ugeth = netdev_priv(dev);
3381 struct sockaddr *addr = p;
3383 if (!is_valid_ether_addr(addr->sa_data))
3384 return -EADDRNOTAVAIL;
3386 memcpy(dev->dev_addr, addr->sa_data, dev->addr_len);
3389 * If device is not running, we will set mac addr register
3390 * when opening the device.
3392 if (!netif_running(dev))
3395 spin_lock_irq(&ugeth->lock);
3396 init_mac_station_addr_regs(dev->dev_addr[0],
3402 &ugeth->ug_regs->macstnaddr1,
3403 &ugeth->ug_regs->macstnaddr2);
3404 spin_unlock_irq(&ugeth->lock);
3409 /* Called when something needs to use the ethernet device */
3410 /* Returns 0 for success. */
3411 static int ucc_geth_open(struct net_device *dev)
3413 struct ucc_geth_private *ugeth = netdev_priv(dev);
3416 ugeth_vdbg("%s: IN", __func__);
3418 /* Test station address */
3419 if (dev->dev_addr[0] & ENET_GROUP_ADDR) {
3420 if (netif_msg_ifup(ugeth))
3421 ugeth_err("%s: Multicast address used for station address"
3422 " - is this what you wanted?", __func__);
3426 err = init_phy(dev);
3428 if (netif_msg_ifup(ugeth))
3429 ugeth_err("%s: Cannot initialize PHY, aborting.",
3434 err = ucc_struct_init(ugeth);
3436 if (netif_msg_ifup(ugeth))
3437 ugeth_err("%s: Cannot configure internal struct, aborting.", dev->name);
3441 napi_enable(&ugeth->napi);
3443 err = ucc_geth_startup(ugeth);
3445 if (netif_msg_ifup(ugeth))
3446 ugeth_err("%s: Cannot configure net device, aborting.",
3451 err = adjust_enet_interface(ugeth);
3453 if (netif_msg_ifup(ugeth))
3454 ugeth_err("%s: Cannot configure net device, aborting.",
3459 /* Set MACSTNADDR1, MACSTNADDR2 */
3460 /* For more details see the hardware spec. */
3461 init_mac_station_addr_regs(dev->dev_addr[0],
3467 &ugeth->ug_regs->macstnaddr1,
3468 &ugeth->ug_regs->macstnaddr2);
3470 phy_start(ugeth->phydev);
3472 err = ugeth_enable(ugeth, COMM_DIR_RX_AND_TX);
3474 if (netif_msg_ifup(ugeth))
3475 ugeth_err("%s: Cannot enable net device, aborting.", dev->name);
3479 err = request_irq(ugeth->ug_info->uf_info.irq, ucc_geth_irq_handler,
3480 0, "UCC Geth", dev);
3482 if (netif_msg_ifup(ugeth))
3483 ugeth_err("%s: Cannot get IRQ for net device, aborting.",
3488 netif_start_queue(dev);
3493 napi_disable(&ugeth->napi);
3495 ucc_geth_stop(ugeth);
3499 /* Stops the kernel queue, and halts the controller */
3500 static int ucc_geth_close(struct net_device *dev)
3502 struct ucc_geth_private *ugeth = netdev_priv(dev);
3504 ugeth_vdbg("%s: IN", __func__);
3506 napi_disable(&ugeth->napi);
3508 ucc_geth_stop(ugeth);
3510 free_irq(ugeth->ug_info->uf_info.irq, ugeth->ndev);
3512 netif_stop_queue(dev);
3517 /* Reopen device. This will reset the MAC and PHY. */
3518 static void ucc_geth_timeout_work(struct work_struct *work)
3520 struct ucc_geth_private *ugeth;
3521 struct net_device *dev;
3523 ugeth = container_of(work, struct ucc_geth_private, timeout_work);
3526 ugeth_vdbg("%s: IN", __func__);
3528 dev->stats.tx_errors++;
3530 ugeth_dump_regs(ugeth);
3532 if (dev->flags & IFF_UP) {
3534 * Must reset MAC *and* PHY. This is done by reopening
3537 ucc_geth_close(dev);
3541 netif_tx_schedule_all(dev);
3545 * ucc_geth_timeout gets called when a packet has not been
3546 * transmitted after a set amount of time.
3548 static void ucc_geth_timeout(struct net_device *dev)
3550 struct ucc_geth_private *ugeth = netdev_priv(dev);
3552 netif_carrier_off(dev);
3553 schedule_work(&ugeth->timeout_work);
3556 static phy_interface_t to_phy_interface(const char *phy_connection_type)
3558 if (strcasecmp(phy_connection_type, "mii") == 0)
3559 return PHY_INTERFACE_MODE_MII;
3560 if (strcasecmp(phy_connection_type, "gmii") == 0)
3561 return PHY_INTERFACE_MODE_GMII;
3562 if (strcasecmp(phy_connection_type, "tbi") == 0)
3563 return PHY_INTERFACE_MODE_TBI;
3564 if (strcasecmp(phy_connection_type, "rmii") == 0)
3565 return PHY_INTERFACE_MODE_RMII;
3566 if (strcasecmp(phy_connection_type, "rgmii") == 0)
3567 return PHY_INTERFACE_MODE_RGMII;
3568 if (strcasecmp(phy_connection_type, "rgmii-id") == 0)
3569 return PHY_INTERFACE_MODE_RGMII_ID;
3570 if (strcasecmp(phy_connection_type, "rgmii-txid") == 0)
3571 return PHY_INTERFACE_MODE_RGMII_TXID;
3572 if (strcasecmp(phy_connection_type, "rgmii-rxid") == 0)
3573 return PHY_INTERFACE_MODE_RGMII_RXID;
3574 if (strcasecmp(phy_connection_type, "rtbi") == 0)
3575 return PHY_INTERFACE_MODE_RTBI;
3576 if (strcasecmp(phy_connection_type, "sgmii") == 0)
3577 return PHY_INTERFACE_MODE_SGMII;
3579 return PHY_INTERFACE_MODE_MII;
3582 static const struct net_device_ops ucc_geth_netdev_ops = {
3583 .ndo_open = ucc_geth_open,
3584 .ndo_stop = ucc_geth_close,
3585 .ndo_start_xmit = ucc_geth_start_xmit,
3586 .ndo_validate_addr = eth_validate_addr,
3587 .ndo_set_mac_address = ucc_geth_set_mac_addr,
3588 .ndo_change_mtu = eth_change_mtu,
3589 .ndo_set_multicast_list = ucc_geth_set_multi,
3590 .ndo_tx_timeout = ucc_geth_timeout,
3591 #ifdef CONFIG_NET_POLL_CONTROLLER
3592 .ndo_poll_controller = ucc_netpoll,
3596 static int ucc_geth_probe(struct of_device* ofdev, const struct of_device_id *match)
3598 struct device *device = &ofdev->dev;
3599 struct device_node *np = ofdev->node;
3600 struct net_device *dev = NULL;
3601 struct ucc_geth_private *ugeth = NULL;
3602 struct ucc_geth_info *ug_info;
3603 struct resource res;
3604 struct device_node *phy;
3605 int err, ucc_num, max_speed = 0;
3606 const u32 *fixed_link;
3607 const unsigned int *prop;
3609 const void *mac_addr;
3610 phy_interface_t phy_interface;
3611 static const int enet_to_speed[] = {
3612 SPEED_10, SPEED_10, SPEED_10,
3613 SPEED_100, SPEED_100, SPEED_100,
3614 SPEED_1000, SPEED_1000, SPEED_1000, SPEED_1000,
3616 static const phy_interface_t enet_to_phy_interface[] = {
3617 PHY_INTERFACE_MODE_MII, PHY_INTERFACE_MODE_RMII,
3618 PHY_INTERFACE_MODE_RGMII, PHY_INTERFACE_MODE_MII,
3619 PHY_INTERFACE_MODE_RMII, PHY_INTERFACE_MODE_RGMII,
3620 PHY_INTERFACE_MODE_GMII, PHY_INTERFACE_MODE_RGMII,
3621 PHY_INTERFACE_MODE_TBI, PHY_INTERFACE_MODE_RTBI,
3622 PHY_INTERFACE_MODE_SGMII,
3625 ugeth_vdbg("%s: IN", __func__);
3627 prop = of_get_property(np, "cell-index", NULL);
3629 prop = of_get_property(np, "device-id", NULL);
3634 ucc_num = *prop - 1;
3635 if ((ucc_num < 0) || (ucc_num > 7))
3638 ug_info = &ugeth_info[ucc_num];
3639 if (ug_info == NULL) {
3640 if (netif_msg_probe(&debug))
3641 ugeth_err("%s: [%d] Missing additional data!",
3646 ug_info->uf_info.ucc_num = ucc_num;
3648 sprop = of_get_property(np, "rx-clock-name", NULL);
3650 ug_info->uf_info.rx_clock = qe_clock_source(sprop);
3651 if ((ug_info->uf_info.rx_clock < QE_CLK_NONE) ||
3652 (ug_info->uf_info.rx_clock > QE_CLK24)) {
3654 "ucc_geth: invalid rx-clock-name property\n");
3658 prop = of_get_property(np, "rx-clock", NULL);
3660 /* If both rx-clock-name and rx-clock are missing,
3661 we want to tell people to use rx-clock-name. */
3663 "ucc_geth: missing rx-clock-name property\n");
3666 if ((*prop < QE_CLK_NONE) || (*prop > QE_CLK24)) {
3668 "ucc_geth: invalid rx-clock propperty\n");
3671 ug_info->uf_info.rx_clock = *prop;
3674 sprop = of_get_property(np, "tx-clock-name", NULL);
3676 ug_info->uf_info.tx_clock = qe_clock_source(sprop);
3677 if ((ug_info->uf_info.tx_clock < QE_CLK_NONE) ||
3678 (ug_info->uf_info.tx_clock > QE_CLK24)) {
3680 "ucc_geth: invalid tx-clock-name property\n");
3684 prop = of_get_property(np, "tx-clock", NULL);
3687 "ucc_geth: mising tx-clock-name property\n");
3690 if ((*prop < QE_CLK_NONE) || (*prop > QE_CLK24)) {
3692 "ucc_geth: invalid tx-clock property\n");
3695 ug_info->uf_info.tx_clock = *prop;
3698 err = of_address_to_resource(np, 0, &res);
3702 ug_info->uf_info.regs = res.start;
3703 ug_info->uf_info.irq = irq_of_parse_and_map(np, 0);
3704 fixed_link = of_get_property(np, "fixed-link", NULL);
3708 phy = of_parse_phandle(np, "phy-handle", 0);
3712 ug_info->phy_node = phy;
3714 /* get the phy interface type, or default to MII */
3715 prop = of_get_property(np, "phy-connection-type", NULL);
3717 /* handle interface property present in old trees */
3718 prop = of_get_property(phy, "interface", NULL);
3720 phy_interface = enet_to_phy_interface[*prop];
3721 max_speed = enet_to_speed[*prop];
3723 phy_interface = PHY_INTERFACE_MODE_MII;
3725 phy_interface = to_phy_interface((const char *)prop);
3728 /* get speed, or derive from PHY interface */
3730 switch (phy_interface) {
3731 case PHY_INTERFACE_MODE_GMII:
3732 case PHY_INTERFACE_MODE_RGMII:
3733 case PHY_INTERFACE_MODE_RGMII_ID:
3734 case PHY_INTERFACE_MODE_RGMII_RXID:
3735 case PHY_INTERFACE_MODE_RGMII_TXID:
3736 case PHY_INTERFACE_MODE_TBI:
3737 case PHY_INTERFACE_MODE_RTBI:
3738 case PHY_INTERFACE_MODE_SGMII:
3739 max_speed = SPEED_1000;
3742 max_speed = SPEED_100;
3746 if (max_speed == SPEED_1000) {
3747 /* configure muram FIFOs for gigabit operation */
3748 ug_info->uf_info.urfs = UCC_GETH_URFS_GIGA_INIT;
3749 ug_info->uf_info.urfet = UCC_GETH_URFET_GIGA_INIT;
3750 ug_info->uf_info.urfset = UCC_GETH_URFSET_GIGA_INIT;
3751 ug_info->uf_info.utfs = UCC_GETH_UTFS_GIGA_INIT;
3752 ug_info->uf_info.utfet = UCC_GETH_UTFET_GIGA_INIT;
3753 ug_info->uf_info.utftt = UCC_GETH_UTFTT_GIGA_INIT;
3754 ug_info->numThreadsTx = UCC_GETH_NUM_OF_THREADS_4;
3756 /* If QE's snum number is 46 which means we need to support
3757 * 4 UECs at 1000Base-T simultaneously, we need to allocate
3758 * more Threads to Rx.
3760 if (qe_get_num_of_snums() == 46)
3761 ug_info->numThreadsRx = UCC_GETH_NUM_OF_THREADS_6;
3763 ug_info->numThreadsRx = UCC_GETH_NUM_OF_THREADS_4;
3766 if (netif_msg_probe(&debug))
3767 printk(KERN_INFO "ucc_geth: UCC%1d at 0x%8x (irq = %d) \n",
3768 ug_info->uf_info.ucc_num + 1, ug_info->uf_info.regs,
3769 ug_info->uf_info.irq);
3771 /* Create an ethernet device instance */
3772 dev = alloc_etherdev(sizeof(*ugeth));
3777 ugeth = netdev_priv(dev);
3778 spin_lock_init(&ugeth->lock);
3780 /* Create CQs for hash tables */
3781 INIT_LIST_HEAD(&ugeth->group_hash_q);
3782 INIT_LIST_HEAD(&ugeth->ind_hash_q);
3784 dev_set_drvdata(device, dev);
3786 /* Set the dev->base_addr to the gfar reg region */
3787 dev->base_addr = (unsigned long)(ug_info->uf_info.regs);
3789 SET_NETDEV_DEV(dev, device);
3791 /* Fill in the dev structure */
3792 uec_set_ethtool_ops(dev);
3793 dev->netdev_ops = &ucc_geth_netdev_ops;
3794 dev->watchdog_timeo = TX_TIMEOUT;
3795 INIT_WORK(&ugeth->timeout_work, ucc_geth_timeout_work);
3796 netif_napi_add(dev, &ugeth->napi, ucc_geth_poll, 64);
3799 ugeth->msg_enable = netif_msg_init(debug.msg_enable, UGETH_MSG_DEFAULT);
3800 ugeth->phy_interface = phy_interface;
3801 ugeth->max_speed = max_speed;
3803 err = register_netdev(dev);
3805 if (netif_msg_probe(ugeth))
3806 ugeth_err("%s: Cannot register net device, aborting.",
3812 mac_addr = of_get_mac_address(np);
3814 memcpy(dev->dev_addr, mac_addr, 6);
3816 ugeth->ug_info = ug_info;
3817 ugeth->dev = device;
3821 /* Find the TBI PHY. If it's not there, we don't support SGMII */
3822 ph = of_get_property(np, "tbi-handle", NULL);
3824 struct device_node *tbi = of_find_node_by_phandle(*ph);
3825 struct of_device *ofdev;
3826 struct mii_bus *bus;
3827 const unsigned int *id;
3832 mdio = of_get_parent(tbi);
3836 ofdev = of_find_device_by_node(mdio);
3840 id = of_get_property(tbi, "reg", NULL);
3845 bus = dev_get_drvdata(&ofdev->dev);
3849 ugeth->tbiphy = bus->phy_map[*id];
3855 static int ucc_geth_remove(struct of_device* ofdev)
3857 struct device *device = &ofdev->dev;
3858 struct net_device *dev = dev_get_drvdata(device);
3859 struct ucc_geth_private *ugeth = netdev_priv(dev);
3861 unregister_netdev(dev);
3863 ucc_geth_memclean(ugeth);
3864 dev_set_drvdata(device, NULL);
3869 static struct of_device_id ucc_geth_match[] = {
3872 .compatible = "ucc_geth",
3877 MODULE_DEVICE_TABLE(of, ucc_geth_match);
3879 static struct of_platform_driver ucc_geth_driver = {
3881 .match_table = ucc_geth_match,
3882 .probe = ucc_geth_probe,
3883 .remove = ucc_geth_remove,
3886 static int __init ucc_geth_init(void)
3890 if (netif_msg_drv(&debug))
3891 printk(KERN_INFO "ucc_geth: " DRV_DESC "\n");
3892 for (i = 0; i < 8; i++)
3893 memcpy(&(ugeth_info[i]), &ugeth_primary_info,
3894 sizeof(ugeth_primary_info));
3896 ret = of_register_platform_driver(&ucc_geth_driver);
3901 static void __exit ucc_geth_exit(void)
3903 of_unregister_platform_driver(&ucc_geth_driver);
3906 module_init(ucc_geth_init);
3907 module_exit(ucc_geth_exit);
3909 MODULE_AUTHOR("Freescale Semiconductor, Inc");
3910 MODULE_DESCRIPTION(DRV_DESC);
3911 MODULE_VERSION(DRV_VERSION);
3912 MODULE_LICENSE("GPL");