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, 2007 Freescale Semiconductor, Inc.
9 * (C) Copyright 2003, Motorola, Inc.
23 DECLARE_GLOBAL_DATA_PTR;
27 static uint rxIdx; /* index of the current RX buffer */
28 static uint txIdx; /* index of the current TX buffer */
30 typedef volatile struct rtxbd {
31 txbd8_t txbd[TX_BUF_CNT];
32 rxbd8_t rxbd[PKTBUFSRX];
35 #define MAXCONTROLLERS (8)
37 static int relocated = 0;
39 static struct tsec_private *privlist[MAXCONTROLLERS];
40 static int num_tsecs = 0;
43 static RTXBD rtx __attribute__ ((aligned(8)));
45 #error "rtx must be 64-bit aligned"
48 static int tsec_send(struct eth_device *dev,
49 volatile void *packet, int length);
50 static int tsec_recv(struct eth_device *dev);
51 static int tsec_init(struct eth_device *dev, bd_t * bd);
52 static void tsec_halt(struct eth_device *dev);
53 static void init_registers(volatile tsec_t * regs);
54 static void startup_tsec(struct eth_device *dev);
55 static int init_phy(struct eth_device *dev);
56 void write_phy_reg(struct tsec_private *priv, uint regnum, uint value);
57 uint read_phy_reg(struct tsec_private *priv, uint regnum);
58 struct phy_info *get_phy_info(struct eth_device *dev);
59 void phy_run_commands(struct tsec_private *priv, struct phy_cmd *cmd);
60 static void adjust_link(struct eth_device *dev);
61 static void relocate_cmds(void);
62 #if defined(CONFIG_MII) || defined(CONFIG_CMD_MII) \
63 && !defined(BITBANGMII)
64 static int tsec_miiphy_write(char *devname, unsigned char addr,
65 unsigned char reg, unsigned short value);
66 static int tsec_miiphy_read(char *devname, unsigned char addr,
67 unsigned char reg, unsigned short *value);
69 #ifdef CONFIG_MCAST_TFTP
70 static int tsec_mcast_addr (struct eth_device *dev, u8 mcast_mac, u8 set);
73 /* Default initializations for TSEC controllers. */
75 static struct tsec_info_struct tsec_info[] = {
77 STD_TSEC_INFO(1), /* TSEC1 */
80 STD_TSEC_INFO(2), /* TSEC2 */
82 #ifdef CONFIG_MPC85XX_FEC
84 .regs = (tsec_t *)(TSEC_BASE_ADDR + 0x2000),
85 .miiregs = (tsec_t *)(TSEC_BASE_ADDR),
86 .devname = CONFIG_MPC85XX_FEC_NAME,
87 .phyaddr = FEC_PHY_ADDR,
92 STD_TSEC_INFO(3), /* TSEC3 */
95 STD_TSEC_INFO(4), /* TSEC4 */
99 int tsec_eth_init(bd_t *bis, struct tsec_info_struct *tsecs, int num)
103 for (i = 0; i < num; i++)
104 tsec_initialize(bis, &tsecs[i]);
109 int tsec_standard_init(bd_t *bis)
111 return tsec_eth_init(bis, tsec_info, ARRAY_SIZE(tsec_info));
114 /* Initialize device structure. Returns success if PHY
115 * initialization succeeded (i.e. if it recognizes the PHY)
117 int tsec_initialize(bd_t * bis, struct tsec_info_struct *tsec_info)
119 struct eth_device *dev;
121 struct tsec_private *priv;
123 dev = (struct eth_device *)malloc(sizeof *dev);
128 memset(dev, 0, sizeof *dev);
130 priv = (struct tsec_private *)malloc(sizeof(*priv));
135 privlist[num_tsecs++] = priv;
136 priv->regs = tsec_info->regs;
137 priv->phyregs = tsec_info->miiregs;
139 priv->phyaddr = tsec_info->phyaddr;
140 priv->flags = tsec_info->flags;
142 sprintf(dev->name, tsec_info->devname);
145 dev->init = tsec_init;
146 dev->halt = tsec_halt;
147 dev->send = tsec_send;
148 dev->recv = tsec_recv;
149 #ifdef CONFIG_MCAST_TFTP
150 dev->mcast = tsec_mcast_addr;
153 /* Tell u-boot to get the addr from the env */
154 for (i = 0; i < 6; i++)
155 dev->enetaddr[i] = 0;
160 priv->regs->maccfg1 |= MACCFG1_SOFT_RESET;
161 udelay(2); /* Soft Reset must be asserted for 3 TX clocks */
162 priv->regs->maccfg1 &= ~(MACCFG1_SOFT_RESET);
164 #if defined(CONFIG_MII) || defined(CONFIG_CMD_MII) \
165 && !defined(BITBANGMII)
166 miiphy_register(dev->name, tsec_miiphy_read, tsec_miiphy_write);
169 /* Try to initialize PHY here, and return */
170 return init_phy(dev);
173 /* Initializes data structures and registers for the controller,
174 * and brings the interface up. Returns the link status, meaning
175 * that it returns success if the link is up, failure otherwise.
176 * This allows u-boot to find the first active controller.
178 int tsec_init(struct eth_device *dev, bd_t * bd)
181 char tmpbuf[MAC_ADDR_LEN];
183 struct tsec_private *priv = (struct tsec_private *)dev->priv;
184 volatile tsec_t *regs = priv->regs;
186 /* Make sure the controller is stopped */
189 /* Init MACCFG2. Defaults to GMII */
190 regs->maccfg2 = MACCFG2_INIT_SETTINGS;
193 regs->ecntrl = ECNTRL_INIT_SETTINGS;
195 /* Copy the station address into the address registers.
196 * Backwards, because little endian MACS are dumb */
197 for (i = 0; i < MAC_ADDR_LEN; i++) {
198 tmpbuf[MAC_ADDR_LEN - 1 - i] = dev->enetaddr[i];
200 regs->macstnaddr1 = *((uint *) (tmpbuf));
202 tempval = *((uint *) (tmpbuf + 4));
204 regs->macstnaddr2 = tempval;
206 /* reset the indices to zero */
210 /* Clear out (for the most part) the other registers */
211 init_registers(regs);
213 /* Ready the device for tx/rx */
216 /* If there's no link, fail */
217 return (priv->link ? 0 : -1);
220 /* Writes the given phy's reg with value, using the specified MDIO regs */
221 static void tsec_local_mdio_write(volatile tsec_t *phyregs, uint addr,
222 uint reg, uint value)
224 int timeout = 1000000;
226 phyregs->miimadd = (addr << 8) | reg;
227 phyregs->miimcon = value;
231 while ((phyregs->miimind & MIIMIND_BUSY) && timeout--) ;
235 /* Provide the default behavior of writing the PHY of this ethernet device */
236 #define write_phy_reg(priv, regnum, value) tsec_local_mdio_write(priv->phyregs,priv->phyaddr,regnum,value)
238 /* Reads register regnum on the device's PHY through the
239 * specified registers. It lowers and raises the read
240 * command, and waits for the data to become valid (miimind
241 * notvalid bit cleared), and the bus to cease activity (miimind
242 * busy bit cleared), and then returns the value
244 uint tsec_local_mdio_read(volatile tsec_t *phyregs, uint phyid, uint regnum)
248 /* Put the address of the phy, and the register
249 * number into MIIMADD */
250 phyregs->miimadd = (phyid << 8) | regnum;
252 /* Clear the command register, and wait */
253 phyregs->miimcom = 0;
256 /* Initiate a read command, and wait */
257 phyregs->miimcom = MIIM_READ_COMMAND;
260 /* Wait for the the indication that the read is done */
261 while ((phyregs->miimind & (MIIMIND_NOTVALID | MIIMIND_BUSY))) ;
263 /* Grab the value read from the PHY */
264 value = phyregs->miimstat;
269 /* #define to provide old read_phy_reg functionality without duplicating code */
270 #define read_phy_reg(priv,regnum) tsec_local_mdio_read(priv->phyregs,priv->phyaddr,regnum)
272 #define TBIANA_SETTINGS ( \
273 TBIANA_ASYMMETRIC_PAUSE \
274 | TBIANA_SYMMETRIC_PAUSE \
275 | TBIANA_FULL_DUPLEX \
278 #define TBICR_SETTINGS ( \
280 | TBICR_ANEG_ENABLE \
281 | TBICR_FULL_DUPLEX \
284 /* Configure the TBI for SGMII operation */
285 static void tsec_configure_serdes(struct tsec_private *priv)
287 /* Access TBI PHY registers at given TSEC register offset as opposed to the
288 * register offset used for external PHY accesses */
289 tsec_local_mdio_write(priv->regs, priv->regs->tbipa, TBI_ANA,
291 tsec_local_mdio_write(priv->regs, priv->regs->tbipa, TBI_TBICON,
293 tsec_local_mdio_write(priv->regs, priv->regs->tbipa, TBI_CR,
297 /* Discover which PHY is attached to the device, and configure it
298 * properly. If the PHY is not recognized, then return 0
299 * (failure). Otherwise, return 1
301 static int init_phy(struct eth_device *dev)
303 struct tsec_private *priv = (struct tsec_private *)dev->priv;
304 struct phy_info *curphy;
305 volatile tsec_t *phyregs = priv->phyregs;
306 volatile tsec_t *regs = priv->regs;
308 /* Assign a Physical address to the TBI */
309 regs->tbipa = CONFIG_SYS_TBIPA_VALUE;
310 phyregs->tbipa = CONFIG_SYS_TBIPA_VALUE;
313 /* Reset MII (due to new addresses) */
314 priv->phyregs->miimcfg = MIIMCFG_RESET;
316 priv->phyregs->miimcfg = MIIMCFG_INIT_VALUE;
318 while (priv->phyregs->miimind & MIIMIND_BUSY) ;
323 /* Get the cmd structure corresponding to the attached
325 curphy = get_phy_info(dev);
327 if (curphy == NULL) {
328 priv->phyinfo = NULL;
329 printf("%s: No PHY found\n", dev->name);
334 if (regs->ecntrl & ECNTRL_SGMII_MODE)
335 tsec_configure_serdes(priv);
337 priv->phyinfo = curphy;
339 phy_run_commands(priv, priv->phyinfo->config);
345 * Returns which value to write to the control register.
346 * For 10/100, the value is slightly different
348 uint mii_cr_init(uint mii_reg, struct tsec_private * priv)
350 if (priv->flags & TSEC_GIGABIT)
351 return MIIM_CONTROL_INIT;
356 /* Parse the status register for link, and then do
359 uint mii_parse_sr(uint mii_reg, struct tsec_private * priv)
362 * Wait if the link is up, and autonegotiation is in progress
363 * (ie - we're capable and it's not done)
365 mii_reg = read_phy_reg(priv, MIIM_STATUS);
366 if ((mii_reg & MIIM_STATUS_LINK) && (mii_reg & PHY_BMSR_AUTN_ABLE)
367 && !(mii_reg & PHY_BMSR_AUTN_COMP)) {
370 puts("Waiting for PHY auto negotiation to complete");
371 while (!(mii_reg & PHY_BMSR_AUTN_COMP)) {
375 if (i > PHY_AUTONEGOTIATE_TIMEOUT) {
376 puts(" TIMEOUT !\n");
381 if ((i++ % 1000) == 0) {
384 udelay(1000); /* 1 ms */
385 mii_reg = read_phy_reg(priv, MIIM_STATUS);
389 udelay(500000); /* another 500 ms (results in faster booting) */
391 if (mii_reg & MIIM_STATUS_LINK)
400 /* Generic function which updates the speed and duplex. If
401 * autonegotiation is enabled, it uses the AND of the link
402 * partner's advertised capabilities and our advertised
403 * capabilities. If autonegotiation is disabled, we use the
404 * appropriate bits in the control register.
406 * Stolen from Linux's mii.c and phy_device.c
408 uint mii_parse_link(uint mii_reg, struct tsec_private *priv)
410 /* We're using autonegotiation */
411 if (mii_reg & PHY_BMSR_AUTN_ABLE) {
415 /* Check for gigabit capability */
416 if (mii_reg & PHY_BMSR_EXT) {
417 /* We want a list of states supported by
418 * both PHYs in the link
420 gblpa = read_phy_reg(priv, PHY_1000BTSR);
421 gblpa &= read_phy_reg(priv, PHY_1000BTCR) << 2;
424 /* Set the baseline so we only have to set them
425 * if they're different
430 /* Check the gigabit fields */
431 if (gblpa & (PHY_1000BTSR_1000FD | PHY_1000BTSR_1000HD)) {
434 if (gblpa & PHY_1000BTSR_1000FD)
441 lpa = read_phy_reg(priv, PHY_ANAR);
442 lpa &= read_phy_reg(priv, PHY_ANLPAR);
444 if (lpa & (PHY_ANLPAR_TXFD | PHY_ANLPAR_TX)) {
447 if (lpa & PHY_ANLPAR_TXFD)
450 } else if (lpa & PHY_ANLPAR_10FD)
453 uint bmcr = read_phy_reg(priv, PHY_BMCR);
458 if (bmcr & PHY_BMCR_DPLX)
461 if (bmcr & PHY_BMCR_1000_MBPS)
463 else if (bmcr & PHY_BMCR_100_MBPS)
471 * "Ethernet@Wirespeed" needs to be enabled to achieve link in certain
472 * circumstances. eg a gigabit TSEC connected to a gigabit switch with
473 * a 4-wire ethernet cable. Both ends advertise gigabit, but can't
474 * link. "Ethernet@Wirespeed" reduces advertised speed until link
477 uint mii_BCM54xx_wirespeed(uint mii_reg, struct tsec_private *priv)
479 return (read_phy_reg(priv, mii_reg) & 0x8FFF) | 0x8010;
483 * Parse the BCM54xx status register for speed and duplex information.
484 * The linux sungem_phy has this information, but in a table format.
486 uint mii_parse_BCM54xx_sr(uint mii_reg, struct tsec_private *priv)
489 switch((mii_reg & MIIM_BCM54xx_AUXSTATUS_LINKMODE_MASK) >> MIIM_BCM54xx_AUXSTATUS_LINKMODE_SHIFT){
492 printf("Enet starting in 10BT/HD\n");
498 printf("Enet starting in 10BT/FD\n");
504 printf("Enet starting in 100BT/HD\n");
510 printf("Enet starting in 100BT/FD\n");
516 printf("Enet starting in 1000BT/HD\n");
522 printf("Enet starting in 1000BT/FD\n");
528 printf("Auto-neg error, defaulting to 10BT/HD\n");
537 /* Parse the 88E1011's status register for speed and duplex
540 uint mii_parse_88E1011_psr(uint mii_reg, struct tsec_private * priv)
544 mii_reg = read_phy_reg(priv, MIIM_88E1011_PHY_STATUS);
546 if ((mii_reg & MIIM_88E1011_PHYSTAT_LINK) &&
547 !(mii_reg & MIIM_88E1011_PHYSTAT_SPDDONE)) {
550 puts("Waiting for PHY realtime link");
551 while (!(mii_reg & MIIM_88E1011_PHYSTAT_SPDDONE)) {
552 /* Timeout reached ? */
553 if (i > PHY_AUTONEGOTIATE_TIMEOUT) {
554 puts(" TIMEOUT !\n");
559 if ((i++ % 1000) == 0) {
562 udelay(1000); /* 1 ms */
563 mii_reg = read_phy_reg(priv, MIIM_88E1011_PHY_STATUS);
566 udelay(500000); /* another 500 ms (results in faster booting) */
568 if (mii_reg & MIIM_88E1011_PHYSTAT_LINK)
574 if (mii_reg & MIIM_88E1011_PHYSTAT_DUPLEX)
579 speed = (mii_reg & MIIM_88E1011_PHYSTAT_SPEED);
582 case MIIM_88E1011_PHYSTAT_GBIT:
585 case MIIM_88E1011_PHYSTAT_100:
595 /* Parse the RTL8211B's status register for speed and duplex
598 uint mii_parse_RTL8211B_sr(uint mii_reg, struct tsec_private * priv)
602 mii_reg = read_phy_reg(priv, MIIM_RTL8211B_PHY_STATUS);
603 if (!(mii_reg & MIIM_RTL8211B_PHYSTAT_SPDDONE)) {
606 /* in case of timeout ->link is cleared */
608 puts("Waiting for PHY realtime link");
609 while (!(mii_reg & MIIM_RTL8211B_PHYSTAT_SPDDONE)) {
610 /* Timeout reached ? */
611 if (i > PHY_AUTONEGOTIATE_TIMEOUT) {
612 puts(" TIMEOUT !\n");
617 if ((i++ % 1000) == 0) {
620 udelay(1000); /* 1 ms */
621 mii_reg = read_phy_reg(priv, MIIM_RTL8211B_PHY_STATUS);
624 udelay(500000); /* another 500 ms (results in faster booting) */
626 if (mii_reg & MIIM_RTL8211B_PHYSTAT_LINK)
632 if (mii_reg & MIIM_RTL8211B_PHYSTAT_DUPLEX)
637 speed = (mii_reg & MIIM_RTL8211B_PHYSTAT_SPEED);
640 case MIIM_RTL8211B_PHYSTAT_GBIT:
643 case MIIM_RTL8211B_PHYSTAT_100:
653 /* Parse the cis8201's status register for speed and duplex
656 uint mii_parse_cis8201(uint mii_reg, struct tsec_private * priv)
660 if (mii_reg & MIIM_CIS8201_AUXCONSTAT_DUPLEX)
665 speed = mii_reg & MIIM_CIS8201_AUXCONSTAT_SPEED;
667 case MIIM_CIS8201_AUXCONSTAT_GBIT:
670 case MIIM_CIS8201_AUXCONSTAT_100:
681 /* Parse the vsc8244's status register for speed and duplex
684 uint mii_parse_vsc8244(uint mii_reg, struct tsec_private * priv)
688 if (mii_reg & MIIM_VSC8244_AUXCONSTAT_DUPLEX)
693 speed = mii_reg & MIIM_VSC8244_AUXCONSTAT_SPEED;
695 case MIIM_VSC8244_AUXCONSTAT_GBIT:
698 case MIIM_VSC8244_AUXCONSTAT_100:
709 /* Parse the DM9161's status register for speed and duplex
712 uint mii_parse_dm9161_scsr(uint mii_reg, struct tsec_private * priv)
714 if (mii_reg & (MIIM_DM9161_SCSR_100F | MIIM_DM9161_SCSR_100H))
719 if (mii_reg & (MIIM_DM9161_SCSR_100F | MIIM_DM9161_SCSR_10F))
728 * Hack to write all 4 PHYs with the LED values
730 uint mii_cis8204_fixled(uint mii_reg, struct tsec_private * priv)
733 volatile tsec_t *regbase = priv->phyregs;
734 int timeout = 1000000;
736 for (phyid = 0; phyid < 4; phyid++) {
737 regbase->miimadd = (phyid << 8) | mii_reg;
738 regbase->miimcon = MIIM_CIS8204_SLEDCON_INIT;
742 while ((regbase->miimind & MIIMIND_BUSY) && timeout--) ;
745 return MIIM_CIS8204_SLEDCON_INIT;
748 uint mii_cis8204_setmode(uint mii_reg, struct tsec_private * priv)
750 if (priv->flags & TSEC_REDUCED)
751 return MIIM_CIS8204_EPHYCON_INIT | MIIM_CIS8204_EPHYCON_RGMII;
753 return MIIM_CIS8204_EPHYCON_INIT;
756 uint mii_m88e1111s_setmode(uint mii_reg, struct tsec_private *priv)
758 uint mii_data = read_phy_reg(priv, mii_reg);
760 if (priv->flags & TSEC_REDUCED)
761 mii_data = (mii_data & 0xfff0) | 0x000b;
765 /* Initialized required registers to appropriate values, zeroing
766 * those we don't care about (unless zero is bad, in which case,
767 * choose a more appropriate value)
769 static void init_registers(volatile tsec_t * regs)
772 regs->ievent = IEVENT_INIT_CLEAR;
774 regs->imask = IMASK_INIT_CLEAR;
776 regs->hash.iaddr0 = 0;
777 regs->hash.iaddr1 = 0;
778 regs->hash.iaddr2 = 0;
779 regs->hash.iaddr3 = 0;
780 regs->hash.iaddr4 = 0;
781 regs->hash.iaddr5 = 0;
782 regs->hash.iaddr6 = 0;
783 regs->hash.iaddr7 = 0;
785 regs->hash.gaddr0 = 0;
786 regs->hash.gaddr1 = 0;
787 regs->hash.gaddr2 = 0;
788 regs->hash.gaddr3 = 0;
789 regs->hash.gaddr4 = 0;
790 regs->hash.gaddr5 = 0;
791 regs->hash.gaddr6 = 0;
792 regs->hash.gaddr7 = 0;
794 regs->rctrl = 0x00000000;
796 /* Init RMON mib registers */
797 memset((void *)&(regs->rmon), 0, sizeof(rmon_mib_t));
799 regs->rmon.cam1 = 0xffffffff;
800 regs->rmon.cam2 = 0xffffffff;
802 regs->mrblr = MRBLR_INIT_SETTINGS;
804 regs->minflr = MINFLR_INIT_SETTINGS;
806 regs->attr = ATTR_INIT_SETTINGS;
807 regs->attreli = ATTRELI_INIT_SETTINGS;
811 /* Configure maccfg2 based on negotiated speed and duplex
812 * reported by PHY handling code
814 static void adjust_link(struct eth_device *dev)
816 struct tsec_private *priv = (struct tsec_private *)dev->priv;
817 volatile tsec_t *regs = priv->regs;
820 if (priv->duplexity != 0)
821 regs->maccfg2 |= MACCFG2_FULL_DUPLEX;
823 regs->maccfg2 &= ~(MACCFG2_FULL_DUPLEX);
825 switch (priv->speed) {
827 regs->maccfg2 = ((regs->maccfg2 & ~(MACCFG2_IF))
832 regs->maccfg2 = ((regs->maccfg2 & ~(MACCFG2_IF))
835 /* Set R100 bit in all modes although
836 * it is only used in RGMII mode
838 if (priv->speed == 100)
839 regs->ecntrl |= ECNTRL_R100;
841 regs->ecntrl &= ~(ECNTRL_R100);
844 printf("%s: Speed was bad\n", dev->name);
848 printf("Speed: %d, %s duplex\n", priv->speed,
849 (priv->duplexity) ? "full" : "half");
852 printf("%s: No link.\n", dev->name);
856 /* Set up the buffers and their descriptors, and bring up the
859 static void startup_tsec(struct eth_device *dev)
862 struct tsec_private *priv = (struct tsec_private *)dev->priv;
863 volatile tsec_t *regs = priv->regs;
865 /* Point to the buffer descriptors */
866 regs->tbase = (unsigned int)(&rtx.txbd[txIdx]);
867 regs->rbase = (unsigned int)(&rtx.rxbd[rxIdx]);
869 /* Initialize the Rx Buffer descriptors */
870 for (i = 0; i < PKTBUFSRX; i++) {
871 rtx.rxbd[i].status = RXBD_EMPTY;
872 rtx.rxbd[i].length = 0;
873 rtx.rxbd[i].bufPtr = (uint) NetRxPackets[i];
875 rtx.rxbd[PKTBUFSRX - 1].status |= RXBD_WRAP;
877 /* Initialize the TX Buffer Descriptors */
878 for (i = 0; i < TX_BUF_CNT; i++) {
879 rtx.txbd[i].status = 0;
880 rtx.txbd[i].length = 0;
881 rtx.txbd[i].bufPtr = 0;
883 rtx.txbd[TX_BUF_CNT - 1].status |= TXBD_WRAP;
885 /* Start up the PHY */
887 phy_run_commands(priv, priv->phyinfo->startup);
891 /* Enable Transmit and Receive */
892 regs->maccfg1 |= (MACCFG1_RX_EN | MACCFG1_TX_EN);
894 /* Tell the DMA it is clear to go */
895 regs->dmactrl |= DMACTRL_INIT_SETTINGS;
896 regs->tstat = TSTAT_CLEAR_THALT;
897 regs->rstat = RSTAT_CLEAR_RHALT;
898 regs->dmactrl &= ~(DMACTRL_GRS | DMACTRL_GTS);
901 /* This returns the status bits of the device. The return value
902 * is never checked, and this is what the 8260 driver did, so we
903 * do the same. Presumably, this would be zero if there were no
906 static int tsec_send(struct eth_device *dev, volatile void *packet, int length)
910 struct tsec_private *priv = (struct tsec_private *)dev->priv;
911 volatile tsec_t *regs = priv->regs;
913 /* Find an empty buffer descriptor */
914 for (i = 0; rtx.txbd[txIdx].status & TXBD_READY; i++) {
915 if (i >= TOUT_LOOP) {
916 debug("%s: tsec: tx buffers full\n", dev->name);
921 rtx.txbd[txIdx].bufPtr = (uint) packet;
922 rtx.txbd[txIdx].length = length;
923 rtx.txbd[txIdx].status |=
924 (TXBD_READY | TXBD_LAST | TXBD_CRC | TXBD_INTERRUPT);
926 /* Tell the DMA to go */
927 regs->tstat = TSTAT_CLEAR_THALT;
929 /* Wait for buffer to be transmitted */
930 for (i = 0; rtx.txbd[txIdx].status & TXBD_READY; i++) {
931 if (i >= TOUT_LOOP) {
932 debug("%s: tsec: tx error\n", dev->name);
937 txIdx = (txIdx + 1) % TX_BUF_CNT;
938 result = rtx.txbd[txIdx].status & TXBD_STATS;
943 static int tsec_recv(struct eth_device *dev)
946 struct tsec_private *priv = (struct tsec_private *)dev->priv;
947 volatile tsec_t *regs = priv->regs;
949 while (!(rtx.rxbd[rxIdx].status & RXBD_EMPTY)) {
951 length = rtx.rxbd[rxIdx].length;
953 /* Send the packet up if there were no errors */
954 if (!(rtx.rxbd[rxIdx].status & RXBD_STATS)) {
955 NetReceive(NetRxPackets[rxIdx], length - 4);
957 printf("Got error %x\n",
958 (rtx.rxbd[rxIdx].status & RXBD_STATS));
961 rtx.rxbd[rxIdx].length = 0;
963 /* Set the wrap bit if this is the last element in the list */
964 rtx.rxbd[rxIdx].status =
965 RXBD_EMPTY | (((rxIdx + 1) == PKTBUFSRX) ? RXBD_WRAP : 0);
967 rxIdx = (rxIdx + 1) % PKTBUFSRX;
970 if (regs->ievent & IEVENT_BSY) {
971 regs->ievent = IEVENT_BSY;
972 regs->rstat = RSTAT_CLEAR_RHALT;
979 /* Stop the interface */
980 static void tsec_halt(struct eth_device *dev)
982 struct tsec_private *priv = (struct tsec_private *)dev->priv;
983 volatile tsec_t *regs = priv->regs;
985 regs->dmactrl &= ~(DMACTRL_GRS | DMACTRL_GTS);
986 regs->dmactrl |= (DMACTRL_GRS | DMACTRL_GTS);
988 while (!(regs->ievent & (IEVENT_GRSC | IEVENT_GTSC))) ;
990 regs->maccfg1 &= ~(MACCFG1_TX_EN | MACCFG1_RX_EN);
992 /* Shut down the PHY, as needed */
994 phy_run_commands(priv, priv->phyinfo->shutdown);
997 struct phy_info phy_info_M88E1149S = {
1001 (struct phy_cmd[]){ /* config */
1002 /* Reset and configure the PHY */
1003 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
1005 {0x1e, 0x200c, NULL},
1008 {0x1e, 0x100, NULL},
1009 {MIIM_GBIT_CONTROL, MIIM_GBIT_CONTROL_INIT, NULL},
1010 {MIIM_ANAR, MIIM_ANAR_INIT, NULL},
1011 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
1012 {MIIM_CONTROL, MIIM_CONTROL_INIT, &mii_cr_init},
1015 (struct phy_cmd[]){ /* startup */
1016 /* Status is read once to clear old link state */
1017 {MIIM_STATUS, miim_read, NULL},
1018 /* Auto-negotiate */
1019 {MIIM_STATUS, miim_read, &mii_parse_sr},
1020 /* Read the status */
1021 {MIIM_88E1011_PHY_STATUS, miim_read,
1022 &mii_parse_88E1011_psr},
1025 (struct phy_cmd[]){ /* shutdown */
1030 /* The 5411 id is 0x206070, the 5421 is 0x2060e0 */
1031 struct phy_info phy_info_BCM5461S = {
1032 0x02060c1, /* 5461 ID */
1033 "Broadcom BCM5461S",
1034 0, /* not clear to me what minor revisions we can shift away */
1035 (struct phy_cmd[]) { /* config */
1036 /* Reset and configure the PHY */
1037 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
1038 {MIIM_GBIT_CONTROL, MIIM_GBIT_CONTROL_INIT, NULL},
1039 {MIIM_ANAR, MIIM_ANAR_INIT, NULL},
1040 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
1041 {MIIM_CONTROL, MIIM_CONTROL_INIT, &mii_cr_init},
1044 (struct phy_cmd[]) { /* startup */
1045 /* Status is read once to clear old link state */
1046 {MIIM_STATUS, miim_read, NULL},
1047 /* Auto-negotiate */
1048 {MIIM_STATUS, miim_read, &mii_parse_sr},
1049 /* Read the status */
1050 {MIIM_BCM54xx_AUXSTATUS, miim_read, &mii_parse_BCM54xx_sr},
1053 (struct phy_cmd[]) { /* shutdown */
1058 struct phy_info phy_info_BCM5464S = {
1059 0x02060b1, /* 5464 ID */
1060 "Broadcom BCM5464S",
1061 0, /* not clear to me what minor revisions we can shift away */
1062 (struct phy_cmd[]) { /* config */
1063 /* Reset and configure the PHY */
1064 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
1065 {MIIM_GBIT_CONTROL, MIIM_GBIT_CONTROL_INIT, NULL},
1066 {MIIM_ANAR, MIIM_ANAR_INIT, NULL},
1067 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
1068 {MIIM_CONTROL, MIIM_CONTROL_INIT, &mii_cr_init},
1071 (struct phy_cmd[]) { /* startup */
1072 /* Status is read once to clear old link state */
1073 {MIIM_STATUS, miim_read, NULL},
1074 /* Auto-negotiate */
1075 {MIIM_STATUS, miim_read, &mii_parse_sr},
1076 /* Read the status */
1077 {MIIM_BCM54xx_AUXSTATUS, miim_read, &mii_parse_BCM54xx_sr},
1080 (struct phy_cmd[]) { /* shutdown */
1085 struct phy_info phy_info_BCM5482S = {
1087 "Broadcom BCM5482S",
1089 (struct phy_cmd[]) { /* config */
1090 /* Reset and configure the PHY */
1091 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
1092 /* Setup read from auxilary control shadow register 7 */
1093 {MIIM_BCM54xx_AUXCNTL, MIIM_BCM54xx_AUXCNTL_ENCODE(7), NULL},
1094 /* Read Misc Control register and or in Ethernet@Wirespeed */
1095 {MIIM_BCM54xx_AUXCNTL, 0, &mii_BCM54xx_wirespeed},
1096 {MIIM_CONTROL, MIIM_CONTROL_INIT, &mii_cr_init},
1099 (struct phy_cmd[]) { /* startup */
1100 /* Status is read once to clear old link state */
1101 {MIIM_STATUS, miim_read, NULL},
1102 /* Auto-negotiate */
1103 {MIIM_STATUS, miim_read, &mii_parse_sr},
1104 /* Read the status */
1105 {MIIM_BCM54xx_AUXSTATUS, miim_read, &mii_parse_BCM54xx_sr},
1108 (struct phy_cmd[]) { /* shutdown */
1113 struct phy_info phy_info_M88E1011S = {
1117 (struct phy_cmd[]){ /* config */
1118 /* Reset and configure the PHY */
1119 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
1121 {0x1e, 0x200c, NULL},
1124 {0x1e, 0x100, NULL},
1125 {MIIM_GBIT_CONTROL, MIIM_GBIT_CONTROL_INIT, NULL},
1126 {MIIM_ANAR, MIIM_ANAR_INIT, NULL},
1127 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
1128 {MIIM_CONTROL, MIIM_CONTROL_INIT, &mii_cr_init},
1131 (struct phy_cmd[]){ /* startup */
1132 /* Status is read once to clear old link state */
1133 {MIIM_STATUS, miim_read, NULL},
1134 /* Auto-negotiate */
1135 {MIIM_STATUS, miim_read, &mii_parse_sr},
1136 /* Read the status */
1137 {MIIM_88E1011_PHY_STATUS, miim_read,
1138 &mii_parse_88E1011_psr},
1141 (struct phy_cmd[]){ /* shutdown */
1146 struct phy_info phy_info_M88E1111S = {
1150 (struct phy_cmd[]){ /* config */
1151 /* Reset and configure the PHY */
1152 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
1153 {0x1b, 0x848f, &mii_m88e1111s_setmode},
1154 {0x14, 0x0cd2, NULL}, /* Delay RGMII TX and RX */
1155 {MIIM_GBIT_CONTROL, MIIM_GBIT_CONTROL_INIT, NULL},
1156 {MIIM_ANAR, MIIM_ANAR_INIT, NULL},
1157 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
1158 {MIIM_CONTROL, MIIM_CONTROL_INIT, &mii_cr_init},
1161 (struct phy_cmd[]){ /* startup */
1162 /* Status is read once to clear old link state */
1163 {MIIM_STATUS, miim_read, NULL},
1164 /* Auto-negotiate */
1165 {MIIM_STATUS, miim_read, &mii_parse_sr},
1166 /* Read the status */
1167 {MIIM_88E1011_PHY_STATUS, miim_read,
1168 &mii_parse_88E1011_psr},
1171 (struct phy_cmd[]){ /* shutdown */
1176 struct phy_info phy_info_M88E1118 = {
1180 (struct phy_cmd[]){ /* config */
1181 /* Reset and configure the PHY */
1182 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
1183 {0x16, 0x0002, NULL}, /* Change Page Number */
1184 {0x15, 0x1070, NULL}, /* Delay RGMII TX and RX */
1185 {0x16, 0x0003, NULL}, /* Change Page Number */
1186 {0x10, 0x021e, NULL}, /* Adjust LED control */
1187 {0x16, 0x0000, NULL}, /* Change Page Number */
1188 {MIIM_GBIT_CONTROL, MIIM_GBIT_CONTROL_INIT, NULL},
1189 {MIIM_ANAR, MIIM_ANAR_INIT, NULL},
1190 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
1191 {MIIM_CONTROL, MIIM_CONTROL_INIT, &mii_cr_init},
1194 (struct phy_cmd[]){ /* startup */
1195 {0x16, 0x0000, NULL}, /* Change Page Number */
1196 /* Status is read once to clear old link state */
1197 {MIIM_STATUS, miim_read, NULL},
1198 /* Auto-negotiate */
1199 {MIIM_STATUS, miim_read, &mii_parse_sr},
1200 /* Read the status */
1201 {MIIM_88E1011_PHY_STATUS, miim_read,
1202 &mii_parse_88E1011_psr},
1205 (struct phy_cmd[]){ /* shutdown */
1211 * Since to access LED register we need do switch the page, we
1212 * do LED configuring in the miim_read-like function as follows
1214 uint mii_88E1121_set_led (uint mii_reg, struct tsec_private *priv)
1218 /* Switch the page to access the led register */
1219 pg = read_phy_reg(priv, MIIM_88E1121_PHY_PAGE);
1220 write_phy_reg(priv, MIIM_88E1121_PHY_PAGE, MIIM_88E1121_PHY_LED_PAGE);
1222 /* Configure leds */
1223 write_phy_reg(priv, MIIM_88E1121_PHY_LED_CTRL,
1224 MIIM_88E1121_PHY_LED_DEF);
1226 /* Restore the page pointer */
1227 write_phy_reg(priv, MIIM_88E1121_PHY_PAGE, pg);
1231 struct phy_info phy_info_M88E1121R = {
1235 (struct phy_cmd[]){ /* config */
1236 /* Reset and configure the PHY */
1237 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
1238 {MIIM_GBIT_CONTROL, MIIM_GBIT_CONTROL_INIT, NULL},
1239 {MIIM_ANAR, MIIM_ANAR_INIT, NULL},
1240 /* Configure leds */
1241 {MIIM_88E1121_PHY_LED_CTRL, miim_read,
1242 &mii_88E1121_set_led},
1243 {MIIM_CONTROL, MIIM_CONTROL_INIT, &mii_cr_init},
1244 /* Disable IRQs and de-assert interrupt */
1245 {MIIM_88E1121_PHY_IRQ_EN, 0, NULL},
1246 {MIIM_88E1121_PHY_IRQ_STATUS, miim_read, NULL},
1249 (struct phy_cmd[]){ /* startup */
1250 /* Status is read once to clear old link state */
1251 {MIIM_STATUS, miim_read, NULL},
1252 {MIIM_STATUS, miim_read, &mii_parse_sr},
1253 {MIIM_STATUS, miim_read, &mii_parse_link},
1256 (struct phy_cmd[]){ /* shutdown */
1261 static unsigned int m88e1145_setmode(uint mii_reg, struct tsec_private *priv)
1263 uint mii_data = read_phy_reg(priv, mii_reg);
1265 /* Setting MIIM_88E1145_PHY_EXT_CR */
1266 if (priv->flags & TSEC_REDUCED)
1268 MIIM_M88E1145_RGMII_RX_DELAY | MIIM_M88E1145_RGMII_TX_DELAY;
1273 static struct phy_info phy_info_M88E1145 = {
1277 (struct phy_cmd[]){ /* config */
1279 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
1287 /* Configure the PHY */
1288 {MIIM_GBIT_CONTROL, MIIM_GBIT_CONTROL_INIT, NULL},
1289 {MIIM_ANAR, MIIM_ANAR_INIT, NULL},
1290 {MIIM_88E1011_PHY_SCR, MIIM_88E1011_PHY_MDI_X_AUTO,
1292 {MIIM_88E1145_PHY_EXT_CR, 0, &m88e1145_setmode},
1293 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
1294 {MIIM_CONTROL, MIIM_CONTROL_INIT, NULL},
1297 (struct phy_cmd[]){ /* startup */
1298 /* Status is read once to clear old link state */
1299 {MIIM_STATUS, miim_read, NULL},
1300 /* Auto-negotiate */
1301 {MIIM_STATUS, miim_read, &mii_parse_sr},
1302 {MIIM_88E1111_PHY_LED_CONTROL,
1303 MIIM_88E1111_PHY_LED_DIRECT, NULL},
1304 /* Read the Status */
1305 {MIIM_88E1011_PHY_STATUS, miim_read,
1306 &mii_parse_88E1011_psr},
1309 (struct phy_cmd[]){ /* shutdown */
1314 struct phy_info phy_info_cis8204 = {
1318 (struct phy_cmd[]){ /* config */
1319 /* Override PHY config settings */
1320 {MIIM_CIS8201_AUX_CONSTAT,
1321 MIIM_CIS8201_AUXCONSTAT_INIT, NULL},
1322 /* Configure some basic stuff */
1323 {MIIM_CONTROL, MIIM_CONTROL_INIT, &mii_cr_init},
1324 {MIIM_CIS8204_SLED_CON, MIIM_CIS8204_SLEDCON_INIT,
1325 &mii_cis8204_fixled},
1326 {MIIM_CIS8204_EPHY_CON, MIIM_CIS8204_EPHYCON_INIT,
1327 &mii_cis8204_setmode},
1330 (struct phy_cmd[]){ /* startup */
1331 /* Read the Status (2x to make sure link is right) */
1332 {MIIM_STATUS, miim_read, NULL},
1333 /* Auto-negotiate */
1334 {MIIM_STATUS, miim_read, &mii_parse_sr},
1335 /* Read the status */
1336 {MIIM_CIS8201_AUX_CONSTAT, miim_read,
1337 &mii_parse_cis8201},
1340 (struct phy_cmd[]){ /* shutdown */
1346 struct phy_info phy_info_cis8201 = {
1350 (struct phy_cmd[]){ /* config */
1351 /* Override PHY config settings */
1352 {MIIM_CIS8201_AUX_CONSTAT,
1353 MIIM_CIS8201_AUXCONSTAT_INIT, NULL},
1354 /* Set up the interface mode */
1355 {MIIM_CIS8201_EXT_CON1, MIIM_CIS8201_EXTCON1_INIT,
1357 /* Configure some basic stuff */
1358 {MIIM_CONTROL, MIIM_CONTROL_INIT, &mii_cr_init},
1361 (struct phy_cmd[]){ /* startup */
1362 /* Read the Status (2x to make sure link is right) */
1363 {MIIM_STATUS, miim_read, NULL},
1364 /* Auto-negotiate */
1365 {MIIM_STATUS, miim_read, &mii_parse_sr},
1366 /* Read the status */
1367 {MIIM_CIS8201_AUX_CONSTAT, miim_read,
1368 &mii_parse_cis8201},
1371 (struct phy_cmd[]){ /* shutdown */
1375 struct phy_info phy_info_VSC8211 = {
1379 (struct phy_cmd[]) { /* config */
1380 /* Override PHY config settings */
1381 {MIIM_CIS8201_AUX_CONSTAT,
1382 MIIM_CIS8201_AUXCONSTAT_INIT, NULL},
1383 /* Set up the interface mode */
1384 {MIIM_CIS8201_EXT_CON1,
1385 MIIM_CIS8201_EXTCON1_INIT, NULL},
1386 /* Configure some basic stuff */
1387 {MIIM_CONTROL, MIIM_CONTROL_INIT, &mii_cr_init},
1390 (struct phy_cmd[]) { /* startup */
1391 /* Read the Status (2x to make sure link is right) */
1392 {MIIM_STATUS, miim_read, NULL},
1393 /* Auto-negotiate */
1394 {MIIM_STATUS, miim_read, &mii_parse_sr},
1395 /* Read the status */
1396 {MIIM_CIS8201_AUX_CONSTAT, miim_read,
1397 &mii_parse_cis8201},
1400 (struct phy_cmd[]) { /* shutdown */
1404 struct phy_info phy_info_VSC8244 = {
1408 (struct phy_cmd[]){ /* config */
1409 /* Override PHY config settings */
1410 /* Configure some basic stuff */
1411 {MIIM_CONTROL, MIIM_CONTROL_INIT, &mii_cr_init},
1414 (struct phy_cmd[]){ /* startup */
1415 /* Read the Status (2x to make sure link is right) */
1416 {MIIM_STATUS, miim_read, NULL},
1417 /* Auto-negotiate */
1418 {MIIM_STATUS, miim_read, &mii_parse_sr},
1419 /* Read the status */
1420 {MIIM_VSC8244_AUX_CONSTAT, miim_read,
1421 &mii_parse_vsc8244},
1424 (struct phy_cmd[]){ /* shutdown */
1429 struct phy_info phy_info_VSC8601 = {
1433 (struct phy_cmd[]){ /* config */
1434 /* Override PHY config settings */
1435 /* Configure some basic stuff */
1436 {MIIM_CONTROL, MIIM_CONTROL_INIT, &mii_cr_init},
1437 #ifdef CONFIG_SYS_VSC8601_SKEWFIX
1438 {MIIM_VSC8601_EPHY_CON,MIIM_VSC8601_EPHY_CON_INIT_SKEW,NULL},
1439 #if defined(CONFIG_SYS_VSC8601_SKEW_TX) && defined(CONFIG_SYS_VSC8601_SKEW_RX)
1440 {MIIM_EXT_PAGE_ACCESS,1,NULL},
1441 #define VSC8101_SKEW (CONFIG_SYS_VSC8601_SKEW_TX<<14)|(CONFIG_SYS_VSC8601_SKEW_RX<<12)
1442 {MIIM_VSC8601_SKEW_CTRL,VSC8101_SKEW,NULL},
1443 {MIIM_EXT_PAGE_ACCESS,0,NULL},
1446 {MIIM_ANAR, MIIM_ANAR_INIT, NULL},
1447 {MIIM_CONTROL, MIIM_CONTROL_RESTART, &mii_cr_init},
1450 (struct phy_cmd[]){ /* startup */
1451 /* Read the Status (2x to make sure link is right) */
1452 {MIIM_STATUS, miim_read, NULL},
1453 /* Auto-negotiate */
1454 {MIIM_STATUS, miim_read, &mii_parse_sr},
1455 /* Read the status */
1456 {MIIM_VSC8244_AUX_CONSTAT, miim_read,
1457 &mii_parse_vsc8244},
1460 (struct phy_cmd[]){ /* shutdown */
1466 struct phy_info phy_info_dm9161 = {
1470 (struct phy_cmd[]){ /* config */
1471 {MIIM_CONTROL, MIIM_DM9161_CR_STOP, NULL},
1472 /* Do not bypass the scrambler/descrambler */
1473 {MIIM_DM9161_SCR, MIIM_DM9161_SCR_INIT, NULL},
1474 /* Clear 10BTCSR to default */
1475 {MIIM_DM9161_10BTCSR, MIIM_DM9161_10BTCSR_INIT,
1477 /* Configure some basic stuff */
1478 {MIIM_CONTROL, MIIM_CR_INIT, NULL},
1479 /* Restart Auto Negotiation */
1480 {MIIM_CONTROL, MIIM_DM9161_CR_RSTAN, NULL},
1483 (struct phy_cmd[]){ /* startup */
1484 /* Status is read once to clear old link state */
1485 {MIIM_STATUS, miim_read, NULL},
1486 /* Auto-negotiate */
1487 {MIIM_STATUS, miim_read, &mii_parse_sr},
1488 /* Read the status */
1489 {MIIM_DM9161_SCSR, miim_read,
1490 &mii_parse_dm9161_scsr},
1493 (struct phy_cmd[]){ /* shutdown */
1497 /* a generic flavor. */
1498 struct phy_info phy_info_generic = {
1500 "Unknown/Generic PHY",
1502 (struct phy_cmd[]) { /* config */
1503 {PHY_BMCR, PHY_BMCR_RESET, NULL},
1504 {PHY_BMCR, PHY_BMCR_AUTON|PHY_BMCR_RST_NEG, NULL},
1507 (struct phy_cmd[]) { /* startup */
1508 {PHY_BMSR, miim_read, NULL},
1509 {PHY_BMSR, miim_read, &mii_parse_sr},
1510 {PHY_BMSR, miim_read, &mii_parse_link},
1513 (struct phy_cmd[]) { /* shutdown */
1519 uint mii_parse_lxt971_sr2(uint mii_reg, struct tsec_private *priv)
1523 speed = mii_reg & MIIM_LXT971_SR2_SPEED_MASK;
1526 case MIIM_LXT971_SR2_10HDX:
1528 priv->duplexity = 0;
1530 case MIIM_LXT971_SR2_10FDX:
1532 priv->duplexity = 1;
1534 case MIIM_LXT971_SR2_100HDX:
1536 priv->duplexity = 0;
1540 priv->duplexity = 1;
1544 priv->duplexity = 0;
1550 static struct phy_info phy_info_lxt971 = {
1554 (struct phy_cmd[]){ /* config */
1555 {MIIM_CR, MIIM_CR_INIT, mii_cr_init}, /* autonegotiate */
1558 (struct phy_cmd[]){ /* startup - enable interrupts */
1559 /* { 0x12, 0x00f2, NULL }, */
1560 {MIIM_STATUS, miim_read, NULL},
1561 {MIIM_STATUS, miim_read, &mii_parse_sr},
1562 {MIIM_LXT971_SR2, miim_read, &mii_parse_lxt971_sr2},
1565 (struct phy_cmd[]){ /* shutdown - disable interrupts */
1570 /* Parse the DP83865's link and auto-neg status register for speed and duplex
1573 uint mii_parse_dp83865_lanr(uint mii_reg, struct tsec_private *priv)
1575 switch (mii_reg & MIIM_DP83865_SPD_MASK) {
1577 case MIIM_DP83865_SPD_1000:
1581 case MIIM_DP83865_SPD_100:
1591 if (mii_reg & MIIM_DP83865_DPX_FULL)
1592 priv->duplexity = 1;
1594 priv->duplexity = 0;
1599 struct phy_info phy_info_dp83865 = {
1603 (struct phy_cmd[]){ /* config */
1604 {MIIM_CONTROL, MIIM_DP83865_CR_INIT, NULL},
1607 (struct phy_cmd[]){ /* startup */
1608 /* Status is read once to clear old link state */
1609 {MIIM_STATUS, miim_read, NULL},
1610 /* Auto-negotiate */
1611 {MIIM_STATUS, miim_read, &mii_parse_sr},
1612 /* Read the link and auto-neg status */
1613 {MIIM_DP83865_LANR, miim_read,
1614 &mii_parse_dp83865_lanr},
1617 (struct phy_cmd[]){ /* shutdown */
1622 struct phy_info phy_info_rtl8211b = {
1626 (struct phy_cmd[]){ /* config */
1627 /* Reset and configure the PHY */
1628 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
1629 {MIIM_GBIT_CONTROL, MIIM_GBIT_CONTROL_INIT, NULL},
1630 {MIIM_ANAR, MIIM_ANAR_INIT, NULL},
1631 {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL},
1632 {MIIM_CONTROL, MIIM_CONTROL_INIT, &mii_cr_init},
1635 (struct phy_cmd[]){ /* startup */
1636 /* Status is read once to clear old link state */
1637 {MIIM_STATUS, miim_read, NULL},
1638 /* Auto-negotiate */
1639 {MIIM_STATUS, miim_read, &mii_parse_sr},
1640 /* Read the status */
1641 {MIIM_RTL8211B_PHY_STATUS, miim_read, &mii_parse_RTL8211B_sr},
1644 (struct phy_cmd[]){ /* shutdown */
1649 struct phy_info *phy_info[] = {
1655 &phy_info_M88E1011S,
1656 &phy_info_M88E1111S,
1658 &phy_info_M88E1121R,
1660 &phy_info_M88E1149S,
1668 &phy_info_generic, /* must be last; has ID 0 and 32 bit mask */
1672 /* Grab the identifier of the device's PHY, and search through
1673 * all of the known PHYs to see if one matches. If so, return
1674 * it, if not, return NULL
1676 struct phy_info *get_phy_info(struct eth_device *dev)
1678 struct tsec_private *priv = (struct tsec_private *)dev->priv;
1679 uint phy_reg, phy_ID;
1681 struct phy_info *theInfo = NULL;
1683 /* Grab the bits from PHYIR1, and put them in the upper half */
1684 phy_reg = read_phy_reg(priv, MIIM_PHYIR1);
1685 phy_ID = (phy_reg & 0xffff) << 16;
1687 /* Grab the bits from PHYIR2, and put them in the lower half */
1688 phy_reg = read_phy_reg(priv, MIIM_PHYIR2);
1689 phy_ID |= (phy_reg & 0xffff);
1691 /* loop through all the known PHY types, and find one that */
1692 /* matches the ID we read from the PHY. */
1693 for (i = 0; phy_info[i]; i++) {
1694 if (phy_info[i]->id == (phy_ID >> phy_info[i]->shift)) {
1695 theInfo = phy_info[i];
1700 if (theInfo == &phy_info_generic) {
1701 printf("%s: No support for PHY id %x; assuming generic\n", dev->name, phy_ID);
1703 debug("%s: PHY is %s (%x)\n", dev->name, theInfo->name, phy_ID);
1709 /* Execute the given series of commands on the given device's
1710 * PHY, running functions as necessary
1712 void phy_run_commands(struct tsec_private *priv, struct phy_cmd *cmd)
1716 volatile tsec_t *phyregs = priv->phyregs;
1718 phyregs->miimcfg = MIIMCFG_RESET;
1720 phyregs->miimcfg = MIIMCFG_INIT_VALUE;
1722 while (phyregs->miimind & MIIMIND_BUSY) ;
1724 for (i = 0; cmd->mii_reg != miim_end; i++) {
1725 if (cmd->mii_data == miim_read) {
1726 result = read_phy_reg(priv, cmd->mii_reg);
1728 if (cmd->funct != NULL)
1729 (*(cmd->funct)) (result, priv);
1732 if (cmd->funct != NULL)
1733 result = (*(cmd->funct)) (cmd->mii_reg, priv);
1735 result = cmd->mii_data;
1737 write_phy_reg(priv, cmd->mii_reg, result);
1744 /* Relocate the function pointers in the phy cmd lists */
1745 static void relocate_cmds(void)
1747 struct phy_cmd **cmdlistptr;
1748 struct phy_cmd *cmd;
1751 for (i = 0; phy_info[i]; i++) {
1752 /* First thing's first: relocate the pointers to the
1753 * PHY command structures (the structs were done) */
1754 phy_info[i] = (struct phy_info *)((uint) phy_info[i]
1756 phy_info[i]->name += gd->reloc_off;
1757 phy_info[i]->config =
1758 (struct phy_cmd *)((uint) phy_info[i]->config
1760 phy_info[i]->startup =
1761 (struct phy_cmd *)((uint) phy_info[i]->startup
1763 phy_info[i]->shutdown =
1764 (struct phy_cmd *)((uint) phy_info[i]->shutdown
1767 cmdlistptr = &phy_info[i]->config;
1769 for (; cmdlistptr <= &phy_info[i]->shutdown; cmdlistptr++) {
1771 for (cmd = *cmdlistptr;
1772 cmd->mii_reg != miim_end;
1774 /* Only relocate non-NULL pointers */
1776 cmd->funct += gd->reloc_off;
1787 #if defined(CONFIG_MII) || defined(CONFIG_CMD_MII) \
1788 && !defined(BITBANGMII)
1791 * Read a MII PHY register.
1796 static int tsec_miiphy_read(char *devname, unsigned char addr,
1797 unsigned char reg, unsigned short *value)
1800 struct tsec_private *priv = privlist[0];
1803 printf("Can't read PHY at address %d\n", addr);
1807 ret = (unsigned short)tsec_local_mdio_read(priv->phyregs, addr, reg);
1814 * Write a MII PHY register.
1819 static int tsec_miiphy_write(char *devname, unsigned char addr,
1820 unsigned char reg, unsigned short value)
1822 struct tsec_private *priv = privlist[0];
1825 printf("Can't write PHY at address %d\n", addr);
1829 tsec_local_mdio_write(priv->phyregs, addr, reg, value);
1836 #ifdef CONFIG_MCAST_TFTP
1838 /* CREDITS: linux gianfar driver, slightly adjusted... thanx. */
1840 /* Set the appropriate hash bit for the given addr */
1842 /* The algorithm works like so:
1843 * 1) Take the Destination Address (ie the multicast address), and
1844 * do a CRC on it (little endian), and reverse the bits of the
1846 * 2) Use the 8 most significant bits as a hash into a 256-entry
1847 * table. The table is controlled through 8 32-bit registers:
1848 * gaddr0-7. gaddr0's MSB is entry 0, and gaddr7's LSB is
1849 * gaddr7. This means that the 3 most significant bits in the
1850 * hash index which gaddr register to use, and the 5 other bits
1851 * indicate which bit (assuming an IBM numbering scheme, which
1852 * for PowerPC (tm) is usually the case) in the tregister holds
1855 tsec_mcast_addr (struct eth_device *dev, u8 mcast_mac, u8 set)
1857 struct tsec_private *priv = privlist[1];
1858 volatile tsec_t *regs = priv->regs;
1859 volatile u32 *reg_array, value;
1860 u8 result, whichbit, whichreg;
1862 result = (u8)((ether_crc(MAC_ADDR_LEN,mcast_mac) >> 24) & 0xff);
1863 whichbit = result & 0x1f; /* the 5 LSB = which bit to set */
1864 whichreg = result >> 5; /* the 3 MSB = which reg to set it in */
1865 value = (1 << (31-whichbit));
1867 reg_array = &(regs->hash.gaddr0);
1870 reg_array[whichreg] |= value;
1872 reg_array[whichreg] &= ~value;
1876 #endif /* Multicast TFTP ? */