1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35#include <linux/slab.h>
36
37#include "mlx4.h"
38#include "fw.h"
39
40enum {
41 MLX4_RES_QP,
42 MLX4_RES_RDMARC,
43 MLX4_RES_ALTC,
44 MLX4_RES_AUXC,
45 MLX4_RES_SRQ,
46 MLX4_RES_CQ,
47 MLX4_RES_EQ,
48 MLX4_RES_DMPT,
49 MLX4_RES_CMPT,
50 MLX4_RES_MTT,
51 MLX4_RES_MCG,
52 MLX4_RES_NUM
53};
54
55static const char *res_name[] = {
56 [MLX4_RES_QP] = "QP",
57 [MLX4_RES_RDMARC] = "RDMARC",
58 [MLX4_RES_ALTC] = "ALTC",
59 [MLX4_RES_AUXC] = "AUXC",
60 [MLX4_RES_SRQ] = "SRQ",
61 [MLX4_RES_CQ] = "CQ",
62 [MLX4_RES_EQ] = "EQ",
63 [MLX4_RES_DMPT] = "DMPT",
64 [MLX4_RES_CMPT] = "CMPT",
65 [MLX4_RES_MTT] = "MTT",
66 [MLX4_RES_MCG] = "MCG",
67};
68
69u64 mlx4_make_profile(struct mlx4_dev *dev,
70 struct mlx4_profile *request,
71 struct mlx4_dev_cap *dev_cap,
72 struct mlx4_init_hca_param *init_hca)
73{
74 struct mlx4_priv *priv = mlx4_priv(dev);
75 struct mlx4_resource {
76 u64 size;
77 u64 start;
78 int type;
79 u32 num;
80 int log_num;
81 };
82
83 u64 total_size = 0;
84 struct mlx4_resource *profile;
85 struct sysinfo si;
86 int i, j;
87
88 profile = kcalloc(MLX4_RES_NUM, sizeof(*profile), GFP_KERNEL);
89 if (!profile)
90 return -ENOMEM;
91
92
93
94
95
96
97
98
99
100
101
102
103
104 si_meminfo(&si);
105 request->num_mtt =
106 roundup_pow_of_two(max_t(unsigned, request->num_mtt,
107 min(1UL << (31 - log_mtts_per_seg),
108 (si.totalram << 1) >> log_mtts_per_seg)));
109
110
111 profile[MLX4_RES_QP].size = dev_cap->qpc_entry_sz;
112 profile[MLX4_RES_RDMARC].size = dev_cap->rdmarc_entry_sz;
113 profile[MLX4_RES_ALTC].size = dev_cap->altc_entry_sz;
114 profile[MLX4_RES_AUXC].size = dev_cap->aux_entry_sz;
115 profile[MLX4_RES_SRQ].size = dev_cap->srq_entry_sz;
116 profile[MLX4_RES_CQ].size = dev_cap->cqc_entry_sz;
117 profile[MLX4_RES_EQ].size = dev_cap->eqc_entry_sz;
118 profile[MLX4_RES_DMPT].size = dev_cap->dmpt_entry_sz;
119 profile[MLX4_RES_CMPT].size = dev_cap->cmpt_entry_sz;
120 profile[MLX4_RES_MTT].size = dev_cap->mtt_entry_sz;
121 profile[MLX4_RES_MCG].size = mlx4_get_mgm_entry_size(dev);
122
123 profile[MLX4_RES_QP].num = request->num_qp;
124 profile[MLX4_RES_RDMARC].num = request->num_qp * request->rdmarc_per_qp;
125 profile[MLX4_RES_ALTC].num = request->num_qp;
126 profile[MLX4_RES_AUXC].num = request->num_qp;
127 profile[MLX4_RES_SRQ].num = request->num_srq;
128 profile[MLX4_RES_CQ].num = request->num_cq;
129 profile[MLX4_RES_EQ].num = mlx4_is_mfunc(dev) ? dev->phys_caps.num_phys_eqs :
130 min_t(unsigned, dev_cap->max_eqs, MAX_MSIX);
131 profile[MLX4_RES_DMPT].num = request->num_mpt;
132 profile[MLX4_RES_CMPT].num = MLX4_NUM_CMPTS;
133 profile[MLX4_RES_MTT].num = request->num_mtt * (1 << log_mtts_per_seg);
134 profile[MLX4_RES_MCG].num = request->num_mcg;
135
136 for (i = 0; i < MLX4_RES_NUM; ++i) {
137 profile[i].type = i;
138 profile[i].num = roundup_pow_of_two(profile[i].num);
139 profile[i].log_num = ilog2(profile[i].num);
140 profile[i].size *= profile[i].num;
141 profile[i].size = max(profile[i].size, (u64) PAGE_SIZE);
142 }
143
144
145
146
147
148
149
150 for (i = MLX4_RES_NUM; i > 0; --i)
151 for (j = 1; j < i; ++j) {
152 if (profile[j].size > profile[j - 1].size)
153 swap(profile[j], profile[j - 1]);
154 }
155
156 for (i = 0; i < MLX4_RES_NUM; ++i) {
157 if (profile[i].size) {
158 profile[i].start = total_size;
159 total_size += profile[i].size;
160 }
161
162 if (total_size > dev_cap->max_icm_sz) {
163 mlx4_err(dev, "Profile requires 0x%llx bytes; won't fit in 0x%llx bytes of context memory\n",
164 (unsigned long long) total_size,
165 (unsigned long long) dev_cap->max_icm_sz);
166 kfree(profile);
167 return -ENOMEM;
168 }
169
170 if (profile[i].size)
171 mlx4_dbg(dev, " profile[%2d] (%6s): 2^%02d entries @ 0x%10llx, size 0x%10llx\n",
172 i, res_name[profile[i].type],
173 profile[i].log_num,
174 (unsigned long long) profile[i].start,
175 (unsigned long long) profile[i].size);
176 }
177
178 mlx4_dbg(dev, "HCA context memory: reserving %d KB\n",
179 (int) (total_size >> 10));
180
181 for (i = 0; i < MLX4_RES_NUM; ++i) {
182 switch (profile[i].type) {
183 case MLX4_RES_QP:
184 dev->caps.num_qps = profile[i].num;
185 init_hca->qpc_base = profile[i].start;
186 init_hca->log_num_qps = profile[i].log_num;
187 break;
188 case MLX4_RES_RDMARC:
189 for (priv->qp_table.rdmarc_shift = 0;
190 request->num_qp << priv->qp_table.rdmarc_shift < profile[i].num;
191 ++priv->qp_table.rdmarc_shift)
192 ;
193 dev->caps.max_qp_dest_rdma = 1 << priv->qp_table.rdmarc_shift;
194 priv->qp_table.rdmarc_base = (u32) profile[i].start;
195 init_hca->rdmarc_base = profile[i].start;
196 init_hca->log_rd_per_qp = priv->qp_table.rdmarc_shift;
197 break;
198 case MLX4_RES_ALTC:
199 init_hca->altc_base = profile[i].start;
200 break;
201 case MLX4_RES_AUXC:
202 init_hca->auxc_base = profile[i].start;
203 break;
204 case MLX4_RES_SRQ:
205 dev->caps.num_srqs = profile[i].num;
206 init_hca->srqc_base = profile[i].start;
207 init_hca->log_num_srqs = profile[i].log_num;
208 break;
209 case MLX4_RES_CQ:
210 dev->caps.num_cqs = profile[i].num;
211 init_hca->cqc_base = profile[i].start;
212 init_hca->log_num_cqs = profile[i].log_num;
213 break;
214 case MLX4_RES_EQ:
215 if (dev_cap->flags2 & MLX4_DEV_CAP_FLAG2_SYS_EQS) {
216 init_hca->log_num_eqs = 0x1f;
217 init_hca->eqc_base = profile[i].start;
218 init_hca->num_sys_eqs = dev_cap->num_sys_eqs;
219 } else {
220 dev->caps.num_eqs = roundup_pow_of_two(
221 min_t(unsigned,
222 dev_cap->max_eqs,
223 MAX_MSIX));
224 init_hca->eqc_base = profile[i].start;
225 init_hca->log_num_eqs = ilog2(dev->caps.num_eqs);
226 }
227 break;
228 case MLX4_RES_DMPT:
229 dev->caps.num_mpts = profile[i].num;
230 priv->mr_table.mpt_base = profile[i].start;
231 init_hca->dmpt_base = profile[i].start;
232 init_hca->log_mpt_sz = profile[i].log_num;
233 break;
234 case MLX4_RES_CMPT:
235 init_hca->cmpt_base = profile[i].start;
236 break;
237 case MLX4_RES_MTT:
238 dev->caps.num_mtts = profile[i].num;
239 priv->mr_table.mtt_base = profile[i].start;
240 init_hca->mtt_base = profile[i].start;
241 break;
242 case MLX4_RES_MCG:
243 init_hca->mc_base = profile[i].start;
244 init_hca->log_mc_entry_sz =
245 ilog2(mlx4_get_mgm_entry_size(dev));
246 init_hca->log_mc_table_sz = profile[i].log_num;
247 if (dev->caps.steering_mode ==
248 MLX4_STEERING_MODE_DEVICE_MANAGED) {
249 dev->caps.num_mgms = profile[i].num;
250 } else {
251 init_hca->log_mc_hash_sz =
252 profile[i].log_num - 1;
253 dev->caps.num_mgms = profile[i].num >> 1;
254 dev->caps.num_amgms = profile[i].num >> 1;
255 }
256 break;
257 default:
258 break;
259 }
260 }
261
262
263
264
265
266 dev->caps.num_pds = MLX4_NUM_PDS;
267
268 kfree(profile);
269 return total_size;
270}
271