teranetics.c 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. /*
  2. * Teranetics PHY drivers
  3. *
  4. * This program is free software; you can redistribute it and/or
  5. * modify it under the terms of the GNU General Public License as
  6. * published by the Free Software Foundation; either version 2 of
  7. * the License, or (at your option) any later version.
  8. *
  9. * This program is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with this program; if not, write to the Free Software
  16. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  17. * MA 02111-1307 USA
  18. *
  19. * Copyright 2010-2011 Freescale Semiconductor, Inc.
  20. * author Andy Fleming
  21. *
  22. */
  23. #include <config.h>
  24. #include <common.h>
  25. #include <phy.h>
  26. #ifndef CONFIG_PHYLIB_10G
  27. #error The Teranetics PHY needs 10G support
  28. #endif
  29. int tn2020_config(struct phy_device *phydev)
  30. {
  31. if (phydev->port == PORT_FIBRE) {
  32. unsigned short restart_an = (MDIO_AN_CTRL1_RESTART |
  33. MDIO_AN_CTRL1_ENABLE |
  34. MDIO_AN_CTRL1_XNP);
  35. phy_write(phydev, 30, 93, 2);
  36. phy_write(phydev, MDIO_MMD_AN, MDIO_CTRL1, restart_an);
  37. }
  38. return 0;
  39. }
  40. int tn2020_startup(struct phy_device *phydev)
  41. {
  42. unsigned int timeout = 5 * 1000; /* 5 second timeout */
  43. #define MDIO_PHYXS_LANE_READY (MDIO_PHYXS_LNSTAT_SYNC0 | \
  44. MDIO_PHYXS_LNSTAT_SYNC1 | \
  45. MDIO_PHYXS_LNSTAT_SYNC2 | \
  46. MDIO_PHYXS_LNSTAT_SYNC3 | \
  47. MDIO_PHYXS_LNSTAT_ALIGN)
  48. /*
  49. * Wait for the XAUI-SERDES lanes to align first. Under normal
  50. * circumstances, this can take up to three seconds.
  51. */
  52. while (--timeout) {
  53. int reg = phy_read(phydev, MDIO_MMD_PHYXS, MDIO_PHYXS_LNSTAT);
  54. if (reg < 0) {
  55. printf("TN2020: Error reading from PHY at "
  56. "address %u\n", phydev->addr);
  57. break;
  58. }
  59. if ((reg & MDIO_PHYXS_LANE_READY) == MDIO_PHYXS_LANE_READY)
  60. break;
  61. udelay(1000);
  62. }
  63. if (!timeout) {
  64. /*
  65. * A timeout is bad, but it may not be fatal, so don't
  66. * return an error. Display a warning instead.
  67. */
  68. printf("TN2020: Timeout waiting for PHY at address %u to "
  69. "align.\n", phydev->addr);
  70. }
  71. if (phydev->port != PORT_FIBRE)
  72. return gen10g_startup(phydev);
  73. /*
  74. * The TN2020 only pretends to support fiber.
  75. * It works, but it doesn't look like it works,
  76. * so the link status reports no link.
  77. */
  78. phydev->link = 1;
  79. /* For now just lie and say it's 10G all the time */
  80. phydev->speed = SPEED_10000;
  81. phydev->duplex = DUPLEX_FULL;
  82. return 0;
  83. }
  84. struct phy_driver tn2020_driver = {
  85. .name = "Teranetics TN2020",
  86. .uid = 0x00a19410,
  87. .mask = 0xfffffff0,
  88. .features = PHY_10G_FEATURES,
  89. .mmds = (MDIO_DEVS_PMAPMD | MDIO_DEVS_PCS |
  90. MDIO_DEVS_PHYXS | MDIO_DEVS_AN |
  91. MDIO_DEVS_VEND1 | MDIO_DEVS_VEND2),
  92. .config = &tn2020_config,
  93. .startup = &tn2020_startup,
  94. .shutdown = &gen10g_shutdown,
  95. };
  96. int phy_teranetics_init(void)
  97. {
  98. phy_register(&tn2020_driver);
  99. return 0;
  100. }