IB/ipoib: Change number of TX wqe to 64
[linux-block.git] / drivers / infiniband / hw / hns / hns_roce_alloc.c
CommitLineData
9a443537 1/*
2 * Copyright (c) 2016 Hisilicon Limited.
3 * Copyright (c) 2007, 2008 Mellanox Technologies. 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
34#include <linux/platform_device.h>
e89bf462 35#include <linux/vmalloc.h>
9a443537 36#include "hns_roce_device.h"
37
38int hns_roce_bitmap_alloc(struct hns_roce_bitmap *bitmap, unsigned long *obj)
39{
40 int ret = 0;
41
42 spin_lock(&bitmap->lock);
43 *obj = find_next_zero_bit(bitmap->table, bitmap->max, bitmap->last);
44 if (*obj >= bitmap->max) {
45 bitmap->top = (bitmap->top + bitmap->max + bitmap->reserved_top)
46 & bitmap->mask;
47 *obj = find_first_zero_bit(bitmap->table, bitmap->max);
48 }
49
50 if (*obj < bitmap->max) {
51 set_bit(*obj, bitmap->table);
52 bitmap->last = (*obj + 1);
53 if (bitmap->last == bitmap->max)
54 bitmap->last = 0;
55 *obj |= bitmap->top;
56 } else {
57 ret = -1;
58 }
59
60 spin_unlock(&bitmap->lock);
61
62 return ret;
63}
64
5e6ff78a
WHX
65void hns_roce_bitmap_free(struct hns_roce_bitmap *bitmap, unsigned long obj,
66 int rr)
9a443537 67{
5e6ff78a 68 hns_roce_bitmap_free_range(bitmap, obj, 1, rr);
9a443537 69}
08805fdb 70EXPORT_SYMBOL_GPL(hns_roce_bitmap_free);
9a443537 71
72int hns_roce_bitmap_alloc_range(struct hns_roce_bitmap *bitmap, int cnt,
73 int align, unsigned long *obj)
74{
75 int ret = 0;
76 int i;
77
78 if (likely(cnt == 1 && align == 1))
79 return hns_roce_bitmap_alloc(bitmap, obj);
80
81 spin_lock(&bitmap->lock);
82
83 *obj = bitmap_find_next_zero_area(bitmap->table, bitmap->max,
84 bitmap->last, cnt, align - 1);
85 if (*obj >= bitmap->max) {
86 bitmap->top = (bitmap->top + bitmap->max + bitmap->reserved_top)
87 & bitmap->mask;
88 *obj = bitmap_find_next_zero_area(bitmap->table, bitmap->max, 0,
89 cnt, align - 1);
90 }
91
92 if (*obj < bitmap->max) {
93 for (i = 0; i < cnt; i++)
94 set_bit(*obj + i, bitmap->table);
95
96 if (*obj == bitmap->last) {
97 bitmap->last = (*obj + cnt);
98 if (bitmap->last >= bitmap->max)
99 bitmap->last = 0;
100 }
101 *obj |= bitmap->top;
102 } else {
103 ret = -1;
104 }
105
106 spin_unlock(&bitmap->lock);
107
108 return ret;
109}
110
111void hns_roce_bitmap_free_range(struct hns_roce_bitmap *bitmap,
5e6ff78a
WHX
112 unsigned long obj, int cnt,
113 int rr)
9a443537 114{
115 int i;
116
117 obj &= bitmap->max + bitmap->reserved_top - 1;
118
119 spin_lock(&bitmap->lock);
120 for (i = 0; i < cnt; i++)
121 clear_bit(obj + i, bitmap->table);
122
5e6ff78a
WHX
123 if (!rr)
124 bitmap->last = min(bitmap->last, obj);
9a443537 125 bitmap->top = (bitmap->top + bitmap->max + bitmap->reserved_top)
126 & bitmap->mask;
127 spin_unlock(&bitmap->lock);
128}
129
130int hns_roce_bitmap_init(struct hns_roce_bitmap *bitmap, u32 num, u32 mask,
131 u32 reserved_bot, u32 reserved_top)
132{
133 u32 i;
134
135 if (num != roundup_pow_of_two(num))
136 return -EINVAL;
137
138 bitmap->last = 0;
139 bitmap->top = 0;
140 bitmap->max = num - reserved_top;
141 bitmap->mask = mask;
142 bitmap->reserved_top = reserved_top;
143 spin_lock_init(&bitmap->lock);
144 bitmap->table = kcalloc(BITS_TO_LONGS(bitmap->max), sizeof(long),
145 GFP_KERNEL);
146 if (!bitmap->table)
147 return -ENOMEM;
148
149 for (i = 0; i < reserved_bot; ++i)
150 set_bit(i, bitmap->table);
151
152 return 0;
153}
154
155void hns_roce_bitmap_cleanup(struct hns_roce_bitmap *bitmap)
156{
157 kfree(bitmap->table);
158}
159
160void hns_roce_buf_free(struct hns_roce_dev *hr_dev, u32 size,
161 struct hns_roce_buf *buf)
162{
163 int i;
13ca970e 164 struct device *dev = hr_dev->dev;
9a443537 165 u32 bits_per_long = BITS_PER_LONG;
166
167 if (buf->nbufs == 1) {
168 dma_free_coherent(dev, size, buf->direct.buf, buf->direct.map);
169 } else {
170 if (bits_per_long == 64)
171 vunmap(buf->direct.buf);
172
173 for (i = 0; i < buf->nbufs; ++i)
174 if (buf->page_list[i].buf)
13ca970e 175 dma_free_coherent(dev, PAGE_SIZE,
9a443537 176 buf->page_list[i].buf,
177 buf->page_list[i].map);
178 kfree(buf->page_list);
179 }
180}
08805fdb 181EXPORT_SYMBOL_GPL(hns_roce_buf_free);
9a443537 182
183int hns_roce_buf_alloc(struct hns_roce_dev *hr_dev, u32 size, u32 max_direct,
184 struct hns_roce_buf *buf)
185{
186 int i = 0;
187 dma_addr_t t;
188 struct page **pages;
13ca970e 189 struct device *dev = hr_dev->dev;
9a443537 190 u32 bits_per_long = BITS_PER_LONG;
191
192 /* SQ/RQ buf lease than one page, SQ + RQ = 8K */
193 if (size <= max_direct) {
194 buf->nbufs = 1;
195 /* Npages calculated by page_size */
196 buf->npages = 1 << get_order(size);
197 buf->page_shift = PAGE_SHIFT;
198 /* MTT PA must be recorded in 4k alignment, t is 4k aligned */
199 buf->direct.buf = dma_alloc_coherent(dev, size, &t, GFP_KERNEL);
200 if (!buf->direct.buf)
201 return -ENOMEM;
202
203 buf->direct.map = t;
204
205 while (t & ((1 << buf->page_shift) - 1)) {
206 --buf->page_shift;
207 buf->npages *= 2;
208 }
209
210 memset(buf->direct.buf, 0, size);
211 } else {
212 buf->nbufs = (size + PAGE_SIZE - 1) / PAGE_SIZE;
213 buf->npages = buf->nbufs;
214 buf->page_shift = PAGE_SHIFT;
215 buf->page_list = kcalloc(buf->nbufs, sizeof(*buf->page_list),
216 GFP_KERNEL);
217
218 if (!buf->page_list)
219 return -ENOMEM;
220
221 for (i = 0; i < buf->nbufs; ++i) {
222 buf->page_list[i].buf = dma_alloc_coherent(dev,
223 PAGE_SIZE, &t,
224 GFP_KERNEL);
225
226 if (!buf->page_list[i].buf)
227 goto err_free;
228
229 buf->page_list[i].map = t;
230 memset(buf->page_list[i].buf, 0, PAGE_SIZE);
231 }
232 if (bits_per_long == 64) {
233 pages = kmalloc_array(buf->nbufs, sizeof(*pages),
234 GFP_KERNEL);
235 if (!pages)
236 goto err_free;
237
238 for (i = 0; i < buf->nbufs; ++i)
239 pages[i] = virt_to_page(buf->page_list[i].buf);
240
241 buf->direct.buf = vmap(pages, buf->nbufs, VM_MAP,
242 PAGE_KERNEL);
243 kfree(pages);
244 if (!buf->direct.buf)
245 goto err_free;
246 }
247 }
248
249 return 0;
250
251err_free:
252 hns_roce_buf_free(hr_dev, size, buf);
253 return -ENOMEM;
254}
255
256void hns_roce_cleanup_bitmap(struct hns_roce_dev *hr_dev)
257{
258 hns_roce_cleanup_qp_table(hr_dev);
259 hns_roce_cleanup_cq_table(hr_dev);
260 hns_roce_cleanup_mr_table(hr_dev);
261 hns_roce_cleanup_pd_table(hr_dev);
262 hns_roce_cleanup_uar_table(hr_dev);
263}