1 // SPDX-License-Identifier: GPL-2.0+
3 * Copyright (C) 2006-2011 Freescale Semiconductor, Inc.
12 #include <linux/delay.h>
13 #include <linux/errno.h>
15 #include <linux/immap_qe.h>
23 /* Default UTBIPAR SMI address */
24 #ifndef CONFIG_UTBIPAR_INIT_TBIPA
25 #define CONFIG_UTBIPAR_INIT_TBIPA 0x1F
28 static uec_info_t uec_info[] = {
29 #ifdef CONFIG_UEC_ETH1
30 STD_UEC_INFO(1), /* UEC1 */
32 #ifdef CONFIG_UEC_ETH2
33 STD_UEC_INFO(2), /* UEC2 */
35 #ifdef CONFIG_UEC_ETH3
36 STD_UEC_INFO(3), /* UEC3 */
38 #ifdef CONFIG_UEC_ETH4
39 STD_UEC_INFO(4), /* UEC4 */
41 #ifdef CONFIG_UEC_ETH5
42 STD_UEC_INFO(5), /* UEC5 */
44 #ifdef CONFIG_UEC_ETH6
45 STD_UEC_INFO(6), /* UEC6 */
47 #ifdef CONFIG_UEC_ETH7
48 STD_UEC_INFO(7), /* UEC7 */
50 #ifdef CONFIG_UEC_ETH8
51 STD_UEC_INFO(8), /* UEC8 */
55 #define MAXCONTROLLERS (8)
57 static struct eth_device *devlist[MAXCONTROLLERS];
59 static int uec_mac_enable(uec_private_t *uec, comm_dir_e mode)
65 printf("%s: uec not initial\n", __FUNCTION__);
68 uec_regs = uec->uec_regs;
70 maccfg1 = in_be32(&uec_regs->maccfg1);
72 if (mode & COMM_DIR_TX) {
73 maccfg1 |= MACCFG1_ENABLE_TX;
74 out_be32(&uec_regs->maccfg1, maccfg1);
75 uec->mac_tx_enabled = 1;
78 if (mode & COMM_DIR_RX) {
79 maccfg1 |= MACCFG1_ENABLE_RX;
80 out_be32(&uec_regs->maccfg1, maccfg1);
81 uec->mac_rx_enabled = 1;
87 static int uec_mac_disable(uec_private_t *uec, comm_dir_e mode)
93 printf("%s: uec not initial\n", __FUNCTION__);
96 uec_regs = uec->uec_regs;
98 maccfg1 = in_be32(&uec_regs->maccfg1);
100 if (mode & COMM_DIR_TX) {
101 maccfg1 &= ~MACCFG1_ENABLE_TX;
102 out_be32(&uec_regs->maccfg1, maccfg1);
103 uec->mac_tx_enabled = 0;
106 if (mode & COMM_DIR_RX) {
107 maccfg1 &= ~MACCFG1_ENABLE_RX;
108 out_be32(&uec_regs->maccfg1, maccfg1);
109 uec->mac_rx_enabled = 0;
115 static int uec_graceful_stop_tx(uec_private_t *uec)
121 if (!uec || !uec->uccf) {
122 printf("%s: No handle passed.\n", __FUNCTION__);
126 uf_regs = uec->uccf->uf_regs;
128 /* Clear the grace stop event */
129 out_be32(&uf_regs->ucce, UCCE_GRA);
131 /* Issue host command */
133 ucc_fast_get_qe_cr_subblock(uec->uec_info->uf_info.ucc_num);
134 qe_issue_cmd(QE_GRACEFUL_STOP_TX, cecr_subblock,
135 (u8)QE_CR_PROTOCOL_ETHERNET, 0);
137 /* Wait for command to complete */
139 ucce = in_be32(&uf_regs->ucce);
140 } while (! (ucce & UCCE_GRA));
142 uec->grace_stopped_tx = 1;
147 static int uec_graceful_stop_rx(uec_private_t *uec)
153 printf("%s: No handle passed.\n", __FUNCTION__);
157 if (!uec->p_rx_glbl_pram) {
158 printf("%s: No init rx global parameter\n", __FUNCTION__);
162 /* Clear acknowledge bit */
163 ack = uec->p_rx_glbl_pram->rxgstpack;
164 ack &= ~GRACEFUL_STOP_ACKNOWLEDGE_RX;
165 uec->p_rx_glbl_pram->rxgstpack = ack;
167 /* Keep issuing cmd and checking ack bit until it is asserted */
169 /* Issue host command */
171 ucc_fast_get_qe_cr_subblock(uec->uec_info->uf_info.ucc_num);
172 qe_issue_cmd(QE_GRACEFUL_STOP_RX, cecr_subblock,
173 (u8)QE_CR_PROTOCOL_ETHERNET, 0);
174 ack = uec->p_rx_glbl_pram->rxgstpack;
175 } while (! (ack & GRACEFUL_STOP_ACKNOWLEDGE_RX ));
177 uec->grace_stopped_rx = 1;
182 static int uec_restart_tx(uec_private_t *uec)
186 if (!uec || !uec->uec_info) {
187 printf("%s: No handle passed.\n", __FUNCTION__);
192 ucc_fast_get_qe_cr_subblock(uec->uec_info->uf_info.ucc_num);
193 qe_issue_cmd(QE_RESTART_TX, cecr_subblock,
194 (u8)QE_CR_PROTOCOL_ETHERNET, 0);
196 uec->grace_stopped_tx = 0;
201 static int uec_restart_rx(uec_private_t *uec)
205 if (!uec || !uec->uec_info) {
206 printf("%s: No handle passed.\n", __FUNCTION__);
211 ucc_fast_get_qe_cr_subblock(uec->uec_info->uf_info.ucc_num);
212 qe_issue_cmd(QE_RESTART_RX, cecr_subblock,
213 (u8)QE_CR_PROTOCOL_ETHERNET, 0);
215 uec->grace_stopped_rx = 0;
220 static int uec_open(uec_private_t *uec, comm_dir_e mode)
222 ucc_fast_private_t *uccf;
224 if (!uec || !uec->uccf) {
225 printf("%s: No handle passed.\n", __FUNCTION__);
230 /* check if the UCC number is in range. */
231 if (uec->uec_info->uf_info.ucc_num >= UCC_MAX_NUM) {
232 printf("%s: ucc_num out of range.\n", __FUNCTION__);
237 uec_mac_enable(uec, mode);
239 /* Enable UCC fast */
240 ucc_fast_enable(uccf, mode);
242 /* RISC microcode start */
243 if ((mode & COMM_DIR_TX) && uec->grace_stopped_tx) {
246 if ((mode & COMM_DIR_RX) && uec->grace_stopped_rx) {
253 static int uec_stop(uec_private_t *uec, comm_dir_e mode)
255 if (!uec || !uec->uccf) {
256 printf("%s: No handle passed.\n", __FUNCTION__);
260 /* check if the UCC number is in range. */
261 if (uec->uec_info->uf_info.ucc_num >= UCC_MAX_NUM) {
262 printf("%s: ucc_num out of range.\n", __FUNCTION__);
265 /* Stop any transmissions */
266 if ((mode & COMM_DIR_TX) && !uec->grace_stopped_tx) {
267 uec_graceful_stop_tx(uec);
269 /* Stop any receptions */
270 if ((mode & COMM_DIR_RX) && !uec->grace_stopped_rx) {
271 uec_graceful_stop_rx(uec);
274 /* Disable the UCC fast */
275 ucc_fast_disable(uec->uccf, mode);
277 /* Disable the MAC */
278 uec_mac_disable(uec, mode);
283 static int uec_set_mac_duplex(uec_private_t *uec, int duplex)
289 printf("%s: uec not initial\n", __FUNCTION__);
292 uec_regs = uec->uec_regs;
294 if (duplex == DUPLEX_HALF) {
295 maccfg2 = in_be32(&uec_regs->maccfg2);
296 maccfg2 &= ~MACCFG2_FDX;
297 out_be32(&uec_regs->maccfg2, maccfg2);
300 if (duplex == DUPLEX_FULL) {
301 maccfg2 = in_be32(&uec_regs->maccfg2);
302 maccfg2 |= MACCFG2_FDX;
303 out_be32(&uec_regs->maccfg2, maccfg2);
309 static int uec_set_mac_if_mode(uec_private_t *uec,
310 phy_interface_t if_mode, int speed)
312 phy_interface_t enet_if_mode;
318 printf("%s: uec not initial\n", __FUNCTION__);
322 uec_regs = uec->uec_regs;
323 enet_if_mode = if_mode;
325 maccfg2 = in_be32(&uec_regs->maccfg2);
326 maccfg2 &= ~MACCFG2_INTERFACE_MODE_MASK;
328 upsmr = in_be32(&uec->uccf->uf_regs->upsmr);
329 upsmr &= ~(UPSMR_RPM | UPSMR_TBIM | UPSMR_R10M | UPSMR_RMM);
333 maccfg2 |= MACCFG2_INTERFACE_MODE_NIBBLE;
334 switch (enet_if_mode) {
335 case PHY_INTERFACE_MODE_MII:
337 case PHY_INTERFACE_MODE_RGMII:
338 upsmr |= (UPSMR_RPM | UPSMR_R10M);
340 case PHY_INTERFACE_MODE_RMII:
341 upsmr |= (UPSMR_R10M | UPSMR_RMM);
349 maccfg2 |= MACCFG2_INTERFACE_MODE_NIBBLE;
350 switch (enet_if_mode) {
351 case PHY_INTERFACE_MODE_MII:
353 case PHY_INTERFACE_MODE_RGMII:
356 case PHY_INTERFACE_MODE_RMII:
365 maccfg2 |= MACCFG2_INTERFACE_MODE_BYTE;
366 switch (enet_if_mode) {
367 case PHY_INTERFACE_MODE_GMII:
369 case PHY_INTERFACE_MODE_TBI:
372 case PHY_INTERFACE_MODE_RTBI:
373 upsmr |= (UPSMR_RPM | UPSMR_TBIM);
375 case PHY_INTERFACE_MODE_RGMII_RXID:
376 case PHY_INTERFACE_MODE_RGMII_TXID:
377 case PHY_INTERFACE_MODE_RGMII_ID:
378 case PHY_INTERFACE_MODE_RGMII:
381 case PHY_INTERFACE_MODE_SGMII:
394 out_be32(&uec_regs->maccfg2, maccfg2);
395 out_be32(&uec->uccf->uf_regs->upsmr, upsmr);
400 static int init_mii_management_configuration(uec_mii_t *uec_mii_regs)
402 uint timeout = 0x1000;
405 miimcfg = in_be32(&uec_mii_regs->miimcfg);
406 miimcfg |= MIIMCFG_MNGMNT_CLC_DIV_INIT_VALUE;
407 out_be32(&uec_mii_regs->miimcfg, miimcfg);
409 /* Wait until the bus is free */
410 while ((in_be32(&uec_mii_regs->miimcfg) & MIIMIND_BUSY) && timeout--);
412 printf("%s: The MII Bus is stuck!", __FUNCTION__);
419 static int init_phy(struct eth_device *dev)
422 uec_mii_t *umii_regs;
423 struct uec_mii_info *mii_info;
424 struct phy_info *curphy;
427 uec = (uec_private_t *)dev->priv;
428 umii_regs = uec->uec_mii_regs;
434 mii_info = malloc(sizeof(*mii_info));
436 printf("%s: Could not allocate mii_info", dev->name);
439 memset(mii_info, 0, sizeof(*mii_info));
441 if (uec->uec_info->uf_info.eth_type == GIGA_ETH) {
442 mii_info->speed = SPEED_1000;
444 mii_info->speed = SPEED_100;
447 mii_info->duplex = DUPLEX_FULL;
451 mii_info->advertising = (ADVERTISED_10baseT_Half |
452 ADVERTISED_10baseT_Full |
453 ADVERTISED_100baseT_Half |
454 ADVERTISED_100baseT_Full |
455 ADVERTISED_1000baseT_Full);
456 mii_info->autoneg = 1;
457 mii_info->mii_id = uec->uec_info->phy_address;
460 mii_info->mdio_read = &uec_read_phy_reg;
461 mii_info->mdio_write = &uec_write_phy_reg;
463 uec->mii_info = mii_info;
465 qe_set_mii_clk_src(uec->uec_info->uf_info.ucc_num);
467 if (init_mii_management_configuration(umii_regs)) {
468 printf("%s: The MII Bus is stuck!", dev->name);
473 /* get info for this PHY */
474 curphy = uec_get_phy_info(uec->mii_info);
476 printf("%s: No PHY found", dev->name);
481 mii_info->phyinfo = curphy;
483 /* Run the commands which initialize the PHY */
485 err = curphy->init(uec->mii_info);
499 static void adjust_link(struct eth_device *dev)
501 uec_private_t *uec = (uec_private_t *)dev->priv;
502 struct uec_mii_info *mii_info = uec->mii_info;
504 extern void change_phy_interface_mode(struct eth_device *dev,
505 phy_interface_t mode, int speed);
507 if (mii_info->link) {
508 /* Now we make sure that we can be in full duplex mode.
509 * If not, we operate in half-duplex mode. */
510 if (mii_info->duplex != uec->oldduplex) {
511 if (!(mii_info->duplex)) {
512 uec_set_mac_duplex(uec, DUPLEX_HALF);
513 printf("%s: Half Duplex\n", dev->name);
515 uec_set_mac_duplex(uec, DUPLEX_FULL);
516 printf("%s: Full Duplex\n", dev->name);
518 uec->oldduplex = mii_info->duplex;
521 if (mii_info->speed != uec->oldspeed) {
522 phy_interface_t mode =
523 uec->uec_info->enet_interface_type;
524 if (uec->uec_info->uf_info.eth_type == GIGA_ETH) {
525 switch (mii_info->speed) {
529 printf ("switching to rgmii 100\n");
530 mode = PHY_INTERFACE_MODE_RGMII;
533 printf ("switching to rgmii 10\n");
534 mode = PHY_INTERFACE_MODE_RGMII;
537 printf("%s: Ack,Speed(%d)is illegal\n",
538 dev->name, mii_info->speed);
544 change_phy_interface_mode(dev, mode, mii_info->speed);
545 /* change the MAC interface mode */
546 uec_set_mac_if_mode(uec, mode, mii_info->speed);
548 printf("%s: Speed %dBT\n", dev->name, mii_info->speed);
549 uec->oldspeed = mii_info->speed;
553 printf("%s: Link is up\n", dev->name);
557 } else { /* if (mii_info->link) */
559 printf("%s: Link is down\n", dev->name);
567 static void phy_change(struct eth_device *dev)
569 uec_private_t *uec = (uec_private_t *)dev->priv;
571 #if defined(CONFIG_ARCH_P1021) || defined(CONFIG_ARCH_P1025)
572 ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
574 /* QE9 and QE12 need to be set for enabling QE MII managment signals */
575 setbits_be32(&gur->pmuxcr, MPC85xx_PMUXCR_QE9);
576 setbits_be32(&gur->pmuxcr, MPC85xx_PMUXCR_QE12);
579 /* Update the link, speed, duplex */
580 uec->mii_info->phyinfo->read_status(uec->mii_info);
582 #if defined(CONFIG_ARCH_P1021) || defined(CONFIG_ARCH_P1025)
584 * QE12 is muxed with LBCTL, it needs to be released for enabling
585 * LBCTL signal for LBC usage.
587 clrbits_be32(&gur->pmuxcr, MPC85xx_PMUXCR_QE12);
590 /* Adjust the interface according to speed */
594 #if defined(CONFIG_MII) || defined(CONFIG_CMD_MII)
597 * Find a device index from the devlist by name
600 * The index where the device is located, -1 on error
602 static int uec_miiphy_find_dev_by_name(const char *devname)
606 for (i = 0; i < MAXCONTROLLERS; i++) {
607 if (strncmp(devname, devlist[i]->name, strlen(devname)) == 0) {
612 /* If device cannot be found, returns -1 */
613 if (i == MAXCONTROLLERS) {
614 debug ("%s: device %s not found in devlist\n", __FUNCTION__, devname);
622 * Read a MII PHY register.
627 static int uec_miiphy_read(struct mii_dev *bus, int addr, int devad, int reg)
629 unsigned short value = 0;
632 if (bus->name == NULL) {
633 debug("%s: NULL pointer given\n", __FUNCTION__);
635 devindex = uec_miiphy_find_dev_by_name(bus->name);
637 value = uec_read_phy_reg(devlist[devindex], addr, reg);
644 * Write a MII PHY register.
649 static int uec_miiphy_write(struct mii_dev *bus, int addr, int devad, int reg,
654 if (bus->name == NULL) {
655 debug("%s: NULL pointer given\n", __FUNCTION__);
657 devindex = uec_miiphy_find_dev_by_name(bus->name);
659 uec_write_phy_reg(devlist[devindex], addr, reg, value);
666 static int uec_set_mac_address(uec_private_t *uec, u8 *mac_addr)
673 printf("%s: uec not initial\n", __FUNCTION__);
677 uec_regs = uec->uec_regs;
679 /* if a station address of 0x12345678ABCD, perform a write to
680 MACSTNADDR1 of 0xCDAB7856,
681 MACSTNADDR2 of 0x34120000 */
683 mac_addr1 = (mac_addr[5] << 24) | (mac_addr[4] << 16) | \
684 (mac_addr[3] << 8) | (mac_addr[2]);
685 out_be32(&uec_regs->macstnaddr1, mac_addr1);
687 mac_addr2 = ((mac_addr[1] << 24) | (mac_addr[0] << 16)) & 0xffff0000;
688 out_be32(&uec_regs->macstnaddr2, mac_addr2);
693 static int uec_convert_threads_num(uec_num_of_threads_e threads_num,
694 int *threads_num_ret)
696 int num_threads_numerica;
698 switch (threads_num) {
699 case UEC_NUM_OF_THREADS_1:
700 num_threads_numerica = 1;
702 case UEC_NUM_OF_THREADS_2:
703 num_threads_numerica = 2;
705 case UEC_NUM_OF_THREADS_4:
706 num_threads_numerica = 4;
708 case UEC_NUM_OF_THREADS_6:
709 num_threads_numerica = 6;
711 case UEC_NUM_OF_THREADS_8:
712 num_threads_numerica = 8;
715 printf("%s: Bad number of threads value.",
720 *threads_num_ret = num_threads_numerica;
725 static void uec_init_tx_parameter(uec_private_t *uec, int num_threads_tx)
727 uec_info_t *uec_info;
732 uec_info = uec->uec_info;
734 /* Alloc global Tx parameter RAM page */
735 uec->tx_glbl_pram_offset = qe_muram_alloc(
736 sizeof(uec_tx_global_pram_t),
737 UEC_TX_GLOBAL_PRAM_ALIGNMENT);
738 uec->p_tx_glbl_pram = (uec_tx_global_pram_t *)
739 qe_muram_addr(uec->tx_glbl_pram_offset);
741 /* Zero the global Tx prameter RAM */
742 memset(uec->p_tx_glbl_pram, 0, sizeof(uec_tx_global_pram_t));
744 /* Init global Tx parameter RAM */
746 /* TEMODER, RMON statistics disable, one Tx queue */
747 out_be16(&uec->p_tx_glbl_pram->temoder, TEMODER_INIT_VALUE);
750 uec->send_q_mem_reg_offset = qe_muram_alloc(
751 sizeof(uec_send_queue_qd_t),
752 UEC_SEND_QUEUE_QUEUE_DESCRIPTOR_ALIGNMENT);
753 uec->p_send_q_mem_reg = (uec_send_queue_mem_region_t *)
754 qe_muram_addr(uec->send_q_mem_reg_offset);
755 out_be32(&uec->p_tx_glbl_pram->sqptr, uec->send_q_mem_reg_offset);
757 /* Setup the table with TxBDs ring */
758 end_bd = (u32)uec->p_tx_bd_ring + (uec_info->tx_bd_ring_len - 1)
760 out_be32(&uec->p_send_q_mem_reg->sqqd[0].bd_ring_base,
761 (u32)(uec->p_tx_bd_ring));
762 out_be32(&uec->p_send_q_mem_reg->sqqd[0].last_bd_completed_address,
765 /* Scheduler Base Pointer, we have only one Tx queue, no need it */
766 out_be32(&uec->p_tx_glbl_pram->schedulerbasepointer, 0);
768 /* TxRMON Base Pointer, TxRMON disable, we don't need it */
769 out_be32(&uec->p_tx_glbl_pram->txrmonbaseptr, 0);
771 /* TSTATE, global snooping, big endian, the CSB bus selected */
772 bmrx = BMR_INIT_VALUE;
773 out_be32(&uec->p_tx_glbl_pram->tstate, ((u32)(bmrx) << BMR_SHIFT));
776 for (i = 0; i < MAX_IPH_OFFSET_ENTRY; i++) {
777 out_8(&uec->p_tx_glbl_pram->iphoffset[i], 0);
781 for (i = 0; i < UEC_TX_VTAG_TABLE_ENTRY_MAX; i++) {
782 out_be32(&uec->p_tx_glbl_pram->vtagtable[i], 0);
786 uec->thread_dat_tx_offset = qe_muram_alloc(
787 num_threads_tx * sizeof(uec_thread_data_tx_t) +
788 32 *(num_threads_tx == 1), UEC_THREAD_DATA_ALIGNMENT);
790 uec->p_thread_data_tx = (uec_thread_data_tx_t *)
791 qe_muram_addr(uec->thread_dat_tx_offset);
792 out_be32(&uec->p_tx_glbl_pram->tqptr, uec->thread_dat_tx_offset);
795 static void uec_init_rx_parameter(uec_private_t *uec, int num_threads_rx)
799 uec_82xx_address_filtering_pram_t *p_af_pram;
801 /* Allocate global Rx parameter RAM page */
802 uec->rx_glbl_pram_offset = qe_muram_alloc(
803 sizeof(uec_rx_global_pram_t), UEC_RX_GLOBAL_PRAM_ALIGNMENT);
804 uec->p_rx_glbl_pram = (uec_rx_global_pram_t *)
805 qe_muram_addr(uec->rx_glbl_pram_offset);
807 /* Zero Global Rx parameter RAM */
808 memset(uec->p_rx_glbl_pram, 0, sizeof(uec_rx_global_pram_t));
810 /* Init global Rx parameter RAM */
811 /* REMODER, Extended feature mode disable, VLAN disable,
812 LossLess flow control disable, Receive firmware statisic disable,
813 Extended address parsing mode disable, One Rx queues,
814 Dynamic maximum/minimum frame length disable, IP checksum check
815 disable, IP address alignment disable
817 out_be32(&uec->p_rx_glbl_pram->remoder, REMODER_INIT_VALUE);
820 uec->thread_dat_rx_offset = qe_muram_alloc(
821 num_threads_rx * sizeof(uec_thread_data_rx_t),
822 UEC_THREAD_DATA_ALIGNMENT);
823 uec->p_thread_data_rx = (uec_thread_data_rx_t *)
824 qe_muram_addr(uec->thread_dat_rx_offset);
825 out_be32(&uec->p_rx_glbl_pram->rqptr, uec->thread_dat_rx_offset);
828 out_be16(&uec->p_rx_glbl_pram->typeorlen, 3072);
830 /* RxRMON base pointer, we don't need it */
831 out_be32(&uec->p_rx_glbl_pram->rxrmonbaseptr, 0);
833 /* IntCoalescingPTR, we don't need it, no interrupt */
834 out_be32(&uec->p_rx_glbl_pram->intcoalescingptr, 0);
836 /* RSTATE, global snooping, big endian, the CSB bus selected */
837 bmrx = BMR_INIT_VALUE;
838 out_8(&uec->p_rx_glbl_pram->rstate, bmrx);
841 out_be16(&uec->p_rx_glbl_pram->mrblr, MAX_RXBUF_LEN);
844 uec->rx_bd_qs_tbl_offset = qe_muram_alloc(
845 sizeof(uec_rx_bd_queues_entry_t) + \
846 sizeof(uec_rx_prefetched_bds_t),
847 UEC_RX_BD_QUEUES_ALIGNMENT);
848 uec->p_rx_bd_qs_tbl = (uec_rx_bd_queues_entry_t *)
849 qe_muram_addr(uec->rx_bd_qs_tbl_offset);
852 memset(uec->p_rx_bd_qs_tbl, 0, sizeof(uec_rx_bd_queues_entry_t) + \
853 sizeof(uec_rx_prefetched_bds_t));
854 out_be32(&uec->p_rx_glbl_pram->rbdqptr, uec->rx_bd_qs_tbl_offset);
855 out_be32(&uec->p_rx_bd_qs_tbl->externalbdbaseptr,
856 (u32)uec->p_rx_bd_ring);
859 out_be16(&uec->p_rx_glbl_pram->mflr, MAX_FRAME_LEN);
861 out_be16(&uec->p_rx_glbl_pram->minflr, MIN_FRAME_LEN);
863 out_be16(&uec->p_rx_glbl_pram->maxd1, MAX_DMA1_LEN);
865 out_be16(&uec->p_rx_glbl_pram->maxd2, MAX_DMA2_LEN);
867 out_be32(&uec->p_rx_glbl_pram->ecamptr, 0);
869 out_be32(&uec->p_rx_glbl_pram->l2qt, 0);
871 for (i = 0; i < 8; i++) {
872 out_be32(&uec->p_rx_glbl_pram->l3qt[i], 0);
876 out_be16(&uec->p_rx_glbl_pram->vlantype, 0x8100);
878 out_be16(&uec->p_rx_glbl_pram->vlantci, 0);
880 /* Clear PQ2 style address filtering hash table */
881 p_af_pram = (uec_82xx_address_filtering_pram_t *) \
882 uec->p_rx_glbl_pram->addressfiltering;
884 p_af_pram->iaddr_h = 0;
885 p_af_pram->iaddr_l = 0;
886 p_af_pram->gaddr_h = 0;
887 p_af_pram->gaddr_l = 0;
890 static int uec_issue_init_enet_rxtx_cmd(uec_private_t *uec,
891 int thread_tx, int thread_rx)
893 uec_init_cmd_pram_t *p_init_enet_param;
894 u32 init_enet_param_offset;
895 uec_info_t *uec_info;
898 u32 init_enet_offset;
903 uec_info = uec->uec_info;
905 /* Allocate init enet command parameter */
906 uec->init_enet_param_offset = qe_muram_alloc(
907 sizeof(uec_init_cmd_pram_t), 4);
908 init_enet_param_offset = uec->init_enet_param_offset;
909 uec->p_init_enet_param = (uec_init_cmd_pram_t *)
910 qe_muram_addr(uec->init_enet_param_offset);
912 /* Zero init enet command struct */
913 memset((void *)uec->p_init_enet_param, 0, sizeof(uec_init_cmd_pram_t));
915 /* Init the command struct */
916 p_init_enet_param = uec->p_init_enet_param;
917 p_init_enet_param->resinit0 = ENET_INIT_PARAM_MAGIC_RES_INIT0;
918 p_init_enet_param->resinit1 = ENET_INIT_PARAM_MAGIC_RES_INIT1;
919 p_init_enet_param->resinit2 = ENET_INIT_PARAM_MAGIC_RES_INIT2;
920 p_init_enet_param->resinit3 = ENET_INIT_PARAM_MAGIC_RES_INIT3;
921 p_init_enet_param->resinit4 = ENET_INIT_PARAM_MAGIC_RES_INIT4;
922 p_init_enet_param->largestexternallookupkeysize = 0;
924 p_init_enet_param->rgftgfrxglobal |= ((u32)uec_info->num_threads_rx)
925 << ENET_INIT_PARAM_RGF_SHIFT;
926 p_init_enet_param->rgftgfrxglobal |= ((u32)uec_info->num_threads_tx)
927 << ENET_INIT_PARAM_TGF_SHIFT;
929 /* Init Rx global parameter pointer */
930 p_init_enet_param->rgftgfrxglobal |= uec->rx_glbl_pram_offset |
931 (u32)uec_info->risc_rx;
933 /* Init Rx threads */
934 for (i = 0; i < (thread_rx + 1); i++) {
935 if ((snum = qe_get_snum()) < 0) {
936 printf("%s can not get snum\n", __FUNCTION__);
941 init_enet_offset = 0;
943 init_enet_offset = qe_muram_alloc(
944 sizeof(uec_thread_rx_pram_t),
945 UEC_THREAD_RX_PRAM_ALIGNMENT);
948 entry_val = ((u32)snum << ENET_INIT_PARAM_SNUM_SHIFT) |
949 init_enet_offset | (u32)uec_info->risc_rx;
950 p_init_enet_param->rxthread[i] = entry_val;
953 /* Init Tx global parameter pointer */
954 p_init_enet_param->txglobal = uec->tx_glbl_pram_offset |
955 (u32)uec_info->risc_tx;
957 /* Init Tx threads */
958 for (i = 0; i < thread_tx; i++) {
959 if ((snum = qe_get_snum()) < 0) {
960 printf("%s can not get snum\n", __FUNCTION__);
964 init_enet_offset = qe_muram_alloc(sizeof(uec_thread_tx_pram_t),
965 UEC_THREAD_TX_PRAM_ALIGNMENT);
967 entry_val = ((u32)snum << ENET_INIT_PARAM_SNUM_SHIFT) |
968 init_enet_offset | (u32)uec_info->risc_tx;
969 p_init_enet_param->txthread[i] = entry_val;
972 __asm__ __volatile__("sync");
974 /* Issue QE command */
975 command = QE_INIT_TX_RX;
976 cecr_subblock = ucc_fast_get_qe_cr_subblock(
977 uec->uec_info->uf_info.ucc_num);
978 qe_issue_cmd(command, cecr_subblock, (u8) QE_CR_PROTOCOL_ETHERNET,
979 init_enet_param_offset);
984 static int uec_startup(uec_private_t *uec)
986 uec_info_t *uec_info;
987 ucc_fast_info_t *uf_info;
988 ucc_fast_private_t *uccf;
1000 if (!uec || !uec->uec_info) {
1001 printf("%s: uec or uec_info not initial\n", __FUNCTION__);
1005 uec_info = uec->uec_info;
1006 uf_info = &(uec_info->uf_info);
1008 /* Check if Rx BD ring len is illegal */
1009 if ((uec_info->rx_bd_ring_len < UEC_RX_BD_RING_SIZE_MIN) || \
1010 (uec_info->rx_bd_ring_len % UEC_RX_BD_RING_SIZE_ALIGNMENT)) {
1011 printf("%s: Rx BD ring len must be multiple of 4, and > 8.\n",
1016 /* Check if Tx BD ring len is illegal */
1017 if (uec_info->tx_bd_ring_len < UEC_TX_BD_RING_SIZE_MIN) {
1018 printf("%s: Tx BD ring length must not be smaller than 2.\n",
1023 /* Check if MRBLR is illegal */
1024 if ((MAX_RXBUF_LEN == 0) || (MAX_RXBUF_LEN % UEC_MRBLR_ALIGNMENT)) {
1025 printf("%s: max rx buffer length must be mutliple of 128.\n",
1030 /* Both Rx and Tx are stopped */
1031 uec->grace_stopped_rx = 1;
1032 uec->grace_stopped_tx = 1;
1035 if (ucc_fast_init(uf_info, &uccf)) {
1036 printf("%s: failed to init ucc fast\n", __FUNCTION__);
1043 /* Convert the Tx threads number */
1044 if (uec_convert_threads_num(uec_info->num_threads_tx,
1049 /* Convert the Rx threads number */
1050 if (uec_convert_threads_num(uec_info->num_threads_rx,
1055 uf_regs = uccf->uf_regs;
1057 /* UEC register is following UCC fast registers */
1058 uec_regs = (uec_t *)(&uf_regs->ucc_eth);
1060 /* Save the UEC register pointer to UEC private struct */
1061 uec->uec_regs = uec_regs;
1063 /* Init UPSMR, enable hardware statistics (UCC) */
1064 out_be32(&uec->uccf->uf_regs->upsmr, UPSMR_INIT_VALUE);
1066 /* Init MACCFG1, flow control disable, disable Tx and Rx */
1067 out_be32(&uec_regs->maccfg1, MACCFG1_INIT_VALUE);
1069 /* Init MACCFG2, length check, MAC PAD and CRC enable */
1070 out_be32(&uec_regs->maccfg2, MACCFG2_INIT_VALUE);
1072 /* Setup MAC interface mode */
1073 uec_set_mac_if_mode(uec, uec_info->enet_interface_type, uec_info->speed);
1075 /* Setup MII management base */
1076 #ifndef CONFIG_eTSEC_MDIO_BUS
1077 uec->uec_mii_regs = (uec_mii_t *)(&uec_regs->miimcfg);
1079 uec->uec_mii_regs = (uec_mii_t *) CONFIG_MIIM_ADDRESS;
1082 /* Setup MII master clock source */
1083 qe_set_mii_clk_src(uec_info->uf_info.ucc_num);
1086 utbipar = in_be32(&uec_regs->utbipar);
1087 utbipar &= ~UTBIPAR_PHY_ADDRESS_MASK;
1089 /* Initialize UTBIPAR address to CONFIG_UTBIPAR_INIT_TBIPA for ALL UEC.
1090 * This frees up the remaining SMI addresses for use.
1092 utbipar |= CONFIG_UTBIPAR_INIT_TBIPA << UTBIPAR_PHY_ADDRESS_SHIFT;
1093 out_be32(&uec_regs->utbipar, utbipar);
1095 /* Configure the TBI for SGMII operation */
1096 if ((uec->uec_info->enet_interface_type == PHY_INTERFACE_MODE_SGMII) &&
1097 (uec->uec_info->speed == SPEED_1000)) {
1098 uec_write_phy_reg(uec->dev, uec_regs->utbipar,
1099 ENET_TBI_MII_ANA, TBIANA_SETTINGS);
1101 uec_write_phy_reg(uec->dev, uec_regs->utbipar,
1102 ENET_TBI_MII_TBICON, TBICON_CLK_SELECT);
1104 uec_write_phy_reg(uec->dev, uec_regs->utbipar,
1105 ENET_TBI_MII_CR, TBICR_SETTINGS);
1108 /* Allocate Tx BDs */
1109 length = ((uec_info->tx_bd_ring_len * SIZEOFBD) /
1110 UEC_TX_BD_RING_SIZE_MEMORY_ALIGNMENT) *
1111 UEC_TX_BD_RING_SIZE_MEMORY_ALIGNMENT;
1112 if ((uec_info->tx_bd_ring_len * SIZEOFBD) %
1113 UEC_TX_BD_RING_SIZE_MEMORY_ALIGNMENT) {
1114 length += UEC_TX_BD_RING_SIZE_MEMORY_ALIGNMENT;
1117 align = UEC_TX_BD_RING_ALIGNMENT;
1118 uec->tx_bd_ring_offset = (u32)malloc((u32)(length + align));
1119 if (uec->tx_bd_ring_offset != 0) {
1120 uec->p_tx_bd_ring = (u8 *)((uec->tx_bd_ring_offset + align)
1124 /* Zero all of Tx BDs */
1125 memset((void *)(uec->tx_bd_ring_offset), 0, length + align);
1127 /* Allocate Rx BDs */
1128 length = uec_info->rx_bd_ring_len * SIZEOFBD;
1129 align = UEC_RX_BD_RING_ALIGNMENT;
1130 uec->rx_bd_ring_offset = (u32)(malloc((u32)(length + align)));
1131 if (uec->rx_bd_ring_offset != 0) {
1132 uec->p_rx_bd_ring = (u8 *)((uec->rx_bd_ring_offset + align)
1136 /* Zero all of Rx BDs */
1137 memset((void *)(uec->rx_bd_ring_offset), 0, length + align);
1139 /* Allocate Rx buffer */
1140 length = uec_info->rx_bd_ring_len * MAX_RXBUF_LEN;
1141 align = UEC_RX_DATA_BUF_ALIGNMENT;
1142 uec->rx_buf_offset = (u32)malloc(length + align);
1143 if (uec->rx_buf_offset != 0) {
1144 uec->p_rx_buf = (u8 *)((uec->rx_buf_offset + align)
1148 /* Zero all of the Rx buffer */
1149 memset((void *)(uec->rx_buf_offset), 0, length + align);
1151 /* Init TxBD ring */
1152 bd = (qe_bd_t *)uec->p_tx_bd_ring;
1155 for (i = 0; i < uec_info->tx_bd_ring_len; i++) {
1157 BD_STATUS_SET(bd, 0);
1158 BD_LENGTH_SET(bd, 0);
1161 BD_STATUS_SET((--bd), TxBD_WRAP);
1163 /* Init RxBD ring */
1164 bd = (qe_bd_t *)uec->p_rx_bd_ring;
1166 buf = uec->p_rx_buf;
1167 for (i = 0; i < uec_info->rx_bd_ring_len; i++) {
1168 BD_DATA_SET(bd, buf);
1169 BD_LENGTH_SET(bd, 0);
1170 BD_STATUS_SET(bd, RxBD_EMPTY);
1171 buf += MAX_RXBUF_LEN;
1174 BD_STATUS_SET((--bd), RxBD_WRAP | RxBD_EMPTY);
1176 /* Init global Tx parameter RAM */
1177 uec_init_tx_parameter(uec, num_threads_tx);
1179 /* Init global Rx parameter RAM */
1180 uec_init_rx_parameter(uec, num_threads_rx);
1182 /* Init ethernet Tx and Rx parameter command */
1183 if (uec_issue_init_enet_rxtx_cmd(uec, num_threads_tx,
1185 printf("%s issue init enet cmd failed\n", __FUNCTION__);
1192 static int uec_init(struct eth_device* dev, struct bd_info *bd)
1196 struct phy_info *curphy;
1197 #if defined(CONFIG_ARCH_P1021) || defined(CONFIG_ARCH_P1025)
1198 ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
1201 uec = (uec_private_t *)dev->priv;
1203 if (uec->the_first_run == 0) {
1204 #if defined(CONFIG_ARCH_P1021) || defined(CONFIG_ARCH_P1025)
1205 /* QE9 and QE12 need to be set for enabling QE MII managment signals */
1206 setbits_be32(&gur->pmuxcr, MPC85xx_PMUXCR_QE9);
1207 setbits_be32(&gur->pmuxcr, MPC85xx_PMUXCR_QE12);
1210 err = init_phy(dev);
1212 printf("%s: Cannot initialize PHY, aborting.\n",
1217 curphy = uec->mii_info->phyinfo;
1219 if (curphy->config_aneg) {
1220 err = curphy->config_aneg(uec->mii_info);
1222 printf("%s: Can't negotiate PHY\n", dev->name);
1227 /* Give PHYs up to 5 sec to report a link */
1230 err = curphy->read_status(uec->mii_info);
1231 if (!(((i-- > 0) && !uec->mii_info->link) || err))
1236 #if defined(CONFIG_ARCH_P1021) || defined(CONFIG_ARCH_P1025)
1237 /* QE12 needs to be released for enabling LBCTL signal*/
1238 clrbits_be32(&gur->pmuxcr, MPC85xx_PMUXCR_QE12);
1242 printf("warning: %s: timeout on PHY link\n", dev->name);
1245 uec->the_first_run = 1;
1248 /* Set up the MAC address */
1249 if (dev->enetaddr[0] & 0x01) {
1250 printf("%s: MacAddress is multcast address\n",
1254 uec_set_mac_address(uec, dev->enetaddr);
1257 err = uec_open(uec, COMM_DIR_RX_AND_TX);
1259 printf("%s: cannot enable UEC device\n", dev->name);
1265 return (uec->mii_info->link ? 0 : -1);
1268 static void uec_halt(struct eth_device* dev)
1270 uec_private_t *uec = (uec_private_t *)dev->priv;
1271 uec_stop(uec, COMM_DIR_RX_AND_TX);
1274 static int uec_send(struct eth_device *dev, void *buf, int len)
1277 ucc_fast_private_t *uccf;
1278 volatile qe_bd_t *bd;
1283 uec = (uec_private_t *)dev->priv;
1287 /* Find an empty TxBD */
1288 for (i = 0; bd->status & TxBD_READY; i++) {
1290 printf("%s: tx buffer not ready\n", dev->name);
1296 BD_DATA_SET(bd, buf);
1297 BD_LENGTH_SET(bd, len);
1298 status = bd->status;
1300 status |= (TxBD_READY | TxBD_LAST);
1301 BD_STATUS_SET(bd, status);
1303 /* Tell UCC to transmit the buffer */
1304 ucc_fast_transmit_on_demand(uccf);
1306 /* Wait for buffer to be transmitted */
1307 for (i = 0; bd->status & TxBD_READY; i++) {
1309 printf("%s: tx error\n", dev->name);
1314 /* Ok, the buffer be transimitted */
1315 BD_ADVANCE(bd, status, uec->p_tx_bd_ring);
1322 static int uec_recv(struct eth_device* dev)
1324 uec_private_t *uec = dev->priv;
1325 volatile qe_bd_t *bd;
1331 status = bd->status;
1333 while (!(status & RxBD_EMPTY)) {
1334 if (!(status & RxBD_ERROR)) {
1336 len = BD_LENGTH(bd);
1337 net_process_received_packet(data, len);
1339 printf("%s: Rx error\n", dev->name);
1342 BD_LENGTH_SET(bd, 0);
1343 BD_STATUS_SET(bd, status | RxBD_EMPTY);
1344 BD_ADVANCE(bd, status, uec->p_rx_bd_ring);
1345 status = bd->status;
1352 int uec_initialize(struct bd_info *bis, uec_info_t *uec_info)
1354 struct eth_device *dev;
1359 dev = (struct eth_device *)malloc(sizeof(struct eth_device));
1362 memset(dev, 0, sizeof(struct eth_device));
1364 /* Allocate the UEC private struct */
1365 uec = (uec_private_t *)malloc(sizeof(uec_private_t));
1369 memset(uec, 0, sizeof(uec_private_t));
1371 /* Adjust uec_info */
1372 #if (MAX_QE_RISC == 4)
1373 uec_info->risc_tx = QE_RISC_ALLOCATION_FOUR_RISCS;
1374 uec_info->risc_rx = QE_RISC_ALLOCATION_FOUR_RISCS;
1377 devlist[uec_info->uf_info.ucc_num] = dev;
1379 uec->uec_info = uec_info;
1382 sprintf(dev->name, "UEC%d", uec_info->uf_info.ucc_num);
1384 dev->priv = (void *)uec;
1385 dev->init = uec_init;
1386 dev->halt = uec_halt;
1387 dev->send = uec_send;
1388 dev->recv = uec_recv;
1390 /* Clear the ethnet address */
1391 for (i = 0; i < 6; i++)
1392 dev->enetaddr[i] = 0;
1396 err = uec_startup(uec);
1398 printf("%s: Cannot configure net device, aborting.",dev->name);
1402 #if defined(CONFIG_MII) || defined(CONFIG_CMD_MII)
1404 struct mii_dev *mdiodev = mdio_alloc();
1407 strncpy(mdiodev->name, dev->name, MDIO_NAME_LEN);
1408 mdiodev->read = uec_miiphy_read;
1409 mdiodev->write = uec_miiphy_write;
1411 retval = mdio_register(mdiodev);
1419 int uec_eth_init(struct bd_info *bis, uec_info_t *uecs, int num)
1423 for (i = 0; i < num; i++)
1424 uec_initialize(bis, &uecs[i]);
1429 int uec_standard_init(struct bd_info *bis)
1431 return uec_eth_init(bis, uec_info, ARRAY_SIZE(uec_info));