2 * Freescale Three Speed Ethernet Controller driver
4 * This software may be used and distributed according to the
5 * terms of the GNU Public License, Version 2, incorporated
8 * Copyright 2004 Freescale Semiconductor.
9 * (C) Copyright 2003, Motorola, Inc.
20 #if defined(CONFIG_TSEC_ENET)
24 DECLARE_GLOBAL_DATA_PTR;
28 static uint rxIdx; /* index of the current RX buffer */
29 static uint txIdx; /* index of the current TX buffer */
31 typedef volatile struct rtxbd {
32 txbd8_t txbd[TX_BUF_CNT];
33 rxbd8_t rxbd[PKTBUFSRX];
36 struct tsec_info_struct {
39 unsigned int phyregidx;
42 /* The tsec_info structure contains 3 values which the
43 * driver uses to determine how to operate a given ethernet
44 * device. The information needed is:
45 * phyaddr - The address of the PHY which is attached to
48 * flags - This variable indicates whether the device
49 * supports gigabit speed ethernet, and whether it should be
52 * phyregidx - This variable specifies which ethernet device
53 * controls the MII Management registers which are connected
54 * to the PHY. For now, only TSEC1 (index 0) has
55 * access to the PHYs, so all of the entries have "0".
57 * The values specified in the table are taken from the board's
58 * config file in include/configs/. When implementing a new
59 * board with ethernet capability, it is necessary to define:
63 * for n = 1,2,3, etc. And for FEC:
67 static struct tsec_info_struct tsec_info[] = {
68 #if defined(CONFIG_MPC85XX_TSEC1) || defined(CONFIG_MPC83XX_TSEC1)
69 {TSEC1_PHY_ADDR, TSEC_GIGABIT, TSEC1_PHYIDX},
70 #elif defined(CONFIG_MPC86XX_TSEC1)
71 {TSEC1_PHY_ADDR, TSEC_GIGABIT | TSEC_REDUCED, TSEC1_PHYIDX},
75 #if defined(CONFIG_MPC85XX_TSEC2) || defined(CONFIG_MPC83XX_TSEC2)
76 {TSEC2_PHY_ADDR, TSEC_GIGABIT, TSEC2_PHYIDX},
77 #elif defined(CONFIG_MPC86XX_TSEC2)
78 {TSEC2_PHY_ADDR, TSEC_GIGABIT | TSEC_REDUCED, TSEC2_PHYIDX},
82 #ifdef CONFIG_MPC85XX_FEC
83 {FEC_PHY_ADDR, 0, FEC_PHYIDX},
85 #if defined(CONFIG_MPC85XX_TSEC3) || defined(CONFIG_MPC83XX_TSEC3) || defined(CONFIG_MPC86XX_TSEC3)
86 {TSEC3_PHY_ADDR, TSEC_GIGABIT | TSEC_REDUCED, TSEC3_PHYIDX},
90 #if defined(CONFIG_MPC85XX_TSEC4) || defined(CONFIG_MPC83XX_TSEC4) || defined(CONFIG_MPC86XX_TSEC4)
91 {TSEC4_PHY_ADDR, TSEC_GIGABIT | TSEC_REDUCED, TSEC4_PHYIDX},
98 #define MAXCONTROLLERS (4)
100 static int relocated = 0;
102 static struct tsec_private *privlist[MAXCONTROLLERS];
105 static RTXBD rtx __attribute__ ((aligned(8)));
107 #error "rtx must be 64-bit aligned"
110 static int tsec_send(struct eth_device *dev,
111 volatile void *packet, int length);
112 static int tsec_recv(struct eth_device *dev);
113 static int tsec_init(struct eth_device *dev, bd_t * bd);
114 static void tsec_halt(struct eth_device *dev);
115 static void init_registers(volatile tsec_t * regs);
116 static void startup_tsec(struct eth_device *dev);
117 static int init_phy(struct eth_device *dev);
118 void write_phy_reg(struct tsec_private *priv, uint regnum, uint value);
119 uint read_phy_reg(struct tsec_private *priv, uint regnum);
120 struct phy_info *get_phy_info(struct eth_device *dev);
121 void phy_run_commands(struct tsec_private *priv, struct phy_cmd *cmd);
122 static void adjust_link(struct eth_device *dev);
123 static void relocate_cmds(void);
124 static int tsec_miiphy_write(char *devname, unsigned char addr,
125 unsigned char reg, unsigned short value);
126 static int tsec_miiphy_read(char *devname, unsigned char addr,
127 unsigned char reg, unsigned short *value);
129 /* Initialize device structure. Returns success if PHY
130 * initialization succeeded (i.e. if it recognizes the PHY)
132 int tsec_initialize(bd_t * bis, int index, char *devname)
134 struct eth_device *dev;
136 struct tsec_private *priv;
138 dev = (struct eth_device *)malloc(sizeof *dev);
143 memset(dev, 0, sizeof *dev);
145 priv = (struct tsec_private *)malloc(sizeof(*priv));
150 privlist[index] = priv;
151 priv->regs = (volatile tsec_t *)(TSEC_BASE_ADDR + index * TSEC_SIZE);
152 priv->phyregs = (volatile tsec_t *)(TSEC_BASE_ADDR +
153 tsec_info[index].phyregidx *
156 priv->phyaddr = tsec_info[index].phyaddr;
157 priv->flags = tsec_info[index].flags;
159 sprintf(dev->name, devname);
162 dev->init = tsec_init;
163 dev->halt = tsec_halt;
164 dev->send = tsec_send;
165 dev->recv = tsec_recv;
167 /* Tell u-boot to get the addr from the env */
168 for (i = 0; i < 6; i++)
169 dev->enetaddr[i] = 0;
174 priv->regs->maccfg1 |= MACCFG1_SOFT_RESET;
175 priv->regs->maccfg1 &= ~(MACCFG1_SOFT_RESET);
177 #if defined(CONFIG_MII) || (CONFIG_COMMANDS & CFG_CMD_MII) \
178 && !defined(BITBANGMII)
179 miiphy_register(dev->name, tsec_miiphy_read, tsec_miiphy_write);
182 /* Try to initialize PHY here, and return */
183 return init_phy(dev);
186 /* Initializes data structures and registers for the controller,
187 * and brings the interface up. Returns the link status, meaning
188 * that it returns success if the link is up, failure otherwise.
189 * This allows u-boot to find the first active controller.
191 int tsec_init(struct eth_device *dev, bd_t * bd)
194 char tmpbuf[MAC_ADDR_LEN];
196 struct tsec_private *priv = (struct tsec_private *)dev->priv;
197 volatile tsec_t *regs = priv->regs;
199 /* Make sure the controller is stopped */
202 /* Init MACCFG2. Defaults to GMII */
203 regs->maccfg2 = MACCFG2_INIT_SETTINGS;
206 regs->ecntrl = ECNTRL_INIT_SETTINGS;
208 /* Copy the station address into the address registers.
209 * Backwards, because little endian MACS are dumb */
210 for (i = 0; i < MAC_ADDR_LEN; i++) {
211 tmpbuf[MAC_ADDR_LEN - 1 - i] = dev->enetaddr[i];
213 regs->macstnaddr1 = *((uint *) (tmpbuf));
215 tempval = *((uint *) (tmpbuf + 4));
217 regs->macstnaddr2 = tempval;
219 /* reset the indices to zero */
223 /* Clear out (for the most part) the other registers */
224 init_registers(regs);
226 /* Ready the device for tx/rx */
229 /* If there's no link, fail */
234 /* Write value to the device's PHY through the registers
235 * specified in priv, modifying the register specified in regnum.
236 * It will wait for the write to be done (or for a timeout to
237 * expire) before exiting
239 void write_phy_reg(struct tsec_private *priv, uint regnum, uint value)
241 volatile tsec_t *regbase = priv->phyregs;
242 uint phyid = priv->phyaddr;
243 int timeout = 1000000;
245 regbase->miimadd = (phyid << 8) | regnum;
246 regbase->miimcon = value;
250 while ((regbase->miimind & MIIMIND_BUSY) && timeout--) ;
253 /* Reads register regnum on the device's PHY through the
254 * registers specified in priv. It lowers and raises the read
255 * command, and waits for the data to become valid (miimind
256 * notvalid bit cleared), and the bus to cease activity (miimind
257 * busy bit cleared), and then returns the value
259 uint read_phy_reg(struct tsec_private *priv, uint regnum)
262 volatile tsec_t *regbase = priv->phyregs;
263 uint phyid = priv->phyaddr;
265 /* Put the address of the phy, and the register
266 * number into MIIMADD */
267 regbase->miimadd = (phyid << 8) | regnum;
269 /* Clear the command register, and wait */
270 regbase->miimcom = 0;
273 /* Initiate a read command, and wait */
274 regbase->miimcom = MIIM_READ_COMMAND;
277 /* Wait for the the indication that the read is done */
278 while ((regbase->miimind & (MIIMIND_NOTVALID | MIIMIND_BUSY))) ;
280 /* Grab the value read from the PHY */
281 value = regbase->miimstat;
286 /* Discover which PHY is attached to the device, and configure it
287 * properly. If the PHY is not recognized, then return 0
288 * (failure). Otherwise, return 1
290 static int init_phy(struct eth_device *dev)
292 struct tsec_private *priv = (struct tsec_private *)dev->priv;
293 struct phy_info *curphy;
294 volatile tsec_t *regs = (volatile tsec_t *)(TSEC_BASE_ADDR);
296 /* Assign a Physical address to the TBI */
297 regs->tbipa = TBIPA_VALUE;
298 regs = (volatile tsec_t *)(TSEC_BASE_ADDR + TSEC_SIZE);
299 regs->tbipa = TBIPA_VALUE;
302 /* Reset MII (due to new addresses) */
303 priv->phyregs->miimcfg = MIIMCFG_RESET;
305 priv->phyregs->miimcfg = MIIMCFG_INIT_VALUE;
307 while (priv->phyregs->miimind & MIIMIND_BUSY) ;
312 /* Get the cmd structure corresponding to the attached
314 curphy = get_phy_info(dev);
316 if (NULL == curphy) {
317 printf("%s: No PHY found\n", dev->name);
322 priv->phyinfo = curphy;
324 phy_run_commands(priv, priv->phyinfo->config);
330 * Returns which value to write to the control register.
331 * For 10/100, the value is slightly different
333 uint mii_cr_init(uint mii_reg, struct tsec_private * priv)
335 if (priv->flags & TSEC_GIGABIT)
336 return MIIM_CONTROL_INIT;
341 /* Parse the status register for link, and then do
344 uint mii_parse_sr(uint mii_reg, struct tsec_private * priv)
347 * Wait if PHY is capable of autonegotiation and autonegotiation
350 mii_reg = read_phy_reg(priv, MIIM_STATUS);
351 if ((mii_reg & PHY_BMSR_AUTN_ABLE)
352 && !(mii_reg & PHY_BMSR_AUTN_COMP)) {
355 puts("Waiting for PHY auto negotiation to complete");
356 while (!((mii_reg & PHY_BMSR_AUTN_COMP)
357 && (mii_reg & MIIM_STATUS_LINK))) {
361 if (i > PHY_AUTONEGOTIATE_TIMEOUT) {
362 puts(" TIMEOUT !\n");
367 if ((i++ % 1000) == 0) {
370 udelay(1000); /* 1 ms */
371 mii_reg = read_phy_reg(priv, MIIM_STATUS);
375 udelay(500000); /* another 500 ms (results in faster booting) */
383 /* Parse the 88E1011's status register for speed and duplex
386 uint mii_parse_88E1011_psr(uint mii_reg, struct tsec_private * priv)
390 mii_reg = read_phy_reg(priv, MIIM_88E1011_PHY_STATUS);
392 if (!((mii_reg & MIIM_88E1011_PHYSTAT_SPDDONE) &&
393 (mii_reg & MIIM_88E1011_PHYSTAT_LINK))) {
396 puts("Waiting for PHY realtime link");
397 while (!((mii_reg & MIIM_88E1011_PHYSTAT_SPDDONE) &&
398 (mii_reg & MIIM_88E1011_PHYSTAT_LINK))) {
402 if (i > PHY_AUTONEGOTIATE_TIMEOUT) {
403 puts(" TIMEOUT !\n");
408 if ((i++ % 1000) == 0) {
411 udelay(1000); /* 1 ms */
412 mii_reg = read_phy_reg(priv, MIIM_88E1011_PHY_STATUS);
415 udelay(500000); /* another 500 ms (results in faster booting) */
418 if (mii_reg & MIIM_88E1011_PHYSTAT_DUPLEX)
423 speed = (mii_reg & MIIM_88E1011_PHYSTAT_SPEED);
426 case MIIM_88E1011_PHYSTAT_GBIT:
429 case MIIM_88E1011_PHYSTAT_100:
439 /* Parse the cis8201's status register for speed and duplex
442 uint mii_parse_cis8201(uint mii_reg, struct tsec_private * priv)
446 if (mii_reg & MIIM_CIS8201_AUXCONSTAT_DUPLEX)
451 speed = mii_reg & MIIM_CIS8201_AUXCONSTAT_SPEED;
453 case MIIM_CIS8201_AUXCONSTAT_GBIT:
456 case MIIM_CIS8201_AUXCONSTAT_100:
467 /* Parse the vsc8244's status register for speed and duplex
470 uint mii_parse_vsc8244(uint mii_reg, struct tsec_private * priv)
474 if (mii_reg & MIIM_VSC8244_AUXCONSTAT_DUPLEX)
479 speed = mii_reg & MIIM_VSC8244_AUXCONSTAT_SPEED;
481 case MIIM_VSC8244_AUXCONSTAT_GBIT:
484 case MIIM_VSC8244_AUXCONSTAT_100:
495 /* Parse the DM9161's status register for speed and duplex
498 uint mii_parse_dm9161_scsr(uint mii_reg, struct tsec_private * priv)
500 if (mii_reg & (MIIM_DM9161_SCSR_100F | MIIM_DM9161_SCSR_100H))
505 if (mii_reg & (MIIM_DM9161_SCSR_100F | MIIM_DM9161_SCSR_10F))
514 * Hack to write all 4 PHYs with the LED values
516 uint mii_cis8204_fixled(uint mii_reg, struct tsec_private * priv)
519 volatile tsec_t *regbase = priv->phyregs;
520 int timeout = 1000000;
522 for (phyid = 0; phyid < 4; phyid++) {
523 regbase->miimadd = (phyid << 8) | mii_reg;
524 regbase->miimcon = MIIM_CIS8204_SLEDCON_INIT;
528 while ((regbase->miimind & MIIMIND_BUSY) && timeout--) ;
531 return MIIM_CIS8204_SLEDCON_INIT;
534 uint mii_cis8204_setmode(uint mii_reg, struct tsec_private * priv)
536 if (priv->flags & TSEC_REDUCED)
537 return MIIM_CIS8204_EPHYCON_INIT | MIIM_CIS8204_EPHYCON_RGMII;
539 return MIIM_CIS8204_EPHYCON_INIT;
542 /* Initialized required registers to appropriate values, zeroing
543 * those we don't care about (unless zero is bad, in which case,
544 * choose a more appropriate value)
546 static void init_registers(volatile tsec_t * regs)
549 regs->ievent = IEVENT_INIT_CLEAR;
551 regs->imask = IMASK_INIT_CLEAR;
553 regs->hash.iaddr0 = 0;
554 regs->hash.iaddr1 = 0;
555 regs->hash.iaddr2 = 0;
556 regs->hash.iaddr3 = 0;
557 regs->hash.iaddr4 = 0;
558 regs->hash.iaddr5 = 0;
559 regs->hash.iaddr6 = 0;
560 regs->hash.iaddr7 = 0;
562 regs->hash.gaddr0 = 0;
563 regs->hash.gaddr1 = 0;
564 regs->hash.gaddr2 = 0;
565 regs->hash.gaddr3 = 0;
566 regs->hash.gaddr4 = 0;
567 regs->hash.gaddr5 = 0;
568 regs->hash.gaddr6 = 0;
569 regs->hash.gaddr7 = 0;
571 regs->rctrl = 0x00000000;
573 /* Init RMON mib registers */
574 memset((void *)&(regs->rmon), 0, sizeof(rmon_mib_t));
576 regs->rmon.cam1 = 0xffffffff;
577 regs->rmon.cam2 = 0xffffffff;
579 regs->mrblr = MRBLR_INIT_SETTINGS;
581 regs->minflr = MINFLR_INIT_SETTINGS;
583 regs->attr = ATTR_INIT_SETTINGS;
584 regs->attreli = ATTRELI_INIT_SETTINGS;
588 /* Configure maccfg2 based on negotiated speed and duplex
589 * reported by PHY handling code
591 static void adjust_link(struct eth_device *dev)
593 struct tsec_private *priv = (struct tsec_private *)dev->priv;
594 volatile tsec_t *regs = priv->regs;
597 if (priv->duplexity != 0)
598 regs->maccfg2 |= MACCFG2_FULL_DUPLEX;
600 regs->maccfg2 &= ~(MACCFG2_FULL_DUPLEX);
602 switch (priv->speed) {
604 regs->maccfg2 = ((regs->maccfg2 & ~(MACCFG2_IF))
609 regs->maccfg2 = ((regs->maccfg2 & ~(MACCFG2_IF))
612 /* If We're in reduced mode, we need
613 * to say whether we're 10 or 100 MB.
615 if ((priv->speed == 100)
616 && (priv->flags & TSEC_REDUCED))
617 regs->ecntrl |= ECNTRL_R100;
619 regs->ecntrl &= ~(ECNTRL_R100);
622 printf("%s: Speed was bad\n", dev->name);
626 printf("Speed: %d, %s duplex\n", priv->speed,
627 (priv->duplexity) ? "full" : "half");
630 printf("%s: No link.\n", dev->name);
634 /* Set up the buffers and their descriptors, and bring up the
637 static void startup_tsec(struct eth_device *dev)
640 struct tsec_private *priv = (struct tsec_private *)dev->priv;
641 volatile tsec_t *regs = priv->regs;
643 /* Point to the buffer descriptors */
644 regs->tbase = (unsigned int)(&rtx.txbd[txIdx]);
645 regs->rbase = (unsigned int)(&rtx.rxbd[rxIdx]);
647 /* Initialize the Rx Buffer descriptors */
648 for (i = 0; i < PKTBUFSRX; i++) {
649 rtx.rxbd[i].status = RXBD_EMPTY;
650 rtx.rxbd[i].length = 0;
651 rtx.rxbd[i].bufPtr = (uint) NetRxPackets[i];
653 rtx.rxbd[PKTBUFSRX - 1].status |= RXBD_WRAP;
655 /* Initialize the TX Buffer Descriptors */
656 for (i = 0; i < TX_BUF_CNT; i++) {
657 rtx.txbd[i].status = 0;
658 rtx.txbd[i].length = 0;
659 rtx.txbd[i].bufPtr = 0;
661 rtx.txbd[TX_BUF_CNT - 1].status |= TXBD_WRAP;
663 /* Start up the PHY */
664 phy_run_commands(priv, priv->phyinfo->startup);
667 /* Enable Transmit and Receive */
668 regs->maccfg1 |= (MACCFG1_RX_EN | MACCFG1_TX_EN);
670 /* Tell the DMA it is clear to go */
671 regs->dmactrl |= DMACTRL_INIT_SETTINGS;
672 regs->tstat = TSTAT_CLEAR_THALT;
673 regs->dmactrl &= ~(DMACTRL_GRS | DMACTRL_GTS);
676 /* This returns the status bits of the device. The return value
677 * is never checked, and this is what the 8260 driver did, so we
678 * do the same. Presumably, this would be zero if there were no
681 static int tsec_send(struct eth_device *dev, volatile void *packet, int length)
685 struct tsec_private *priv = (struct tsec_private *)dev->priv;
686 volatile tsec_t *regs = priv->regs;
688 /* Find an empty buffer descriptor */
689 for (i = 0; rtx.txbd[txIdx].status & TXBD_READY; i++) {
690 if (i >= TOUT_LOOP) {
691 debug("%s: tsec: tx buffers full\n", dev->name);
696 rtx.txbd[txIdx].bufPtr = (uint) packet;
697 rtx.txbd[txIdx].length = length;
698 rtx.txbd[txIdx].status |=
699 (TXBD_READY | TXBD_LAST | TXBD_CRC | TXBD_INTERRUPT);
701 /* Tell the DMA to go */
702 regs->tstat = TSTAT_CLEAR_THALT;
704 /* Wait for buffer to be transmitted */
705 for (i = 0; rtx.txbd[txIdx].status & TXBD_READY; i++) {
706 if (i >= TOUT_LOOP) {
707 debug("%s: tsec: tx error\n", dev->name);
712 txIdx = (txIdx + 1) % TX_BUF_CNT;
713 result = rtx.txbd[txIdx].status & TXBD_STATS;
718 static int tsec_recv(struct eth_device *dev)
721 struct tsec_private *priv = (struct tsec_private *)dev->priv;
722 volatile tsec_t *regs = priv->regs;
724 while (!(rtx.rxbd[rxIdx].status & RXBD_EMPTY)) {
726 length = rtx.rxbd[rxIdx].length;
728 /* Send the packet up if there were no errors */
729 if (!(rtx.rxbd[rxIdx].status & RXBD_STATS)) {
730 NetReceive(NetRxPackets[rxIdx], length - 4);
732 printf("Got error %x\n",
733 (rtx.rxbd[rxIdx].status & RXBD_STATS));
736 rtx.rxbd[rxIdx].length = 0;
738 /* Set the wrap bit if this is the last element in the list */
739 rtx.rxbd[rxIdx].status =
740 RXBD_EMPTY | (((rxIdx + 1) == PKTBUFSRX) ? RXBD_WRAP : 0);
742 rxIdx = (rxIdx + 1) % PKTBUFSRX;
745 if (regs->ievent & IEVENT_BSY) {
746 regs->ievent = IEVENT_BSY;
747 regs->rstat = RSTAT_CLEAR_RHALT;
754 /* Stop the interface */
755 static void tsec_halt(struct eth_device *dev)
757 struct tsec_private *priv = (struct tsec_private *)dev->priv;
758 volatile tsec_t *regs = priv->regs;
760 regs->dmactrl &= ~(DMACTRL_GRS | DMACTRL_GTS);
761 regs->dmactrl |= (DMACTRL_GRS | DMACTRL_GTS);
763 while (!(regs->ievent & (IEVENT_GRSC | IEVENT_GTSC))) ;
765 regs->maccfg1 &= ~(MACCFG1_TX_EN | MACCFG1_RX_EN);
767 /* Shut down the PHY, as needed */
768 phy_run_commands(priv, priv->phyinfo->shutdown);
771 struct phy_info phy_info_M88E1011S = {
775 (struct phy_cmd[]){ /* config */
776 /* Reset and configure the PHY */
777 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
779 {0x1e, 0x200c, NULL},
783 {MIIM_GBIT_CONTROL, MIIM_GBIT_CONTROL_INIT, NULL},
784 {MIIM_ANAR, MIIM_ANAR_INIT, NULL},
785 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
786 {MIIM_CONTROL, MIIM_CONTROL_INIT, &mii_cr_init},
789 (struct phy_cmd[]){ /* startup */
790 /* Status is read once to clear old link state */
791 {MIIM_STATUS, miim_read, NULL},
793 {MIIM_STATUS, miim_read, &mii_parse_sr},
794 /* Read the status */
795 {MIIM_88E1011_PHY_STATUS, miim_read,
796 &mii_parse_88E1011_psr},
799 (struct phy_cmd[]){ /* shutdown */
804 struct phy_info phy_info_M88E1111S = {
808 (struct phy_cmd[]){ /* config */
809 /* Reset and configure the PHY */
810 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
812 {0x1e, 0x200c, NULL},
816 {MIIM_GBIT_CONTROL, MIIM_GBIT_CONTROL_INIT, NULL},
817 {MIIM_ANAR, MIIM_ANAR_INIT, NULL},
818 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
819 {MIIM_CONTROL, MIIM_CONTROL_INIT, &mii_cr_init},
822 (struct phy_cmd[]){ /* startup */
823 /* Status is read once to clear old link state */
824 {MIIM_STATUS, miim_read, NULL},
826 {MIIM_STATUS, miim_read, &mii_parse_sr},
827 /* Read the status */
828 {MIIM_88E1011_PHY_STATUS, miim_read,
829 &mii_parse_88E1011_psr},
832 (struct phy_cmd[]){ /* shutdown */
837 static unsigned int m88e1145_setmode(uint mii_reg, struct tsec_private *priv)
839 uint mii_data = read_phy_reg(priv, mii_reg);
841 /* Setting MIIM_88E1145_PHY_EXT_CR */
842 if (priv->flags & TSEC_REDUCED)
844 MIIM_M88E1145_RGMII_RX_DELAY | MIIM_M88E1145_RGMII_TX_DELAY;
849 static struct phy_info phy_info_M88E1145 = {
853 (struct phy_cmd[]){ /* config */
860 /* Reset and configure the PHY */
861 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
862 {MIIM_GBIT_CONTROL, MIIM_GBIT_CONTROL_INIT, NULL},
863 {MIIM_ANAR, MIIM_ANAR_INIT, NULL},
864 {MIIM_88E1011_PHY_SCR, MIIM_88E1011_PHY_MDI_X_AUTO,
866 {MIIM_88E1145_PHY_EXT_CR, 0, &m88e1145_setmode},
867 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
868 {MIIM_CONTROL, MIIM_CONTROL_INIT, NULL},
871 (struct phy_cmd[]){ /* startup */
872 /* Status is read once to clear old link state */
873 {MIIM_STATUS, miim_read, NULL},
875 {MIIM_STATUS, miim_read, &mii_parse_sr},
876 {MIIM_88E1111_PHY_LED_CONTROL,
877 MIIM_88E1111_PHY_LED_DIRECT, NULL},
878 /* Read the Status */
879 {MIIM_88E1011_PHY_STATUS, miim_read,
880 &mii_parse_88E1011_psr},
883 (struct phy_cmd[]){ /* shutdown */
888 struct phy_info phy_info_cis8204 = {
892 (struct phy_cmd[]){ /* config */
893 /* Override PHY config settings */
894 {MIIM_CIS8201_AUX_CONSTAT,
895 MIIM_CIS8201_AUXCONSTAT_INIT, NULL},
896 /* Configure some basic stuff */
897 {MIIM_CONTROL, MIIM_CONTROL_INIT, &mii_cr_init},
898 {MIIM_CIS8204_SLED_CON, MIIM_CIS8204_SLEDCON_INIT,
899 &mii_cis8204_fixled},
900 {MIIM_CIS8204_EPHY_CON, MIIM_CIS8204_EPHYCON_INIT,
901 &mii_cis8204_setmode},
904 (struct phy_cmd[]){ /* startup */
905 /* Read the Status (2x to make sure link is right) */
906 {MIIM_STATUS, miim_read, NULL},
908 {MIIM_STATUS, miim_read, &mii_parse_sr},
909 /* Read the status */
910 {MIIM_CIS8201_AUX_CONSTAT, miim_read,
914 (struct phy_cmd[]){ /* shutdown */
920 struct phy_info phy_info_cis8201 = {
924 (struct phy_cmd[]){ /* config */
925 /* Override PHY config settings */
926 {MIIM_CIS8201_AUX_CONSTAT,
927 MIIM_CIS8201_AUXCONSTAT_INIT, NULL},
928 /* Set up the interface mode */
929 {MIIM_CIS8201_EXT_CON1, MIIM_CIS8201_EXTCON1_INIT,
931 /* Configure some basic stuff */
932 {MIIM_CONTROL, MIIM_CONTROL_INIT, &mii_cr_init},
935 (struct phy_cmd[]){ /* startup */
936 /* Read the Status (2x to make sure link is right) */
937 {MIIM_STATUS, miim_read, NULL},
939 {MIIM_STATUS, miim_read, &mii_parse_sr},
940 /* Read the status */
941 {MIIM_CIS8201_AUX_CONSTAT, miim_read,
945 (struct phy_cmd[]){ /* shutdown */
949 struct phy_info phy_info_VSC8244 = {
953 (struct phy_cmd[]){ /* config */
954 /* Override PHY config settings */
955 /* Configure some basic stuff */
956 {MIIM_CONTROL, MIIM_CONTROL_INIT, &mii_cr_init},
959 (struct phy_cmd[]){ /* startup */
960 /* Read the Status (2x to make sure link is right) */
961 {MIIM_STATUS, miim_read, NULL},
963 {MIIM_STATUS, miim_read, &mii_parse_sr},
964 /* Read the status */
965 {MIIM_VSC8244_AUX_CONSTAT, miim_read,
969 (struct phy_cmd[]){ /* shutdown */
974 struct phy_info phy_info_dm9161 = {
978 (struct phy_cmd[]){ /* config */
979 {MIIM_CONTROL, MIIM_DM9161_CR_STOP, NULL},
980 /* Do not bypass the scrambler/descrambler */
981 {MIIM_DM9161_SCR, MIIM_DM9161_SCR_INIT, NULL},
982 /* Clear 10BTCSR to default */
983 {MIIM_DM9161_10BTCSR, MIIM_DM9161_10BTCSR_INIT,
985 /* Configure some basic stuff */
986 {MIIM_CONTROL, MIIM_CR_INIT, NULL},
987 /* Restart Auto Negotiation */
988 {MIIM_CONTROL, MIIM_DM9161_CR_RSTAN, NULL},
991 (struct phy_cmd[]){ /* startup */
992 /* Status is read once to clear old link state */
993 {MIIM_STATUS, miim_read, NULL},
995 {MIIM_STATUS, miim_read, &mii_parse_sr},
996 /* Read the status */
997 {MIIM_DM9161_SCSR, miim_read,
998 &mii_parse_dm9161_scsr},
1001 (struct phy_cmd[]){ /* shutdown */
1006 uint mii_parse_lxt971_sr2(uint mii_reg, struct tsec_private *priv)
1010 speed = mii_reg & MIIM_LXT971_SR2_SPEED_MASK;
1013 case MIIM_LXT971_SR2_10HDX:
1015 priv->duplexity = 0;
1017 case MIIM_LXT971_SR2_10FDX:
1019 priv->duplexity = 1;
1021 case MIIM_LXT971_SR2_100HDX:
1023 priv->duplexity = 0;
1026 priv->duplexity = 1;
1031 priv->duplexity = 0;
1037 static struct phy_info phy_info_lxt971 = {
1041 (struct phy_cmd[]){ /* config */
1042 {MIIM_CR, MIIM_CR_INIT, mii_cr_init}, /* autonegotiate */
1045 (struct phy_cmd[]){ /* startup - enable interrupts */
1046 /* { 0x12, 0x00f2, NULL }, */
1047 {MIIM_STATUS, miim_read, NULL},
1048 {MIIM_STATUS, miim_read, &mii_parse_sr},
1049 {MIIM_LXT971_SR2, miim_read, &mii_parse_lxt971_sr2},
1052 (struct phy_cmd[]){ /* shutdown - disable interrupts */
1057 /* Parse the DP83865's link and auto-neg status register for speed and duplex
1060 uint mii_parse_dp83865_lanr(uint mii_reg, struct tsec_private *priv)
1062 switch (mii_reg & MIIM_DP83865_SPD_MASK) {
1064 case MIIM_DP83865_SPD_1000:
1068 case MIIM_DP83865_SPD_100:
1078 if (mii_reg & MIIM_DP83865_DPX_FULL)
1079 priv->duplexity = 1;
1081 priv->duplexity = 0;
1086 struct phy_info phy_info_dp83865 = {
1090 (struct phy_cmd[]){ /* config */
1091 {MIIM_CONTROL, MIIM_DP83865_CR_INIT, NULL},
1094 (struct phy_cmd[]){ /* startup */
1095 /* Status is read once to clear old link state */
1096 {MIIM_STATUS, miim_read, NULL},
1097 /* Auto-negotiate */
1098 {MIIM_STATUS, miim_read, &mii_parse_sr},
1099 /* Read the link and auto-neg status */
1100 {MIIM_DP83865_LANR, miim_read,
1101 &mii_parse_dp83865_lanr},
1104 (struct phy_cmd[]){ /* shutdown */
1109 struct phy_info *phy_info[] = {
1114 &phy_info_M88E1011S,
1115 &phy_info_M88E1111S,
1124 /* Grab the identifier of the device's PHY, and search through
1125 * all of the known PHYs to see if one matches. If so, return
1126 * it, if not, return NULL
1128 struct phy_info *get_phy_info(struct eth_device *dev)
1130 struct tsec_private *priv = (struct tsec_private *)dev->priv;
1131 uint phy_reg, phy_ID;
1133 struct phy_info *theInfo = NULL;
1135 /* Grab the bits from PHYIR1, and put them in the upper half */
1136 phy_reg = read_phy_reg(priv, MIIM_PHYIR1);
1137 phy_ID = (phy_reg & 0xffff) << 16;
1139 /* Grab the bits from PHYIR2, and put them in the lower half */
1140 phy_reg = read_phy_reg(priv, MIIM_PHYIR2);
1141 phy_ID |= (phy_reg & 0xffff);
1143 /* loop through all the known PHY types, and find one that */
1144 /* matches the ID we read from the PHY. */
1145 for (i = 0; phy_info[i]; i++) {
1146 if (phy_info[i]->id == (phy_ID >> phy_info[i]->shift))
1147 theInfo = phy_info[i];
1150 if (theInfo == NULL) {
1151 printf("%s: PHY id %x is not supported!\n", dev->name, phy_ID);
1154 debug("%s: PHY is %s (%x)\n", dev->name, theInfo->name, phy_ID);
1160 /* Execute the given series of commands on the given device's
1161 * PHY, running functions as necessary
1163 void phy_run_commands(struct tsec_private *priv, struct phy_cmd *cmd)
1167 volatile tsec_t *phyregs = priv->phyregs;
1169 phyregs->miimcfg = MIIMCFG_RESET;
1171 phyregs->miimcfg = MIIMCFG_INIT_VALUE;
1173 while (phyregs->miimind & MIIMIND_BUSY) ;
1175 for (i = 0; cmd->mii_reg != miim_end; i++) {
1176 if (cmd->mii_data == miim_read) {
1177 result = read_phy_reg(priv, cmd->mii_reg);
1179 if (cmd->funct != NULL)
1180 (*(cmd->funct)) (result, priv);
1183 if (cmd->funct != NULL)
1184 result = (*(cmd->funct)) (cmd->mii_reg, priv);
1186 result = cmd->mii_data;
1188 write_phy_reg(priv, cmd->mii_reg, result);
1195 /* Relocate the function pointers in the phy cmd lists */
1196 static void relocate_cmds(void)
1198 struct phy_cmd **cmdlistptr;
1199 struct phy_cmd *cmd;
1202 for (i = 0; phy_info[i]; i++) {
1203 /* First thing's first: relocate the pointers to the
1204 * PHY command structures (the structs were done) */
1205 phy_info[i] = (struct phy_info *)((uint) phy_info[i]
1207 phy_info[i]->name += gd->reloc_off;
1208 phy_info[i]->config =
1209 (struct phy_cmd *)((uint) phy_info[i]->config
1211 phy_info[i]->startup =
1212 (struct phy_cmd *)((uint) phy_info[i]->startup
1214 phy_info[i]->shutdown =
1215 (struct phy_cmd *)((uint) phy_info[i]->shutdown
1218 cmdlistptr = &phy_info[i]->config;
1220 for (; cmdlistptr <= &phy_info[i]->shutdown; cmdlistptr++) {
1222 for (cmd = *cmdlistptr;
1223 cmd->mii_reg != miim_end;
1225 /* Only relocate non-NULL pointers */
1227 cmd->funct += gd->reloc_off;
1238 #if defined(CONFIG_MII) || (CONFIG_COMMANDS & CFG_CMD_MII) \
1239 && !defined(BITBANGMII)
1241 struct tsec_private *get_priv_for_phy(unsigned char phyaddr)
1245 for (i = 0; i < MAXCONTROLLERS; i++) {
1246 if (privlist[i]->phyaddr == phyaddr)
1254 * Read a MII PHY register.
1259 static int tsec_miiphy_read(char *devname, unsigned char addr,
1260 unsigned char reg, unsigned short *value)
1263 struct tsec_private *priv = get_priv_for_phy(addr);
1266 printf("Can't read PHY at address %d\n", addr);
1270 ret = (unsigned short)read_phy_reg(priv, reg);
1277 * Write a MII PHY register.
1282 static int tsec_miiphy_write(char *devname, unsigned char addr,
1283 unsigned char reg, unsigned short value)
1285 struct tsec_private *priv = get_priv_for_phy(addr);
1288 printf("Can't write PHY at address %d\n", addr);
1292 write_phy_reg(priv, reg, value);
1297 #endif /* defined(CONFIG_MII) || (CONFIG_COMMANDS & CFG_CMD_MII)
1298 && !defined(BITBANGMII) */
1300 #endif /* CONFIG_TSEC_ENET */