mlx5: Add driver for Mellanox Connect-IB adapters
[cascardo/linux.git] / drivers / net / ethernet / mellanox / mlx5 / core / main.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 <asm-generic/kmap_types.h>
34 #include <linux/module.h>
35 #include <linux/init.h>
36 #include <linux/errno.h>
37 #include <linux/pci.h>
38 #include <linux/dma-mapping.h>
39 #include <linux/slab.h>
40 #include <linux/io-mapping.h>
41 #include <linux/mlx5/driver.h>
42 #include <linux/mlx5/cq.h>
43 #include <linux/mlx5/qp.h>
44 #include <linux/mlx5/srq.h>
45 #include <linux/debugfs.h>
46 #include "mlx5_core.h"
47
48 #define DRIVER_NAME "mlx5_core"
49 #define DRIVER_VERSION "1.0"
50 #define DRIVER_RELDATE  "June 2013"
51
52 MODULE_AUTHOR("Eli Cohen <eli@mellanox.com>");
53 MODULE_DESCRIPTION("Mellanox ConnectX-IB HCA core library");
54 MODULE_LICENSE("Dual BSD/GPL");
55 MODULE_VERSION(DRIVER_VERSION);
56
57 int mlx5_core_debug_mask;
58 module_param_named(debug_mask, mlx5_core_debug_mask, int, 0644);
59 MODULE_PARM_DESC(debug_mask, "debug mask: 1 = dump cmd data, 2 = dump cmd exec time, 3 = both. Default=0");
60
61 struct workqueue_struct *mlx5_core_wq;
62
63 static int set_dma_caps(struct pci_dev *pdev)
64 {
65         int err;
66
67         err = pci_set_dma_mask(pdev, DMA_BIT_MASK(64));
68         if (err) {
69                 dev_warn(&pdev->dev, "Warning: couldn't set 64-bit PCI DMA mask.\n");
70                 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
71                 if (err) {
72                         dev_err(&pdev->dev, "Can't set PCI DMA mask, aborting.\n");
73                         return err;
74                 }
75         }
76
77         err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(64));
78         if (err) {
79                 dev_warn(&pdev->dev,
80                          "Warning: couldn't set 64-bit consistent PCI DMA mask.\n");
81                 err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32));
82                 if (err) {
83                         dev_err(&pdev->dev,
84                                 "Can't set consistent PCI DMA mask, aborting.\n");
85                         return err;
86                 }
87         }
88
89         dma_set_max_seg_size(&pdev->dev, 2u * 1024 * 1024 * 1024);
90         return err;
91 }
92
93 static int request_bar(struct pci_dev *pdev)
94 {
95         int err = 0;
96
97         if (!(pci_resource_flags(pdev, 0) & IORESOURCE_MEM)) {
98                 dev_err(&pdev->dev, "Missing registers BAR, aborting.\n");
99                 return -ENODEV;
100         }
101
102         err = pci_request_regions(pdev, DRIVER_NAME);
103         if (err)
104                 dev_err(&pdev->dev, "Couldn't get PCI resources, aborting\n");
105
106         return err;
107 }
108
109 static void release_bar(struct pci_dev *pdev)
110 {
111         pci_release_regions(pdev);
112 }
113
114 static int mlx5_enable_msix(struct mlx5_core_dev *dev)
115 {
116         struct mlx5_eq_table *table = &dev->priv.eq_table;
117         int num_eqs = 1 << dev->caps.log_max_eq;
118         int nvec;
119         int err;
120         int i;
121
122         nvec = dev->caps.num_ports * num_online_cpus() + MLX5_EQ_VEC_COMP_BASE;
123         nvec = min_t(int, nvec, num_eqs);
124         if (nvec <= MLX5_EQ_VEC_COMP_BASE)
125                 return -ENOMEM;
126
127         table->msix_arr = kzalloc(nvec * sizeof(*table->msix_arr), GFP_KERNEL);
128         if (!table->msix_arr)
129                 return -ENOMEM;
130
131         for (i = 0; i < nvec; i++)
132                 table->msix_arr[i].entry = i;
133
134 retry:
135         table->num_comp_vectors = nvec - MLX5_EQ_VEC_COMP_BASE;
136         err = pci_enable_msix(dev->pdev, table->msix_arr, nvec);
137         if (err <= 0) {
138                 return err;
139         } else if (err > 2) {
140                 nvec = err;
141                 goto retry;
142         }
143
144         mlx5_core_dbg(dev, "received %d MSI vectors out of %d requested\n", err, nvec);
145
146         return 0;
147 }
148
149 static void mlx5_disable_msix(struct mlx5_core_dev *dev)
150 {
151         struct mlx5_eq_table *table = &dev->priv.eq_table;
152
153         pci_disable_msix(dev->pdev);
154         kfree(table->msix_arr);
155 }
156
157 struct mlx5_reg_host_endianess {
158         u8      he;
159         u8      rsvd[15];
160 };
161
162 static int handle_hca_cap(struct mlx5_core_dev *dev)
163 {
164         struct mlx5_cmd_query_hca_cap_mbox_out *query_out = NULL;
165         struct mlx5_cmd_set_hca_cap_mbox_in *set_ctx = NULL;
166         struct mlx5_cmd_query_hca_cap_mbox_in query_ctx;
167         struct mlx5_cmd_set_hca_cap_mbox_out set_out;
168         struct mlx5_profile *prof = dev->profile;
169         u64 flags;
170         int csum = 1;
171         int err;
172
173         memset(&query_ctx, 0, sizeof(query_ctx));
174         query_out = kzalloc(sizeof(*query_out), GFP_KERNEL);
175         if (!query_out)
176                 return -ENOMEM;
177
178         set_ctx = kzalloc(sizeof(*set_ctx), GFP_KERNEL);
179         if (!set_ctx) {
180                 err = -ENOMEM;
181                 goto query_ex;
182         }
183
184         query_ctx.hdr.opcode = cpu_to_be16(MLX5_CMD_OP_QUERY_HCA_CAP);
185         query_ctx.hdr.opmod  = cpu_to_be16(0x1);
186         err = mlx5_cmd_exec(dev, &query_ctx, sizeof(query_ctx),
187                                  query_out, sizeof(*query_out));
188         if (err)
189                 goto query_ex;
190
191         err = mlx5_cmd_status_to_err(&query_out->hdr);
192         if (err) {
193                 mlx5_core_warn(dev, "query hca cap failed, %d\n", err);
194                 goto query_ex;
195         }
196
197         memcpy(&set_ctx->hca_cap, &query_out->hca_cap,
198                sizeof(set_ctx->hca_cap));
199
200         if (prof->mask & MLX5_PROF_MASK_CMDIF_CSUM) {
201                 csum = !!prof->cmdif_csum;
202                 flags = be64_to_cpu(set_ctx->hca_cap.flags);
203                 if (csum)
204                         flags |= MLX5_DEV_CAP_FLAG_CMDIF_CSUM;
205                 else
206                         flags &= ~MLX5_DEV_CAP_FLAG_CMDIF_CSUM;
207
208                 set_ctx->hca_cap.flags = cpu_to_be64(flags);
209         }
210
211         if (dev->profile->mask & MLX5_PROF_MASK_QP_SIZE)
212                 set_ctx->hca_cap.log_max_qp = dev->profile->log_max_qp;
213
214         memset(&set_out, 0, sizeof(set_out));
215         set_ctx->hca_cap.uar_page_sz = cpu_to_be16(PAGE_SHIFT - 12);
216         set_ctx->hdr.opcode = cpu_to_be16(MLX5_CMD_OP_SET_HCA_CAP);
217         err = mlx5_cmd_exec(dev, set_ctx, sizeof(*set_ctx),
218                                  &set_out, sizeof(set_out));
219         if (err) {
220                 mlx5_core_warn(dev, "set hca cap failed, %d\n", err);
221                 goto query_ex;
222         }
223
224         err = mlx5_cmd_status_to_err(&set_out.hdr);
225         if (err)
226                 goto query_ex;
227
228         if (!csum)
229                 dev->cmd.checksum_disabled = 1;
230
231 query_ex:
232         kfree(query_out);
233         kfree(set_ctx);
234
235         return err;
236 }
237
238 static int set_hca_ctrl(struct mlx5_core_dev *dev)
239 {
240         struct mlx5_reg_host_endianess he_in;
241         struct mlx5_reg_host_endianess he_out;
242         int err;
243
244         memset(&he_in, 0, sizeof(he_in));
245         he_in.he = MLX5_SET_HOST_ENDIANNESS;
246         err = mlx5_core_access_reg(dev, &he_in,  sizeof(he_in),
247                                         &he_out, sizeof(he_out),
248                                         MLX5_REG_HOST_ENDIANNESS, 0, 1);
249         return err;
250 }
251
252 int mlx5_dev_init(struct mlx5_core_dev *dev, struct pci_dev *pdev)
253 {
254         struct mlx5_priv *priv = &dev->priv;
255         int err;
256
257         dev->pdev = pdev;
258         pci_set_drvdata(dev->pdev, dev);
259         strncpy(priv->name, dev_name(&pdev->dev), MLX5_MAX_NAME_LEN);
260         priv->name[MLX5_MAX_NAME_LEN - 1] = 0;
261
262         mutex_init(&priv->pgdir_mutex);
263         INIT_LIST_HEAD(&priv->pgdir_list);
264         spin_lock_init(&priv->mkey_lock);
265
266         priv->dbg_root = debugfs_create_dir(dev_name(&pdev->dev), mlx5_debugfs_root);
267         if (!priv->dbg_root)
268                 return -ENOMEM;
269
270         err = pci_enable_device(pdev);
271         if (err) {
272                 dev_err(&pdev->dev, "Cannot enable PCI device, aborting.\n");
273                 goto err_dbg;
274         }
275
276         err = request_bar(pdev);
277         if (err) {
278                 dev_err(&pdev->dev, "error requesting BARs, aborting.\n");
279                 goto err_disable;
280         }
281
282         pci_set_master(pdev);
283
284         err = set_dma_caps(pdev);
285         if (err) {
286                 dev_err(&pdev->dev, "Failed setting DMA capabilities mask, aborting\n");
287                 goto err_clr_master;
288         }
289
290         dev->iseg_base = pci_resource_start(dev->pdev, 0);
291         dev->iseg = ioremap(dev->iseg_base, sizeof(*dev->iseg));
292         if (!dev->iseg) {
293                 err = -ENOMEM;
294                 dev_err(&pdev->dev, "Failed mapping initialization segment, aborting\n");
295                 goto err_clr_master;
296         }
297         dev_info(&pdev->dev, "firmware version: %d.%d.%d\n", fw_rev_maj(dev),
298                  fw_rev_min(dev), fw_rev_sub(dev));
299
300         err = mlx5_cmd_init(dev);
301         if (err) {
302                 dev_err(&pdev->dev, "Failed initializing command interface, aborting\n");
303                 goto err_unmap;
304         }
305
306         mlx5_pagealloc_init(dev);
307         err = set_hca_ctrl(dev);
308         if (err) {
309                 dev_err(&pdev->dev, "set_hca_ctrl failed\n");
310                 goto err_pagealloc_cleanup;
311         }
312
313         err = handle_hca_cap(dev);
314         if (err) {
315                 dev_err(&pdev->dev, "handle_hca_cap failed\n");
316                 goto err_pagealloc_cleanup;
317         }
318
319         err = mlx5_satisfy_startup_pages(dev);
320         if (err) {
321                 dev_err(&pdev->dev, "failed to allocate startup pages\n");
322                 goto err_pagealloc_cleanup;
323         }
324
325         err = mlx5_pagealloc_start(dev);
326         if (err) {
327                 dev_err(&pdev->dev, "mlx5_pagealloc_start failed\n");
328                 goto err_reclaim_pages;
329         }
330
331         err = mlx5_cmd_init_hca(dev);
332         if (err) {
333                 dev_err(&pdev->dev, "init hca failed\n");
334                 goto err_pagealloc_stop;
335         }
336
337         mlx5_start_health_poll(dev);
338
339         err = mlx5_cmd_query_hca_cap(dev, &dev->caps);
340         if (err) {
341                 dev_err(&pdev->dev, "query hca failed\n");
342                 goto err_stop_poll;
343         }
344
345         err = mlx5_cmd_query_adapter(dev);
346         if (err) {
347                 dev_err(&pdev->dev, "query adapter failed\n");
348                 goto err_stop_poll;
349         }
350
351         err = mlx5_enable_msix(dev);
352         if (err) {
353                 dev_err(&pdev->dev, "enable msix failed\n");
354                 goto err_stop_poll;
355         }
356
357         err = mlx5_eq_init(dev);
358         if (err) {
359                 dev_err(&pdev->dev, "failed to initialize eq\n");
360                 goto disable_msix;
361         }
362
363         err = mlx5_alloc_uuars(dev, &priv->uuari);
364         if (err) {
365                 dev_err(&pdev->dev, "Failed allocating uar, aborting\n");
366                 goto err_eq_cleanup;
367         }
368
369         err = mlx5_start_eqs(dev);
370         if (err) {
371                 dev_err(&pdev->dev, "Failed to start pages and async EQs\n");
372                 goto err_free_uar;
373         }
374
375         MLX5_INIT_DOORBELL_LOCK(&priv->cq_uar_lock);
376
377         mlx5_init_cq_table(dev);
378         mlx5_init_qp_table(dev);
379         mlx5_init_srq_table(dev);
380
381         return 0;
382
383 err_free_uar:
384         mlx5_free_uuars(dev, &priv->uuari);
385
386 err_eq_cleanup:
387         mlx5_eq_cleanup(dev);
388
389 disable_msix:
390         mlx5_disable_msix(dev);
391
392 err_stop_poll:
393         mlx5_stop_health_poll(dev);
394         mlx5_cmd_teardown_hca(dev);
395
396 err_pagealloc_stop:
397         mlx5_pagealloc_stop(dev);
398
399 err_reclaim_pages:
400         mlx5_reclaim_startup_pages(dev);
401
402 err_pagealloc_cleanup:
403         mlx5_pagealloc_cleanup(dev);
404         mlx5_cmd_cleanup(dev);
405
406 err_unmap:
407         iounmap(dev->iseg);
408
409 err_clr_master:
410         pci_clear_master(dev->pdev);
411         release_bar(dev->pdev);
412
413 err_disable:
414         pci_disable_device(dev->pdev);
415
416 err_dbg:
417         debugfs_remove(priv->dbg_root);
418         return err;
419 }
420 EXPORT_SYMBOL(mlx5_dev_init);
421
422 void mlx5_dev_cleanup(struct mlx5_core_dev *dev)
423 {
424         struct mlx5_priv *priv = &dev->priv;
425
426         mlx5_cleanup_srq_table(dev);
427         mlx5_cleanup_qp_table(dev);
428         mlx5_cleanup_cq_table(dev);
429         mlx5_stop_eqs(dev);
430         mlx5_free_uuars(dev, &priv->uuari);
431         mlx5_eq_cleanup(dev);
432         mlx5_disable_msix(dev);
433         mlx5_stop_health_poll(dev);
434         mlx5_cmd_teardown_hca(dev);
435         mlx5_pagealloc_stop(dev);
436         mlx5_reclaim_startup_pages(dev);
437         mlx5_pagealloc_cleanup(dev);
438         mlx5_cmd_cleanup(dev);
439         iounmap(dev->iseg);
440         pci_clear_master(dev->pdev);
441         release_bar(dev->pdev);
442         pci_disable_device(dev->pdev);
443         debugfs_remove(priv->dbg_root);
444 }
445 EXPORT_SYMBOL(mlx5_dev_cleanup);
446
447 static int __init init(void)
448 {
449         int err;
450
451         mlx5_register_debugfs();
452         mlx5_core_wq = create_singlethread_workqueue("mlx5_core_wq");
453         if (!mlx5_core_wq) {
454                 err = -ENOMEM;
455                 goto err_debug;
456         }
457         mlx5_health_init();
458
459         return 0;
460
461         mlx5_health_cleanup();
462 err_debug:
463         mlx5_unregister_debugfs();
464         return err;
465 }
466
467 static void __exit cleanup(void)
468 {
469         mlx5_health_cleanup();
470         destroy_workqueue(mlx5_core_wq);
471         mlx5_unregister_debugfs();
472 }
473
474 module_init(init);
475 module_exit(cleanup);