diff options
| author | Eli Cohen <eli@mellanox.com> | 2013-07-07 10:25:49 -0400 |
|---|---|---|
| committer | Roland Dreier <roland@purestorage.com> | 2013-07-08 13:32:24 -0400 |
| commit | e126ba97dba9edeb6fafa3665b5f8497fc9cdf8c (patch) | |
| tree | c886014a89a8a96b8fb171ad6683dc80ce2ff018 /include/linux | |
| parent | 0134f16bc91cc15a38c867b81568b791c9b626aa (diff) | |
mlx5: Add driver for Mellanox Connect-IB adapters
The driver is comprised of two kernel modules: mlx5_ib and mlx5_core.
This partitioning resembles what we have for mlx4, except that mlx5_ib
is the pci device driver and not mlx5_core.
mlx5_core is essentially a library that provides general functionality
that is intended to be used by other Mellanox devices that will be
introduced in the future. mlx5_ib has a similar role as any hardware
device under drivers/infiniband/hw.
Signed-off-by: Eli Cohen <eli@mellanox.com>
Signed-off-by: Jack Morgenstein <jackm@dev.mellanox.co.il>
Signed-off-by: Or Gerlitz <ogerlitz@mellanox.com>
[ Merge in coccinelle fixes from Fengguang Wu <fengguang.wu@intel.com>.
- Roland ]
Signed-off-by: Roland Dreier <roland@purestorage.com>
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/mlx5/cmd.h | 51 | ||||
| -rw-r--r-- | include/linux/mlx5/cq.h | 165 | ||||
| -rw-r--r-- | include/linux/mlx5/device.h | 893 | ||||
| -rw-r--r-- | include/linux/mlx5/doorbell.h | 79 | ||||
| -rw-r--r-- | include/linux/mlx5/driver.h | 769 | ||||
| -rw-r--r-- | include/linux/mlx5/qp.h | 467 | ||||
| -rw-r--r-- | include/linux/mlx5/srq.h | 41 |
7 files changed, 2465 insertions, 0 deletions
diff --git a/include/linux/mlx5/cmd.h b/include/linux/mlx5/cmd.h new file mode 100644 index 000000000000..2826a4b6071e --- /dev/null +++ b/include/linux/mlx5/cmd.h | |||
| @@ -0,0 +1,51 @@ | |||
| 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 | |||
| 33 | #ifndef MLX5_CMD_H | ||
| 34 | #define MLX5_CMD_H | ||
| 35 | |||
| 36 | #include <linux/types.h> | ||
| 37 | |||
| 38 | struct manage_pages_layout { | ||
| 39 | u64 ptr; | ||
| 40 | u32 reserved; | ||
| 41 | u16 num_entries; | ||
| 42 | u16 func_id; | ||
| 43 | }; | ||
| 44 | |||
| 45 | |||
| 46 | struct mlx5_cmd_alloc_uar_imm_out { | ||
| 47 | u32 rsvd[3]; | ||
| 48 | u32 uarn; | ||
| 49 | }; | ||
| 50 | |||
| 51 | #endif /* MLX5_CMD_H */ | ||
diff --git a/include/linux/mlx5/cq.h b/include/linux/mlx5/cq.h new file mode 100644 index 000000000000..3db67f73d96d --- /dev/null +++ b/include/linux/mlx5/cq.h | |||
| @@ -0,0 +1,165 @@ | |||
| 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 | |||
| 33 | #ifndef MLX5_CORE_CQ_H | ||
| 34 | #define MLX5_CORE_CQ_H | ||
| 35 | |||
| 36 | #include <rdma/ib_verbs.h> | ||
| 37 | #include <linux/mlx5/driver.h> | ||
| 38 | |||
| 39 | |||
| 40 | struct mlx5_core_cq { | ||
| 41 | u32 cqn; | ||
| 42 | int cqe_sz; | ||
| 43 | __be32 *set_ci_db; | ||
| 44 | __be32 *arm_db; | ||
| 45 | atomic_t refcount; | ||
| 46 | struct completion free; | ||
| 47 | unsigned vector; | ||
| 48 | int irqn; | ||
| 49 | void (*comp) (struct mlx5_core_cq *); | ||
| 50 | void (*event) (struct mlx5_core_cq *, enum mlx5_event); | ||
| 51 | struct mlx5_uar *uar; | ||
| 52 | u32 cons_index; | ||
| 53 | unsigned arm_sn; | ||
| 54 | struct mlx5_rsc_debug *dbg; | ||
| 55 | int pid; | ||
| 56 | }; | ||
| 57 | |||
| 58 | |||
| 59 | enum { | ||
| 60 | MLX5_CQE_SYNDROME_LOCAL_LENGTH_ERR = 0x01, | ||
| 61 | MLX5_CQE_SYNDROME_LOCAL_QP_OP_ERR = 0x02, | ||
| 62 | MLX5_CQE_SYNDROME_LOCAL_PROT_ERR = 0x04, | ||
| 63 | MLX5_CQE_SYNDROME_WR_FLUSH_ERR = 0x05, | ||
| 64 | MLX5_CQE_SYNDROME_MW_BIND_ERR = 0x06, | ||
| 65 | MLX5_CQE_SYNDROME_BAD_RESP_ERR = 0x10, | ||
| 66 | MLX5_CQE_SYNDROME_LOCAL_ACCESS_ERR = 0x11, | ||
| 67 | MLX5_CQE_SYNDROME_REMOTE_INVAL_REQ_ERR = 0x12, | ||
| 68 | MLX5_CQE_SYNDROME_REMOTE_ACCESS_ERR = 0x13, | ||
| 69 | MLX5_CQE_SYNDROME_REMOTE_OP_ERR = 0x14, | ||
| 70 | MLX5_CQE_SYNDROME_TRANSPORT_RETRY_EXC_ERR = 0x15, | ||
| 71 | MLX5_CQE_SYNDROME_RNR_RETRY_EXC_ERR = 0x16, | ||
| 72 | MLX5_CQE_SYNDROME_REMOTE_ABORTED_ERR = 0x22, | ||
| 73 | }; | ||
| 74 | |||
| 75 | enum { | ||
| 76 | MLX5_CQE_OWNER_MASK = 1, | ||
| 77 | MLX5_CQE_REQ = 0, | ||
| 78 | MLX5_CQE_RESP_WR_IMM = 1, | ||
| 79 | MLX5_CQE_RESP_SEND = 2, | ||
| 80 | MLX5_CQE_RESP_SEND_IMM = 3, | ||
| 81 | MLX5_CQE_RESP_SEND_INV = 4, | ||
| 82 | MLX5_CQE_RESIZE_CQ = 0xff, /* TBD */ | ||
| 83 | MLX5_CQE_REQ_ERR = 13, | ||
| 84 | MLX5_CQE_RESP_ERR = 14, | ||
| 85 | }; | ||
| 86 | |||
| 87 | enum { | ||
| 88 | MLX5_CQ_MODIFY_RESEIZE = 0, | ||
| 89 | MLX5_CQ_MODIFY_MODER = 1, | ||
| 90 | MLX5_CQ_MODIFY_MAPPING = 2, | ||
| 91 | }; | ||
| 92 | |||
| 93 | struct mlx5_cq_modify_params { | ||
| 94 | int type; | ||
| 95 | union { | ||
| 96 | struct { | ||
| 97 | u32 page_offset; | ||
| 98 | u8 log_cq_size; | ||
| 99 | } resize; | ||
| 100 | |||
| 101 | struct { | ||
| 102 | } moder; | ||
| 103 | |||
| 104 | struct { | ||
| 105 | } mapping; | ||
| 106 | } params; | ||
| 107 | }; | ||
| 108 | |||
| 109 | enum { | ||
| 110 | CQE_SIZE_64 = 0, | ||
| 111 | CQE_SIZE_128 = 1, | ||
| 112 | }; | ||
| 113 | |||
| 114 | static inline int cqe_sz_to_mlx_sz(u8 size) | ||
| 115 | { | ||
| 116 | return size == 64 ? CQE_SIZE_64 : CQE_SIZE_128; | ||
| 117 | } | ||
| 118 | |||
| 119 | static inline void mlx5_cq_set_ci(struct mlx5_core_cq *cq) | ||
| 120 | { | ||
| 121 | *cq->set_ci_db = cpu_to_be32(cq->cons_index & 0xffffff); | ||
| 122 | } | ||
| 123 | |||
| 124 | enum { | ||
| 125 | MLX5_CQ_DB_REQ_NOT_SOL = 1 << 24, | ||
| 126 | MLX5_CQ_DB_REQ_NOT = 0 << 24 | ||
| 127 | }; | ||
| 128 | |||
| 129 | static inline void mlx5_cq_arm(struct mlx5_core_cq *cq, u32 cmd, | ||
| 130 | void __iomem *uar_page, | ||
| 131 | spinlock_t *doorbell_lock) | ||
| 132 | { | ||
| 133 | __be32 doorbell[2]; | ||
| 134 | |||
