opa_compat.h 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. #ifndef _LINUX_H
  2. #define _LINUX_H
  3. /*
  4. * Copyright(c) 2015, 2016 Intel Corporation.
  5. *
  6. * This file is provided under a dual BSD/GPLv2 license. When using or
  7. * redistributing this file, you may do so under either license.
  8. *
  9. * GPL LICENSE SUMMARY
  10. *
  11. * This program is free software; you can redistribute it and/or modify
  12. * it under the terms of version 2 of the GNU General Public License as
  13. * published by the Free Software Foundation.
  14. *
  15. * This program is distributed in the hope that it will be useful, but
  16. * WITHOUT ANY WARRANTY; without even the implied warranty of
  17. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  18. * General Public License for more details.
  19. *
  20. * BSD LICENSE
  21. *
  22. * Redistribution and use in source and binary forms, with or without
  23. * modification, are permitted provided that the following conditions
  24. * are met:
  25. *
  26. * - Redistributions of source code must retain the above copyright
  27. * notice, this list of conditions and the following disclaimer.
  28. * - Redistributions in binary form must reproduce the above copyright
  29. * notice, this list of conditions and the following disclaimer in
  30. * the documentation and/or other materials provided with the
  31. * distribution.
  32. * - Neither the name of Intel Corporation nor the names of its
  33. * contributors may be used to endorse or promote products derived
  34. * from this software without specific prior written permission.
  35. *
  36. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  37. * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  38. * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  39. * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  40. * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  41. * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  42. * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  43. * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  44. * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  45. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  46. * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  47. *
  48. */
  49. /*
  50. * This header file is for OPA-specific definitions which are
  51. * required by the HFI driver, and which aren't yet in the Linux
  52. * IB core. We'll collect these all here, then merge them into
  53. * the kernel when that's convenient.
  54. */
  55. /* OPA SMA attribute IDs */
  56. #define OPA_ATTRIB_ID_CONGESTION_INFO cpu_to_be16(0x008b)
  57. #define OPA_ATTRIB_ID_HFI_CONGESTION_LOG cpu_to_be16(0x008f)
  58. #define OPA_ATTRIB_ID_HFI_CONGESTION_SETTING cpu_to_be16(0x0090)
  59. #define OPA_ATTRIB_ID_CONGESTION_CONTROL_TABLE cpu_to_be16(0x0091)
  60. /* OPA PMA attribute IDs */
  61. #define OPA_PM_ATTRIB_ID_PORT_STATUS cpu_to_be16(0x0040)
  62. #define OPA_PM_ATTRIB_ID_CLEAR_PORT_STATUS cpu_to_be16(0x0041)
  63. #define OPA_PM_ATTRIB_ID_DATA_PORT_COUNTERS cpu_to_be16(0x0042)
  64. #define OPA_PM_ATTRIB_ID_ERROR_PORT_COUNTERS cpu_to_be16(0x0043)
  65. #define OPA_PM_ATTRIB_ID_ERROR_INFO cpu_to_be16(0x0044)
  66. /* OPA status codes */
  67. #define OPA_PM_STATUS_REQUEST_TOO_LARGE cpu_to_be16(0x100)
  68. static inline u8 port_states_to_logical_state(struct opa_port_states *ps)
  69. {
  70. return ps->portphysstate_portstate & OPA_PI_MASK_PORT_STATE;
  71. }
  72. static inline u8 port_states_to_phys_state(struct opa_port_states *ps)
  73. {
  74. return ((ps->portphysstate_portstate &
  75. OPA_PI_MASK_PORT_PHYSICAL_STATE) >> 4) & 0xf;
  76. }
  77. /*
  78. * OPA port physical states
  79. * IB Volume 1, Table 146 PortInfo/IB Volume 2 Section 5.4.2(1) PortPhysState
  80. * values are the same in OmniPath Architecture. OPA leverages some of the same
  81. * concepts as InfiniBand, but has a few other states as well.
  82. *
  83. * When writing, only values 0-3 are valid, other values are ignored.
  84. * When reading, 0 is reserved.
  85. *
  86. * Returned by the ibphys_portstate() routine.
  87. */
  88. enum opa_port_phys_state {
  89. /* Values 0-7 have the same meaning in OPA as in InfiniBand. */
  90. IB_PORTPHYSSTATE_NOP = 0,
  91. /* 1 is reserved */
  92. IB_PORTPHYSSTATE_POLLING = 2,
  93. IB_PORTPHYSSTATE_DISABLED = 3,
  94. IB_PORTPHYSSTATE_TRAINING = 4,
  95. IB_PORTPHYSSTATE_LINKUP = 5,
  96. IB_PORTPHYSSTATE_LINK_ERROR_RECOVERY = 6,
  97. IB_PORTPHYSSTATE_PHY_TEST = 7,
  98. /* 8 is reserved */
  99. /*
  100. * Offline: Port is quiet (transmitters disabled) due to lack of
  101. * physical media, unsupported media, or transition between link up
  102. * and next link up attempt
  103. */
  104. OPA_PORTPHYSSTATE_OFFLINE = 9,
  105. /* 10 is reserved */
  106. /*
  107. * Phy_Test: Specific test patterns are transmitted, and receiver BER
  108. * can be monitored. This facilitates signal integrity testing for the
  109. * physical layer of the port.
  110. */
  111. OPA_PORTPHYSSTATE_TEST = 11,
  112. OPA_PORTPHYSSTATE_MAX = 11,
  113. /* values 12-15 are reserved/ignored */
  114. };
  115. #endif /* _LINUX_H */