blob: 116cae334dadc91ca52ce774703284c9b3cd66e7 [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>
Roland Dreier225c7b12007-05-08 18:00:38 -070037#include <linux/bitmap.h>
Al Viro9cbe05c2007-05-15 20:36:30 +010038#include <linux/dma-mapping.h>
Olof Johansson29c27112008-02-10 20:22:57 -060039#include <linux/vmalloc.h>
Roland Dreier225c7b12007-05-08 18:00:38 -070040
41#include "mlx4.h"
42
43u32 mlx4_bitmap_alloc(struct mlx4_bitmap *bitmap)
44{
45 u32 obj;
46
47 spin_lock(&bitmap->lock);
48
49 obj = find_next_zero_bit(bitmap->table, bitmap->max, bitmap->last);
50 if (obj >= bitmap->max) {
Yevgeny Petrilin93fc9e12008-10-22 10:25:29 -070051 bitmap->top = (bitmap->top + bitmap->max + bitmap->reserved_top)
52 & bitmap->mask;
Roland Dreier225c7b12007-05-08 18:00:38 -070053 obj = find_first_zero_bit(bitmap->table, bitmap->max);
54 }
55
56 if (obj < bitmap->max) {
57 set_bit(obj, bitmap->table);
Yevgeny Petrilin93fc9e12008-10-22 10:25:29 -070058 bitmap->last = (obj + 1);
59 if (bitmap->last == bitmap->max)
60 bitmap->last = 0;
Roland Dreier225c7b12007-05-08 18:00:38 -070061 obj |= bitmap->top;
Roland Dreier225c7b12007-05-08 18:00:38 -070062 } else
63 obj = -1;
64
Eli Cohen42d1e012011-03-22 22:38:45 +000065 if (obj != -1)
66 --bitmap->avail;
67
Roland Dreier225c7b12007-05-08 18:00:38 -070068 spin_unlock(&bitmap->lock);
69
70 return obj;
71}
72
73void mlx4_bitmap_free(struct mlx4_bitmap *bitmap, u32 obj)
74{
Yevgeny Petrilina3cdcbf2008-10-10 12:01:37 -070075 mlx4_bitmap_free_range(bitmap, obj, 1);
76}
77
Yevgeny Petrilina3cdcbf2008-10-10 12:01:37 -070078u32 mlx4_bitmap_alloc_range(struct mlx4_bitmap *bitmap, int cnt, int align)
79{
Akinobu Mitae27cd4f2010-08-27 19:08:13 +000080 u32 obj;
Yevgeny Petrilina3cdcbf2008-10-10 12:01:37 -070081
82 if (likely(cnt == 1 && align == 1))
83 return mlx4_bitmap_alloc(bitmap);
Roland Dreier225c7b12007-05-08 18:00:38 -070084
85 spin_lock(&bitmap->lock);
Yevgeny Petrilina3cdcbf2008-10-10 12:01:37 -070086
Akinobu Mita43ff8b62009-12-15 16:48:29 -080087 obj = bitmap_find_next_zero_area(bitmap->table, bitmap->max,
88 bitmap->last, cnt, align - 1);
Yevgeny Petrilina3cdcbf2008-10-10 12:01:37 -070089 if (obj >= bitmap->max) {
Yevgeny Petrilin93fc9e12008-10-22 10:25:29 -070090 bitmap->top = (bitmap->top + bitmap->max + bitmap->reserved_top)
91 & bitmap->mask;
Akinobu Mita43ff8b62009-12-15 16:48:29 -080092 obj = bitmap_find_next_zero_area(bitmap->table, bitmap->max,
93 0, cnt, align - 1);
Yevgeny Petrilina3cdcbf2008-10-10 12:01:37 -070094 }
95
96 if (obj < bitmap->max) {
Akinobu Mitae27cd4f2010-08-27 19:08:13 +000097 bitmap_set(bitmap->table, obj, cnt);
Yevgeny Petrilina3cdcbf2008-10-10 12:01:37 -070098 if (obj == bitmap->last) {
99 bitmap->last = (obj + cnt);
100 if (bitmap->last >= bitmap->max)
101 bitmap->last = 0;
102 }
103 obj |= bitmap->top;
104 } else
105 obj = -1;
106
Eli Cohen42d1e012011-03-22 22:38:45 +0000107 if (obj != -1)
108 bitmap->avail -= cnt;
109
Yevgeny Petrilina3cdcbf2008-10-10 12:01:37 -0700110 spin_unlock(&bitmap->lock);
111
112 return obj;
113}
114
Eli Cohen42d1e012011-03-22 22:38:45 +0000115u32 mlx4_bitmap_avail(struct mlx4_bitmap *bitmap)
116{
117 return bitmap->avail;
118}
119
Yevgeny Petrilina3cdcbf2008-10-10 12:01:37 -0700120void mlx4_bitmap_free_range(struct mlx4_bitmap *bitmap, u32 obj, int cnt)
121{
Yevgeny Petrilin93fc9e12008-10-22 10:25:29 -0700122 obj &= bitmap->max + bitmap->reserved_top - 1;
Roland Dreier225c7b12007-05-08 18:00:38 -0700123
124 spin_lock(&bitmap->lock);
Akinobu Mitae27cd4f2010-08-27 19:08:13 +0000125 bitmap_clear(bitmap->table, obj, cnt);
Roland Dreier225c7b12007-05-08 18:00:38 -0700126 bitmap->last = min(bitmap->last, obj);
Yevgeny Petrilin93fc9e12008-10-22 10:25:29 -0700127 bitmap->top = (bitmap->top + bitmap->max + bitmap->reserved_top)
128 & bitmap->mask;
Eli Cohen42d1e012011-03-22 22:38:45 +0000129 bitmap->avail += cnt;
Roland Dreier225c7b12007-05-08 18:00:38 -0700130 spin_unlock(&bitmap->lock);
131}
132
Yevgeny Petrilin93fc9e12008-10-22 10:25:29 -0700133int mlx4_bitmap_init(struct mlx4_bitmap *bitmap, u32 num, u32 mask,
134 u32 reserved_bot, u32 reserved_top)
Roland Dreier225c7b12007-05-08 18:00:38 -0700135{
Roland Dreier225c7b12007-05-08 18:00:38 -0700136 /* num must be a power of 2 */
137 if (num != roundup_pow_of_two(num))
138 return -EINVAL;
139
140 bitmap->last = 0;
141 bitmap->top = 0;
Yevgeny Petrilin93fc9e12008-10-22 10:25:29 -0700142 bitmap->max = num - reserved_top;
Roland Dreier225c7b12007-05-08 18:00:38 -0700143 bitmap->mask = mask;
Yevgeny Petrilin93fc9e12008-10-22 10:25:29 -0700144 bitmap->reserved_top = reserved_top;
Eli Cohen42d1e012011-03-22 22:38:45 +0000145 bitmap->avail = num - reserved_top - reserved_bot;
Roland Dreier225c7b12007-05-08 18:00:38 -0700146 spin_lock_init(&bitmap->lock);
Yevgeny Petrilin93fc9e12008-10-22 10:25:29 -0700147 bitmap->table = kzalloc(BITS_TO_LONGS(bitmap->max) *
148 sizeof (long), GFP_KERNEL);
Roland Dreier225c7b12007-05-08 18:00:38 -0700149 if (!bitmap->table)
150 return -ENOMEM;
151
Akinobu Mitae27cd4f2010-08-27 19:08:13 +0000152 bitmap_set(bitmap->table, 0, reserved_bot);
Roland Dreier225c7b12007-05-08 18:00:38 -0700153
154 return 0;
155}
156
157void mlx4_bitmap_cleanup(struct mlx4_bitmap *bitmap)
158{
159 kfree(bitmap->table);
160}
161
162/*
163 * Handling for queue buffers -- we allocate a bunch of memory and
164 * register it in a memory region at HCA virtual address 0. If the
165 * requested size is > max_direct, we split the allocation into
166 * multiple pages, so we don't require too much contiguous memory.
167 */
168
169int mlx4_buf_alloc(struct mlx4_dev *dev, int size, int max_direct,
170 struct mlx4_buf *buf)
171{
172 dma_addr_t t;
173
174 if (size <= max_direct) {
175 buf->nbufs = 1;
176 buf->npages = 1;
177 buf->page_shift = get_order(size) + PAGE_SHIFT;
Roland Dreierb57aacf2008-02-06 21:17:59 -0800178 buf->direct.buf = dma_alloc_coherent(&dev->pdev->dev,
Roland Dreier225c7b12007-05-08 18:00:38 -0700179 size, &t, GFP_KERNEL);
Roland Dreierb57aacf2008-02-06 21:17:59 -0800180 if (!buf->direct.buf)
Roland Dreier225c7b12007-05-08 18:00:38 -0700181 return -ENOMEM;
182
Roland Dreierb57aacf2008-02-06 21:17:59 -0800183 buf->direct.map = t;
Roland Dreier225c7b12007-05-08 18:00:38 -0700184
185 while (t & ((1 << buf->page_shift) - 1)) {
186 --buf->page_shift;
187 buf->npages *= 2;
188 }
189
Roland Dreierb57aacf2008-02-06 21:17:59 -0800190 memset(buf->direct.buf, 0, size);
Roland Dreier225c7b12007-05-08 18:00:38 -0700191 } else {
192 int i;
193
Ali Ayoub030b4b32011-01-10 17:42:06 -0800194 buf->direct.buf = NULL;
Roland Dreier225c7b12007-05-08 18:00:38 -0700195 buf->nbufs = (size + PAGE_SIZE - 1) / PAGE_SIZE;
196 buf->npages = buf->nbufs;
197 buf->page_shift = PAGE_SHIFT;
Joe Perchesbaeb2ff2010-08-11 07:02:48 +0000198 buf->page_list = kcalloc(buf->nbufs, sizeof(*buf->page_list),
Roland Dreier225c7b12007-05-08 18:00:38 -0700199 GFP_KERNEL);
Roland Dreierb57aacf2008-02-06 21:17:59 -0800200 if (!buf->page_list)
Roland Dreier225c7b12007-05-08 18:00:38 -0700201 return -ENOMEM;
202
203 for (i = 0; i < buf->nbufs; ++i) {
Roland Dreierb57aacf2008-02-06 21:17:59 -0800204 buf->page_list[i].buf =
Roland Dreier225c7b12007-05-08 18:00:38 -0700205 dma_alloc_coherent(&dev->pdev->dev, PAGE_SIZE,
206 &t, GFP_KERNEL);
Roland Dreierb57aacf2008-02-06 21:17:59 -0800207 if (!buf->page_list[i].buf)
Roland Dreier225c7b12007-05-08 18:00:38 -0700208 goto err_free;
209
Roland Dreierb57aacf2008-02-06 21:17:59 -0800210 buf->page_list[i].map = t;
Roland Dreier225c7b12007-05-08 18:00:38 -0700211
Roland Dreierb57aacf2008-02-06 21:17:59 -0800212 memset(buf->page_list[i].buf, 0, PAGE_SIZE);
Roland Dreier225c7b12007-05-08 18:00:38 -0700213 }
Jack Morgenstein313abe52008-01-28 10:40:51 +0200214
215 if (BITS_PER_LONG == 64) {
216 struct page **pages;
217 pages = kmalloc(sizeof *pages * buf->nbufs, GFP_KERNEL);
218 if (!pages)
219 goto err_free;
220 for (i = 0; i < buf->nbufs; ++i)
Roland Dreierb57aacf2008-02-06 21:17:59 -0800221 pages[i] = virt_to_page(buf->page_list[i].buf);
222 buf->direct.buf = vmap(pages, buf->nbufs, VM_MAP, PAGE_KERNEL);
Jack Morgenstein313abe52008-01-28 10:40:51 +0200223 kfree(pages);
Roland Dreierb57aacf2008-02-06 21:17:59 -0800224 if (!buf->direct.buf)
Jack Morgenstein313abe52008-01-28 10:40:51 +0200225 goto err_free;
226 }
Roland Dreier225c7b12007-05-08 18:00:38 -0700227 }
228
229 return 0;
230
231err_free:
232 mlx4_buf_free(dev, size, buf);
233
234 return -ENOMEM;
235}
236EXPORT_SYMBOL_GPL(mlx4_buf_alloc);
237
238void mlx4_buf_free(struct mlx4_dev *dev, int size, struct mlx4_buf *buf)
239{
240 int i;
241
242 if (buf->nbufs == 1)
Roland Dreierb57aacf2008-02-06 21:17:59 -0800243 dma_free_coherent(&dev->pdev->dev, size, buf->direct.buf,
244 buf->direct.map);
Roland Dreier225c7b12007-05-08 18:00:38 -0700245 else {
Ali Ayoub030b4b32011-01-10 17:42:06 -0800246 if (BITS_PER_LONG == 64 && buf->direct.buf)
Roland Dreierb57aacf2008-02-06 21:17:59 -0800247 vunmap(buf->direct.buf);
Jack Morgenstein313abe52008-01-28 10:40:51 +0200248
Roland Dreier225c7b12007-05-08 18:00:38 -0700249 for (i = 0; i < buf->nbufs; ++i)
Roland Dreierb57aacf2008-02-06 21:17:59 -0800250 if (buf->page_list[i].buf)
Ali Ayoub3bba11e2007-11-13 15:26:57 -0800251 dma_free_coherent(&dev->pdev->dev, PAGE_SIZE,
Roland Dreierb57aacf2008-02-06 21:17:59 -0800252 buf->page_list[i].buf,
253 buf->page_list[i].map);
254 kfree(buf->page_list);
Roland Dreier225c7b12007-05-08 18:00:38 -0700255 }
256}
257EXPORT_SYMBOL_GPL(mlx4_buf_free);
Yevgeny Petrilin62968832008-04-23 11:55:45 -0700258
259static struct mlx4_db_pgdir *mlx4_alloc_db_pgdir(struct device *dma_device)
260{
261 struct mlx4_db_pgdir *pgdir;
262
263 pgdir = kzalloc(sizeof *pgdir, GFP_KERNEL);
264 if (!pgdir)
265 return NULL;
266
267 bitmap_fill(pgdir->order1, MLX4_DB_PER_PAGE / 2);
268 pgdir->bits[0] = pgdir->order0;
269 pgdir->bits[1] = pgdir->order1;
270 pgdir->db_page = dma_alloc_coherent(dma_device, PAGE_SIZE,
271 &pgdir->db_dma, GFP_KERNEL);
272 if (!pgdir->db_page) {
273 kfree(pgdir);
274 return NULL;
275 }
276
277 return pgdir;
278}
279
280static int mlx4_alloc_db_from_pgdir(struct mlx4_db_pgdir *pgdir,
281 struct mlx4_db *db, int order)
282{
283 int o;
284 int i;
285
286 for (o = order; o <= 1; ++o) {
287 i = find_first_bit(pgdir->bits[o], MLX4_DB_PER_PAGE >> o);
288 if (i < MLX4_DB_PER_PAGE >> o)
289 goto found;
290 }
291
292 return -ENOMEM;
293
294found:
295 clear_bit(i, pgdir->bits[o]);
296
297 i <<= o;
298
299 if (o > order)
300 set_bit(i ^ 1, pgdir->bits[order]);
301
302 db->u.pgdir = pgdir;
303 db->index = i;
304 db->db = pgdir->db_page + db->index;
305 db->dma = pgdir->db_dma + db->index * 4;
306 db->order = order;
307
308 return 0;
309}
310
311int mlx4_db_alloc(struct mlx4_dev *dev, struct mlx4_db *db, int order)
312{
313 struct mlx4_priv *priv = mlx4_priv(dev);
314 struct mlx4_db_pgdir *pgdir;
315 int ret = 0;
316
317 mutex_lock(&priv->pgdir_mutex);
318
319 list_for_each_entry(pgdir, &priv->pgdir_list, list)
320 if (!mlx4_alloc_db_from_pgdir(pgdir, db, order))
321 goto out;
322
323 pgdir = mlx4_alloc_db_pgdir(&(dev->pdev->dev));
324 if (!pgdir) {
325 ret = -ENOMEM;
326 goto out;
327 }
328
329 list_add(&pgdir->list, &priv->pgdir_list);
330
331 /* This should never fail -- we just allocated an empty page: */
332 WARN_ON(mlx4_alloc_db_from_pgdir(pgdir, db, order));
333
334out:
335 mutex_unlock(&priv->pgdir_mutex);
336
337 return ret;
338}
339EXPORT_SYMBOL_GPL(mlx4_db_alloc);
340
341void mlx4_db_free(struct mlx4_dev *dev, struct mlx4_db *db)
342{
343 struct mlx4_priv *priv = mlx4_priv(dev);
344 int o;
345 int i;
346
347 mutex_lock(&priv->pgdir_mutex);
348
349 o = db->order;
350 i = db->index;
351
352 if (db->order == 0 && test_bit(i ^ 1, db->u.pgdir->order0)) {
353 clear_bit(i ^ 1, db->u.pgdir->order0);
354 ++o;
355 }
356 i >>= o;
357 set_bit(i, db->u.pgdir->bits[o]);
358
359 if (bitmap_full(db->u.pgdir->order1, MLX4_DB_PER_PAGE / 2)) {
360 dma_free_coherent(&(dev->pdev->dev), PAGE_SIZE,
361 db->u.pgdir->db_page, db->u.pgdir->db_dma);
362 list_del(&db->u.pgdir->list);
363 kfree(db->u.pgdir);
364 }
365
366 mutex_unlock(&priv->pgdir_mutex);
367}
368EXPORT_SYMBOL_GPL(mlx4_db_free);
Yevgeny Petrilin38ae6a52008-04-25 14:27:08 -0700369
370int mlx4_alloc_hwq_res(struct mlx4_dev *dev, struct mlx4_hwq_resources *wqres,
371 int size, int max_direct)
372{
373 int err;
374
375 err = mlx4_db_alloc(dev, &wqres->db, 1);
376 if (err)
377 return err;
378
379 *wqres->db.db = 0;
380
381 err = mlx4_buf_alloc(dev, size, max_direct, &wqres->buf);
382 if (err)
383 goto err_db;
384
385 err = mlx4_mtt_init(dev, wqres->buf.npages, wqres->buf.page_shift,
386 &wqres->mtt);
387 if (err)
388 goto err_buf;
389
390 err = mlx4_buf_write_mtt(dev, &wqres->mtt, &wqres->buf);
391 if (err)
392 goto err_mtt;
393
394 return 0;
395
396err_mtt:
397 mlx4_mtt_cleanup(dev, &wqres->mtt);
398err_buf:
399 mlx4_buf_free(dev, size, &wqres->buf);
400err_db:
401 mlx4_db_free(dev, &wqres->db);
402
403 return err;
404}
405EXPORT_SYMBOL_GPL(mlx4_alloc_hwq_res);
406
407void mlx4_free_hwq_res(struct mlx4_dev *dev, struct mlx4_hwq_resources *wqres,
408 int size)
409{
410 mlx4_mtt_cleanup(dev, &wqres->mtt);
411 mlx4_buf_free(dev, size, &wqres->buf);
412 mlx4_db_free(dev, &wqres->db);
413}
414EXPORT_SYMBOL_GPL(mlx4_free_hwq_res);