mad.c 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  1. /*
  2. * Copyright (c) 2013, Mellanox Technologies inc. 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. #include <linux/mlx5/cmd.h>
  33. #include <rdma/ib_mad.h>
  34. #include <rdma/ib_smi.h>
  35. #include "mlx5_ib.h"
  36. enum {
  37. MLX5_IB_VENDOR_CLASS1 = 0x9,
  38. MLX5_IB_VENDOR_CLASS2 = 0xa
  39. };
  40. int mlx5_MAD_IFC(struct mlx5_ib_dev *dev, int ignore_mkey, int ignore_bkey,
  41. int port, struct ib_wc *in_wc, struct ib_grh *in_grh,
  42. void *in_mad, void *response_mad)
  43. {
  44. u8 op_modifier = 0;
  45. /* Key check traps can't be generated unless we have in_wc to
  46. * tell us where to send the trap.
  47. */
  48. if (ignore_mkey || !in_wc)
  49. op_modifier |= 0x1;
  50. if (ignore_bkey || !in_wc)
  51. op_modifier |= 0x2;
  52. return mlx5_core_mad_ifc(&dev->mdev, in_mad, response_mad, op_modifier, port);
  53. }
  54. int mlx5_ib_process_mad(struct ib_device *ibdev, int mad_flags, u8 port_num,
  55. struct ib_wc *in_wc, struct ib_grh *in_grh,
  56. struct ib_mad *in_mad, struct ib_mad *out_mad)
  57. {
  58. u16 slid;
  59. int err;
  60. slid = in_wc ? in_wc->slid : be16_to_cpu(IB_LID_PERMISSIVE);
  61. if (in_mad->mad_hdr.method == IB_MGMT_METHOD_TRAP && slid == 0)
  62. return IB_MAD_RESULT_SUCCESS | IB_MAD_RESULT_CONSUMED;
  63. if (in_mad->mad_hdr.mgmt_class == IB_MGMT_CLASS_SUBN_LID_ROUTED ||
  64. in_mad->mad_hdr.mgmt_class == IB_MGMT_CLASS_SUBN_DIRECTED_ROUTE) {
  65. if (in_mad->mad_hdr.method != IB_MGMT_METHOD_GET &&
  66. in_mad->mad_hdr.method != IB_MGMT_METHOD_SET &&
  67. in_mad->mad_hdr.method != IB_MGMT_METHOD_TRAP_REPRESS)
  68. return IB_MAD_RESULT_SUCCESS;
  69. /* Don't process SMInfo queries -- the SMA can't handle them.
  70. */
  71. if (in_mad->mad_hdr.attr_id == IB_SMP_ATTR_SM_INFO)
  72. return IB_MAD_RESULT_SUCCESS;
  73. } else if (in_mad->mad_hdr.mgmt_class == IB_MGMT_CLASS_PERF_MGMT ||
  74. in_mad->mad_hdr.mgmt_class == MLX5_IB_VENDOR_CLASS1 ||
  75. in_mad->mad_hdr.mgmt_class == MLX5_IB_VENDOR_CLASS2 ||
  76. in_mad->mad_hdr.mgmt_class == IB_MGMT_CLASS_CONG_MGMT) {
  77. if (in_mad->mad_hdr.method != IB_MGMT_METHOD_GET &&
  78. in_mad->mad_hdr.method != IB_MGMT_METHOD_SET)
  79. return IB_MAD_RESULT_SUCCESS;
  80. } else {
  81. return IB_MAD_RESULT_SUCCESS;
  82. }
  83. err = mlx5_MAD_IFC(to_mdev(ibdev),
  84. mad_flags & IB_MAD_IGNORE_MKEY,
  85. mad_flags & IB_MAD_IGNORE_BKEY,
  86. port_num, in_wc, in_grh, in_mad, out_mad);
  87. if (err)
  88. return IB_MAD_RESULT_FAILURE;
  89. /* set return bit in status of directed route responses */
  90. if (in_mad->mad_hdr.mgmt_class == IB_MGMT_CLASS_SUBN_DIRECTED_ROUTE)
  91. out_mad->mad_hdr.status |= cpu_to_be16(1 << 15);
  92. if (in_mad->mad_hdr.method == IB_MGMT_METHOD_TRAP_REPRESS)
  93. /* no response for trap repress */
  94. return IB_MAD_RESULT_SUCCESS | IB_MAD_RESULT_CONSUMED;
  95. return IB_MAD_RESULT_SUCCESS | IB_MAD_RESULT_REPLY;
  96. }
  97. int mlx5_query_ext_port_caps(struct mlx5_ib_dev *dev, u8 port)
  98. {
  99. struct ib_smp *in_mad = NULL;
  100. struct ib_smp *out_mad = NULL;
  101. int err = -ENOMEM;
  102. u16 packet_error;
  103. in_mad = kzalloc(sizeof(*in_mad), GFP_KERNEL);
  104. out_mad = kmalloc(sizeof(*out_mad), GFP_KERNEL);
  105. if (!in_mad || !out_mad)
  106. goto out;
  107. init_query_mad(in_mad);
  108. in_mad->attr_id = MLX5_ATTR_EXTENDED_PORT_INFO;
  109. in_mad->attr_mod = cpu_to_be32(port);
  110. err = mlx5_MAD_IFC(dev, 1, 1, 1, NULL, NULL, in_mad, out_mad);
  111. packet_error = be16_to_cpu(out_mad->status);
  112. dev->mdev.caps.ext_port_cap[port - 1] = (!err && !packet_error) ?
  113. MLX_EXT_PORT_CAP_FLAG_EXTENDED_PORT_INFO : 0;
  114. out:
  115. kfree(in_mad);
  116. kfree(out_mad);
  117. return err;
  118. }