Merge branch 'for-next' of git://git.infradead.org/users/sameo/mfd-2.6
[pandora-kernel.git] / drivers / net / ethernet / mellanox / mlx4 / pd.c
1 /*
2  * Copyright (c) 2006, 2007 Cisco Systems, Inc.  All rights reserved.
3  * Copyright (c) 2005 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/errno.h>
35 #include <linux/io-mapping.h>
36
37 #include <asm/page.h>
38
39 #include "mlx4.h"
40 #include "icm.h"
41
42 enum {
43         MLX4_NUM_RESERVED_UARS = 8
44 };
45
46 int mlx4_pd_alloc(struct mlx4_dev *dev, u32 *pdn)
47 {
48         struct mlx4_priv *priv = mlx4_priv(dev);
49
50         *pdn = mlx4_bitmap_alloc(&priv->pd_bitmap);
51         if (*pdn == -1)
52                 return -ENOMEM;
53
54         return 0;
55 }
56 EXPORT_SYMBOL_GPL(mlx4_pd_alloc);
57
58 void mlx4_pd_free(struct mlx4_dev *dev, u32 pdn)
59 {
60         mlx4_bitmap_free(&mlx4_priv(dev)->pd_bitmap, pdn);
61 }
62 EXPORT_SYMBOL_GPL(mlx4_pd_free);
63
64 int mlx4_xrcd_alloc(struct mlx4_dev *dev, u32 *xrcdn)
65 {
66         struct mlx4_priv *priv = mlx4_priv(dev);
67
68         *xrcdn = mlx4_bitmap_alloc(&priv->xrcd_bitmap);
69         if (*xrcdn == -1)
70                 return -ENOMEM;
71
72         return 0;
73 }
74 EXPORT_SYMBOL_GPL(mlx4_xrcd_alloc);
75
76 void mlx4_xrcd_free(struct mlx4_dev *dev, u32 xrcdn)
77 {
78         mlx4_bitmap_free(&mlx4_priv(dev)->xrcd_bitmap, xrcdn);
79 }
80 EXPORT_SYMBOL_GPL(mlx4_xrcd_free);
81
82 int mlx4_init_pd_table(struct mlx4_dev *dev)
83 {
84         struct mlx4_priv *priv = mlx4_priv(dev);
85
86         return mlx4_bitmap_init(&priv->pd_bitmap, dev->caps.num_pds,
87                                 (1 << 24) - 1, dev->caps.reserved_pds, 0);
88 }
89
90 void mlx4_cleanup_pd_table(struct mlx4_dev *dev)
91 {
92         mlx4_bitmap_cleanup(&mlx4_priv(dev)->pd_bitmap);
93 }
94
95 int mlx4_init_xrcd_table(struct mlx4_dev *dev)
96 {
97         struct mlx4_priv *priv = mlx4_priv(dev);
98
99         return mlx4_bitmap_init(&priv->xrcd_bitmap, (1 << 16),
100                                 (1 << 16) - 1, dev->caps.reserved_xrcds + 1, 0);
101 }
102
103 void mlx4_cleanup_xrcd_table(struct mlx4_dev *dev)
104 {
105         mlx4_bitmap_cleanup(&mlx4_priv(dev)->xrcd_bitmap);
106 }
107
108 int mlx4_uar_alloc(struct mlx4_dev *dev, struct mlx4_uar *uar)
109 {
110         uar->index = mlx4_bitmap_alloc(&mlx4_priv(dev)->uar_table.bitmap);
111         if (uar->index == -1)
112                 return -ENOMEM;
113
114         uar->pfn = (pci_resource_start(dev->pdev, 2) >> PAGE_SHIFT) + uar->index;
115         uar->map = NULL;
116
117         return 0;
118 }
119 EXPORT_SYMBOL_GPL(mlx4_uar_alloc);
120
121 void mlx4_uar_free(struct mlx4_dev *dev, struct mlx4_uar *uar)
122 {
123         mlx4_bitmap_free(&mlx4_priv(dev)->uar_table.bitmap, uar->index);
124 }
125 EXPORT_SYMBOL_GPL(mlx4_uar_free);
126
127 int mlx4_bf_alloc(struct mlx4_dev *dev, struct mlx4_bf *bf)
128 {
129         struct mlx4_priv *priv = mlx4_priv(dev);
130         struct mlx4_uar *uar;
131         int err = 0;
132         int idx;
133
134         if (!priv->bf_mapping)
135                 return -ENOMEM;
136
137         mutex_lock(&priv->bf_mutex);
138         if (!list_empty(&priv->bf_list))
139                 uar = list_entry(priv->bf_list.next, struct mlx4_uar, bf_list);
140         else {
141                 if (mlx4_bitmap_avail(&priv->uar_table.bitmap) < MLX4_NUM_RESERVED_UARS) {
142                         err = -ENOMEM;
143                         goto out;
144                 }
145                 uar = kmalloc(sizeof *uar, GFP_KERNEL);
146                 if (!uar) {
147                         err = -ENOMEM;
148                         goto out;
149                 }
150                 err = mlx4_uar_alloc(dev, uar);
151                 if (err)
152                         goto free_kmalloc;
153
154                 uar->map = ioremap(uar->pfn << PAGE_SHIFT, PAGE_SIZE);
155                 if (!uar->map) {
156                         err = -ENOMEM;
157                         goto free_uar;
158                 }
159
160                 uar->bf_map = io_mapping_map_wc(priv->bf_mapping, uar->index << PAGE_SHIFT);
161                 if (!uar->bf_map) {
162                         err = -ENOMEM;
163                         goto unamp_uar;
164                 }
165                 uar->free_bf_bmap = 0;
166                 list_add(&uar->bf_list, &priv->bf_list);
167         }
168
169         bf->uar = uar;
170         idx = ffz(uar->free_bf_bmap);
171         uar->free_bf_bmap |= 1 << idx;
172         bf->uar = uar;
173         bf->offset = 0;
174         bf->buf_size = dev->caps.bf_reg_size / 2;
175         bf->reg = uar->bf_map + idx * dev->caps.bf_reg_size;
176         if (uar->free_bf_bmap == (1 << dev->caps.bf_regs_per_page) - 1)
177                 list_del_init(&uar->bf_list);
178
179         goto out;
180
181 unamp_uar:
182         bf->uar = NULL;
183         iounmap(uar->map);
184
185 free_uar:
186         mlx4_uar_free(dev, uar);
187
188 free_kmalloc:
189         kfree(uar);
190
191 out:
192         mutex_unlock(&priv->bf_mutex);
193         return err;
194 }
195 EXPORT_SYMBOL_GPL(mlx4_bf_alloc);
196
197 void mlx4_bf_free(struct mlx4_dev *dev, struct mlx4_bf *bf)
198 {
199         struct mlx4_priv *priv = mlx4_priv(dev);
200         int idx;
201
202         if (!bf->uar || !bf->uar->bf_map)
203                 return;
204
205         mutex_lock(&priv->bf_mutex);
206         idx = (bf->reg - bf->uar->bf_map) / dev->caps.bf_reg_size;
207         bf->uar->free_bf_bmap &= ~(1 << idx);
208         if (!bf->uar->free_bf_bmap) {
209                 if (!list_empty(&bf->uar->bf_list))
210                         list_del(&bf->uar->bf_list);
211
212                 io_mapping_unmap(bf->uar->bf_map);
213                 iounmap(bf->uar->map);
214                 mlx4_uar_free(dev, bf->uar);
215                 kfree(bf->uar);
216         } else if (list_empty(&bf->uar->bf_list))
217                 list_add(&bf->uar->bf_list, &priv->bf_list);
218
219         mutex_unlock(&priv->bf_mutex);
220 }
221 EXPORT_SYMBOL_GPL(mlx4_bf_free);
222
223 int mlx4_init_uar_table(struct mlx4_dev *dev)
224 {
225         if (dev->caps.num_uars <= 128) {
226                 mlx4_err(dev, "Only %d UAR pages (need more than 128)\n",
227                          dev->caps.num_uars);
228                 mlx4_err(dev, "Increase firmware log2_uar_bar_megabytes?\n");
229                 return -ENODEV;
230         }
231
232         return mlx4_bitmap_init(&mlx4_priv(dev)->uar_table.bitmap,
233                                 dev->caps.num_uars, dev->caps.num_uars - 1,
234                                 max(128, dev->caps.reserved_uars), 0);
235 }
236
237 void mlx4_cleanup_uar_table(struct mlx4_dev *dev)
238 {
239         mlx4_bitmap_cleanup(&mlx4_priv(dev)->uar_table.bitmap);
240 }