dp83848.c 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. /*
  2. * National Semiconductor DP83848 PHY Driver for TI DaVinci
  3. * (TMS320DM644x) based boards.
  4. *
  5. * Copyright (C) 2007 Sergey Kubushyn <ksi@koi8.net>
  6. *
  7. * --------------------------------------------------------
  8. *
  9. * See file CREDITS for list of people who contributed to this
  10. * project.
  11. *
  12. * This program is free software; you can redistribute it and/or
  13. * modify it under the terms of the GNU General Public License as
  14. * published by the Free Software Foundation; either version 2 of
  15. * the License, or (at your option) any later version.
  16. *
  17. * This program is distributed in the hope that it will be useful,
  18. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  19. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  20. * GNU General Public License for more details.
  21. *
  22. * You should have received a copy of the GNU General Public License
  23. * along with this program; if not, write to the Free Software
  24. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  25. * MA 02111-1307 USA
  26. */
  27. #include <common.h>
  28. #include <net.h>
  29. #include <dp83848.h>
  30. #include <asm/arch/emac_defs.h>
  31. #ifdef CONFIG_DRIVER_TI_EMAC
  32. #ifdef CONFIG_CMD_NET
  33. int dp83848_is_phy_connected(int phy_addr)
  34. {
  35. u_int16_t id1, id2;
  36. if (!davinci_eth_phy_read(phy_addr, DP83848_PHYID1_REG, &id1))
  37. return(0);
  38. if (!davinci_eth_phy_read(phy_addr, DP83848_PHYID2_REG, &id2))
  39. return(0);
  40. if ((id1 == DP83848_PHYID1_OUI) && (id2 == DP83848_PHYID2_OUI))
  41. return(1);
  42. return(0);
  43. }
  44. int dp83848_get_link_speed(int phy_addr)
  45. {
  46. u_int16_t tmp;
  47. volatile emac_regs* emac = (emac_regs *)EMAC_BASE_ADDR;
  48. if (!davinci_eth_phy_read(phy_addr, DP83848_STAT_REG, &tmp))
  49. return(0);
  50. if (!(tmp & DP83848_LINK_STATUS)) /* link up? */
  51. return(0);
  52. if (!davinci_eth_phy_read(phy_addr, DP83848_PHY_STAT_REG, &tmp))
  53. return(0);
  54. /* Speed doesn't matter, there is no setting for it in EMAC... */
  55. if (tmp & DP83848_DUPLEX) {
  56. /* set DM644x EMAC for Full Duplex */
  57. emac->MACCONTROL = EMAC_MACCONTROL_MIIEN_ENABLE |
  58. EMAC_MACCONTROL_FULLDUPLEX_ENABLE;
  59. } else {
  60. /*set DM644x EMAC for Half Duplex */
  61. emac->MACCONTROL = EMAC_MACCONTROL_MIIEN_ENABLE;
  62. }
  63. return(1);
  64. }
  65. int dp83848_init_phy(int phy_addr)
  66. {
  67. int ret = 1;
  68. if (!dp83848_get_link_speed(phy_addr)) {
  69. /* Try another time */
  70. udelay(100000);
  71. ret = dp83848_get_link_speed(phy_addr);
  72. }
  73. /* Disable PHY Interrupts */
  74. davinci_eth_phy_write(phy_addr, DP83848_PHY_INTR_CTRL_REG, 0);
  75. return(ret);
  76. }
  77. int dp83848_auto_negotiate(int phy_addr)
  78. {
  79. u_int16_t tmp;
  80. if (!davinci_eth_phy_read(phy_addr, DP83848_CTL_REG, &tmp))
  81. return(0);
  82. /* Restart Auto_negotiation */
  83. tmp &= ~DP83848_AUTONEG; /* remove autonegotiation enable */
  84. tmp |= DP83848_ISOLATE; /* Electrically isolate PHY */
  85. davinci_eth_phy_write(phy_addr, DP83848_CTL_REG, tmp);
  86. /* Set the Auto_negotiation Advertisement Register
  87. * MII advertising for Next page, 100BaseTxFD and HD,
  88. * 10BaseTFD and HD, IEEE 802.3
  89. */
  90. tmp = DP83848_NP | DP83848_TX_FDX | DP83848_TX_HDX |
  91. DP83848_10_FDX | DP83848_10_HDX | DP83848_AN_IEEE_802_3;
  92. davinci_eth_phy_write(phy_addr, DP83848_ANA_REG, tmp);
  93. /* Read Control Register */
  94. if (!davinci_eth_phy_read(phy_addr, DP83848_CTL_REG, &tmp))
  95. return(0);
  96. tmp |= DP83848_SPEED_SELECT | DP83848_AUTONEG | DP83848_DUPLEX_MODE;
  97. davinci_eth_phy_write(phy_addr, DP83848_CTL_REG, tmp);
  98. /* Restart Auto_negotiation */
  99. tmp |= DP83848_RESTART_AUTONEG;
  100. davinci_eth_phy_write(phy_addr, DP83848_CTL_REG, tmp);
  101. /*check AutoNegotiate complete */
  102. udelay(10000);
  103. if (!davinci_eth_phy_read(phy_addr, DP83848_STAT_REG, &tmp))
  104. return(0);
  105. if (!(tmp & DP83848_AUTONEG_COMP))
  106. return(0);
  107. return (dp83848_get_link_speed(phy_addr));
  108. }
  109. #endif /* CONFIG_CMD_NET */
  110. #endif /* CONFIG_DRIVER_ETHER */