ehca_sqp.c 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. /*
  2. * IBM eServer eHCA Infiniband device driver for Linux on POWER
  3. *
  4. * SQP functions
  5. *
  6. * Authors: Khadija Souissi <souissi@de.ibm.com>
  7. * Heiko J Schick <schickhj@de.ibm.com>
  8. *
  9. * Copyright (c) 2005 IBM Corporation
  10. *
  11. * All rights reserved.
  12. *
  13. * This source code is distributed under a dual license of GPL v2.0 and OpenIB
  14. * BSD.
  15. *
  16. * OpenIB BSD License
  17. *
  18. * Redistribution and use in source and binary forms, with or without
  19. * modification, are permitted provided that the following conditions are met:
  20. *
  21. * Redistributions of source code must retain the above copyright notice, this
  22. * list of conditions and the following disclaimer.
  23. *
  24. * Redistributions in binary form must reproduce the above copyright notice,
  25. * this list of conditions and the following disclaimer in the documentation
  26. * and/or other materials
  27. * provided with the distribution.
  28. *
  29. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  30. * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  31. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  32. * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
  33. * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  34. * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  35. * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
  36. * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
  37. * IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  38. * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  39. * POSSIBILITY OF SUCH DAMAGE.
  40. */
  41. #include "ehca_classes.h"
  42. #include "ehca_tools.h"
  43. #include "ehca_iverbs.h"
  44. #include "hcp_if.h"
  45. /**
  46. * ehca_define_sqp - Defines special queue pair 1 (GSI QP). When special queue
  47. * pair is created successfully, the corresponding port gets active.
  48. *
  49. * Define Special Queue pair 0 (SMI QP) is still not supported.
  50. *
  51. * @qp_init_attr: Queue pair init attributes with port and queue pair type
  52. */
  53. u64 ehca_define_sqp(struct ehca_shca *shca,
  54. struct ehca_qp *ehca_qp,
  55. struct ib_qp_init_attr *qp_init_attr)
  56. {
  57. u32 pma_qp_nr, bma_qp_nr;
  58. u64 ret;
  59. u8 port = qp_init_attr->port_num;
  60. int counter;
  61. shca->sport[port - 1].port_state = IB_PORT_DOWN;
  62. switch (qp_init_attr->qp_type) {
  63. case IB_QPT_SMI:
  64. /* function not supported yet */
  65. break;
  66. case IB_QPT_GSI:
  67. ret = hipz_h_define_aqp1(shca->ipz_hca_handle,
  68. ehca_qp->ipz_qp_handle,
  69. ehca_qp->galpas.kernel,
  70. (u32) qp_init_attr->port_num,
  71. &pma_qp_nr, &bma_qp_nr);
  72. if (ret != H_SUCCESS) {
  73. ehca_err(&shca->ib_device,
  74. "Can't define AQP1 for port %x. h_ret=%li",
  75. port, ret);
  76. return ret;
  77. }
  78. break;
  79. default:
  80. ehca_err(&shca->ib_device, "invalid qp_type=%x",
  81. qp_init_attr->qp_type);
  82. return H_PARAMETER;
  83. }
  84. if (ehca_nr_ports < 0) /* autodetect mode */
  85. return H_SUCCESS;
  86. for (counter = 0;
  87. shca->sport[port - 1].port_state != IB_PORT_ACTIVE &&
  88. counter < ehca_port_act_time;
  89. counter++) {
  90. ehca_dbg(&shca->ib_device, "... wait until port %x is active",
  91. port);
  92. msleep_interruptible(1000);
  93. }
  94. if (counter == ehca_port_act_time) {
  95. ehca_err(&shca->ib_device, "Port %x is not active.", port);
  96. return H_HARDWARE;
  97. }
  98. return H_SUCCESS;
  99. }