]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/ofed/drivers/net/mlx4/en_main.c
Merge wpa_supplicant/hostapd 2.4.
[FreeBSD/FreeBSD.git] / sys / ofed / drivers / net / mlx4 / en_main.c
1 /*
2  * Copyright (c) 2007, 2014 Mellanox Technologies. 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
34 #include <linux/module.h>
35 #include <linux/delay.h>
36 #include <linux/netdevice.h>
37 #include <linux/slab.h>
38
39 #include <linux/mlx4/driver.h>
40 #include <linux/mlx4/device.h>
41 #include <linux/mlx4/cmd.h>
42
43 #include "mlx4_en.h"
44
45 MODULE_AUTHOR("Liran Liss, Yevgeny Petrilin");
46 MODULE_DESCRIPTION("Mellanox ConnectX HCA Ethernet driver");
47 MODULE_LICENSE("Dual BSD/GPL");
48 #ifdef __linux__
49 MODULE_VERSION(DRV_VERSION " ("DRV_RELDATE")");
50 #endif
51
52 static const char mlx4_en_version[] =
53         DRV_NAME ": Mellanox ConnectX HCA Ethernet driver v"
54         DRV_VERSION " (" DRV_RELDATE ")\n";
55
56 #define MLX4_EN_PARM_INT(X, def_val, desc) \
57         static unsigned int X = def_val;\
58         module_param(X , uint, 0444); \
59         MODULE_PARM_DESC(X, desc);
60
61
62 /*
63  * Device scope module parameters
64  */
65
66 /* Enable RSS UDP traffic */
67 MLX4_EN_PARM_INT(udp_rss, 1,
68                  "Enable RSS for incoming UDP traffic");
69
70 /* Priority pausing */
71 MLX4_EN_PARM_INT(pfctx, 0, "Priority based Flow Control policy on TX[7:0]."
72                            " Per priority bit mask");
73 MLX4_EN_PARM_INT(pfcrx, 0, "Priority based Flow Control policy on RX[7:0]."
74                            " Per priority bit mask");
75
76 #define MAX_PFC_TX      0xff
77 #define MAX_PFC_RX      0xff
78
79
80 static int mlx4_en_get_profile(struct mlx4_en_dev *mdev)
81 {
82         struct mlx4_en_profile *params = &mdev->profile;
83         int i;
84
85         params->udp_rss = udp_rss;
86         params->num_tx_rings_p_up = min_t(int, mp_ncpus,
87                         MLX4_EN_MAX_TX_RING_P_UP);
88         if (params->udp_rss && !(mdev->dev->caps.flags
89                                         & MLX4_DEV_CAP_FLAG_UDP_RSS)) {
90                 mlx4_warn(mdev, "UDP RSS is not supported on this device.\n");
91                 params->udp_rss = 0;
92         }
93         for (i = 1; i <= MLX4_MAX_PORTS; i++) {
94                 params->prof[i].rx_pause = 1;
95                 params->prof[i].rx_ppp = pfcrx;
96                 params->prof[i].tx_pause = 1;
97                 params->prof[i].tx_ppp = pfctx;
98                 params->prof[i].tx_ring_size = MLX4_EN_DEF_TX_RING_SIZE;
99                 params->prof[i].rx_ring_size = MLX4_EN_DEF_RX_RING_SIZE;
100                 params->prof[i].tx_ring_num = params->num_tx_rings_p_up *
101                         MLX4_EN_NUM_UP;
102                 params->prof[i].rss_rings = 0;
103         }
104
105         return 0;
106 }
107
108 static void *mlx4_en_get_netdev(struct mlx4_dev *dev, void *ctx, u8 port)
109 {
110         struct mlx4_en_dev *endev = ctx;
111
112         return endev->pndev[port];
113 }
114
115 static void mlx4_en_event(struct mlx4_dev *dev, void *endev_ptr,
116                           enum mlx4_dev_event event, unsigned long port)
117 {
118         struct mlx4_en_dev *mdev = (struct mlx4_en_dev *) endev_ptr;
119         struct mlx4_en_priv *priv;
120
121         switch (event) {
122         case MLX4_DEV_EVENT_PORT_UP:
123         case MLX4_DEV_EVENT_PORT_DOWN:
124                 if (!mdev->pndev[port])
125                         return;
126                 priv = netdev_priv(mdev->pndev[port]);
127                 /* To prevent races, we poll the link state in a separate
128                   task rather than changing it here */
129                 priv->link_state = event;
130                 queue_work(mdev->workqueue, &priv->linkstate_task);
131                 break;
132
133         case MLX4_DEV_EVENT_CATASTROPHIC_ERROR:
134                 mlx4_err(mdev, "Internal error detected, restarting device\n");
135                 break;
136
137         case MLX4_DEV_EVENT_SLAVE_INIT:
138         case MLX4_DEV_EVENT_SLAVE_SHUTDOWN:
139                 break;
140         default:
141                 if (port < 1 || port > dev->caps.num_ports ||
142                     !mdev->pndev[port])
143                         return;
144                 mlx4_warn(mdev, "Unhandled event %d for port %d\n", event,
145                           (int) port);
146         }
147 }
148
149 static void mlx4_en_remove(struct mlx4_dev *dev, void *endev_ptr)
150 {
151         struct mlx4_en_dev *mdev = endev_ptr;
152         int i, ret;
153
154         mutex_lock(&mdev->state_lock);
155         mdev->device_up = false;
156         mutex_unlock(&mdev->state_lock);
157
158         mlx4_foreach_port(i, dev, MLX4_PORT_TYPE_ETH)
159                 if (mdev->pndev[i])
160                         mlx4_en_destroy_netdev(mdev->pndev[i]);
161
162         flush_workqueue(mdev->workqueue);
163         destroy_workqueue(mdev->workqueue);
164         ret = mlx4_mr_free(dev, &mdev->mr);
165         if (ret)
166                 mlx4_err(mdev, "Error deregistering MR. The system may have become unstable.");
167         iounmap(mdev->uar_map);
168         mlx4_uar_free(dev, &mdev->priv_uar);
169         mlx4_pd_free(dev, mdev->priv_pdn);
170         kfree(mdev);
171 }
172
173 static void *mlx4_en_add(struct mlx4_dev *dev)
174 {
175         struct mlx4_en_dev *mdev;
176         int i;
177         int err;
178
179         printk_once(KERN_INFO "%s", mlx4_en_version);
180
181         mdev = kzalloc(sizeof *mdev, GFP_KERNEL);
182         if (!mdev) {
183                 dev_err(&dev->pdev->dev, "Device struct alloc failed, "
184                         "aborting.\n");
185                 err = -ENOMEM;
186                 goto err_free_res;
187         }
188
189         if (mlx4_pd_alloc(dev, &mdev->priv_pdn))
190                 goto err_free_dev;
191
192         if (mlx4_uar_alloc(dev, &mdev->priv_uar))
193                 goto err_pd;
194
195         mdev->uar_map = ioremap((phys_addr_t) mdev->priv_uar.pfn << PAGE_SHIFT,
196                                 PAGE_SIZE);
197         if (!mdev->uar_map)
198                 goto err_uar;
199         spin_lock_init(&mdev->uar_lock);
200
201         mdev->dev = dev;
202         mdev->dma_device = &(dev->pdev->dev);
203         mdev->pdev = dev->pdev;
204         mdev->device_up = false;
205
206         mdev->LSO_support = !!(dev->caps.flags & (1 << 15));
207         if (!mdev->LSO_support)
208                 mlx4_warn(mdev, "LSO not supported, please upgrade to later "
209                                 "FW version to enable LSO\n");
210
211         if (mlx4_mr_alloc(mdev->dev, mdev->priv_pdn, 0, ~0ull,
212                          MLX4_PERM_LOCAL_WRITE |  MLX4_PERM_LOCAL_READ,
213                          0, 0, &mdev->mr)) {
214                 mlx4_err(mdev, "Failed allocating memory region\n");
215                 goto err_map;
216         }
217         if (mlx4_mr_enable(mdev->dev, &mdev->mr)) {
218                 mlx4_err(mdev, "Failed enabling memory region\n");
219                 goto err_mr;
220         }
221
222         /* Build device profile according to supplied module parameters */
223         err = mlx4_en_get_profile(mdev);
224         if (err) {
225                 mlx4_err(mdev, "Bad module parameters, aborting.\n");
226                 goto err_mr;
227         }
228
229         /* Configure which ports to start according to module parameters */
230         mdev->port_cnt = 0;
231         mlx4_foreach_port(i, dev, MLX4_PORT_TYPE_ETH)
232                 mdev->port_cnt++;
233
234
235         mlx4_foreach_port(i, dev, MLX4_PORT_TYPE_ETH) {
236                 if (!dev->caps.comp_pool) {
237                         mdev->profile.prof[i].rx_ring_num =
238                                 rounddown_pow_of_two(max_t(int, MIN_RX_RINGS,
239                                                            min_t(int,
240                                                                  dev->caps.num_comp_vectors,
241                                                                  DEF_RX_RINGS)));
242                 } else {
243                         mdev->profile.prof[i].rx_ring_num = rounddown_pow_of_two(
244                                 min_t(int, dev->caps.comp_pool /
245                                       dev->caps.num_ports, MAX_MSIX_P_PORT));
246                 }
247         }
248
249         /* Create our own workqueue for reset/multicast tasks
250          * Note: we cannot use the shared workqueue because of deadlocks caused
251          *       by the rtnl lock */
252         mdev->workqueue = create_singlethread_workqueue("mlx4_en");
253         if (!mdev->workqueue) {
254                 err = -ENOMEM;
255                 goto err_mr;
256         }
257
258         /* At this stage all non-port specific tasks are complete:
259          * mark the card state as up */
260         mutex_init(&mdev->state_lock);
261         mdev->device_up = true;
262
263         /* Setup ports */
264
265         /* Create a netdev for each port */
266         mlx4_foreach_port(i, dev, MLX4_PORT_TYPE_ETH) {
267                 mlx4_info(mdev, "Activating port:%d\n", i);
268                 if (mlx4_en_init_netdev(mdev, i, &mdev->profile.prof[i]))
269                         mdev->pndev[i] = NULL;
270         }
271
272         return mdev;
273
274 err_mr:
275         err = mlx4_mr_free(dev, &mdev->mr);
276         if (err)
277                 mlx4_err(mdev, "Error deregistering MR. The system may have become unstable.");
278 err_map:
279         if (mdev->uar_map)
280                 iounmap(mdev->uar_map);
281 err_uar:
282         mlx4_uar_free(dev, &mdev->priv_uar);
283 err_pd:
284         mlx4_pd_free(dev, mdev->priv_pdn);
285 err_free_dev:
286         kfree(mdev);
287 err_free_res:
288         return NULL;
289 }
290
291 static struct mlx4_interface mlx4_en_interface = {
292         .add            = mlx4_en_add,
293         .remove         = mlx4_en_remove,
294         .event          = mlx4_en_event,
295         .get_dev        = mlx4_en_get_netdev,
296         .protocol       = MLX4_PROT_ETH,
297 };
298
299 static void mlx4_en_verify_params(void)
300 {
301         if (pfctx > MAX_PFC_TX) {
302                 pr_warn("mlx4_en: WARNING: illegal module parameter pfctx 0x%x - "
303                                 "should be in range 0-0x%x, will be changed to default (0)\n",
304                                 pfctx, MAX_PFC_TX);
305                 pfctx = 0;
306         }
307
308         if (pfcrx > MAX_PFC_RX) {
309                 pr_warn("mlx4_en: WARNING: illegal module parameter pfcrx 0x%x - "
310                                 "should be in range 0-0x%x, will be changed to default (0)\n",
311                                 pfcrx, MAX_PFC_RX);
312                 pfcrx = 0;
313         }
314 }
315
316
317 static int __init mlx4_en_init(void)
318 {
319         mlx4_en_verify_params();
320
321 #ifdef CONFIG_DEBUG_FS
322         int err = 0;
323         err = mlx4_en_register_debugfs();
324         if (err)
325                 pr_err(KERN_ERR "Failed to register debugfs\n");
326 #endif
327         return mlx4_register_interface(&mlx4_en_interface);
328 }
329
330 static void __exit mlx4_en_cleanup(void)
331 {
332         mlx4_unregister_interface(&mlx4_en_interface);
333 #ifdef CONFIG_DEBUG_FS
334         mlx4_en_unregister_debugfs();
335 #endif
336 }
337
338 module_init(mlx4_en_init);
339 module_exit(mlx4_en_cleanup);
340
341 static int
342 mlxen_evhand(module_t mod, int event, void *arg)
343 {
344         return (0);
345 }
346 static moduledata_t mlxen_mod = {
347         .name = "mlxen",
348         .evhand = mlxen_evhand,
349 };
350 DECLARE_MODULE(mlxen, mlxen_mod, SI_SUB_OFED_PREINIT, SI_ORDER_ANY);
351 MODULE_DEPEND(mlxen, mlx4, 1, 1, 1);
352 MODULE_DEPEND(mlxen, linuxapi, 1, 1, 1);