blob: e1f9e7cebf8f7adcf0a095513086b949c246aab6 [file] [log] [blame]
Roland Dreier225c7b12007-05-08 18:00:38 -07001/*
Jack Morgenstein51a379d2008-07-25 10:32:52 -07002 * Copyright (c) 2005, 2006, 2007, 2008 Mellanox Technologies. All rights reserved.
Roland Dreier225c7b12007-05-08 18:00:38 -07003 * Copyright (c) 2006, 2007 Cisco Systems, Inc. All rights reserved.
4 *
5 * This software is available to you under a choice of one of two
6 * licenses. You may choose to be licensed under the terms of the GNU
7 * General Public License (GPL) Version 2, available from the file
8 * COPYING in the main directory of this source tree, or the
9 * OpenIB.org BSD license below:
10 *
11 * Redistribution and use in source and binary forms, with or
12 * without modification, are permitted provided that the following
13 * conditions are met:
14 *
15 * - Redistributions of source code must retain the above
16 * copyright notice, this list of conditions and the following
17 * disclaimer.
18 *
19 * - Redistributions in binary form must reproduce the above
20 * copyright notice, this list of conditions and the following
21 * disclaimer in the documentation and/or other materials
22 * provided with the distribution.
23 *
24 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
25 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
26 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
27 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
28 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
29 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
30 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
31 * SOFTWARE.
32 */
33
Roland Dreier225c7b12007-05-08 18:00:38 -070034#include <linux/errno.h>
Al Viro9cbe05c2007-05-15 20:36:30 +010035#include <linux/mm.h>
Jack Morgenstein5b0bf5e2007-08-01 12:28:20 +030036#include <linux/scatterlist.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090037#include <linux/slab.h>
Roland Dreier225c7b12007-05-08 18:00:38 -070038
39#include <linux/mlx4/cmd.h>
40
41#include "mlx4.h"
42#include "icm.h"
43#include "fw.h"
44
45/*
46 * We allocate in as big chunks as we can, up to a maximum of 256 KB
47 * per chunk.
48 */
49enum {
50 MLX4_ICM_ALLOC_SIZE = 1 << 18,
51 MLX4_TABLE_CHUNK_SIZE = 1 << 18
52};
53
Jack Morgenstein5b0bf5e2007-08-01 12:28:20 +030054static void mlx4_free_icm_pages(struct mlx4_dev *dev, struct mlx4_icm_chunk *chunk)
Roland Dreier225c7b12007-05-08 18:00:38 -070055{
Roland Dreier225c7b12007-05-08 18:00:38 -070056 int i;
57
Jack Morgenstein5b0bf5e2007-08-01 12:28:20 +030058 if (chunk->nsg > 0)
Yishai Hadas872bf2f2015-01-25 16:59:35 +020059 pci_unmap_sg(dev->persist->pdev, chunk->mem, chunk->npages,
Jack Morgenstein5b0bf5e2007-08-01 12:28:20 +030060 PCI_DMA_BIDIRECTIONAL);
Roland Dreier225c7b12007-05-08 18:00:38 -070061
Jack Morgenstein5b0bf5e2007-08-01 12:28:20 +030062 for (i = 0; i < chunk->npages; ++i)
Jens Axboe45711f12007-10-22 21:19:53 +020063 __free_pages(sg_page(&chunk->mem[i]),
Jack Morgenstein5b0bf5e2007-08-01 12:28:20 +030064 get_order(chunk->mem[i].length));
65}
66
67static void mlx4_free_icm_coherent(struct mlx4_dev *dev, struct mlx4_icm_chunk *chunk)
68{
69 int i;
70
71 for (i = 0; i < chunk->npages; ++i)
Yishai Hadas872bf2f2015-01-25 16:59:35 +020072 dma_free_coherent(&dev->persist->pdev->dev,
73 chunk->mem[i].length,
Jens Axboe45711f12007-10-22 21:19:53 +020074 lowmem_page_address(sg_page(&chunk->mem[i])),
Jack Morgenstein5b0bf5e2007-08-01 12:28:20 +030075 sg_dma_address(&chunk->mem[i]));
76}
77
78void mlx4_free_icm(struct mlx4_dev *dev, struct mlx4_icm *icm, int coherent)
79{
80 struct mlx4_icm_chunk *chunk, *tmp;
81
82 if (!icm)
83 return;
84
85 list_for_each_entry_safe(chunk, tmp, &icm->chunk_list, list) {
86 if (coherent)
87 mlx4_free_icm_coherent(dev, chunk);
88 else
89 mlx4_free_icm_pages(dev, chunk);
Roland Dreier225c7b12007-05-08 18:00:38 -070090
91 kfree(chunk);
92 }
93
94 kfree(icm);
95}
96
Eugenia Emantayev6e7136e2013-11-07 12:19:53 +020097static int mlx4_alloc_icm_pages(struct scatterlist *mem, int order,
98 gfp_t gfp_mask, int node)
Jack Morgenstein5b0bf5e2007-08-01 12:28:20 +030099{
Jens Axboe45711f12007-10-22 21:19:53 +0200100 struct page *page;
101
Eugenia Emantayev6e7136e2013-11-07 12:19:53 +0200102 page = alloc_pages_node(node, gfp_mask, order);
103 if (!page) {
104 page = alloc_pages(gfp_mask, order);
105 if (!page)
106 return -ENOMEM;
107 }
Jack Morgenstein5b0bf5e2007-08-01 12:28:20 +0300108
Jens Axboe642f1492007-10-24 11:20:47 +0200109 sg_set_page(mem, page, PAGE_SIZE << order, 0);
Jack Morgenstein5b0bf5e2007-08-01 12:28:20 +0300110 return 0;
111}
112
113static int mlx4_alloc_icm_coherent(struct device *dev, struct scatterlist *mem,
114 int order, gfp_t gfp_mask)
115{
116 void *buf = dma_alloc_coherent(dev, PAGE_SIZE << order,
117 &sg_dma_address(mem), gfp_mask);
118 if (!buf)
119 return -ENOMEM;
120
Leon Romanovsky7e150f72016-12-29 18:37:11 +0200121 if (offset_in_page(buf)) {
122 dma_free_coherent(dev, PAGE_SIZE << order,
123 buf, sg_dma_address(mem));
124 return -ENOMEM;
125 }
126
Jack Morgenstein5b0bf5e2007-08-01 12:28:20 +0300127 sg_set_buf(mem, buf, PAGE_SIZE << order);
Jack Morgenstein5b0bf5e2007-08-01 12:28:20 +0300128 sg_dma_len(mem) = PAGE_SIZE << order;
129 return 0;
130}
131
Roland Dreier225c7b12007-05-08 18:00:38 -0700132struct mlx4_icm *mlx4_alloc_icm(struct mlx4_dev *dev, int npages,
Jack Morgenstein5b0bf5e2007-08-01 12:28:20 +0300133 gfp_t gfp_mask, int coherent)
Roland Dreier225c7b12007-05-08 18:00:38 -0700134{
135 struct mlx4_icm *icm;
136 struct mlx4_icm_chunk *chunk = NULL;
137 int cur_order;
Jack Morgenstein5b0bf5e2007-08-01 12:28:20 +0300138 int ret;
139
140 /* We use sg_set_buf for coherent allocs, which assumes low memory */
141 BUG_ON(coherent && (gfp_mask & __GFP_HIGHMEM));
Roland Dreier225c7b12007-05-08 18:00:38 -0700142
Eugenia Emantayev6e7136e2013-11-07 12:19:53 +0200143 icm = kmalloc_node(sizeof(*icm),
144 gfp_mask & ~(__GFP_HIGHMEM | __GFP_NOWARN),
145 dev->numa_node);
146 if (!icm) {
147 icm = kmalloc(sizeof(*icm),
148 gfp_mask & ~(__GFP_HIGHMEM | __GFP_NOWARN));
149 if (!icm)
150 return NULL;
151 }
Roland Dreier225c7b12007-05-08 18:00:38 -0700152
153 icm->refcount = 0;
154 INIT_LIST_HEAD(&icm->chunk_list);
155
156 cur_order = get_order(MLX4_ICM_ALLOC_SIZE);
157
158 while (npages > 0) {
159 if (!chunk) {
Eugenia Emantayev6e7136e2013-11-07 12:19:53 +0200160 chunk = kmalloc_node(sizeof(*chunk),
161 gfp_mask & ~(__GFP_HIGHMEM |
162 __GFP_NOWARN),
163 dev->numa_node);
164 if (!chunk) {
165 chunk = kmalloc(sizeof(*chunk),
166 gfp_mask & ~(__GFP_HIGHMEM |
167 __GFP_NOWARN));
168 if (!chunk)
169 goto fail;
170 }
Roland Dreier225c7b12007-05-08 18:00:38 -0700171
Jens Axboe45711f12007-10-22 21:19:53 +0200172 sg_init_table(chunk->mem, MLX4_ICM_CHUNK_LEN);
Roland Dreier225c7b12007-05-08 18:00:38 -0700173 chunk->npages = 0;
174 chunk->nsg = 0;
175 list_add_tail(&chunk->list, &icm->chunk_list);
176 }
177
178 while (1 << cur_order > npages)
179 --cur_order;
180
Jack Morgenstein5b0bf5e2007-08-01 12:28:20 +0300181 if (coherent)
Yishai Hadas872bf2f2015-01-25 16:59:35 +0200182 ret = mlx4_alloc_icm_coherent(&dev->persist->pdev->dev,
Jack Morgenstein5b0bf5e2007-08-01 12:28:20 +0300183 &chunk->mem[chunk->npages],
184 cur_order, gfp_mask);
185 else
186 ret = mlx4_alloc_icm_pages(&chunk->mem[chunk->npages],
Eugenia Emantayev6e7136e2013-11-07 12:19:53 +0200187 cur_order, gfp_mask,
188 dev->numa_node);
Roland Dreier225c7b12007-05-08 18:00:38 -0700189
Roland Dreierc050def2010-05-20 15:58:22 -0700190 if (ret) {
191 if (--cur_order < 0)
192 goto fail;
193 else
194 continue;
195 }
Jack Morgenstein5b0bf5e2007-08-01 12:28:20 +0300196
Roland Dreierc050def2010-05-20 15:58:22 -0700197 ++chunk->npages;
Roland Dreier225c7b12007-05-08 18:00:38 -0700198
Roland Dreierc050def2010-05-20 15:58:22 -0700199 if (coherent)
200 ++chunk->nsg;
201 else if (chunk->npages == MLX4_ICM_CHUNK_LEN) {
Yishai Hadas872bf2f2015-01-25 16:59:35 +0200202 chunk->nsg = pci_map_sg(dev->persist->pdev, chunk->mem,
Roland Dreierc050def2010-05-20 15:58:22 -0700203 chunk->npages,
204 PCI_DMA_BIDIRECTIONAL);
Roland Dreier225c7b12007-05-08 18:00:38 -0700205
Roland Dreierc050def2010-05-20 15:58:22 -0700206 if (chunk->nsg <= 0)
Roland Dreier225c7b12007-05-08 18:00:38 -0700207 goto fail;
208 }
Roland Dreierc050def2010-05-20 15:58:22 -0700209
210 if (chunk->npages == MLX4_ICM_CHUNK_LEN)
211 chunk = NULL;
212
213 npages -= 1 << cur_order;
Roland Dreier225c7b12007-05-08 18:00:38 -0700214 }
215
Jack Morgenstein5b0bf5e2007-08-01 12:28:20 +0300216 if (!coherent && chunk) {
Yishai Hadas872bf2f2015-01-25 16:59:35 +0200217 chunk->nsg = pci_map_sg(dev->persist->pdev, chunk->mem,
Roland Dreier225c7b12007-05-08 18:00:38 -0700218 chunk->npages,
219 PCI_DMA_BIDIRECTIONAL);
220
221 if (chunk->nsg <= 0)
222 goto fail;
223 }
224
225 return icm;
226
227fail:
Jack Morgenstein5b0bf5e2007-08-01 12:28:20 +0300228 mlx4_free_icm(dev, icm, coherent);
Roland Dreier225c7b12007-05-08 18:00:38 -0700229 return NULL;
230}
231
232static int mlx4_MAP_ICM(struct mlx4_dev *dev, struct mlx4_icm *icm, u64 virt)
233{
234 return mlx4_map_cmd(dev, MLX4_CMD_MAP_ICM, icm, virt);
235}
236
stephen hemminger9740d782010-10-21 06:59:20 +0000237static int mlx4_UNMAP_ICM(struct mlx4_dev *dev, u64 virt, u32 page_count)
Roland Dreier225c7b12007-05-08 18:00:38 -0700238{
239 return mlx4_cmd(dev, virt, page_count, 0, MLX4_CMD_UNMAP_ICM,
Jack Morgensteinf9baff52011-12-13 04:10:51 +0000240 MLX4_CMD_TIME_CLASS_B, MLX4_CMD_NATIVE);
Roland Dreier225c7b12007-05-08 18:00:38 -0700241}
242
Roland Dreier225c7b12007-05-08 18:00:38 -0700243int mlx4_MAP_ICM_AUX(struct mlx4_dev *dev, struct mlx4_icm *icm)
244{
245 return mlx4_map_cmd(dev, MLX4_CMD_MAP_ICM_AUX, icm, -1);
246}
247
248int mlx4_UNMAP_ICM_AUX(struct mlx4_dev *dev)
249{
Jack Morgensteinf9baff52011-12-13 04:10:51 +0000250 return mlx4_cmd(dev, 0, 0, 0, MLX4_CMD_UNMAP_ICM_AUX,
251 MLX4_CMD_TIME_CLASS_B, MLX4_CMD_NATIVE);
Roland Dreier225c7b12007-05-08 18:00:38 -0700252}
253
Jiri Kosina40f22872014-05-11 15:15:12 +0300254int mlx4_table_get(struct mlx4_dev *dev, struct mlx4_icm_table *table, u32 obj,
Roland Dreier4e2c3412014-06-04 10:19:13 -0700255 gfp_t gfp)
Roland Dreier225c7b12007-05-08 18:00:38 -0700256{
Yishai Hadasdd03e732012-08-29 15:14:35 +0000257 u32 i = (obj & (table->num_obj - 1)) /
258 (MLX4_TABLE_CHUNK_SIZE / table->obj_size);
Roland Dreier225c7b12007-05-08 18:00:38 -0700259 int ret = 0;
260
261 mutex_lock(&table->mutex);
262
263 if (table->icm[i]) {
264 ++table->icm[i]->refcount;
265 goto out;
266 }
267
268 table->icm[i] = mlx4_alloc_icm(dev, MLX4_TABLE_CHUNK_SIZE >> PAGE_SHIFT,
Jiri Kosina40f22872014-05-11 15:15:12 +0300269 (table->lowmem ? gfp : GFP_HIGHUSER) |
Jack Morgenstein5b0bf5e2007-08-01 12:28:20 +0300270 __GFP_NOWARN, table->coherent);
Roland Dreier225c7b12007-05-08 18:00:38 -0700271 if (!table->icm[i]) {
272 ret = -ENOMEM;
273 goto out;
274 }
275
276 if (mlx4_MAP_ICM(dev, table->icm[i], table->virt +
277 (u64) i * MLX4_TABLE_CHUNK_SIZE)) {
Jack Morgenstein5b0bf5e2007-08-01 12:28:20 +0300278 mlx4_free_icm(dev, table->icm[i], table->coherent);
Roland Dreier225c7b12007-05-08 18:00:38 -0700279 table->icm[i] = NULL;
280 ret = -ENOMEM;
281 goto out;
282 }
283
284 ++table->icm[i]->refcount;
285
286out:
287 mutex_unlock(&table->mutex);
288 return ret;
289}
290
Yishai Hadasdd03e732012-08-29 15:14:35 +0000291void mlx4_table_put(struct mlx4_dev *dev, struct mlx4_icm_table *table, u32 obj)
Roland Dreier225c7b12007-05-08 18:00:38 -0700292{
Yishai Hadasdd03e732012-08-29 15:14:35 +0000293 u32 i;
294 u64 offset;
Roland Dreier225c7b12007-05-08 18:00:38 -0700295
296 i = (obj & (table->num_obj - 1)) / (MLX4_TABLE_CHUNK_SIZE / table->obj_size);
297
298 mutex_lock(&table->mutex);
299
300 if (--table->icm[i]->refcount == 0) {
Yishai Hadasdd03e732012-08-29 15:14:35 +0000301 offset = (u64) i * MLX4_TABLE_CHUNK_SIZE;
302 mlx4_UNMAP_ICM(dev, table->virt + offset,
Roland Dreier225c7b12007-05-08 18:00:38 -0700303 MLX4_TABLE_CHUNK_SIZE / MLX4_ICM_PAGE_SIZE);
Jack Morgenstein5b0bf5e2007-08-01 12:28:20 +0300304 mlx4_free_icm(dev, table->icm[i], table->coherent);
Roland Dreier225c7b12007-05-08 18:00:38 -0700305 table->icm[i] = NULL;
306 }
307
308 mutex_unlock(&table->mutex);
309}
310
Yishai Hadasdd03e732012-08-29 15:14:35 +0000311void *mlx4_table_find(struct mlx4_icm_table *table, u32 obj,
312 dma_addr_t *dma_handle)
Roland Dreier225c7b12007-05-08 18:00:38 -0700313{
Yishai Hadasdd03e732012-08-29 15:14:35 +0000314 int offset, dma_offset, i;
315 u64 idx;
Roland Dreier225c7b12007-05-08 18:00:38 -0700316 struct mlx4_icm_chunk *chunk;
317 struct mlx4_icm *icm;
318 struct page *page = NULL;
319
320 if (!table->lowmem)
321 return NULL;
322
323 mutex_lock(&table->mutex);
324
Yishai Hadasdd03e732012-08-29 15:14:35 +0000325 idx = (u64) (obj & (table->num_obj - 1)) * table->obj_size;
Jack Morgensteind7bb58f2007-08-01 12:28:53 +0300326 icm = table->icm[idx / MLX4_TABLE_CHUNK_SIZE];
327 dma_offset = offset = idx % MLX4_TABLE_CHUNK_SIZE;
Roland Dreier225c7b12007-05-08 18:00:38 -0700328
329 if (!icm)
330 goto out;
331
332 list_for_each_entry(chunk, &icm->chunk_list, list) {
333 for (i = 0; i < chunk->npages; ++i) {
Jack Morgensteind7bb58f2007-08-01 12:28:53 +0300334 if (dma_handle && dma_offset >= 0) {
335 if (sg_dma_len(&chunk->mem[i]) > dma_offset)
336 *dma_handle = sg_dma_address(&chunk->mem[i]) +
337 dma_offset;
338 dma_offset -= sg_dma_len(&chunk->mem[i]);
339 }
340 /*
341 * DMA mapping can merge pages but not split them,
342 * so if we found the page, dma_handle has already
343 * been assigned to.
344 */
Roland Dreier225c7b12007-05-08 18:00:38 -0700345 if (chunk->mem[i].length > offset) {
Jens Axboe45711f12007-10-22 21:19:53 +0200346 page = sg_page(&chunk->mem[i]);
Roland Dreier225c7b12007-05-08 18:00:38 -0700347 goto out;
348 }
349 offset -= chunk->mem[i].length;
350 }
351 }
352
353out:
354 mutex_unlock(&table->mutex);
355 return page ? lowmem_page_address(page) + offset : NULL;
356}
357
358int mlx4_table_get_range(struct mlx4_dev *dev, struct mlx4_icm_table *table,
Yishai Hadasdd03e732012-08-29 15:14:35 +0000359 u32 start, u32 end)
Roland Dreier225c7b12007-05-08 18:00:38 -0700360{
361 int inc = MLX4_TABLE_CHUNK_SIZE / table->obj_size;
Yishai Hadasdd03e732012-08-29 15:14:35 +0000362 int err;
363 u32 i;
Roland Dreier225c7b12007-05-08 18:00:38 -0700364
365 for (i = start; i <= end; i += inc) {
Jiri Kosina40f22872014-05-11 15:15:12 +0300366 err = mlx4_table_get(dev, table, i, GFP_KERNEL);
Roland Dreier225c7b12007-05-08 18:00:38 -0700367 if (err)
368 goto fail;
369 }
370
371 return 0;
372
373fail:
374 while (i > start) {
375 i -= inc;
376 mlx4_table_put(dev, table, i);
377 }
378
379 return err;
380}
381
382void mlx4_table_put_range(struct mlx4_dev *dev, struct mlx4_icm_table *table,
Yishai Hadasdd03e732012-08-29 15:14:35 +0000383 u32 start, u32 end)
Roland Dreier225c7b12007-05-08 18:00:38 -0700384{
Yishai Hadasdd03e732012-08-29 15:14:35 +0000385 u32 i;
Roland Dreier225c7b12007-05-08 18:00:38 -0700386
387 for (i = start; i <= end; i += MLX4_TABLE_CHUNK_SIZE / table->obj_size)
388 mlx4_table_put(dev, table, i);
389}
390
391int mlx4_init_icm_table(struct mlx4_dev *dev, struct mlx4_icm_table *table,
Yishai Hadas3de819e2012-08-13 08:15:07 +0000392 u64 virt, int obj_size, u32 nobj, int reserved,
Jack Morgenstein5b0bf5e2007-08-01 12:28:20 +0300393 int use_lowmem, int use_coherent)
Roland Dreier225c7b12007-05-08 18:00:38 -0700394{
395 int obj_per_chunk;
396 int num_icm;
397 unsigned chunk_size;
398 int i;
Yishai Hadas3de819e2012-08-13 08:15:07 +0000399 u64 size;
Roland Dreier225c7b12007-05-08 18:00:38 -0700400
401 obj_per_chunk = MLX4_TABLE_CHUNK_SIZE / obj_size;
402 num_icm = (nobj + obj_per_chunk - 1) / obj_per_chunk;
403
404 table->icm = kcalloc(num_icm, sizeof *table->icm, GFP_KERNEL);
405 if (!table->icm)
406 return -ENOMEM;
407 table->virt = virt;
408 table->num_icm = num_icm;
409 table->num_obj = nobj;
410 table->obj_size = obj_size;
411 table->lowmem = use_lowmem;
Jack Morgenstein5b0bf5e2007-08-01 12:28:20 +0300412 table->coherent = use_coherent;
Roland Dreier225c7b12007-05-08 18:00:38 -0700413 mutex_init(&table->mutex);
414
Yishai Hadas3de819e2012-08-13 08:15:07 +0000415 size = (u64) nobj * obj_size;
Roland Dreier225c7b12007-05-08 18:00:38 -0700416 for (i = 0; i * MLX4_TABLE_CHUNK_SIZE < reserved * obj_size; ++i) {
417 chunk_size = MLX4_TABLE_CHUNK_SIZE;
Yishai Hadas3de819e2012-08-13 08:15:07 +0000418 if ((i + 1) * MLX4_TABLE_CHUNK_SIZE > size)
419 chunk_size = PAGE_ALIGN(size -
420 i * MLX4_TABLE_CHUNK_SIZE);
Roland Dreier225c7b12007-05-08 18:00:38 -0700421
422 table->icm[i] = mlx4_alloc_icm(dev, chunk_size >> PAGE_SHIFT,
423 (use_lowmem ? GFP_KERNEL : GFP_HIGHUSER) |
Jack Morgenstein5b0bf5e2007-08-01 12:28:20 +0300424 __GFP_NOWARN, use_coherent);
Roland Dreier225c7b12007-05-08 18:00:38 -0700425 if (!table->icm[i])
426 goto err;
427 if (mlx4_MAP_ICM(dev, table->icm[i], virt + i * MLX4_TABLE_CHUNK_SIZE)) {
Jack Morgenstein5b0bf5e2007-08-01 12:28:20 +0300428 mlx4_free_icm(dev, table->icm[i], use_coherent);
Roland Dreier225c7b12007-05-08 18:00:38 -0700429 table->icm[i] = NULL;
430 goto err;
431 }
432
433 /*
434 * Add a reference to this ICM chunk so that it never
435 * gets freed (since it contains reserved firmware objects).
436 */
437 ++table->icm[i]->refcount;
438 }
439
440 return 0;
441
442err:
443 for (i = 0; i < num_icm; ++i)
444 if (table->icm[i]) {
445 mlx4_UNMAP_ICM(dev, virt + i * MLX4_TABLE_CHUNK_SIZE,
446 MLX4_TABLE_CHUNK_SIZE / MLX4_ICM_PAGE_SIZE);
Jack Morgenstein5b0bf5e2007-08-01 12:28:20 +0300447 mlx4_free_icm(dev, table->icm[i], use_coherent);
Roland Dreier225c7b12007-05-08 18:00:38 -0700448 }
449
Dotan Barak240a9202012-07-11 15:39:32 +0000450 kfree(table->icm);
451
Roland Dreier225c7b12007-05-08 18:00:38 -0700452 return -ENOMEM;
453}
454
455void mlx4_cleanup_icm_table(struct mlx4_dev *dev, struct mlx4_icm_table *table)
456{
457 int i;
458
459 for (i = 0; i < table->num_icm; ++i)
460 if (table->icm[i]) {
461 mlx4_UNMAP_ICM(dev, table->virt + i * MLX4_TABLE_CHUNK_SIZE,
462 MLX4_TABLE_CHUNK_SIZE / MLX4_ICM_PAGE_SIZE);
Jack Morgenstein5b0bf5e2007-08-01 12:28:20 +0300463 mlx4_free_icm(dev, table->icm[i], table->coherent);
Roland Dreier225c7b12007-05-08 18:00:38 -0700464 }
465
466 kfree(table->icm);
467}