teranetics.c 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  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 <phy.h>
  25. #ifndef CONFIG_PHYLIB_10G
  26. #error The Teranetics PHY needs 10G support
  27. #endif
  28. int tn2020_config(struct phy_device *phydev)
  29. {
  30. if (phydev->port == PORT_FIBRE) {
  31. unsigned short restart_an = (MDIO_AN_CTRL1_RESTART |
  32. MDIO_AN_CTRL1_ENABLE |
  33. MDIO_AN_CTRL1_XNP);
  34. phy_write(phydev, 30, 93, 2);
  35. phy_write(phydev, MDIO_MMD_AN, MDIO_CTRL1, restart_an);
  36. }
  37. return 0;
  38. }
  39. int tn2020_startup(struct phy_device *phydev)
  40. {
  41. if (phydev->port != PORT_FIBRE)
  42. return gen10g_startup(phydev);
  43. /*
  44. * The TN2020 only pretends to support fiber.
  45. * It works, but it doesn't look like it works,
  46. * so the link status reports no link.
  47. */
  48. phydev->link = 1;
  49. /* For now just lie and say it's 10G all the time */
  50. phydev->speed = SPEED_10000;
  51. phydev->duplex = DUPLEX_FULL;
  52. return 0;
  53. }
  54. struct phy_driver tn2020_driver = {
  55. .name = "Teranetics TN2020",
  56. .uid = 0x00a19410,
  57. .mask = 0xfffffff0,
  58. .features = PHY_10G_FEATURES,
  59. .mmds = (MDIO_DEVS_PMAPMD | MDIO_DEVS_PCS |
  60. MDIO_DEVS_PHYXS | MDIO_DEVS_AN |
  61. MDIO_DEVS_VEND1 | MDIO_DEVS_VEND2),
  62. .config = &tn2020_config,
  63. .startup = &tn2020_startup,
  64. .shutdown = &gen10g_shutdown,
  65. };
  66. int phy_teranetics_init(void)
  67. {
  68. phy_register(&tn2020_driver);
  69. return 0;
  70. }