Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Intel LXT971/LXT972 PHY Driver for TI DaVinci |
| 3 | * (TMS320DM644x) based boards. |
| 4 | * |
| 5 | * Copyright (C) 2007 Sergey Kubushyn <ksi@koi8.net> |
| 6 | * |
| 7 | * -------------------------------------------------------- |
| 8 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 9 | * SPDX-License-Identifier: GPL-2.0+ |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 10 | */ |
| 11 | |
| 12 | #include <common.h> |
| 13 | #include <net.h> |
Hugo Villeneuve | fec6143 | 2008-06-18 12:10:31 -0400 | [diff] [blame] | 14 | #include <miiphy.h> |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 15 | #include <lxt971a.h> |
| 16 | #include <asm/arch/emac_defs.h> |
Masahiro Yamada | 601fbec | 2015-02-20 17:04:05 +0900 | [diff] [blame] | 17 | #include "../../../drivers/net/davinci_emac.h" |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 18 | |
| 19 | #ifdef CONFIG_DRIVER_TI_EMAC |
| 20 | |
| 21 | #ifdef CONFIG_CMD_NET |
| 22 | |
| 23 | int lxt972_is_phy_connected(int phy_addr) |
| 24 | { |
Hugo Villeneuve | 6367684 | 2008-06-18 12:10:33 -0400 | [diff] [blame] | 25 | u_int16_t id1, id2; |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 26 | |
Mike Frysinger | 8ef583a | 2010-12-23 15:40:12 -0500 | [diff] [blame] | 27 | if (!davinci_eth_phy_read(phy_addr, MII_PHYSID1, &id1)) |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 28 | return(0); |
Mike Frysinger | 8ef583a | 2010-12-23 15:40:12 -0500 | [diff] [blame] | 29 | if (!davinci_eth_phy_read(phy_addr, MII_PHYSID2, &id2)) |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 30 | return(0); |
| 31 | |
| 32 | if ((id1 == (0x0013)) && ((id2 & 0xfff0) == 0x78e0)) |
| 33 | return(1); |
| 34 | |
| 35 | return(0); |
| 36 | } |
| 37 | |
| 38 | int lxt972_get_link_speed(int phy_addr) |
| 39 | { |
Hugo Villeneuve | 6367684 | 2008-06-18 12:10:33 -0400 | [diff] [blame] | 40 | u_int16_t stat1, tmp; |
| 41 | volatile emac_regs *emac = (emac_regs *)EMAC_BASE_ADDR; |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 42 | |
Sandeep Paulraj | fcaac58 | 2008-08-31 00:39:46 +0200 | [diff] [blame] | 43 | if (!davinci_eth_phy_read(phy_addr, PHY_LXT971_STAT2, &stat1)) |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 44 | return(0); |
| 45 | |
| 46 | if (!(stat1 & PHY_LXT971_STAT2_LINK)) /* link up? */ |
| 47 | return(0); |
| 48 | |
Sandeep Paulraj | fcaac58 | 2008-08-31 00:39:46 +0200 | [diff] [blame] | 49 | if (!davinci_eth_phy_read(phy_addr, PHY_LXT971_DIG_CFG, &tmp)) |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 50 | return(0); |
| 51 | |
| 52 | tmp |= PHY_LXT971_DIG_CFG_MII_DRIVE; |
| 53 | |
Sandeep Paulraj | fcaac58 | 2008-08-31 00:39:46 +0200 | [diff] [blame] | 54 | davinci_eth_phy_write(phy_addr, PHY_LXT971_DIG_CFG, tmp); |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 55 | /* Read back */ |
Sandeep Paulraj | fcaac58 | 2008-08-31 00:39:46 +0200 | [diff] [blame] | 56 | if (!davinci_eth_phy_read(phy_addr, PHY_LXT971_DIG_CFG, &tmp)) |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 57 | return(0); |
| 58 | |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 59 | /* Speed doesn't matter, there is no setting for it in EMAC... */ |
Hugo Villeneuve | 6367684 | 2008-06-18 12:10:33 -0400 | [diff] [blame] | 60 | if (stat1 & PHY_LXT971_STAT2_DUPLEX_MODE) { |
| 61 | /* set DM644x EMAC for Full Duplex */ |
| 62 | emac->MACCONTROL = EMAC_MACCONTROL_MIIEN_ENABLE | |
| 63 | EMAC_MACCONTROL_FULLDUPLEX_ENABLE; |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 64 | } else { |
Hugo Villeneuve | 6367684 | 2008-06-18 12:10:33 -0400 | [diff] [blame] | 65 | /*set DM644x EMAC for Half Duplex */ |
| 66 | emac->MACCONTROL = EMAC_MACCONTROL_MIIEN_ENABLE; |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 67 | } |
| 68 | |
Hugo Villeneuve | 6367684 | 2008-06-18 12:10:33 -0400 | [diff] [blame] | 69 | return(1); |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 70 | } |
| 71 | |
| 72 | |
| 73 | int lxt972_init_phy(int phy_addr) |
| 74 | { |
Hugo Villeneuve | 6367684 | 2008-06-18 12:10:33 -0400 | [diff] [blame] | 75 | int ret = 1; |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 76 | |
| 77 | if (!lxt972_get_link_speed(phy_addr)) { |
| 78 | /* Try another time */ |
| 79 | ret = lxt972_get_link_speed(phy_addr); |
| 80 | } |
| 81 | |
| 82 | /* Disable PHY Interrupts */ |
Sandeep Paulraj | fcaac58 | 2008-08-31 00:39:46 +0200 | [diff] [blame] | 83 | davinci_eth_phy_write(phy_addr, PHY_LXT971_INT_ENABLE, 0); |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 84 | |
| 85 | return(ret); |
| 86 | } |
| 87 | |
| 88 | |
| 89 | int lxt972_auto_negotiate(int phy_addr) |
| 90 | { |
Hugo Villeneuve | 6367684 | 2008-06-18 12:10:33 -0400 | [diff] [blame] | 91 | u_int16_t tmp; |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 92 | |
Mike Frysinger | 8ef583a | 2010-12-23 15:40:12 -0500 | [diff] [blame] | 93 | if (!davinci_eth_phy_read(phy_addr, MII_BMCR, &tmp)) |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 94 | return(0); |
| 95 | |
| 96 | /* Restart Auto_negotiation */ |
Mike Frysinger | 8ef583a | 2010-12-23 15:40:12 -0500 | [diff] [blame] | 97 | tmp |= BMCR_ANRESTART; |
| 98 | davinci_eth_phy_write(phy_addr, MII_BMCR, tmp); |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 99 | |
| 100 | /*check AutoNegotiate complete */ |
| 101 | udelay (10000); |
Mike Frysinger | 8ef583a | 2010-12-23 15:40:12 -0500 | [diff] [blame] | 102 | if (!davinci_eth_phy_read(phy_addr, MII_BMSR, &tmp)) |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 103 | return(0); |
| 104 | |
Mike Frysinger | 8ef583a | 2010-12-23 15:40:12 -0500 | [diff] [blame] | 105 | if (!(tmp & BMSR_ANEGCOMPLETE)) |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 106 | return(0); |
| 107 | |
| 108 | return (lxt972_get_link_speed(phy_addr)); |
| 109 | } |
| 110 | |
| 111 | #endif /* CONFIG_CMD_NET */ |
| 112 | |
| 113 | #endif /* CONFIG_DRIVER_ETHER */ |