blob: 06fef5b44f7747d3b3f6df534130686fd723e4a2 [file] [log] [blame]
Roland Dreier225c7b12007-05-08 18:00:38 -07001/*
2 * Copyright (c) 2006, 2007 Cisco Systems, Inc. All rights reserved.
Jack Morgenstein51a379d2008-07-25 10:32:52 -07003 * Copyright (c) 2007, 2008 Mellanox Technologies. All rights reserved.
Roland Dreier225c7b12007-05-08 18:00:38 -07004 *
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
34#include <linux/errno.h>
35#include <linux/slab.h>
Andrew Morton65261282008-09-05 14:04:07 -070036#include <linux/mm.h>
Paul Gortmakeree40fa02011-05-27 16:14:23 -040037#include <linux/export.h>
Roland Dreier225c7b12007-05-08 18:00:38 -070038#include <linux/bitmap.h>
Al Viro9cbe05c2007-05-15 20:36:30 +010039#include <linux/dma-mapping.h>
Olof Johansson29c27112008-02-10 20:22:57 -060040#include <linux/vmalloc.h>
Roland Dreier225c7b12007-05-08 18:00:38 -070041
42#include "mlx4.h"
43
44u32 mlx4_bitmap_alloc(struct mlx4_bitmap *bitmap)
45{
46 u32 obj;
47
48 spin_lock(&bitmap->lock);
49
50 obj = find_next_zero_bit(bitmap->table, bitmap->max, bitmap->last);
51 if (obj >= bitmap->max) {
Yevgeny Petrilin93fc9e12008-10-22 10:25:29 -070052 bitmap->top = (bitmap->top + bitmap->max + bitmap->reserved_top)
53 & bitmap->mask;
Roland Dreier225c7b12007-05-08 18:00:38 -070054 obj = find_first_zero_bit(bitmap->table, bitmap->max);
55 }
56
57 if (obj < bitmap->max) {
58 set_bit(obj, bitmap->table);
Yevgeny Petrilin93fc9e12008-10-22 10:25:29 -070059 bitmap->last = (obj + 1);
60 if (bitmap->last == bitmap->max)
61 bitmap->last = 0;
Roland Dreier225c7b12007-05-08 18:00:38 -070062 obj |= bitmap->top;
Roland Dreier225c7b12007-05-08 18:00:38 -070063 } else
64 obj = -1;
65
Eli Cohen42d1e012011-03-22 22:38:45 +000066 if (obj != -1)
67 --bitmap->avail;
68
Roland Dreier225c7b12007-05-08 18:00:38 -070069 spin_unlock(&bitmap->lock);
70
71 return obj;
72}
73
74void mlx4_bitmap_free(struct mlx4_bitmap *bitmap, u32 obj)
75{
Yevgeny Petrilina3cdcbf2008-10-10 12:01:37 -070076 mlx4_bitmap_free_range(bitmap, obj, 1);
77}
78
Yevgeny Petrilina3cdcbf2008-10-10 12:01:37 -070079u32 mlx4_bitmap_alloc_range(struct mlx4_bitmap *bitmap, int cnt, int align)
80{
Akinobu Mitae27cd4f2010-08-27 19:08:13 +000081 u32 obj;
Yevgeny Petrilina3cdcbf2008-10-10 12:01:37 -070082
83 if (likely(cnt == 1 && align == 1))
84 return mlx4_bitmap_alloc(bitmap);
Roland Dreier225c7b12007-05-08 18:00:38 -070085
86 spin_lock(&bitmap->lock);
Yevgeny Petrilina3cdcbf2008-10-10 12:01:37 -070087
Akinobu Mita43ff8b62009-12-15 16:48:29 -080088 obj = bitmap_find_next_zero_area(bitmap->table, bitmap->max,
89 bitmap->last, cnt, align - 1);
Yevgeny Petrilina3cdcbf2008-10-10 12:01:37 -070090 if (obj >= bitmap->max) {
Yevgeny Petrilin93fc9e12008-10-22 10:25:29 -070091 bitmap->top = (bitmap->top + bitmap->max + bitmap->reserved_top)
92 & bitmap->mask;
Akinobu Mita43ff8b62009-12-15 16:48:29 -080093 obj = bitmap_find_next_zero_area(bitmap->table, bitmap->max,
94 0, cnt, align - 1);
Yevgeny Petrilina3cdcbf2008-10-10 12:01:37 -070095 }
96
97 if (obj < bitmap->max) {
Akinobu Mitae27cd4f2010-08-27 19:08:13 +000098 bitmap_set(bitmap->table, obj, cnt);
Yevgeny Petrilina3cdcbf2008-10-10 12:01:37 -070099 if (obj == bitmap->last) {
100 bitmap->last = (obj + cnt);
101 if (bitmap->last >= bitmap->max)
102 bitmap->last = 0;
103 }
104 obj |= bitmap->top;
105 } else
106 obj = -1;
107
Eli Cohen42d1e012011-03-22 22:38:45 +0000108 if (obj != -1)
109 bitmap->avail -= cnt;
110
Yevgeny Petrilina3cdcbf2008-10-10 12:01:37 -0700111 spin_unlock(&bitmap->lock);
112
113 return obj;
114}
115
Eli Cohen42d1e012011-03-22 22:38:45 +0000116u32 mlx4_bitmap_avail(struct mlx4_bitmap *bitmap)
117{
118 return bitmap->avail;
119}
120
Yevgeny Petrilina3cdcbf2008-10-10 12:01:37 -0700121void mlx4_bitmap_free_range(struct mlx4_bitmap *bitmap, u32 obj, int cnt)
122{
Yevgeny Petrilin93fc9e12008-10-22 10:25:29 -0700123 obj &= bitmap->max + bitmap->reserved_top - 1;
Roland Dreier225c7b12007-05-08 18:00:38 -0700124
125 spin_lock(&bitmap->lock);
Akinobu Mitae27cd4f2010-08-27 19:08:13 +0000126 bitmap_clear(bitmap->table, obj, cnt);
Eli Cohen42d1e012011-03-22 22:38:45 +0000127 bitmap->avail += cnt;
Roland Dreier225c7b12007-05-08 18:00:38 -0700128 spin_unlock(&bitmap->lock);
129}
130
Yevgeny Petrilin93fc9e12008-10-22 10:25:29 -0700131int mlx4_bitmap_init(struct mlx4_bitmap *bitmap, u32 num, u32 mask,
132 u32 reserved_bot, u32 reserved_top)
Roland Dreier225c7b12007-05-08 18:00:38 -0700133{
Roland Dreier225c7b12007-05-08 18:00:38 -0700134 /* num must be a power of 2 */
135 if (num != roundup_pow_of_two(num))
136 return -EINVAL;
137
138 bitmap->last = 0;
139 bitmap->top = 0;
Yevgeny Petrilin93fc9e12008-10-22 10:25:29 -0700140 bitmap->max = num - reserved_top;
Roland Dreier225c7b12007-05-08 18:00:38 -0700141 bitmap->mask = mask;
Yevgeny Petrilin93fc9e12008-10-22 10:25:29 -0700142 bitmap->reserved_top = reserved_top;
Eli Cohen42d1e012011-03-22 22:38:45 +0000143 bitmap->avail = num - reserved_top - reserved_bot;
Roland Dreier225c7b12007-05-08 18:00:38 -0700144 spin_lock_init(&bitmap->lock);
Yevgeny Petrilin93fc9e12008-10-22 10:25:29 -0700145 bitmap->table = kzalloc(BITS_TO_LONGS(bitmap->max) *
146 sizeof (long), GFP_KERNEL);
Roland Dreier225c7b12007-05-08 18:00:38 -0700147 if (!bitmap->table)
148 return -ENOMEM;
149
Akinobu Mitae27cd4f2010-08-27 19:08:13 +0000150 bitmap_set(bitmap->table, 0, reserved_bot);
Roland Dreier225c7b12007-05-08 18:00:38 -0700151
152 return 0;
153}
154
155void mlx4_bitmap_cleanup(struct mlx4_bitmap *bitmap)
156{
157 kfree(bitmap->table);
158}
159
160/*
161 * Handling for queue buffers -- we allocate a bunch of memory and
162 * register it in a memory region at HCA virtual address 0. If the
163 * requested size is > max_direct, we split the allocation into
164 * multiple pages, so we don't require too much contiguous memory.
165 */
166
167int mlx4_buf_alloc(struct mlx4_dev *dev, int size, int max_direct,
168 struct mlx4_buf *buf)
169{
170 dma_addr_t t;
171
172 if (size <= max_direct) {
173 buf->nbufs = 1;
174 buf->npages = 1;
175 buf->page_shift = get_order(size) + PAGE_SHIFT;
Roland Dreierb57aacf2008-02-06 21:17:59 -0800176 buf->direct.buf = dma_alloc_coherent(&dev->pdev->dev,
Roland Dreier225c7b12007-05-08 18:00:38 -0700177 size, &t, GFP_KERNEL);
Roland Dreierb57aacf2008-02-06 21:17:59 -0800178 if (!buf->direct.buf)
Roland Dreier225c7b12007-05-08 18:00:38 -0700179 return -ENOMEM;
180
Roland Dreierb57aacf2008-02-06 21:17:59 -0800181 buf->direct.map = t;
Roland Dreier225c7b12007-05-08 18:00:38 -0700182
183 while (t & ((1 << buf->page_shift) - 1)) {
184 --buf->page_shift;
185 buf->npages *= 2;
186 }
187
Roland Dreierb57aacf2008-02-06 21:17:59 -0800188 memset(buf->direct.buf, 0, size);
Roland Dreier225c7b12007-05-08 18:00:38 -0700189 } else {
190 int i;
191
Ali Ayoub030b4b32011-01-10 17:42:06 -0800192 buf->direct.buf = NULL;
Roland Dreier225c7b12007-05-08 18:00:38 -0700193 buf->nbufs = (size + PAGE_SIZE - 1) / PAGE_SIZE;
194 buf->npages = buf->nbufs;
195 buf->page_shift = PAGE_SHIFT;
Joe Perchesbaeb2ff2010-08-11 07:02:48 +0000196 buf->page_list = kcalloc(buf->nbufs, sizeof(*buf->page_list),
Roland Dreier225c7b12007-05-08 18:00:38 -0700197 GFP_KERNEL);
Roland Dreierb57aacf2008-02-06 21:17:59 -0800198 if (!buf->page_list)
Roland Dreier225c7b12007-05-08 18:00:38 -0700199 return -ENOMEM;
200
201 for (i = 0; i < buf->nbufs; ++i) {
Roland Dreierb57aacf2008-02-06 21:17:59 -0800202 buf->page_list[i].buf =
Roland Dreier225c7b12007-05-08 18:00:38 -0700203 dma_alloc_coherent(&dev->pdev->dev, PAGE_SIZE,
204 &t, GFP_KERNEL);
Roland Dreierb57aacf2008-02-06 21:17:59 -0800205 if (!buf->page_list[i].buf)
Roland Dreier225c7b12007-05-08 18:00:38 -0700206 goto err_free;
207
Roland Dreierb57aacf2008-02-06 21:17:59 -0800208 buf->page_list[i].map = t;
Roland Dreier225c7b12007-05-08 18:00:38 -0700209
Roland Dreierb57aacf2008-02-06 21:17:59 -0800210 memset(buf->page_list[i].buf, 0, PAGE_SIZE);
Roland Dreier225c7b12007-05-08 18:00:38 -0700211 }
Jack Morgenstein313abe52008-01-28 10:40:51 +0200212
213 if (BITS_PER_LONG == 64) {
214 struct page **pages;
215 pages = kmalloc(sizeof *pages * buf->nbufs, GFP_KERNEL);
216 if (!pages)
217 goto err_free;
218 for (i = 0; i < buf->nbufs; ++i)
Roland Dreierb57aacf2008-02-06 21:17:59 -0800219 pages[i] = virt_to_page(buf->page_list[i].buf);
220 buf->direct.buf = vmap(pages, buf->nbufs, VM_MAP, PAGE_KERNEL);
Jack Morgenstein313abe52008-01-28 10:40:51 +0200221 kfree(pages);
Roland Dreierb57aacf2008-02-06 21:17:59 -0800222 if (!buf->direct.buf)
Jack Morgenstein313abe52008-01-28 10:40:51 +0200223 goto err_free;
224 }
Roland Dreier225c7b12007-05-08 18:00:38 -0700225 }
226
227 return 0;
228
229err_free:
230 mlx4_buf_free(dev, size, buf);
231
232 return -ENOMEM;
233}
234EXPORT_SYMBOL_GPL(mlx4_buf_alloc);
235
236void mlx4_buf_free(struct mlx4_dev *dev, int size, struct mlx4_buf *buf)
237{
238 int i;
239
240 if (buf->nbufs == 1)
Roland Dreierb57aacf2008-02-06 21:17:59 -0800241 dma_free_coherent(&dev->pdev->dev, size, buf->direct.buf,
242 buf->direct.map);
Roland Dreier225c7b12007-05-08 18:00:38 -0700243 else {
Ali Ayoub030b4b32011-01-10 17:42:06 -0800244 if (BITS_PER_LONG == 64 && buf->direct.buf)
Roland Dreierb57aacf2008-02-06 21:17:59 -0800245 vunmap(buf->direct.buf);
Jack Morgenstein313abe52008-01-28 10:40:51 +0200246
Roland Dreier225c7b12007-05-08 18:00:38 -0700247 for (i = 0; i < buf->nbufs; ++i)
Roland Dreierb57aacf2008-02-06 21:17:59 -0800248 if (buf->page_list[i].buf)
Ali Ayoub3bba11e2007-11-13 15:26:57 -0800249 dma_free_coherent(&dev->pdev->dev, PAGE_SIZE,
Roland Dreierb57aacf2008-02-06 21:17:59 -0800250 buf->page_list[i].buf,
251 buf->page_list[i].map);
252 kfree(buf->page_list);
Roland Dreier225c7b12007-05-08 18:00:38 -0700253 }
254}
255EXPORT_SYMBOL_GPL(mlx4_buf_free);
Yevgeny Petrilin62968832008-04-23 11:55:45 -0700256
257static struct mlx4_db_pgdir *mlx4_alloc_db_pgdir(struct device *dma_device)
258{
259 struct mlx4_db_pgdir *pgdir;
260
261 pgdir = kzalloc(sizeof *pgdir, GFP_KERNEL);
262 if (!pgdir)
263 return NULL;
264
265 bitmap_fill(pgdir->order1, MLX4_DB_PER_PAGE / 2);
266 pgdir->bits[0] = pgdir->order0;
267 pgdir->bits[1] = pgdir->order1;
268 pgdir->db_page = dma_alloc_coherent(dma_device, PAGE_SIZE,
269 &pgdir->db_dma, GFP_KERNEL);
270 if (!pgdir->db_page) {
271 kfree(pgdir);
272 return NULL;
273 }
274
275 return pgdir;
276}
277
278static int mlx4_alloc_db_from_pgdir(struct mlx4_db_pgdir *pgdir,
279 struct mlx4_db *db, int order)
280{
281 int o;
282 int i;
283
284 for (o = order; o <= 1; ++o) {
285 i = find_first_bit(pgdir->bits[o], MLX4_DB_PER_PAGE >> o);
286 if (i < MLX4_DB_PER_PAGE >> o)
287 goto found;
288 }
289
290 return -ENOMEM;
291
292found:
293 clear_bit(i, pgdir->bits[o]);
294
295 i <<= o;
296
297 if (o > order)
298 set_bit(i ^ 1, pgdir->bits[order]);
299
300 db->u.pgdir = pgdir;
301 db->index = i;
302 db->db = pgdir->db_page + db->index;
303 db->dma = pgdir->db_dma + db->index * 4;
304 db->order = order;
305
306 return 0;
307}
308
309int mlx4_db_alloc(struct mlx4_dev *dev, struct mlx4_db *db, int order)
310{
311 struct mlx4_priv *priv = mlx4_priv(dev);
312 struct mlx4_db_pgdir *pgdir;
313 int ret = 0;
314
315 mutex_lock(&priv->pgdir_mutex);
316
317 list_for_each_entry(pgdir, &priv->pgdir_list, list)
318 if (!mlx4_alloc_db_from_pgdir(pgdir, db, order))
319 goto out;
320
321 pgdir = mlx4_alloc_db_pgdir(&(dev->pdev->dev));
322 if (!pgdir) {
323 ret = -ENOMEM;
324 goto out;
325 }
326
327 list_add(&pgdir->list, &priv->pgdir_list);
328
329 /* This should never fail -- we just allocated an empty page: */
330 WARN_ON(mlx4_alloc_db_from_pgdir(pgdir, db, order));
331
332out:
333 mutex_unlock(&priv->pgdir_mutex);
334
335 return ret;
336}
337EXPORT_SYMBOL_GPL(mlx4_db_alloc);
338
339void mlx4_db_free(struct mlx4_dev *dev, struct mlx4_db *db)
340{
341 struct mlx4_priv *priv = mlx4_priv(dev);
342 int o;
343 int i;
344
345 mutex_lock(&priv->pgdir_mutex);
346
347 o = db->order;
348 i = db->index;
349
350 if (db->order == 0 && test_bit(i ^ 1, db->u.pgdir->order0)) {
351 clear_bit(i ^ 1, db->u.pgdir->order0);
352 ++o;
353 }
354 i >>= o;
355 set_bit(i, db->u.pgdir->bits[o]);
356
357 if (bitmap_full(db->u.pgdir->order1, MLX4_DB_PER_PAGE / 2)) {
358 dma_free_coherent(&(dev->pdev->dev), PAGE_SIZE,
359 db->u.pgdir->db_page, db->u.pgdir->db_dma);
360 list_del(&db->u.pgdir->list);
361 kfree(db->u.pgdir);
362 }
363
364 mutex_unlock(&priv->pgdir_mutex);
365}
366EXPORT_SYMBOL_GPL(mlx4_db_free);
Yevgeny Petrilin38ae6a52008-04-25 14:27:08 -0700367
368int mlx4_alloc_hwq_res(struct mlx4_dev *dev, struct mlx4_hwq_resources *wqres,
369 int size, int max_direct)
370{
371 int err;
372
373 err = mlx4_db_alloc(dev, &wqres->db, 1);
374 if (err)
375 return err;
376
377 *wqres->db.db = 0;
378
379 err = mlx4_buf_alloc(dev, size, max_direct, &wqres->buf);
380 if (err)
381 goto err_db;
382
383 err = mlx4_mtt_init(dev, wqres->buf.npages, wqres->buf.page_shift,
384 &wqres->mtt);
385 if (err)
386 goto err_buf;
387
388 err = mlx4_buf_write_mtt(dev, &wqres->mtt, &wqres->buf);
389 if (err)
390 goto err_mtt;
391
392 return 0;
393
394err_mtt:
395 mlx4_mtt_cleanup(dev, &wqres->mtt);
396err_buf:
397 mlx4_buf_free(dev, size, &wqres->buf);
398err_db:
399 mlx4_db_free(dev, &wqres->db);
400
401 return err;
402}
403EXPORT_SYMBOL_GPL(mlx4_alloc_hwq_res);
404
405void mlx4_free_hwq_res(struct mlx4_dev *dev, struct mlx4_hwq_resources *wqres,
406 int size)
407{
408 mlx4_mtt_cleanup(dev, &wqres->mtt);
409 mlx4_buf_free(dev, size, &wqres->buf);
410 mlx4_db_free(dev, &wqres->db);
411}
412EXPORT_SYMBOL_GPL(mlx4_free_hwq_res);