Merge tag 'powerpc-4.13-3' of git://git.kernel.org/pub/scm/linux/kernel/git/powerpc...
[linux-block.git] / drivers / net / ethernet / mellanox / mlx5 / core / alloc.c
CommitLineData
e126ba97 1/*
302bdf68 2 * Copyright (c) 2013-2015, Mellanox Technologies. All rights reserved.
e126ba97
EC
3 *
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
33#include <linux/errno.h>
34#include <linux/slab.h>
35#include <linux/mm.h>
36#include <linux/export.h>
37#include <linux/bitmap.h>
38#include <linux/dma-mapping.h>
39#include <linux/vmalloc.h>
40#include <linux/mlx5/driver.h>
41
42#include "mlx5_core.h"
43
b47bd6ea
DJ
44struct mlx5_db_pgdir {
45 struct list_head list;
46 unsigned long *bitmap;
47 __be32 *db_page;
48 dma_addr_t db_dma;
49};
50
e126ba97 51/* Handling for queue buffers -- we allocate a bunch of memory and
64ffaa21 52 * register it in a memory region at HCA virtual address 0.
e126ba97
EC
53 */
54
311c7c71
SM
55static void *mlx5_dma_zalloc_coherent_node(struct mlx5_core_dev *dev,
56 size_t size, dma_addr_t *dma_handle,
57 int node)
58{
59 struct mlx5_priv *priv = &dev->priv;
60 int original_node;
61 void *cpu_handle;
62
63 mutex_lock(&priv->alloc_mutex);
64 original_node = dev_to_node(&dev->pdev->dev);
65 set_dev_node(&dev->pdev->dev, node);
66 cpu_handle = dma_zalloc_coherent(&dev->pdev->dev, size,
67 dma_handle, GFP_KERNEL);
68 set_dev_node(&dev->pdev->dev, original_node);
69 mutex_unlock(&priv->alloc_mutex);
70 return cpu_handle;
71}
72
73int mlx5_buf_alloc_node(struct mlx5_core_dev *dev, int size,
74 struct mlx5_buf *buf, int node)
e126ba97
EC
75{
76 dma_addr_t t;
77
78 buf->size = size;
64ffaa21
AV
79 buf->npages = 1;
80 buf->page_shift = (u8)get_order(size) + PAGE_SHIFT;
311c7c71
SM
81 buf->direct.buf = mlx5_dma_zalloc_coherent_node(dev, size,
82 &t, node);
64ffaa21
AV
83 if (!buf->direct.buf)
84 return -ENOMEM;
e126ba97 85
64ffaa21 86 buf->direct.map = t;
e126ba97 87
64ffaa21
AV
88 while (t & ((1 << buf->page_shift) - 1)) {
89 --buf->page_shift;
90 buf->npages *= 2;
91 }
e126ba97 92
64ffaa21 93 return 0;
e126ba97 94}
311c7c71
SM
95
96int mlx5_buf_alloc(struct mlx5_core_dev *dev, int size, struct mlx5_buf *buf)
97{
98 return mlx5_buf_alloc_node(dev, size, buf, dev->priv.numa_node);
99}
e126ba97
EC
100EXPORT_SYMBOL_GPL(mlx5_buf_alloc);
101
102void mlx5_buf_free(struct mlx5_core_dev *dev, struct mlx5_buf *buf)
103{
64ffaa21
AV
104 dma_free_coherent(&dev->pdev->dev, buf->size, buf->direct.buf,
105 buf->direct.map);
e126ba97
EC
106}
107EXPORT_SYMBOL_GPL(mlx5_buf_free);
108
1c1b5228
TT
109int mlx5_frag_buf_alloc_node(struct mlx5_core_dev *dev, int size,
110 struct mlx5_frag_buf *buf, int node)
111{
112 int i;
113
114 buf->size = size;
115 buf->npages = 1 << get_order(size);
116 buf->page_shift = PAGE_SHIFT;
117 buf->frags = kcalloc(buf->npages, sizeof(struct mlx5_buf_list),
118 GFP_KERNEL);
119 if (!buf->frags)
120 goto err_out;
121
122 for (i = 0; i < buf->npages; i++) {
123 struct mlx5_buf_list *frag = &buf->frags[i];
124 int frag_sz = min_t(int, size, PAGE_SIZE);
125
126 frag->buf = mlx5_dma_zalloc_coherent_node(dev, frag_sz,
127 &frag->map, node);
128 if (!frag->buf)
129 goto err_free_buf;
130 if (frag->map & ((1 << buf->page_shift) - 1)) {
131 dma_free_coherent(&dev->pdev->dev, frag_sz,
132 buf->frags[i].buf, buf->frags[i].map);
9afd8952
AB
133 mlx5_core_warn(dev, "unexpected map alignment: %pad, page_shift=%d\n",
134 &frag->map, buf->page_shift);
1c1b5228
TT
135 goto err_free_buf;
136 }
137 size -= frag_sz;
138 }
139
140 return 0;
141
142err_free_buf:
143 while (i--)
144 dma_free_coherent(&dev->pdev->dev, PAGE_SIZE, buf->frags[i].buf,
145 buf->frags[i].map);
146 kfree(buf->frags);
147err_out:
148 return -ENOMEM;
149}
150
151void mlx5_frag_buf_free(struct mlx5_core_dev *dev, struct mlx5_frag_buf *buf)
152{
153 int size = buf->size;
154 int i;
155
156 for (i = 0; i < buf->npages; i++) {
157 int frag_sz = min_t(int, size, PAGE_SIZE);
158
159 dma_free_coherent(&dev->pdev->dev, frag_sz, buf->frags[i].buf,
160 buf->frags[i].map);
161 size -= frag_sz;
162 }
163 kfree(buf->frags);
164}
165
311c7c71
SM
166static struct mlx5_db_pgdir *mlx5_alloc_db_pgdir(struct mlx5_core_dev *dev,
167 int node)
e126ba97 168{
b47bd6ea 169 u32 db_per_page = PAGE_SIZE / cache_line_size();
e126ba97
EC
170 struct mlx5_db_pgdir *pgdir;
171
172 pgdir = kzalloc(sizeof(*pgdir), GFP_KERNEL);
173 if (!pgdir)
174 return NULL;
175
b47bd6ea
DJ
176 pgdir->bitmap = kcalloc(BITS_TO_LONGS(db_per_page),
177 sizeof(unsigned long),
178 GFP_KERNEL);
179
180 if (!pgdir->bitmap) {
181 kfree(pgdir);
182 return NULL;
183 }
184
185 bitmap_fill(pgdir->bitmap, db_per_page);
311c7c71
SM
186
187 pgdir->db_page = mlx5_dma_zalloc_coherent_node(dev, PAGE_SIZE,
188 &pgdir->db_dma, node);
e126ba97 189 if (!pgdir->db_page) {
b47bd6ea 190 kfree(pgdir->bitmap);
e126ba97
EC
191 kfree(pgdir);
192 return NULL;
193 }
194
195 return pgdir;
196}
197
198static int mlx5_alloc_db_from_pgdir(struct mlx5_db_pgdir *pgdir,
199 struct mlx5_db *db)
200{
b47bd6ea 201 u32 db_per_page = PAGE_SIZE / cache_line_size();
e126ba97
EC
202 int offset;
203 int i;
204
b47bd6ea
DJ
205 i = find_first_bit(pgdir->bitmap, db_per_page);
206 if (i >= db_per_page)
e126ba97
EC
207 return -ENOMEM;
208
209 __clear_bit(i, pgdir->bitmap);
210
211 db->u.pgdir = pgdir;
212 db->index = i;
b47bd6ea 213 offset = db->index * cache_line_size();
e126ba97
EC
214 db->db = pgdir->db_page + offset / sizeof(*pgdir->db_page);
215 db->dma = pgdir->db_dma + offset;
216
b812b544
SM
217 db->db[0] = 0;
218 db->db[1] = 0;
219
e126ba97
EC
220 return 0;
221}
222
311c7c71 223int mlx5_db_alloc_node(struct mlx5_core_dev *dev, struct mlx5_db *db, int node)
e126ba97
EC
224{
225 struct mlx5_db_pgdir *pgdir;
226 int ret = 0;
227
228 mutex_lock(&dev->priv.pgdir_mutex);
229
230 list_for_each_entry(pgdir, &dev->priv.pgdir_list, list)
231 if (!mlx5_alloc_db_from_pgdir(pgdir, db))
232 goto out;
233
311c7c71 234 pgdir = mlx5_alloc_db_pgdir(dev, node);
e126ba97
EC
235 if (!pgdir) {
236 ret = -ENOMEM;
237 goto out;
238 }
239
240 list_add(&pgdir->list, &dev->priv.pgdir_list);
241
242 /* This should never fail -- we just allocated an empty page: */
243 WARN_ON(mlx5_alloc_db_from_pgdir(pgdir, db));
244
245out:
246 mutex_unlock(&dev->priv.pgdir_mutex);
247
248 return ret;
249}
311c7c71
SM
250EXPORT_SYMBOL_GPL(mlx5_db_alloc_node);
251
252int mlx5_db_alloc(struct mlx5_core_dev *dev, struct mlx5_db *db)
253{
254 return mlx5_db_alloc_node(dev, db, dev->priv.numa_node);
255}
e126ba97
EC
256EXPORT_SYMBOL_GPL(mlx5_db_alloc);
257
258void mlx5_db_free(struct mlx5_core_dev *dev, struct mlx5_db *db)
259{
b47bd6ea 260 u32 db_per_page = PAGE_SIZE / cache_line_size();
e126ba97
EC
261 mutex_lock(&dev->priv.pgdir_mutex);
262
263 __set_bit(db->index, db->u.pgdir->bitmap);
264
b47bd6ea 265 if (bitmap_full(db->u.pgdir->bitmap, db_per_page)) {
e126ba97
EC
266 dma_free_coherent(&(dev->pdev->dev), PAGE_SIZE,
267 db->u.pgdir->db_page, db->u.pgdir->db_dma);
268 list_del(&db->u.pgdir->list);
b47bd6ea 269 kfree(db->u.pgdir->bitmap);
e126ba97
EC
270 kfree(db->u.pgdir);
271 }
272
273 mutex_unlock(&dev->priv.pgdir_mutex);
274}
275EXPORT_SYMBOL_GPL(mlx5_db_free);
276
e126ba97
EC
277void mlx5_fill_page_array(struct mlx5_buf *buf, __be64 *pas)
278{
279 u64 addr;
280 int i;
281
282 for (i = 0; i < buf->npages; i++) {
64ffaa21 283 addr = buf->direct.map + (i << buf->page_shift);
e126ba97
EC
284
285 pas[i] = cpu_to_be64(addr);
286 }
287}
288EXPORT_SYMBOL_GPL(mlx5_fill_page_array);
1c1b5228
TT
289
290void mlx5_fill_page_frag_array(struct mlx5_frag_buf *buf, __be64 *pas)
291{
292 int i;
293
294 for (i = 0; i < buf->npages; i++)
295 pas[i] = cpu_to_be64(buf->frags[i].map);
296}
297EXPORT_SYMBOL_GPL(mlx5_fill_page_frag_array);