/drivers/staging/octeon/ethernet-sgmii.c

https://bitbucket.org/cyanogenmod/android_kernel_asus_tf300t · C · 127 lines · 81 code · 18 blank · 28 comment · 13 complexity · 139dbdb6777b00745f895ea743ccc7cb MD5 · raw file

  1. /**********************************************************************
  2. * Author: Cavium Networks
  3. *
  4. * Contact: support@caviumnetworks.com
  5. * This file is part of the OCTEON SDK
  6. *
  7. * Copyright (c) 2003-2007 Cavium Networks
  8. *
  9. * This file is free software; you can redistribute it and/or modify
  10. * it under the terms of the GNU General Public License, Version 2, as
  11. * published by the Free Software Foundation.
  12. *
  13. * This file is distributed in the hope that it will be useful, but
  14. * AS-IS and WITHOUT ANY WARRANTY; without even the implied warranty
  15. * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE, TITLE, or
  16. * NONINFRINGEMENT. See the GNU General Public License for more
  17. * details.
  18. *
  19. * You should have received a copy of the GNU General Public License
  20. * along with this file; if not, write to the Free Software
  21. * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
  22. * or visit http://www.gnu.org/licenses/.
  23. *
  24. * This file may also be available under a different license from Cavium.
  25. * Contact Cavium Networks for more information
  26. **********************************************************************/
  27. #include <linux/kernel.h>
  28. #include <linux/netdevice.h>
  29. #include <linux/ratelimit.h>
  30. #include <net/dst.h>
  31. #include <asm/octeon/octeon.h>
  32. #include "ethernet-defines.h"
  33. #include "octeon-ethernet.h"
  34. #include "ethernet-util.h"
  35. #include "cvmx-helper.h"
  36. #include "cvmx-gmxx-defs.h"
  37. int cvm_oct_sgmii_open(struct net_device *dev)
  38. {
  39. union cvmx_gmxx_prtx_cfg gmx_cfg;
  40. struct octeon_ethernet *priv = netdev_priv(dev);
  41. int interface = INTERFACE(priv->port);
  42. int index = INDEX(priv->port);
  43. cvmx_helper_link_info_t link_info;
  44. gmx_cfg.u64 = cvmx_read_csr(CVMX_GMXX_PRTX_CFG(index, interface));
  45. gmx_cfg.s.en = 1;
  46. cvmx_write_csr(CVMX_GMXX_PRTX_CFG(index, interface), gmx_cfg.u64);
  47. if (!octeon_is_simulation()) {
  48. link_info = cvmx_helper_link_get(priv->port);
  49. if (!link_info.s.link_up)
  50. netif_carrier_off(dev);
  51. }
  52. return 0;
  53. }
  54. int cvm_oct_sgmii_stop(struct net_device *dev)
  55. {
  56. union cvmx_gmxx_prtx_cfg gmx_cfg;
  57. struct octeon_ethernet *priv = netdev_priv(dev);
  58. int interface = INTERFACE(priv->port);
  59. int index = INDEX(priv->port);
  60. gmx_cfg.u64 = cvmx_read_csr(CVMX_GMXX_PRTX_CFG(index, interface));
  61. gmx_cfg.s.en = 0;
  62. cvmx_write_csr(CVMX_GMXX_PRTX_CFG(index, interface), gmx_cfg.u64);
  63. return 0;
  64. }
  65. static void cvm_oct_sgmii_poll(struct net_device *dev)
  66. {
  67. struct octeon_ethernet *priv = netdev_priv(dev);
  68. cvmx_helper_link_info_t link_info;
  69. link_info = cvmx_helper_link_get(priv->port);
  70. if (link_info.u64 == priv->link_info)
  71. return;
  72. link_info = cvmx_helper_link_autoconf(priv->port);
  73. priv->link_info = link_info.u64;
  74. /* Tell Linux */
  75. if (link_info.s.link_up) {
  76. if (!netif_carrier_ok(dev))
  77. netif_carrier_on(dev);
  78. if (priv->queue != -1)
  79. printk_ratelimited
  80. ("%s: %u Mbps %s duplex, port %2d, queue %2d\n",
  81. dev->name, link_info.s.speed,
  82. (link_info.s.full_duplex) ? "Full" : "Half",
  83. priv->port, priv->queue);
  84. else
  85. printk_ratelimited
  86. ("%s: %u Mbps %s duplex, port %2d, POW\n",
  87. dev->name, link_info.s.speed,
  88. (link_info.s.full_duplex) ? "Full" : "Half",
  89. priv->port);
  90. } else {
  91. if (netif_carrier_ok(dev))
  92. netif_carrier_off(dev);
  93. printk_ratelimited("%s: Link down\n", dev->name);
  94. }
  95. }
  96. int cvm_oct_sgmii_init(struct net_device *dev)
  97. {
  98. struct octeon_ethernet *priv = netdev_priv(dev);
  99. cvm_oct_common_init(dev);
  100. dev->netdev_ops->ndo_stop(dev);
  101. if (!octeon_is_simulation() && priv->phydev == NULL)
  102. priv->poll = cvm_oct_sgmii_poll;
  103. /* FIXME: Need autoneg logic */
  104. return 0;
  105. }
  106. void cvm_oct_sgmii_uninit(struct net_device *dev)
  107. {
  108. cvm_oct_common_uninit(dev);
  109. }