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 <linux/module.h>
  42. #include <linux/err.h>
  43. #include "ehca_classes.h"
  44. #include "ehca_tools.h"
  45. #include "ehca_qes.h"
  46. #include "ehca_iverbs.h"
  47. #include "hcp_if.h"
  48. /**
  49. * ehca_define_sqp - Defines special queue pair 1 (GSI QP). When special queue
  50. * pair is created successfully, the corresponding port gets active.
  51. *
  52. * Define Special Queue pair 0 (SMI QP) is still not supported.
  53. *
  54. * @qp_init_attr: Queue pair init attributes with port and queue pair type
  55. */
  56. u64 ehca_define_sqp(struct ehca_shca *shca,
  57. struct ehca_qp *ehca_qp,
  58. struct ib_qp_init_attr *qp_init_attr)
  59. {
  60. u32 pma_qp_nr, bma_qp_nr;
  61. u64 ret;
  62. u8 port = qp_init_attr->port_num;
  63. int counter;
  64. shca->sport[port - 1].port_state = IB_PORT_DOWN;
  65. switch (qp_init_attr->qp_type) {
  66. case IB_QPT_SMI:
  67. /* function not supported yet */
  68. break;
  69. case IB_QPT_GSI:
  70. ret = hipz_h_define_aqp1(shca->ipz_hca_handle,
  71. ehca_qp->ipz_qp_handle,
  72. ehca_qp->galpas.kernel,
  73. (u32) qp_init_attr->port_num,
  74. &pma_qp_nr, &bma_qp_nr);
  75. if (ret != H_SUCCESS) {
  76. ehca_err(&shca->ib_device,
  77. "Can't define AQP1 for port %x. rc=%lx",
  78. port, ret);
  79. return ret;
  80. }
  81. break;
  82. default:
  83. ehca_err(&shca->ib_device, "invalid qp_type=%x",
  84. qp_init_attr->qp_type);
  85. return H_PARAMETER;
  86. }
  87. for (counter = 0;
  88. shca->sport[port - 1].port_state != IB_PORT_ACTIVE &&
  89. counter < ehca_port_act_time;
  90. counter++) {
  91. ehca_dbg(&shca->ib_device, "... wait until port %x is active",
  92. port);
  93. msleep_interruptible(1000);
  94. }
  95. if (counter == ehca_port_act_time) {
  96. ehca_err(&shca->ib_device, "Port %x is not active.", port);
  97. return H_HARDWARE;
  98. }
  99. return H_SUCCESS;
  100. }