Linux-libre 3.18.13-gnu
[librecmc/linux-libre.git] / drivers / net / ethernet / mellanox / mlx5 / core / uar.c
1 /*
2  * Copyright (c) 2013, Mellanox Technologies inc.  All rights reserved.
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/kernel.h>
34 #include <linux/module.h>
35 #include <linux/mlx5/driver.h>
36 #include <linux/mlx5/cmd.h>
37 #include "mlx5_core.h"
38
39 enum {
40         NUM_DRIVER_UARS         = 4,
41         NUM_LOW_LAT_UUARS       = 4,
42 };
43
44
45 struct mlx5_alloc_uar_mbox_in {
46         struct mlx5_inbox_hdr   hdr;
47         u8                      rsvd[8];
48 };
49
50 struct mlx5_alloc_uar_mbox_out {
51         struct mlx5_outbox_hdr  hdr;
52         __be32                  uarn;
53         u8                      rsvd[4];
54 };
55
56 struct mlx5_free_uar_mbox_in {
57         struct mlx5_inbox_hdr   hdr;
58         __be32                  uarn;
59         u8                      rsvd[4];
60 };
61
62 struct mlx5_free_uar_mbox_out {
63         struct mlx5_outbox_hdr  hdr;
64         u8                      rsvd[8];
65 };
66
67 int mlx5_cmd_alloc_uar(struct mlx5_core_dev *dev, u32 *uarn)
68 {
69         struct mlx5_alloc_uar_mbox_in   in;
70         struct mlx5_alloc_uar_mbox_out  out;
71         int err;
72
73         memset(&in, 0, sizeof(in));
74         memset(&out, 0, sizeof(out));
75         in.hdr.opcode = cpu_to_be16(MLX5_CMD_OP_ALLOC_UAR);
76         err = mlx5_cmd_exec(dev, &in, sizeof(in), &out, sizeof(out));
77         if (err)
78                 goto ex;
79
80         if (out.hdr.status) {
81                 err = mlx5_cmd_status_to_err(&out.hdr);
82                 goto ex;
83         }
84
85         *uarn = be32_to_cpu(out.uarn) & 0xffffff;
86
87 ex:
88         return err;
89 }
90 EXPORT_SYMBOL(mlx5_cmd_alloc_uar);
91
92 int mlx5_cmd_free_uar(struct mlx5_core_dev *dev, u32 uarn)
93 {
94         struct mlx5_free_uar_mbox_in    in;
95         struct mlx5_free_uar_mbox_out   out;
96         int err;
97
98         memset(&in, 0, sizeof(in));
99         in.hdr.opcode = cpu_to_be16(MLX5_CMD_OP_DEALLOC_UAR);
100         in.uarn = cpu_to_be32(uarn);
101         err = mlx5_cmd_exec(dev, &in, sizeof(in), &out, sizeof(out));
102         if (err)
103                 goto ex;
104
105         if (out.hdr.status)
106                 err = mlx5_cmd_status_to_err(&out.hdr);
107
108 ex:
109         return err;
110 }
111 EXPORT_SYMBOL(mlx5_cmd_free_uar);
112
113 static int need_uuar_lock(int uuarn)
114 {
115         int tot_uuars = NUM_DRIVER_UARS * MLX5_BF_REGS_PER_PAGE;
116
117         if (uuarn == 0 || tot_uuars - NUM_LOW_LAT_UUARS)
118                 return 0;
119
120         return 1;
121 }
122
123 int mlx5_alloc_uuars(struct mlx5_core_dev *dev, struct mlx5_uuar_info *uuari)
124 {
125         int tot_uuars = NUM_DRIVER_UARS * MLX5_BF_REGS_PER_PAGE;
126         struct mlx5_bf *bf;
127         phys_addr_t addr;
128         int err;
129         int i;
130
131         uuari->num_uars = NUM_DRIVER_UARS;
132         uuari->num_low_latency_uuars = NUM_LOW_LAT_UUARS;
133
134         mutex_init(&uuari->lock);
135         uuari->uars = kcalloc(uuari->num_uars, sizeof(*uuari->uars), GFP_KERNEL);
136         if (!uuari->uars)
137                 return -ENOMEM;
138
139         uuari->bfs = kcalloc(tot_uuars, sizeof(*uuari->bfs), GFP_KERNEL);
140         if (!uuari->bfs) {
141                 err = -ENOMEM;
142                 goto out_uars;
143         }
144
145         uuari->bitmap = kcalloc(BITS_TO_LONGS(tot_uuars), sizeof(*uuari->bitmap),
146                                 GFP_KERNEL);
147         if (!uuari->bitmap) {
148                 err = -ENOMEM;
149                 goto out_bfs;
150         }
151
152         uuari->count = kcalloc(tot_uuars, sizeof(*uuari->count), GFP_KERNEL);
153         if (!uuari->count) {
154                 err = -ENOMEM;
155                 goto out_bitmap;
156         }
157
158         for (i = 0; i < uuari->num_uars; i++) {
159                 err = mlx5_cmd_alloc_uar(dev, &uuari->uars[i].index);
160                 if (err)
161                         goto out_count;
162
163                 addr = dev->iseg_base + ((phys_addr_t)(uuari->uars[i].index) << PAGE_SHIFT);
164                 uuari->uars[i].map = ioremap(addr, PAGE_SIZE);
165                 if (!uuari->uars[i].map) {
166                         mlx5_cmd_free_uar(dev, uuari->uars[i].index);
167                         err = -ENOMEM;
168                         goto out_count;
169                 }
170                 mlx5_core_dbg(dev, "allocated uar index 0x%x, mmaped at %p\n",
171                               uuari->uars[i].index, uuari->uars[i].map);
172         }
173
174         for (i = 0; i < tot_uuars; i++) {
175                 bf = &uuari->bfs[i];
176
177                 bf->buf_size = dev->caps.gen.bf_reg_size / 2;
178                 bf->uar = &uuari->uars[i / MLX5_BF_REGS_PER_PAGE];
179                 bf->regreg = uuari->uars[i / MLX5_BF_REGS_PER_PAGE].map;
180                 bf->reg = NULL; /* Add WC support */
181                 bf->offset = (i % MLX5_BF_REGS_PER_PAGE) * dev->caps.gen.bf_reg_size +
182                         MLX5_BF_OFFSET;
183                 bf->need_lock = need_uuar_lock(i);
184                 spin_lock_init(&bf->lock);
185                 spin_lock_init(&bf->lock32);
186                 bf->uuarn = i;
187         }
188
189         return 0;
190
191 out_count:
192         for (i--; i >= 0; i--) {
193                 iounmap(uuari->uars[i].map);
194                 mlx5_cmd_free_uar(dev, uuari->uars[i].index);
195         }
196         kfree(uuari->count);
197
198 out_bitmap:
199         kfree(uuari->bitmap);
200
201 out_bfs:
202         kfree(uuari->bfs);
203
204 out_uars:
205         kfree(uuari->uars);
206         return err;
207 }
208
209 int mlx5_free_uuars(struct mlx5_core_dev *dev, struct mlx5_uuar_info *uuari)
210 {
211         int i = uuari->num_uars;
212
213         for (i--; i >= 0; i--) {
214                 iounmap(uuari->uars[i].map);
215                 mlx5_cmd_free_uar(dev, uuari->uars[i].index);
216         }
217
218         kfree(uuari->count);
219         kfree(uuari->bitmap);
220         kfree(uuari->bfs);
221         kfree(uuari->uars);
222
223         return 0;
224 }