2 * Copyright (C) 2005 Freescale Semiconductor, Inc.
4 * Author: Shlomi Gridish
6 * Description: UCC GETH Driver -- PHY handling
8 * Based on 8260_io/fcc_enet.c
10 * This program is free software; you can redistribute it and/or modify it
11 * under the terms of the GNU General Public License as published by the
12 * Free Software Foundation; either version 2 of the License, or (at your
13 * option) any later version.
20 #include "asm/errno.h"
21 #include "asm/immap_qe.h"
29 #define ugphy_printk(format, arg...) \
30 printf(format "\n", ## arg)
32 #define ugphy_dbg(format, arg...) \
33 ugphy_printk(format , ## arg)
34 #define ugphy_err(format, arg...) \
35 ugphy_printk(format , ## arg)
36 #define ugphy_info(format, arg...) \
37 ugphy_printk(format , ## arg)
38 #define ugphy_warn(format, arg...) \
39 ugphy_printk(format , ## arg)
41 #ifdef UEC_VERBOSE_DEBUG
42 #define ugphy_vdbg ugphy_dbg
44 #define ugphy_vdbg(ugeth, fmt, args...) do { } while (0)
45 #endif /* UEC_VERBOSE_DEBUG */
47 static void config_genmii_advert (struct uec_mii_info *mii_info);
48 static void genmii_setup_forced (struct uec_mii_info *mii_info);
49 static void genmii_restart_aneg (struct uec_mii_info *mii_info);
50 static int gbit_config_aneg (struct uec_mii_info *mii_info);
51 static int genmii_config_aneg (struct uec_mii_info *mii_info);
52 static int genmii_update_link (struct uec_mii_info *mii_info);
53 static int genmii_read_status (struct uec_mii_info *mii_info);
54 u16 phy_read (struct uec_mii_info *mii_info, u16 regnum);
55 void phy_write (struct uec_mii_info *mii_info, u16 regnum, u16 val);
57 /* Write value to the PHY for this device to the register at regnum, */
58 /* waiting until the write is done before it returns. All PHY */
59 /* configuration has to be done through the TSEC1 MIIM regs */
60 void uec_write_phy_reg (struct eth_device *dev, int mii_id, int regnum, int value)
62 uec_private_t *ugeth = (uec_private_t *) dev->priv;
64 enet_tbi_mii_reg_e mii_reg = (enet_tbi_mii_reg_e) regnum;
67 ug_regs = ugeth->uec_mii_regs;
69 /* Stop the MII management read cycle */
70 out_be32 (&ug_regs->miimcom, 0);
71 /* Setting up the MII Mangement Address Register */
72 tmp_reg = ((u32) mii_id << MIIMADD_PHY_ADDRESS_SHIFT) | mii_reg;
73 out_be32 (&ug_regs->miimadd, tmp_reg);
75 /* Setting up the MII Mangement Control Register with the value */
76 out_be32 (&ug_regs->miimcon, (u32) value);
79 /* Wait till MII management write is complete */
80 while ((in_be32 (&ug_regs->miimind)) & MIIMIND_BUSY);
83 /* Reads from register regnum in the PHY for device dev, */
84 /* returning the value. Clears miimcom first. All PHY */
85 /* configuration has to be done through the TSEC1 MIIM regs */
86 int uec_read_phy_reg (struct eth_device *dev, int mii_id, int regnum)
88 uec_private_t *ugeth = (uec_private_t *) dev->priv;
90 enet_tbi_mii_reg_e mii_reg = (enet_tbi_mii_reg_e) regnum;
94 ug_regs = ugeth->uec_mii_regs;
96 /* Setting up the MII Mangement Address Register */
97 tmp_reg = ((u32) mii_id << MIIMADD_PHY_ADDRESS_SHIFT) | mii_reg;
98 out_be32 (&ug_regs->miimadd, tmp_reg);
100 /* clear MII management command cycle */
101 out_be32 (&ug_regs->miimcom, 0);
104 /* Perform an MII management read cycle */
105 out_be32 (&ug_regs->miimcom, MIIMCOM_READ_CYCLE);
107 /* Wait till MII management write is complete */
108 while ((in_be32 (&ug_regs->miimind)) &
109 (MIIMIND_NOT_VALID | MIIMIND_BUSY));
111 /* Read MII management status */
112 value = (u16) in_be32 (&ug_regs->miimstat);
115 ("read wrong value : mii_id %d,mii_reg %d, base %08x",
116 mii_id, mii_reg, (u32) & (ug_regs->miimcfg));
121 void mii_clear_phy_interrupt (struct uec_mii_info *mii_info)
123 if (mii_info->phyinfo->ack_interrupt)
124 mii_info->phyinfo->ack_interrupt (mii_info);
127 void mii_configure_phy_interrupt (struct uec_mii_info *mii_info,
130 mii_info->interrupts = interrupts;
131 if (mii_info->phyinfo->config_intr)
132 mii_info->phyinfo->config_intr (mii_info);
135 /* Writes MII_ADVERTISE with the appropriate values, after
136 * sanitizing advertise to make sure only supported features
139 static void config_genmii_advert (struct uec_mii_info *mii_info)
144 /* Only allow advertising what this PHY supports */
145 mii_info->advertising &= mii_info->phyinfo->features;
146 advertise = mii_info->advertising;
148 /* Setup standard advertisement */
149 adv = phy_read (mii_info, PHY_ANAR);
150 adv &= ~(ADVERTISE_ALL | ADVERTISE_100BASE4);
151 if (advertise & ADVERTISED_10baseT_Half)
152 adv |= ADVERTISE_10HALF;
153 if (advertise & ADVERTISED_10baseT_Full)
154 adv |= ADVERTISE_10FULL;
155 if (advertise & ADVERTISED_100baseT_Half)
156 adv |= ADVERTISE_100HALF;
157 if (advertise & ADVERTISED_100baseT_Full)
158 adv |= ADVERTISE_100FULL;
159 phy_write (mii_info, PHY_ANAR, adv);
162 static void genmii_setup_forced (struct uec_mii_info *mii_info)
165 u32 features = mii_info->phyinfo->features;
167 ctrl = phy_read (mii_info, PHY_BMCR);
169 ctrl &= ~(PHY_BMCR_DPLX | PHY_BMCR_100_MBPS |
170 PHY_BMCR_1000_MBPS | PHY_BMCR_AUTON);
171 ctrl |= PHY_BMCR_RESET;
173 switch (mii_info->speed) {
175 if (features & (SUPPORTED_1000baseT_Half
176 | SUPPORTED_1000baseT_Full)) {
177 ctrl |= PHY_BMCR_1000_MBPS;
180 mii_info->speed = SPEED_100;
182 if (features & (SUPPORTED_100baseT_Half
183 | SUPPORTED_100baseT_Full)) {
184 ctrl |= PHY_BMCR_100_MBPS;
187 mii_info->speed = SPEED_10;
189 if (features & (SUPPORTED_10baseT_Half
190 | SUPPORTED_10baseT_Full))
192 default: /* Unsupported speed! */
193 ugphy_err ("%s: Bad speed!", mii_info->dev->name);
197 phy_write (mii_info, PHY_BMCR, ctrl);
200 /* Enable and Restart Autonegotiation */
201 static void genmii_restart_aneg (struct uec_mii_info *mii_info)
205 ctl = phy_read (mii_info, PHY_BMCR);
206 ctl |= (PHY_BMCR_AUTON | PHY_BMCR_RST_NEG);
207 phy_write (mii_info, PHY_BMCR, ctl);
210 static int gbit_config_aneg (struct uec_mii_info *mii_info)
215 if (mii_info->autoneg) {
216 /* Configure the ADVERTISE register */
217 config_genmii_advert (mii_info);
218 advertise = mii_info->advertising;
220 adv = phy_read (mii_info, MII_1000BASETCONTROL);
221 adv &= ~(MII_1000BASETCONTROL_FULLDUPLEXCAP |
222 MII_1000BASETCONTROL_HALFDUPLEXCAP);
223 if (advertise & SUPPORTED_1000baseT_Half)
224 adv |= MII_1000BASETCONTROL_HALFDUPLEXCAP;
225 if (advertise & SUPPORTED_1000baseT_Full)
226 adv |= MII_1000BASETCONTROL_FULLDUPLEXCAP;
227 phy_write (mii_info, MII_1000BASETCONTROL, adv);
229 /* Start/Restart aneg */
230 genmii_restart_aneg (mii_info);
232 genmii_setup_forced (mii_info);
237 static int marvell_config_aneg (struct uec_mii_info *mii_info)
239 /* The Marvell PHY has an errata which requires
240 * that certain registers get written in order
241 * to restart autonegotiation */
242 phy_write (mii_info, PHY_BMCR, PHY_BMCR_RESET);
244 phy_write (mii_info, 0x1d, 0x1f);
245 phy_write (mii_info, 0x1e, 0x200c);
246 phy_write (mii_info, 0x1d, 0x5);
247 phy_write (mii_info, 0x1e, 0);
248 phy_write (mii_info, 0x1e, 0x100);
250 gbit_config_aneg (mii_info);
255 static int genmii_config_aneg (struct uec_mii_info *mii_info)
257 if (mii_info->autoneg) {
258 config_genmii_advert (mii_info);
259 genmii_restart_aneg (mii_info);
261 genmii_setup_forced (mii_info);
266 static int genmii_update_link (struct uec_mii_info *mii_info)
270 /* Status is read once to clear old link state */
271 phy_read (mii_info, PHY_BMSR);
274 * Wait if the link is up, and autonegotiation is in progress
275 * (ie - we're capable and it's not done)
277 status = phy_read(mii_info, PHY_BMSR);
278 if ((status & PHY_BMSR_LS) && (status & PHY_BMSR_AUTN_ABLE)
279 && !(status & PHY_BMSR_AUTN_COMP)) {
282 while (!(status & PHY_BMSR_AUTN_COMP)) {
286 if (i > UGETH_AN_TIMEOUT) {
292 udelay(1000); /* 1 ms */
293 status = phy_read(mii_info, PHY_BMSR);
296 udelay(500000); /* another 500 ms (results in faster booting) */
298 if (status & PHY_BMSR_LS)
307 static int genmii_read_status (struct uec_mii_info *mii_info)
312 /* Update the link, but return if there
314 err = genmii_update_link (mii_info);
318 if (mii_info->autoneg) {
319 status = phy_read(mii_info, MII_1000BASETSTATUS);
321 if (status & (LPA_1000FULL | LPA_1000HALF)) {
322 mii_info->speed = SPEED_1000;
323 if (status & LPA_1000FULL)
324 mii_info->duplex = DUPLEX_FULL;
326 mii_info->duplex = DUPLEX_HALF;
328 status = phy_read(mii_info, PHY_ANLPAR);
330 if (status & (PHY_ANLPAR_10FD | PHY_ANLPAR_TXFD))
331 mii_info->duplex = DUPLEX_FULL;
333 mii_info->duplex = DUPLEX_HALF;
334 if (status & (PHY_ANLPAR_TXFD | PHY_ANLPAR_TX))
335 mii_info->speed = SPEED_100;
337 mii_info->speed = SPEED_10;
341 /* On non-aneg, we assume what we put in BMCR is the speed,
342 * though magic-aneg shouldn't prevent this case from occurring
348 static int bcm_init(struct uec_mii_info *mii_info)
350 struct eth_device *edev = mii_info->dev;
351 uec_private_t *uec = edev->priv;
353 gbit_config_aneg(mii_info);
355 if (uec->uec_info->enet_interface == ENET_1000_RGMII_RXID) {
359 /* Wait for aneg to complete. */
361 val = phy_read(mii_info, PHY_BMSR);
362 while (--cnt && !(val & PHY_BMSR_AUTN_COMP));
364 /* Set RDX clk delay. */
365 phy_write(mii_info, 0x18, 0x7 | (7 << 12));
367 val = phy_read(mii_info, 0x18);
368 /* Set RDX-RXC skew. */
370 val |= (7 | (7 << 12));
371 /* Write bits 14:0. */
373 phy_write(mii_info, 0x18, val);
379 static int marvell_read_status (struct uec_mii_info *mii_info)
384 /* Update the link, but return if there
386 err = genmii_update_link (mii_info);
390 /* If the link is up, read the speed and duplex */
391 /* If we aren't autonegotiating, assume speeds
393 if (mii_info->autoneg && mii_info->link) {
396 status = phy_read (mii_info, MII_M1011_PHY_SPEC_STATUS);
398 /* Get the duplexity */
399 if (status & MII_M1011_PHY_SPEC_STATUS_FULLDUPLEX)
400 mii_info->duplex = DUPLEX_FULL;
402 mii_info->duplex = DUPLEX_HALF;
405 speed = status & MII_M1011_PHY_SPEC_STATUS_SPD_MASK;
407 case MII_M1011_PHY_SPEC_STATUS_1000:
408 mii_info->speed = SPEED_1000;
410 case MII_M1011_PHY_SPEC_STATUS_100:
411 mii_info->speed = SPEED_100;
414 mii_info->speed = SPEED_10;
423 static int marvell_ack_interrupt (struct uec_mii_info *mii_info)
425 /* Clear the interrupts by reading the reg */
426 phy_read (mii_info, MII_M1011_IEVENT);
431 static int marvell_config_intr (struct uec_mii_info *mii_info)
433 if (mii_info->interrupts == MII_INTERRUPT_ENABLED)
434 phy_write (mii_info, MII_M1011_IMASK, MII_M1011_IMASK_INIT);
436 phy_write (mii_info, MII_M1011_IMASK, MII_M1011_IMASK_CLEAR);
441 static int dm9161_init (struct uec_mii_info *mii_info)
444 phy_write (mii_info, PHY_BMCR, phy_read (mii_info, PHY_BMCR) |
446 /* PHY and MAC connect */
447 phy_write (mii_info, PHY_BMCR, phy_read (mii_info, PHY_BMCR) &
450 phy_write (mii_info, MII_DM9161_SCR, MII_DM9161_SCR_INIT);
452 config_genmii_advert (mii_info);
453 /* Start/restart aneg */
454 genmii_config_aneg (mii_info);
459 static int dm9161_config_aneg (struct uec_mii_info *mii_info)
464 static int dm9161_read_status (struct uec_mii_info *mii_info)
469 /* Update the link, but return if there was an error */
470 err = genmii_update_link (mii_info);
473 /* If the link is up, read the speed and duplex
474 If we aren't autonegotiating assume speeds are as set */
475 if (mii_info->autoneg && mii_info->link) {
476 status = phy_read (mii_info, MII_DM9161_SCSR);
477 if (status & (MII_DM9161_SCSR_100F | MII_DM9161_SCSR_100H))
478 mii_info->speed = SPEED_100;
480 mii_info->speed = SPEED_10;
482 if (status & (MII_DM9161_SCSR_100F | MII_DM9161_SCSR_10F))
483 mii_info->duplex = DUPLEX_FULL;
485 mii_info->duplex = DUPLEX_HALF;
491 static int dm9161_ack_interrupt (struct uec_mii_info *mii_info)
493 /* Clear the interrupt by reading the reg */
494 phy_read (mii_info, MII_DM9161_INTR);
499 static int dm9161_config_intr (struct uec_mii_info *mii_info)
501 if (mii_info->interrupts == MII_INTERRUPT_ENABLED)
502 phy_write (mii_info, MII_DM9161_INTR, MII_DM9161_INTR_INIT);
504 phy_write (mii_info, MII_DM9161_INTR, MII_DM9161_INTR_STOP);
509 static void dm9161_close (struct uec_mii_info *mii_info)
513 static struct phy_info phy_info_dm9161 = {
514 .phy_id = 0x0181b880,
515 .phy_id_mask = 0x0ffffff0,
516 .name = "Davicom DM9161E",
518 .config_aneg = dm9161_config_aneg,
519 .read_status = dm9161_read_status,
520 .close = dm9161_close,
523 static struct phy_info phy_info_dm9161a = {
524 .phy_id = 0x0181b8a0,
525 .phy_id_mask = 0x0ffffff0,
526 .name = "Davicom DM9161A",
527 .features = MII_BASIC_FEATURES,
529 .config_aneg = dm9161_config_aneg,
530 .read_status = dm9161_read_status,
531 .ack_interrupt = dm9161_ack_interrupt,
532 .config_intr = dm9161_config_intr,
533 .close = dm9161_close,
536 static struct phy_info phy_info_marvell = {
537 .phy_id = 0x01410c00,
538 .phy_id_mask = 0xffffff00,
539 .name = "Marvell 88E11x1",
540 .features = MII_GBIT_FEATURES,
541 .config_aneg = &marvell_config_aneg,
542 .read_status = &marvell_read_status,
543 .ack_interrupt = &marvell_ack_interrupt,
544 .config_intr = &marvell_config_intr,
547 static struct phy_info phy_info_bcm5481 = {
548 .phy_id = 0x0143bca0,
549 .phy_id_mask = 0xffffff0,
550 .name = "Broadcom 5481",
551 .features = MII_GBIT_FEATURES,
552 .read_status = genmii_read_status,
556 static struct phy_info phy_info_genmii = {
557 .phy_id = 0x00000000,
558 .phy_id_mask = 0x00000000,
559 .name = "Generic MII",
560 .features = MII_BASIC_FEATURES,
561 .config_aneg = genmii_config_aneg,
562 .read_status = genmii_read_status,
565 static struct phy_info *phy_info[] = {
574 u16 phy_read (struct uec_mii_info *mii_info, u16 regnum)
576 return mii_info->mdio_read (mii_info->dev, mii_info->mii_id, regnum);
579 void phy_write (struct uec_mii_info *mii_info, u16 regnum, u16 val)
581 mii_info->mdio_write (mii_info->dev, mii_info->mii_id, regnum, val);
584 /* Use the PHY ID registers to determine what type of PHY is attached
585 * to device dev. return a struct phy_info structure describing that PHY
587 struct phy_info *uec_get_phy_info (struct uec_mii_info *mii_info)
592 struct phy_info *theInfo = NULL;
594 /* Grab the bits from PHYIR1, and put them in the upper half */
595 phy_reg = phy_read (mii_info, PHY_PHYIDR1);
596 phy_ID = (phy_reg & 0xffff) << 16;
598 /* Grab the bits from PHYIR2, and put them in the lower half */
599 phy_reg = phy_read (mii_info, PHY_PHYIDR2);
600 phy_ID |= (phy_reg & 0xffff);
602 /* loop through all the known PHY types, and find one that */
603 /* matches the ID we read from the PHY. */
604 for (i = 0; phy_info[i]; i++)
605 if (phy_info[i]->phy_id ==
606 (phy_ID & phy_info[i]->phy_id_mask)) {
607 theInfo = phy_info[i];
611 /* This shouldn't happen, as we have generic PHY support */
612 if (theInfo == NULL) {
613 ugphy_info ("UEC: PHY id %x is not supported!", phy_ID);
616 ugphy_info ("UEC: PHY is %s (%x)", theInfo->name, phy_ID);
622 void marvell_phy_interface_mode (struct eth_device *dev,
623 enet_interface_e mode)
625 uec_private_t *uec = (uec_private_t *) dev->priv;
626 struct uec_mii_info *mii_info;
629 if (!uec->mii_info) {
630 printf ("%s: the PHY not initialized\n", __FUNCTION__);
633 mii_info = uec->mii_info;
635 if (mode == ENET_100_RGMII) {
636 phy_write (mii_info, 0x00, 0x9140);
637 phy_write (mii_info, 0x1d, 0x001f);
638 phy_write (mii_info, 0x1e, 0x200c);
639 phy_write (mii_info, 0x1d, 0x0005);
640 phy_write (mii_info, 0x1e, 0x0000);
641 phy_write (mii_info, 0x1e, 0x0100);
642 phy_write (mii_info, 0x09, 0x0e00);
643 phy_write (mii_info, 0x04, 0x01e1);
644 phy_write (mii_info, 0x00, 0x9140);
645 phy_write (mii_info, 0x00, 0x1000);
647 phy_write (mii_info, 0x00, 0x2900);
648 phy_write (mii_info, 0x14, 0x0cd2);
649 phy_write (mii_info, 0x00, 0xa100);
650 phy_write (mii_info, 0x09, 0x0000);
651 phy_write (mii_info, 0x1b, 0x800b);
652 phy_write (mii_info, 0x04, 0x05e1);
653 phy_write (mii_info, 0x00, 0xa100);
654 phy_write (mii_info, 0x00, 0x2100);
656 } else if (mode == ENET_10_RGMII) {
657 phy_write (mii_info, 0x14, 0x8e40);
658 phy_write (mii_info, 0x1b, 0x800b);
659 phy_write (mii_info, 0x14, 0x0c82);
660 phy_write (mii_info, 0x00, 0x8100);
664 /* handle 88e1111 rev.B2 erratum 5.6 */
665 if (mii_info->autoneg) {
666 status = phy_read (mii_info, PHY_BMCR);
667 phy_write (mii_info, PHY_BMCR, status | PHY_BMCR_AUTON);
669 /* now the B2 will correctly report autoneg completion status */
672 void change_phy_interface_mode (struct eth_device *dev, enet_interface_e mode)
674 #ifdef CONFIG_PHY_MODE_NEED_CHANGE
675 marvell_phy_interface_mode (dev, mode);