Leon Romanovsky | 6bf9d8f | 2020-07-19 10:25:21 +0300 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause */ |
Doug Ledford | 87f0faa | 2017-05-01 16:35:59 -0400 | [diff] [blame] | 2 | /* |
| 3 | * Copyright(c) 2017 Intel Corporation. |
Doug Ledford | 87f0faa | 2017-05-01 16:35:59 -0400 | [diff] [blame] | 4 | */ |
| 5 | |
| 6 | #ifndef OPA_ADDR_H |
| 7 | #define OPA_ADDR_H |
| 8 | |
Don Hiatt | 13c1922 | 2017-08-04 13:53:51 -0700 | [diff] [blame] | 9 | #include <rdma/opa_smi.h> |
| 10 | |
Doug Ledford | 87f0faa | 2017-05-01 16:35:59 -0400 | [diff] [blame] | 11 | #define OPA_SPECIAL_OUI (0x00066AULL) |
| 12 | #define OPA_MAKE_ID(x) (cpu_to_be64(OPA_SPECIAL_OUI << 40 | (x))) |
Dasaratharaman Chandramouli | 582faf3 | 2017-06-08 13:37:47 -0400 | [diff] [blame] | 13 | #define OPA_TO_IB_UCAST_LID(x) (((x) >= be16_to_cpu(IB_MULTICAST_LID_BASE)) \ |
| 14 | ? 0 : x) |
Don Hiatt | 88733e3 | 2017-08-04 13:54:23 -0700 | [diff] [blame] | 15 | #define OPA_GID_INDEX 0x1 |
Doug Ledford | 87f0faa | 2017-05-01 16:35:59 -0400 | [diff] [blame] | 16 | /** |
Don Hiatt | 13c1922 | 2017-08-04 13:53:51 -0700 | [diff] [blame] | 17 | * 0xF8 - 4 bits of multicast range and 1 bit for collective range |
| 18 | * Example: For 24 bit LID space, |
| 19 | * Multicast range: 0xF00000 to 0xF7FFFF |
| 20 | * Collective range: 0xF80000 to 0xFFFFFE |
| 21 | */ |
| 22 | #define OPA_MCAST_NR 0x4 /* Number of top bits set */ |
| 23 | #define OPA_COLLECTIVE_NR 0x1 /* Number of bits after MCAST_NR */ |
| 24 | |
| 25 | /** |
Doug Ledford | 87f0faa | 2017-05-01 16:35:59 -0400 | [diff] [blame] | 26 | * ib_is_opa_gid: Returns true if the top 24 bits of the gid |
| 27 | * contains the OPA_STL_OUI identifier. This identifies that |
| 28 | * the provided gid is a special purpose GID meant to carry |
| 29 | * extended LID information. |
| 30 | * |
| 31 | * @gid: The Global identifier |
| 32 | */ |
Don Hiatt | d98bb7f | 2017-08-04 13:54:16 -0700 | [diff] [blame] | 33 | static inline bool ib_is_opa_gid(const union ib_gid *gid) |
Doug Ledford | 87f0faa | 2017-05-01 16:35:59 -0400 | [diff] [blame] | 34 | { |
| 35 | return ((be64_to_cpu(gid->global.interface_id) >> 40) == |
| 36 | OPA_SPECIAL_OUI); |
| 37 | } |
| 38 | |
| 39 | /** |
| 40 | * opa_get_lid_from_gid: Returns the last 32 bits of the gid. |
| 41 | * OPA devices use one of the gids in the gid table to also |
| 42 | * store the lid. |
| 43 | * |
| 44 | * @gid: The Global identifier |
| 45 | */ |
Don Hiatt | d98bb7f | 2017-08-04 13:54:16 -0700 | [diff] [blame] | 46 | static inline u32 opa_get_lid_from_gid(const union ib_gid *gid) |
Doug Ledford | 87f0faa | 2017-05-01 16:35:59 -0400 | [diff] [blame] | 47 | { |
| 48 | return be64_to_cpu(gid->global.interface_id) & 0xFFFFFFFF; |
| 49 | } |
Hiatt, Don | e92aa00 | 2017-06-08 13:38:02 -0400 | [diff] [blame] | 50 | |
| 51 | /** |
| 52 | * opa_is_extended_lid: Returns true if dlid or slid are |
| 53 | * extended. |
| 54 | * |
| 55 | * @dlid: The DLID |
| 56 | * @slid: The SLID |
| 57 | */ |
Don Hiatt | a917374 | 2017-10-02 11:04:33 -0700 | [diff] [blame] | 58 | static inline bool opa_is_extended_lid(__be32 dlid, __be32 slid) |
Hiatt, Don | e92aa00 | 2017-06-08 13:38:02 -0400 | [diff] [blame] | 59 | { |
| 60 | if ((be32_to_cpu(dlid) >= |
| 61 | be16_to_cpu(IB_MULTICAST_LID_BASE)) || |
| 62 | (be32_to_cpu(slid) >= |
| 63 | be16_to_cpu(IB_MULTICAST_LID_BASE))) |
| 64 | return true; |
Don Hiatt | a917374 | 2017-10-02 11:04:33 -0700 | [diff] [blame] | 65 | |
| 66 | return false; |
Hiatt, Don | e92aa00 | 2017-06-08 13:38:02 -0400 | [diff] [blame] | 67 | } |
Don Hiatt | 13c1922 | 2017-08-04 13:53:51 -0700 | [diff] [blame] | 68 | |
| 69 | /* Get multicast lid base */ |
| 70 | static inline u32 opa_get_mcast_base(u32 nr_top_bits) |
| 71 | { |
| 72 | return (be32_to_cpu(OPA_LID_PERMISSIVE) << (32 - nr_top_bits)); |
| 73 | } |
| 74 | |
Venkata Sandeep Dhanalakota | af808ec | 2017-12-18 19:26:58 -0800 | [diff] [blame] | 75 | /* Check for a valid unicast LID for non-SM traffic types */ |
| 76 | static inline bool rdma_is_valid_unicast_lid(struct rdma_ah_attr *attr) |
| 77 | { |
| 78 | if (attr->type == RDMA_AH_ATTR_TYPE_IB) { |
| 79 | if (!rdma_ah_get_dlid(attr) || |
| 80 | rdma_ah_get_dlid(attr) >= |
Bart Van Assche | 4eefd62 | 2018-07-02 10:06:51 -0700 | [diff] [blame] | 81 | be16_to_cpu(IB_MULTICAST_LID_BASE)) |
Venkata Sandeep Dhanalakota | af808ec | 2017-12-18 19:26:58 -0800 | [diff] [blame] | 82 | return false; |
| 83 | } else if (attr->type == RDMA_AH_ATTR_TYPE_OPA) { |
| 84 | if (!rdma_ah_get_dlid(attr) || |
| 85 | rdma_ah_get_dlid(attr) >= |
| 86 | opa_get_mcast_base(OPA_MCAST_NR)) |
| 87 | return false; |
| 88 | } |
| 89 | return true; |
| 90 | } |
Doug Ledford | 87f0faa | 2017-05-01 16:35:59 -0400 | [diff] [blame] | 91 | #endif /* OPA_ADDR_H */ |