en_port.c 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221
  1. /*
  2. * Copyright (c) 2007 Mellanox Technologies. All rights reserved.
  3. *
  4. * This software is available to you under a choice of one of two
  5. * licenses. You may choose to be licensed under the terms of the GNU
  6. * General Public License (GPL) Version 2, available from the file
  7. * COPYING in the main directory of this source tree, or the
  8. * OpenIB.org BSD license below:
  9. *
  10. * Redistribution and use in source and binary forms, with or
  11. * without modification, are permitted provided that the following
  12. * conditions are met:
  13. *
  14. * - Redistributions of source code must retain the above
  15. * copyright notice, this list of conditions and the following
  16. * disclaimer.
  17. *
  18. * - Redistributions in binary form must reproduce the above
  19. * copyright notice, this list of conditions and the following
  20. * disclaimer in the documentation and/or other materials
  21. * provided with the distribution.
  22. *
  23. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  24. * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  25. * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  26. * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
  27. * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
  28. * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  29. * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  30. * SOFTWARE.
  31. *
  32. */
  33. #include <linux/if_vlan.h>
  34. #include <linux/mlx4/device.h>
  35. #include <linux/mlx4/cmd.h>
  36. #include "en_port.h"
  37. #include "mlx4_en.h"
  38. int mlx4_SET_VLAN_FLTR(struct mlx4_dev *dev, struct mlx4_en_priv *priv)
  39. {
  40. struct mlx4_cmd_mailbox *mailbox;
  41. struct mlx4_set_vlan_fltr_mbox *filter;
  42. int i;
  43. int j;
  44. int index = 0;
  45. u32 entry;
  46. int err = 0;
  47. mailbox = mlx4_alloc_cmd_mailbox(dev);
  48. if (IS_ERR(mailbox))
  49. return PTR_ERR(mailbox);
  50. filter = mailbox->buf;
  51. memset(filter, 0, sizeof(*filter));
  52. for (i = VLAN_FLTR_SIZE - 1; i >= 0; i--) {
  53. entry = 0;
  54. for (j = 0; j < 32; j++)
  55. if (test_bit(index++, priv->active_vlans))
  56. entry |= 1 << j;
  57. filter->entry[i] = cpu_to_be32(entry);
  58. }
  59. err = mlx4_cmd(dev, mailbox->dma, priv->port, 0, MLX4_CMD_SET_VLAN_FLTR,
  60. MLX4_CMD_TIME_CLASS_B, MLX4_CMD_WRAPPED);
  61. mlx4_free_cmd_mailbox(dev, mailbox);
  62. return err;
  63. }
  64. int mlx4_en_QUERY_PORT(struct mlx4_en_dev *mdev, u8 port)
  65. {
  66. struct mlx4_en_query_port_context *qport_context;
  67. struct mlx4_en_priv *priv = netdev_priv(mdev->pndev[port]);
  68. struct mlx4_en_port_state *state = &priv->port_state;
  69. struct mlx4_cmd_mailbox *mailbox;
  70. int err;
  71. mailbox = mlx4_alloc_cmd_mailbox(mdev->dev);
  72. if (IS_ERR(mailbox))
  73. return PTR_ERR(mailbox);
  74. memset(mailbox->buf, 0, sizeof(*qport_context));
  75. err = mlx4_cmd_box(mdev->dev, 0, mailbox->dma, port, 0,
  76. MLX4_CMD_QUERY_PORT, MLX4_CMD_TIME_CLASS_B,
  77. MLX4_CMD_WRAPPED);
  78. if (err)
  79. goto out;
  80. qport_context = mailbox->buf;
  81. /* This command is always accessed from Ethtool context
  82. * already synchronized, no need in locking */
  83. state->link_state = !!(qport_context->link_up & MLX4_EN_LINK_UP_MASK);
  84. switch (qport_context->link_speed & MLX4_EN_SPEED_MASK) {
  85. case MLX4_EN_1G_SPEED:
  86. state->link_speed = 1000;
  87. break;
  88. case MLX4_EN_10G_SPEED_XAUI:
  89. case MLX4_EN_10G_SPEED_XFI:
  90. state->link_speed = 10000;
  91. break;
  92. case MLX4_EN_40G_SPEED:
  93. state->link_speed = 40000;
  94. break;
  95. default:
  96. state->link_speed = -1;
  97. break;
  98. }
  99. state->transciver = qport_context->transceiver;
  100. out:
  101. mlx4_free_cmd_mailbox(mdev->dev, mailbox);
  102. return err;
  103. }
  104. int mlx4_en_DUMP_ETH_STATS(struct mlx4_en_dev *mdev, u8 port, u8 reset)
  105. {
  106. struct mlx4_en_stat_out_mbox *mlx4_en_stats;
  107. struct mlx4_en_priv *priv = netdev_priv(mdev->pndev[port]);
  108. struct net_device_stats *stats = &priv->stats;
  109. struct mlx4_cmd_mailbox *mailbox;
  110. u64 in_mod = reset << 8 | port;
  111. int err;
  112. int i;
  113. mailbox = mlx4_alloc_cmd_mailbox(mdev->dev);
  114. if (IS_ERR(mailbox))
  115. return PTR_ERR(mailbox);
  116. memset(mailbox->buf, 0, sizeof(*mlx4_en_stats));
  117. err = mlx4_cmd_box(mdev->dev, 0, mailbox->dma, in_mod, 0,
  118. MLX4_CMD_DUMP_ETH_STATS, MLX4_CMD_TIME_CLASS_B,
  119. MLX4_CMD_WRAPPED);
  120. if (err)
  121. goto out;
  122. mlx4_en_stats = mailbox->buf;
  123. spin_lock_bh(&priv->stats_lock);
  124. stats->rx_packets = 0;
  125. stats->rx_bytes = 0;
  126. priv->port_stats.rx_chksum_good = 0;
  127. priv->port_stats.rx_chksum_none = 0;
  128. for (i = 0; i < priv->rx_ring_num; i++) {
  129. stats->rx_packets += priv->rx_ring[i].packets;
  130. stats->rx_bytes += priv->rx_ring[i].bytes;
  131. priv->port_stats.rx_chksum_good += priv->rx_ring[i].csum_ok;
  132. priv->port_stats.rx_chksum_none += priv->rx_ring[i].csum_none;
  133. }
  134. stats->tx_packets = 0;
  135. stats->tx_bytes = 0;
  136. priv->port_stats.tx_chksum_offload = 0;
  137. for (i = 0; i < priv->tx_ring_num; i++) {
  138. stats->tx_packets += priv->tx_ring[i].packets;
  139. stats->tx_bytes += priv->tx_ring[i].bytes;
  140. priv->port_stats.tx_chksum_offload += priv->tx_ring[i].tx_csum;
  141. }
  142. stats->rx_errors = be64_to_cpu(mlx4_en_stats->PCS) +
  143. be32_to_cpu(mlx4_en_stats->RdropLength) +
  144. be32_to_cpu(mlx4_en_stats->RJBBR) +
  145. be32_to_cpu(mlx4_en_stats->RCRC) +
  146. be32_to_cpu(mlx4_en_stats->RRUNT);
  147. stats->tx_errors = be32_to_cpu(mlx4_en_stats->TDROP);
  148. stats->multicast = be64_to_cpu(mlx4_en_stats->MCAST_prio_0) +
  149. be64_to_cpu(mlx4_en_stats->MCAST_prio_1) +
  150. be64_to_cpu(mlx4_en_stats->MCAST_prio_2) +
  151. be64_to_cpu(mlx4_en_stats->MCAST_prio_3) +
  152. be64_to_cpu(mlx4_en_stats->MCAST_prio_4) +
  153. be64_to_cpu(mlx4_en_stats->MCAST_prio_5) +
  154. be64_to_cpu(mlx4_en_stats->MCAST_prio_6) +
  155. be64_to_cpu(mlx4_en_stats->MCAST_prio_7) +
  156. be64_to_cpu(mlx4_en_stats->MCAST_novlan);
  157. stats->collisions = 0;
  158. stats->rx_length_errors = be32_to_cpu(mlx4_en_stats->RdropLength);
  159. stats->rx_over_errors = be32_to_cpu(mlx4_en_stats->RdropOvflw);
  160. stats->rx_crc_errors = be32_to_cpu(mlx4_en_stats->RCRC);
  161. stats->rx_frame_errors = 0;
  162. stats->rx_fifo_errors = be32_to_cpu(mlx4_en_stats->RdropOvflw);
  163. stats->rx_missed_errors = be32_to_cpu(mlx4_en_stats->RdropOvflw);
  164. stats->tx_aborted_errors = 0;
  165. stats->tx_carrier_errors = 0;
  166. stats->tx_fifo_errors = 0;
  167. stats->tx_heartbeat_errors = 0;
  168. stats->tx_window_errors = 0;
  169. priv->pkstats.broadcast =
  170. be64_to_cpu(mlx4_en_stats->RBCAST_prio_0) +
  171. be64_to_cpu(mlx4_en_stats->RBCAST_prio_1) +
  172. be64_to_cpu(mlx4_en_stats->RBCAST_prio_2) +
  173. be64_to_cpu(mlx4_en_stats->RBCAST_prio_3) +
  174. be64_to_cpu(mlx4_en_stats->RBCAST_prio_4) +
  175. be64_to_cpu(mlx4_en_stats->RBCAST_prio_5) +
  176. be64_to_cpu(mlx4_en_stats->RBCAST_prio_6) +
  177. be64_to_cpu(mlx4_en_stats->RBCAST_prio_7) +
  178. be64_to_cpu(mlx4_en_stats->RBCAST_novlan);
  179. priv->pkstats.rx_prio[0] = be64_to_cpu(mlx4_en_stats->RTOT_prio_0);
  180. priv->pkstats.rx_prio[1] = be64_to_cpu(mlx4_en_stats->RTOT_prio_1);
  181. priv->pkstats.rx_prio[2] = be64_to_cpu(mlx4_en_stats->RTOT_prio_2);
  182. priv->pkstats.rx_prio[3] = be64_to_cpu(mlx4_en_stats->RTOT_prio_3);
  183. priv->pkstats.rx_prio[4] = be64_to_cpu(mlx4_en_stats->RTOT_prio_4);
  184. priv->pkstats.rx_prio[5] = be64_to_cpu(mlx4_en_stats->RTOT_prio_5);
  185. priv->pkstats.rx_prio[6] = be64_to_cpu(mlx4_en_stats->RTOT_prio_6);
  186. priv->pkstats.rx_prio[7] = be64_to_cpu(mlx4_en_stats->RTOT_prio_7);
  187. priv->pkstats.tx_prio[0] = be64_to_cpu(mlx4_en_stats->TTOT_prio_0);
  188. priv->pkstats.tx_prio[1] = be64_to_cpu(mlx4_en_stats->TTOT_prio_1);
  189. priv->pkstats.tx_prio[2] = be64_to_cpu(mlx4_en_stats->TTOT_prio_2);
  190. priv->pkstats.tx_prio[3] = be64_to_cpu(mlx4_en_stats->TTOT_prio_3);
  191. priv->pkstats.tx_prio[4] = be64_to_cpu(mlx4_en_stats->TTOT_prio_4);
  192. priv->pkstats.tx_prio[5] = be64_to_cpu(mlx4_en_stats->TTOT_prio_5);
  193. priv->pkstats.tx_prio[6] = be64_to_cpu(mlx4_en_stats->TTOT_prio_6);
  194. priv->pkstats.tx_prio[7] = be64_to_cpu(mlx4_en_stats->TTOT_prio_7);
  195. spin_unlock_bh(&priv->stats_lock);
  196. out:
  197. mlx4_free_cmd_mailbox(mdev->dev, mailbox);
  198. return err;
  199. }