blob: 32dea3524cee3ed4d984eb5aafc7a06abdbd713b [file] [log] [blame]
Eli Cohene126ba92013-07-07 17:25:49 +03001/*
Saeed Mahameed302bdf62015-04-02 17:07:29 +03002 * Copyright (c) 2013-2015, Mellanox Technologies. All rights reserved.
Eli Cohene126ba92013-07-07 17:25:49 +03003 *
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
Christoph Hellwigadec6402015-08-28 09:27:19 +020033#include <linux/highmem.h>
Eli Cohene126ba92013-07-07 17:25:49 +030034#include <linux/kernel.h>
35#include <linux/module.h>
Eli Cohenfc50db92015-12-01 18:03:09 +020036#include <linux/delay.h>
Eli Cohene126ba92013-07-07 17:25:49 +030037#include <linux/mlx5/driver.h>
38#include <linux/mlx5/cmd.h>
39#include "mlx5_core.h"
40
41enum {
42 MLX5_PAGES_CANT_GIVE = 0,
43 MLX5_PAGES_GIVE = 1,
44 MLX5_PAGES_TAKE = 2
45};
46
Moshe Lazer0a324f312013-08-14 17:46:48 +030047enum {
48 MLX5_BOOT_PAGES = 1,
49 MLX5_INIT_PAGES = 2,
50 MLX5_POST_INIT_PAGES = 3
51};
52
Eli Cohene126ba92013-07-07 17:25:49 +030053struct mlx5_pages_req {
54 struct mlx5_core_dev *dev;
Jack Morgensteinf241e742014-07-28 23:30:23 +030055 u16 func_id;
Moshe Lazer0a324f312013-08-14 17:46:48 +030056 s32 npages;
Eli Cohene126ba92013-07-07 17:25:49 +030057 struct work_struct work;
58};
59
60struct fw_page {
Eli Cohenbf0bf772013-10-23 09:53:19 +030061 struct rb_node rb_node;
62 u64 addr;
63 struct page *page;
64 u16 func_id;
65 unsigned long bitmask;
66 struct list_head list;
67 unsigned free_count;
Eli Cohene126ba92013-07-07 17:25:49 +030068};
69
70struct mlx5_query_pages_inbox {
71 struct mlx5_inbox_hdr hdr;
72 u8 rsvd[8];
73};
74
75struct mlx5_query_pages_outbox {
76 struct mlx5_outbox_hdr hdr;
Moshe Lazer0a324f312013-08-14 17:46:48 +030077 __be16 rsvd;
Eli Cohene126ba92013-07-07 17:25:49 +030078 __be16 func_id;
Moshe Lazer0a324f312013-08-14 17:46:48 +030079 __be32 num_pages;
Eli Cohene126ba92013-07-07 17:25:49 +030080};
81
82struct mlx5_manage_pages_inbox {
83 struct mlx5_inbox_hdr hdr;
Moshe Lazer0a324f312013-08-14 17:46:48 +030084 __be16 rsvd;
Eli Cohene126ba92013-07-07 17:25:49 +030085 __be16 func_id;
Moshe Lazer0a324f312013-08-14 17:46:48 +030086 __be32 num_entries;
Eli Cohene126ba92013-07-07 17:25:49 +030087 __be64 pas[0];
88};
89
90struct mlx5_manage_pages_outbox {
91 struct mlx5_outbox_hdr hdr;
Moshe Lazer0a324f312013-08-14 17:46:48 +030092 __be32 num_entries;
93 u8 rsvd[4];
Eli Cohene126ba92013-07-07 17:25:49 +030094 __be64 pas[0];
95};
96
Eli Cohendabed0e2013-09-11 16:35:28 +030097enum {
98 MAX_RECLAIM_TIME_MSECS = 5000,
Eli Cohenfc50db92015-12-01 18:03:09 +020099 MAX_RECLAIM_VFS_PAGES_TIME_MSECS = 2 * 1000 * 60,
Eli Cohendabed0e2013-09-11 16:35:28 +0300100};
101
Eli Cohenbf0bf772013-10-23 09:53:19 +0300102enum {
103 MLX5_MAX_RECLAIM_TIME_MILI = 5000,
Eli Cohen05bdb2a2014-01-14 17:45:20 +0200104 MLX5_NUM_4K_IN_PAGE = PAGE_SIZE / MLX5_ADAPTER_PAGE_SIZE,
Eli Cohenbf0bf772013-10-23 09:53:19 +0300105};
106
Eli Cohene126ba92013-07-07 17:25:49 +0300107static int insert_page(struct mlx5_core_dev *dev, u64 addr, struct page *page, u16 func_id)
108{
109 struct rb_root *root = &dev->priv.page_root;
110 struct rb_node **new = &root->rb_node;
111 struct rb_node *parent = NULL;
112 struct fw_page *nfp;
113 struct fw_page *tfp;
Eli Cohenbf0bf772013-10-23 09:53:19 +0300114 int i;
Eli Cohene126ba92013-07-07 17:25:49 +0300115
116 while (*new) {
117 parent = *new;
118 tfp = rb_entry(parent, struct fw_page, rb_node);
119 if (tfp->addr < addr)
120 new = &parent->rb_left;
121 else if (tfp->addr > addr)
122 new = &parent->rb_right;
123 else
124 return -EEXIST;
125 }
126
Eli Cohenbf0bf772013-10-23 09:53:19 +0300127 nfp = kzalloc(sizeof(*nfp), GFP_KERNEL);
Eli Cohene126ba92013-07-07 17:25:49 +0300128 if (!nfp)
129 return -ENOMEM;
130
131 nfp->addr = addr;
132 nfp->page = page;
133 nfp->func_id = func_id;
Eli Cohenbf0bf772013-10-23 09:53:19 +0300134 nfp->free_count = MLX5_NUM_4K_IN_PAGE;
135 for (i = 0; i < MLX5_NUM_4K_IN_PAGE; i++)
136 set_bit(i, &nfp->bitmask);
Eli Cohene126ba92013-07-07 17:25:49 +0300137
138 rb_link_node(&nfp->rb_node, parent, new);
139 rb_insert_color(&nfp->rb_node, root);
Eli Cohenbf0bf772013-10-23 09:53:19 +0300140 list_add(&nfp->list, &dev->priv.free_list);
Eli Cohene126ba92013-07-07 17:25:49 +0300141
142 return 0;
143}
144
Eli Cohenbf0bf772013-10-23 09:53:19 +0300145static struct fw_page *find_fw_page(struct mlx5_core_dev *dev, u64 addr)
Eli Cohene126ba92013-07-07 17:25:49 +0300146{
147 struct rb_root *root = &dev->priv.page_root;
148 struct rb_node *tmp = root->rb_node;
Eli Cohenbf0bf772013-10-23 09:53:19 +0300149 struct fw_page *result = NULL;
Eli Cohene126ba92013-07-07 17:25:49 +0300150 struct fw_page *tfp;
151
152 while (tmp) {
153 tfp = rb_entry(tmp, struct fw_page, rb_node);
154 if (tfp->addr < addr) {
155 tmp = tmp->rb_left;
156 } else if (tfp->addr > addr) {
157 tmp = tmp->rb_right;
158 } else {
Eli Cohenbf0bf772013-10-23 09:53:19 +0300159 result = tfp;
Eli Cohene126ba92013-07-07 17:25:49 +0300160 break;
161 }
162 }
163
164 return result;
165}
166
167static int mlx5_cmd_query_pages(struct mlx5_core_dev *dev, u16 *func_id,
Moshe Lazer0a324f312013-08-14 17:46:48 +0300168 s32 *npages, int boot)
Eli Cohene126ba92013-07-07 17:25:49 +0300169{
170 struct mlx5_query_pages_inbox in;
171 struct mlx5_query_pages_outbox out;
172 int err;
173
174 memset(&in, 0, sizeof(in));
175 memset(&out, 0, sizeof(out));
176 in.hdr.opcode = cpu_to_be16(MLX5_CMD_OP_QUERY_PAGES);
Moshe Lazer0a324f312013-08-14 17:46:48 +0300177 in.hdr.opmod = boot ? cpu_to_be16(MLX5_BOOT_PAGES) : cpu_to_be16(MLX5_INIT_PAGES);
178
Eli Cohene126ba92013-07-07 17:25:49 +0300179 err = mlx5_cmd_exec(dev, &in, sizeof(in), &out, sizeof(out));
180 if (err)
181 return err;
182
183 if (out.hdr.status)
184 return mlx5_cmd_status_to_err(&out.hdr);
185
Moshe Lazer0a324f312013-08-14 17:46:48 +0300186 *npages = be32_to_cpu(out.num_pages);
Eli Cohene126ba92013-07-07 17:25:49 +0300187 *func_id = be16_to_cpu(out.func_id);
188
189 return err;
190}
191
Eli Cohenbf0bf772013-10-23 09:53:19 +0300192static int alloc_4k(struct mlx5_core_dev *dev, u64 *addr)
193{
194 struct fw_page *fp;
195 unsigned n;
196
Dan Carpenter24e427542014-01-14 17:45:11 +0200197 if (list_empty(&dev->priv.free_list))
Eli Cohenbf0bf772013-10-23 09:53:19 +0300198 return -ENOMEM;
Eli Cohenbf0bf772013-10-23 09:53:19 +0300199
200 fp = list_entry(dev->priv.free_list.next, struct fw_page, list);
201 n = find_first_bit(&fp->bitmask, 8 * sizeof(fp->bitmask));
202 if (n >= MLX5_NUM_4K_IN_PAGE) {
203 mlx5_core_warn(dev, "alloc 4k bug\n");
204 return -ENOENT;
205 }
206 clear_bit(n, &fp->bitmask);
207 fp->free_count--;
208 if (!fp->free_count)
209 list_del(&fp->list);
210
Eli Cohen05bdb2a2014-01-14 17:45:20 +0200211 *addr = fp->addr + n * MLX5_ADAPTER_PAGE_SIZE;
Eli Cohenbf0bf772013-10-23 09:53:19 +0300212
213 return 0;
214}
215
Honggang LI59d2d182015-04-15 16:36:15 +0800216#define MLX5_U64_4K_PAGE_MASK ((~(u64)0U) << PAGE_SHIFT)
217
Eli Cohenbf0bf772013-10-23 09:53:19 +0300218static void free_4k(struct mlx5_core_dev *dev, u64 addr)
219{
220 struct fw_page *fwp;
221 int n;
222
Honggang LI59d2d182015-04-15 16:36:15 +0800223 fwp = find_fw_page(dev, addr & MLX5_U64_4K_PAGE_MASK);
Eli Cohenbf0bf772013-10-23 09:53:19 +0300224 if (!fwp) {
225 mlx5_core_warn(dev, "page not found\n");
226 return;
227 }
228
Honggang LI59d2d182015-04-15 16:36:15 +0800229 n = (addr & ~MLX5_U64_4K_PAGE_MASK) >> MLX5_ADAPTER_PAGE_SHIFT;
Eli Cohenbf0bf772013-10-23 09:53:19 +0300230 fwp->free_count++;
231 set_bit(n, &fwp->bitmask);
232 if (fwp->free_count == MLX5_NUM_4K_IN_PAGE) {
233 rb_erase(&fwp->rb_node, &dev->priv.page_root);
Eli Cohen2b136d02013-10-31 15:26:33 +0200234 if (fwp->free_count != 1)
235 list_del(&fwp->list);
Honggang LI59d2d182015-04-15 16:36:15 +0800236 dma_unmap_page(&dev->pdev->dev, addr & MLX5_U64_4K_PAGE_MASK,
237 PAGE_SIZE, DMA_BIDIRECTIONAL);
Eli Cohenbf0bf772013-10-23 09:53:19 +0300238 __free_page(fwp->page);
239 kfree(fwp);
240 } else if (fwp->free_count == 1) {
241 list_add(&fwp->list, &dev->priv.free_list);
242 }
243}
244
245static int alloc_system_page(struct mlx5_core_dev *dev, u16 func_id)
246{
247 struct page *page;
248 u64 addr;
249 int err;
Eli Cohenad189102015-04-02 17:07:19 +0300250 int nid = dev_to_node(&dev->pdev->dev);
Eli Cohenbf0bf772013-10-23 09:53:19 +0300251
Eli Cohenad189102015-04-02 17:07:19 +0300252 page = alloc_pages_node(nid, GFP_HIGHUSER, 0);
Eli Cohenbf0bf772013-10-23 09:53:19 +0300253 if (!page) {
254 mlx5_core_warn(dev, "failed to allocate page\n");
255 return -ENOMEM;
256 }
257 addr = dma_map_page(&dev->pdev->dev, page, 0,
258 PAGE_SIZE, DMA_BIDIRECTIONAL);
259 if (dma_mapping_error(&dev->pdev->dev, addr)) {
260 mlx5_core_warn(dev, "failed dma mapping page\n");
261 err = -ENOMEM;
262 goto out_alloc;
263 }
264 err = insert_page(dev, addr, page, func_id);
265 if (err) {
266 mlx5_core_err(dev, "failed to track allocated page\n");
267 goto out_mapping;
268 }
269
270 return 0;
271
272out_mapping:
273 dma_unmap_page(&dev->pdev->dev, addr, PAGE_SIZE, DMA_BIDIRECTIONAL);
274
275out_alloc:
276 __free_page(page);
277
278 return err;
279}
Eli Cohena8ffe632015-09-25 10:49:13 +0300280
281static void page_notify_fail(struct mlx5_core_dev *dev, u16 func_id)
282{
283 struct mlx5_manage_pages_inbox *in;
284 struct mlx5_manage_pages_outbox out;
285 int err;
286
287 in = kzalloc(sizeof(*in), GFP_KERNEL);
288 if (!in)
289 return;
290
291 memset(&out, 0, sizeof(out));
292 in->hdr.opcode = cpu_to_be16(MLX5_CMD_OP_MANAGE_PAGES);
293 in->hdr.opmod = cpu_to_be16(MLX5_PAGES_CANT_GIVE);
294 in->func_id = cpu_to_be16(func_id);
295 err = mlx5_cmd_exec(dev, in, sizeof(*in), &out, sizeof(out));
296 if (!err)
297 err = mlx5_cmd_status_to_err(&out.hdr);
298
299 if (err)
300 mlx5_core_warn(dev, "page notify failed\n");
301
302 kfree(in);
303}
304
Eli Cohene126ba92013-07-07 17:25:49 +0300305static int give_pages(struct mlx5_core_dev *dev, u16 func_id, int npages,
306 int notify_fail)
307{
308 struct mlx5_manage_pages_inbox *in;
309 struct mlx5_manage_pages_outbox out;
Eli Cohene126ba92013-07-07 17:25:49 +0300310 int inlen;
311 u64 addr;
312 int err;
313 int i;
314
315 inlen = sizeof(*in) + npages * sizeof(in->pas[0]);
316 in = mlx5_vzalloc(inlen);
317 if (!in) {
Eli Cohena8ffe632015-09-25 10:49:13 +0300318 err = -ENOMEM;
Eli Cohene126ba92013-07-07 17:25:49 +0300319 mlx5_core_warn(dev, "vzalloc failed %d\n", inlen);
Eli Cohena8ffe632015-09-25 10:49:13 +0300320 goto out_free;
Eli Cohene126ba92013-07-07 17:25:49 +0300321 }
322 memset(&out, 0, sizeof(out));
323
324 for (i = 0; i < npages; i++) {
Eli Cohenbf0bf772013-10-23 09:53:19 +0300325retry:
326 err = alloc_4k(dev, &addr);
Eli Cohene126ba92013-07-07 17:25:49 +0300327 if (err) {
Eli Cohenbf0bf772013-10-23 09:53:19 +0300328 if (err == -ENOMEM)
329 err = alloc_system_page(dev, func_id);
330 if (err)
331 goto out_4k;
332
333 goto retry;
Eli Cohene126ba92013-07-07 17:25:49 +0300334 }
335 in->pas[i] = cpu_to_be64(addr);
336 }
337
338 in->hdr.opcode = cpu_to_be16(MLX5_CMD_OP_MANAGE_PAGES);
339 in->hdr.opmod = cpu_to_be16(MLX5_PAGES_GIVE);
340 in->func_id = cpu_to_be16(func_id);
Moshe Lazer0a324f312013-08-14 17:46:48 +0300341 in->num_entries = cpu_to_be32(npages);
Eli Cohene126ba92013-07-07 17:25:49 +0300342 err = mlx5_cmd_exec(dev, in, inlen, &out, sizeof(out));
Eli Cohene126ba92013-07-07 17:25:49 +0300343 if (err) {
Joe Perches1a91de22014-05-07 12:52:57 -0700344 mlx5_core_warn(dev, "func_id 0x%x, npages %d, err %d\n",
345 func_id, npages, err);
Eli Cohena8ffe632015-09-25 10:49:13 +0300346 goto out_4k;
Eli Cohene126ba92013-07-07 17:25:49 +0300347 }
Eli Cohene126ba92013-07-07 17:25:49 +0300348
Eli Cohena8ffe632015-09-25 10:49:13 +0300349 err = mlx5_cmd_status_to_err(&out.hdr);
350 if (err) {
351 mlx5_core_warn(dev, "func_id 0x%x, npages %d, status %d\n",
352 func_id, npages, out.hdr.status);
353 goto out_4k;
Eli Cohene126ba92013-07-07 17:25:49 +0300354 }
355
Eli Cohenfc50db92015-12-01 18:03:09 +0200356 dev->priv.fw_pages += npages;
357 if (func_id)
358 dev->priv.vfs_pages += npages;
359
Eli Cohene126ba92013-07-07 17:25:49 +0300360 mlx5_core_dbg(dev, "err %d\n", err);
361
Eli Cohena8ffe632015-09-25 10:49:13 +0300362 kvfree(in);
363 return 0;
Eli Cohen952f5f62013-10-23 09:53:18 +0300364
Eli Cohenbf0bf772013-10-23 09:53:19 +0300365out_4k:
366 for (i--; i >= 0; i--)
367 free_4k(dev, be64_to_cpu(in->pas[i]));
Eli Cohene126ba92013-07-07 17:25:49 +0300368out_free:
Al Viro479163f2014-11-20 08:13:57 +0000369 kvfree(in);
Eli Cohena8ffe632015-09-25 10:49:13 +0300370 if (notify_fail)
371 page_notify_fail(dev, func_id);
Eli Cohene126ba92013-07-07 17:25:49 +0300372 return err;
373}
374
Daniel Jurgens5adff6a2016-06-30 17:34:40 +0300375static int reclaim_pages_cmd(struct mlx5_core_dev *dev,
376 struct mlx5_manage_pages_inbox *in, int in_size,
377 struct mlx5_manage_pages_outbox *out, int out_size)
378{
379 struct fw_page *fwp;
380 struct rb_node *p;
381 u32 npages;
382 u32 i = 0;
383
384 if (dev->state != MLX5_DEVICE_STATE_INTERNAL_ERROR)
385 return mlx5_cmd_exec_check_status(dev, (u32 *)in, in_size,
386 (u32 *)out, out_size);
387
388 npages = be32_to_cpu(in->num_entries);
389
390 p = rb_first(&dev->priv.page_root);
391 while (p && i < npages) {
392 fwp = rb_entry(p, struct fw_page, rb_node);
393 out->pas[i] = cpu_to_be64(fwp->addr);
394 p = rb_next(p);
395 i++;
396 }
397
398 out->num_entries = cpu_to_be32(i);
399 return 0;
400}
401
Eli Cohene126ba92013-07-07 17:25:49 +0300402static int reclaim_pages(struct mlx5_core_dev *dev, u32 func_id, int npages,
403 int *nclaimed)
404{
405 struct mlx5_manage_pages_inbox in;
406 struct mlx5_manage_pages_outbox *out;
Eli Cohene126ba92013-07-07 17:25:49 +0300407 int num_claimed;
408 int outlen;
409 u64 addr;
410 int err;
411 int i;
412
Eli Cohendabed0e2013-09-11 16:35:28 +0300413 if (nclaimed)
414 *nclaimed = 0;
415
Eli Cohene126ba92013-07-07 17:25:49 +0300416 memset(&in, 0, sizeof(in));
417 outlen = sizeof(*out) + npages * sizeof(out->pas[0]);
418 out = mlx5_vzalloc(outlen);
419 if (!out)
420 return -ENOMEM;
421
422 in.hdr.opcode = cpu_to_be16(MLX5_CMD_OP_MANAGE_PAGES);
423 in.hdr.opmod = cpu_to_be16(MLX5_PAGES_TAKE);
424 in.func_id = cpu_to_be16(func_id);
Moshe Lazer0a324f312013-08-14 17:46:48 +0300425 in.num_entries = cpu_to_be32(npages);
Eli Cohene126ba92013-07-07 17:25:49 +0300426 mlx5_core_dbg(dev, "npages %d, outlen %d\n", npages, outlen);
Daniel Jurgens5adff6a2016-06-30 17:34:40 +0300427 err = reclaim_pages_cmd(dev, &in, sizeof(in), out, outlen);
Eli Cohene126ba92013-07-07 17:25:49 +0300428 if (err) {
Daniel Jurgens5adff6a2016-06-30 17:34:40 +0300429 mlx5_core_err(dev, "failed reclaiming pages: err %d\n", err);
Eli Cohene126ba92013-07-07 17:25:49 +0300430 goto out_free;
431 }
432
Moshe Lazer0a324f312013-08-14 17:46:48 +0300433 num_claimed = be32_to_cpu(out->num_entries);
Eli Cohenfc50db92015-12-01 18:03:09 +0200434 if (num_claimed > npages) {
435 mlx5_core_warn(dev, "fw returned %d, driver asked %d => corruption\n",
436 num_claimed, npages);
437 err = -EINVAL;
438 goto out_free;
439 }
Eli Cohene126ba92013-07-07 17:25:49 +0300440
441 for (i = 0; i < num_claimed; i++) {
442 addr = be64_to_cpu(out->pas[i]);
Eli Cohenbf0bf772013-10-23 09:53:19 +0300443 free_4k(dev, addr);
Eli Cohene126ba92013-07-07 17:25:49 +0300444 }
Daniel Jurgens5adff6a2016-06-30 17:34:40 +0300445
446 if (nclaimed)
447 *nclaimed = num_claimed;
448
Eli Cohenfc50db92015-12-01 18:03:09 +0200449 dev->priv.fw_pages -= num_claimed;
450 if (func_id)
451 dev->priv.vfs_pages -= num_claimed;
Eli Cohene126ba92013-07-07 17:25:49 +0300452
453out_free:
Al Viro479163f2014-11-20 08:13:57 +0000454 kvfree(out);
Eli Cohene126ba92013-07-07 17:25:49 +0300455 return err;
456}
457
458static void pages_work_handler(struct work_struct *work)
459{
460 struct mlx5_pages_req *req = container_of(work, struct mlx5_pages_req, work);
461 struct mlx5_core_dev *dev = req->dev;
462 int err = 0;
463
464 if (req->npages < 0)
465 err = reclaim_pages(dev, req->func_id, -1 * req->npages, NULL);
466 else if (req->npages > 0)
467 err = give_pages(dev, req->func_id, req->npages, 1);
468
469 if (err)
Joe Perches1a91de22014-05-07 12:52:57 -0700470 mlx5_core_warn(dev, "%s fail %d\n",
471 req->npages < 0 ? "reclaim" : "give", err);
Eli Cohene126ba92013-07-07 17:25:49 +0300472
473 kfree(req);
474}
475
476void mlx5_core_req_pages_handler(struct mlx5_core_dev *dev, u16 func_id,
Moshe Lazer0a324f312013-08-14 17:46:48 +0300477 s32 npages)
Eli Cohene126ba92013-07-07 17:25:49 +0300478{
479 struct mlx5_pages_req *req;
480
481 req = kzalloc(sizeof(*req), GFP_ATOMIC);
482 if (!req) {
483 mlx5_core_warn(dev, "failed to allocate pages request\n");
484 return;
485 }
486
487 req->dev = dev;
488 req->func_id = func_id;
489 req->npages = npages;
490 INIT_WORK(&req->work, pages_work_handler);
491 queue_work(dev->priv.pg_wq, &req->work);
492}
493
Eli Cohencd23b142013-07-18 15:31:08 +0300494int mlx5_satisfy_startup_pages(struct mlx5_core_dev *dev, int boot)
Eli Cohene126ba92013-07-07 17:25:49 +0300495{
Eli Cohene126ba92013-07-07 17:25:49 +0300496 u16 uninitialized_var(func_id);
Moshe Lazer0a324f312013-08-14 17:46:48 +0300497 s32 uninitialized_var(npages);
Eli Cohene126ba92013-07-07 17:25:49 +0300498 int err;
499
Moshe Lazer0a324f312013-08-14 17:46:48 +0300500 err = mlx5_cmd_query_pages(dev, &func_id, &npages, boot);
Eli Cohene126ba92013-07-07 17:25:49 +0300501 if (err)
502 return err;
503
Moshe Lazer0a324f312013-08-14 17:46:48 +0300504 mlx5_core_dbg(dev, "requested %d %s pages for func_id 0x%x\n",
505 npages, boot ? "boot" : "init", func_id);
Eli Cohene126ba92013-07-07 17:25:49 +0300506
Moshe Lazer0a324f312013-08-14 17:46:48 +0300507 return give_pages(dev, func_id, npages, 0);
Eli Cohene126ba92013-07-07 17:25:49 +0300508}
509
Moshe Lazer4e3d6772013-10-23 09:53:21 +0300510enum {
511 MLX5_BLKS_FOR_RECLAIM_PAGES = 12
512};
513
Eli Cohene126ba92013-07-07 17:25:49 +0300514static int optimal_reclaimed_pages(void)
515{
516 struct mlx5_cmd_prot_block *block;
517 struct mlx5_cmd_layout *lay;
518 int ret;
519
Moshe Lazer4e3d6772013-10-23 09:53:21 +0300520 ret = (sizeof(lay->out) + MLX5_BLKS_FOR_RECLAIM_PAGES * sizeof(block->data) -
521 sizeof(struct mlx5_manage_pages_outbox)) /
522 FIELD_SIZEOF(struct mlx5_manage_pages_outbox, pas[0]);
Eli Cohene126ba92013-07-07 17:25:49 +0300523
524 return ret;
525}
526
527int mlx5_reclaim_startup_pages(struct mlx5_core_dev *dev)
528{
Eli Cohendabed0e2013-09-11 16:35:28 +0300529 unsigned long end = jiffies + msecs_to_jiffies(MAX_RECLAIM_TIME_MSECS);
Eli Cohene126ba92013-07-07 17:25:49 +0300530 struct fw_page *fwp;
531 struct rb_node *p;
Eli Cohendabed0e2013-09-11 16:35:28 +0300532 int nclaimed = 0;
Majd Dibbiny89d44f02015-10-14 17:43:46 +0300533 int err = 0;
Eli Cohene126ba92013-07-07 17:25:49 +0300534
535 do {
536 p = rb_first(&dev->priv.page_root);
537 if (p) {
538 fwp = rb_entry(p, struct fw_page, rb_node);
Daniel Jurgens5adff6a2016-06-30 17:34:40 +0300539 err = reclaim_pages(dev, fwp->func_id,
540 optimal_reclaimed_pages(),
541 &nclaimed);
542
Eli Cohene126ba92013-07-07 17:25:49 +0300543 if (err) {
Joe Perches1a91de22014-05-07 12:52:57 -0700544 mlx5_core_warn(dev, "failed reclaiming pages (%d)\n",
545 err);
Eli Cohene126ba92013-07-07 17:25:49 +0300546 return err;
547 }
Eli Cohendabed0e2013-09-11 16:35:28 +0300548 if (nclaimed)
549 end = jiffies + msecs_to_jiffies(MAX_RECLAIM_TIME_MSECS);
Eli Cohene126ba92013-07-07 17:25:49 +0300550 }
551 if (time_after(jiffies, end)) {
552 mlx5_core_warn(dev, "FW did not return all pages. giving up...\n");
553 break;
554 }
555 } while (p);
556
Daniel Jurgens5adff6a2016-06-30 17:34:40 +0300557 WARN(dev->priv.fw_pages,
558 "FW pages counter is %d after reclaiming all pages\n",
559 dev->priv.fw_pages);
560 WARN(dev->priv.vfs_pages,
561 "VFs FW pages counter is %d after reclaiming all pages\n",
562 dev->priv.vfs_pages);
563
Eli Cohene126ba92013-07-07 17:25:49 +0300564 return 0;
565}
566
567void mlx5_pagealloc_init(struct mlx5_core_dev *dev)
568{
569 dev->priv.page_root = RB_ROOT;
Eli Cohenbf0bf772013-10-23 09:53:19 +0300570 INIT_LIST_HEAD(&dev->priv.free_list);
Eli Cohene126ba92013-07-07 17:25:49 +0300571}
572
573void mlx5_pagealloc_cleanup(struct mlx5_core_dev *dev)
574{
575 /* nothing */
576}
577
578int mlx5_pagealloc_start(struct mlx5_core_dev *dev)
579{
580 dev->priv.pg_wq = create_singlethread_workqueue("mlx5_page_allocator");
581 if (!dev->priv.pg_wq)
582 return -ENOMEM;
583
584 return 0;
585}
586
587void mlx5_pagealloc_stop(struct mlx5_core_dev *dev)
588{
589 destroy_workqueue(dev->priv.pg_wq);
590}
Eli Cohenfc50db92015-12-01 18:03:09 +0200591
592int mlx5_wait_for_vf_pages(struct mlx5_core_dev *dev)
593{
594 unsigned long end = jiffies + msecs_to_jiffies(MAX_RECLAIM_VFS_PAGES_TIME_MSECS);
595 int prev_vfs_pages = dev->priv.vfs_pages;
596
597 mlx5_core_dbg(dev, "Waiting for %d pages from %s\n", prev_vfs_pages,
598 dev->priv.name);
599 while (dev->priv.vfs_pages) {
600 if (time_after(jiffies, end)) {
601 mlx5_core_warn(dev, "aborting while there are %d pending pages\n", dev->priv.vfs_pages);
602 return -ETIMEDOUT;
603 }
604 if (dev->priv.vfs_pages < prev_vfs_pages) {
605 end = jiffies + msecs_to_jiffies(MAX_RECLAIM_VFS_PAGES_TIME_MSECS);
606 prev_vfs_pages = dev->priv.vfs_pages;
607 }
608 msleep(50);
609 }
610
611 mlx5_core_dbg(dev, "All pages received from %s\n", dev->priv.name);
612 return 0;
613}