Merge branch 'fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux...
[linux/fpc-iii.git] / drivers / infiniband / hw / i40iw / i40iw_main.c
blob90e5af21737e0017902b1bf72f7e77cecc195b54
1 /*******************************************************************************
3 * Copyright (c) 2015-2016 Intel Corporation. All rights reserved.
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 * OpenFabrics.org BSD license below:
11 * Redistribution and use in source and binary forms, with or
12 * without modification, are permitted provided that the following
13 * conditions are met:
15 * - Redistributions of source code must retain the above
16 * copyright notice, this list of conditions and the following
17 * disclaimer.
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.
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.
33 *******************************************************************************/
35 #include <linux/module.h>
36 #include <linux/moduleparam.h>
37 #include <linux/netdevice.h>
38 #include <linux/etherdevice.h>
39 #include <linux/ip.h>
40 #include <linux/tcp.h>
41 #include <linux/if_vlan.h>
42 #include <net/addrconf.h>
44 #include "i40iw.h"
45 #include "i40iw_register.h"
46 #include <net/netevent.h>
47 #define CLIENT_IW_INTERFACE_VERSION_MAJOR 0
48 #define CLIENT_IW_INTERFACE_VERSION_MINOR 01
49 #define CLIENT_IW_INTERFACE_VERSION_BUILD 00
51 #define DRV_VERSION_MAJOR 0
52 #define DRV_VERSION_MINOR 5
53 #define DRV_VERSION_BUILD 123
54 #define DRV_VERSION __stringify(DRV_VERSION_MAJOR) "." \
55 __stringify(DRV_VERSION_MINOR) "." __stringify(DRV_VERSION_BUILD)
57 static int push_mode;
58 module_param(push_mode, int, 0644);
59 MODULE_PARM_DESC(push_mode, "Low latency mode: 0=disabled (default), 1=enabled)");
61 static int debug;
62 module_param(debug, int, 0644);
63 MODULE_PARM_DESC(debug, "debug flags: 0=disabled (default), 0x7fffffff=all");
65 static int resource_profile;
66 module_param(resource_profile, int, 0644);
67 MODULE_PARM_DESC(resource_profile,
68 "Resource Profile: 0=no VF RDMA support (default), 1=Weighted VF, 2=Even Distribution");
70 static int max_rdma_vfs = 32;
71 module_param(max_rdma_vfs, int, 0644);
72 MODULE_PARM_DESC(max_rdma_vfs, "Maximum VF count: 0-32 32=default");
73 static int mpa_version = 2;
74 module_param(mpa_version, int, 0644);
75 MODULE_PARM_DESC(mpa_version, "MPA version to be used in MPA Req/Resp 1 or 2");
77 MODULE_AUTHOR("Intel Corporation, <e1000-rdma@lists.sourceforge.net>");
78 MODULE_DESCRIPTION("Intel(R) Ethernet Connection X722 iWARP RDMA Driver");
79 MODULE_LICENSE("Dual BSD/GPL");
80 MODULE_VERSION(DRV_VERSION);
82 static struct i40e_client i40iw_client;
83 static char i40iw_client_name[I40E_CLIENT_STR_LENGTH] = "i40iw";
85 static LIST_HEAD(i40iw_handlers);
86 static spinlock_t i40iw_handler_lock;
88 static enum i40iw_status_code i40iw_virtchnl_send(struct i40iw_sc_dev *dev,
89 u32 vf_id, u8 *msg, u16 len);
91 static struct notifier_block i40iw_inetaddr_notifier = {
92 .notifier_call = i40iw_inetaddr_event
95 static struct notifier_block i40iw_inetaddr6_notifier = {
96 .notifier_call = i40iw_inet6addr_event
99 static struct notifier_block i40iw_net_notifier = {
100 .notifier_call = i40iw_net_event
103 static int i40iw_notifiers_registered;
106 * i40iw_find_i40e_handler - find a handler given a client info
107 * @ldev: pointer to a client info
109 static struct i40iw_handler *i40iw_find_i40e_handler(struct i40e_info *ldev)
111 struct i40iw_handler *hdl;
112 unsigned long flags;
114 spin_lock_irqsave(&i40iw_handler_lock, flags);
115 list_for_each_entry(hdl, &i40iw_handlers, list) {
116 if (hdl->ldev.netdev == ldev->netdev) {
117 spin_unlock_irqrestore(&i40iw_handler_lock, flags);
118 return hdl;
121 spin_unlock_irqrestore(&i40iw_handler_lock, flags);
122 return NULL;
126 * i40iw_find_netdev - find a handler given a netdev
127 * @netdev: pointer to net_device
129 struct i40iw_handler *i40iw_find_netdev(struct net_device *netdev)
131 struct i40iw_handler *hdl;
132 unsigned long flags;
134 spin_lock_irqsave(&i40iw_handler_lock, flags);
135 list_for_each_entry(hdl, &i40iw_handlers, list) {
136 if (hdl->ldev.netdev == netdev) {
137 spin_unlock_irqrestore(&i40iw_handler_lock, flags);
138 return hdl;
141 spin_unlock_irqrestore(&i40iw_handler_lock, flags);
142 return NULL;
146 * i40iw_add_handler - add a handler to the list
147 * @hdl: handler to be added to the handler list
149 static void i40iw_add_handler(struct i40iw_handler *hdl)
151 unsigned long flags;
153 spin_lock_irqsave(&i40iw_handler_lock, flags);
154 list_add(&hdl->list, &i40iw_handlers);
155 spin_unlock_irqrestore(&i40iw_handler_lock, flags);
159 * i40iw_del_handler - delete a handler from the list
160 * @hdl: handler to be deleted from the handler list
162 static int i40iw_del_handler(struct i40iw_handler *hdl)
164 unsigned long flags;
166 spin_lock_irqsave(&i40iw_handler_lock, flags);
167 list_del(&hdl->list);
168 spin_unlock_irqrestore(&i40iw_handler_lock, flags);
169 return 0;
173 * i40iw_enable_intr - set up device interrupts
174 * @dev: hardware control device structure
175 * @msix_id: id of the interrupt to be enabled
177 static void i40iw_enable_intr(struct i40iw_sc_dev *dev, u32 msix_id)
179 u32 val;
181 val = I40E_PFINT_DYN_CTLN_INTENA_MASK |
182 I40E_PFINT_DYN_CTLN_CLEARPBA_MASK |
183 (3 << I40E_PFINT_DYN_CTLN_ITR_INDX_SHIFT);
184 if (dev->is_pf)
185 i40iw_wr32(dev->hw, I40E_PFINT_DYN_CTLN(msix_id - 1), val);
186 else
187 i40iw_wr32(dev->hw, I40E_VFINT_DYN_CTLN1(msix_id - 1), val);
191 * i40iw_dpc - tasklet for aeq and ceq 0
192 * @data: iwarp device
194 static void i40iw_dpc(unsigned long data)
196 struct i40iw_device *iwdev = (struct i40iw_device *)data;
198 if (iwdev->msix_shared)
199 i40iw_process_ceq(iwdev, iwdev->ceqlist);
200 i40iw_process_aeq(iwdev);
201 i40iw_enable_intr(&iwdev->sc_dev, iwdev->iw_msixtbl[0].idx);
205 * i40iw_ceq_dpc - dpc handler for CEQ
206 * @data: data points to CEQ
208 static void i40iw_ceq_dpc(unsigned long data)
210 struct i40iw_ceq *iwceq = (struct i40iw_ceq *)data;
211 struct i40iw_device *iwdev = iwceq->iwdev;
213 i40iw_process_ceq(iwdev, iwceq);
214 i40iw_enable_intr(&iwdev->sc_dev, iwceq->msix_idx);
218 * i40iw_irq_handler - interrupt handler for aeq and ceq0
219 * @irq: Interrupt request number
220 * @data: iwarp device
222 static irqreturn_t i40iw_irq_handler(int irq, void *data)
224 struct i40iw_device *iwdev = (struct i40iw_device *)data;
226 tasklet_schedule(&iwdev->dpc_tasklet);
227 return IRQ_HANDLED;
231 * i40iw_destroy_cqp - destroy control qp
232 * @iwdev: iwarp device
233 * @create_done: 1 if cqp create poll was success
235 * Issue destroy cqp request and
236 * free the resources associated with the cqp
238 static void i40iw_destroy_cqp(struct i40iw_device *iwdev, bool free_hwcqp)
240 enum i40iw_status_code status = 0;
241 struct i40iw_sc_dev *dev = &iwdev->sc_dev;
242 struct i40iw_cqp *cqp = &iwdev->cqp;
244 if (free_hwcqp && dev->cqp_ops->cqp_destroy)
245 status = dev->cqp_ops->cqp_destroy(dev->cqp);
246 if (status)
247 i40iw_pr_err("destroy cqp failed");
249 i40iw_free_dma_mem(dev->hw, &cqp->sq);
250 kfree(cqp->scratch_array);
251 iwdev->cqp.scratch_array = NULL;
253 kfree(cqp->cqp_requests);
254 cqp->cqp_requests = NULL;
258 * i40iw_disable_irqs - disable device interrupts
259 * @dev: hardware control device structure
260 * @msic_vec: msix vector to disable irq
261 * @dev_id: parameter to pass to free_irq (used during irq setup)
263 * The function is called when destroying aeq/ceq
265 static void i40iw_disable_irq(struct i40iw_sc_dev *dev,
266 struct i40iw_msix_vector *msix_vec,
267 void *dev_id)
269 if (dev->is_pf)
270 i40iw_wr32(dev->hw, I40E_PFINT_DYN_CTLN(msix_vec->idx - 1), 0);
271 else
272 i40iw_wr32(dev->hw, I40E_VFINT_DYN_CTLN1(msix_vec->idx - 1), 0);
273 synchronize_irq(msix_vec->irq);
274 free_irq(msix_vec->irq, dev_id);
278 * i40iw_destroy_aeq - destroy aeq
279 * @iwdev: iwarp device
280 * @reset: true if called before reset
282 * Issue a destroy aeq request and
283 * free the resources associated with the aeq
284 * The function is called during driver unload
286 static void i40iw_destroy_aeq(struct i40iw_device *iwdev, bool reset)
288 enum i40iw_status_code status = I40IW_ERR_NOT_READY;
289 struct i40iw_sc_dev *dev = &iwdev->sc_dev;
290 struct i40iw_aeq *aeq = &iwdev->aeq;
292 if (!iwdev->msix_shared)
293 i40iw_disable_irq(dev, iwdev->iw_msixtbl, (void *)iwdev);
294 if (reset)
295 goto exit;
297 if (!dev->aeq_ops->aeq_destroy(&aeq->sc_aeq, 0, 1))
298 status = dev->aeq_ops->aeq_destroy_done(&aeq->sc_aeq);
299 if (status)
300 i40iw_pr_err("destroy aeq failed %d\n", status);
302 exit:
303 i40iw_free_dma_mem(dev->hw, &aeq->mem);
307 * i40iw_destroy_ceq - destroy ceq
308 * @iwdev: iwarp device
309 * @iwceq: ceq to be destroyed
310 * @reset: true if called before reset
312 * Issue a destroy ceq request and
313 * free the resources associated with the ceq
315 static void i40iw_destroy_ceq(struct i40iw_device *iwdev,
316 struct i40iw_ceq *iwceq,
317 bool reset)
319 enum i40iw_status_code status;
320 struct i40iw_sc_dev *dev = &iwdev->sc_dev;
322 if (reset)
323 goto exit;
325 status = dev->ceq_ops->ceq_destroy(&iwceq->sc_ceq, 0, 1);
326 if (status) {
327 i40iw_pr_err("ceq destroy command failed %d\n", status);
328 goto exit;
331 status = dev->ceq_ops->cceq_destroy_done(&iwceq->sc_ceq);
332 if (status)
333 i40iw_pr_err("ceq destroy completion failed %d\n", status);
334 exit:
335 i40iw_free_dma_mem(dev->hw, &iwceq->mem);
339 * i40iw_dele_ceqs - destroy all ceq's
340 * @iwdev: iwarp device
341 * @reset: true if called before reset
343 * Go through all of the device ceq's and for each ceq
344 * disable the ceq interrupt and destroy the ceq
346 static void i40iw_dele_ceqs(struct i40iw_device *iwdev, bool reset)
348 u32 i = 0;
349 struct i40iw_sc_dev *dev = &iwdev->sc_dev;
350 struct i40iw_ceq *iwceq = iwdev->ceqlist;
351 struct i40iw_msix_vector *msix_vec = iwdev->iw_msixtbl;
353 if (iwdev->msix_shared) {
354 i40iw_disable_irq(dev, msix_vec, (void *)iwdev);
355 i40iw_destroy_ceq(iwdev, iwceq, reset);
356 iwceq++;
357 i++;
360 for (msix_vec++; i < iwdev->ceqs_count; i++, msix_vec++, iwceq++) {
361 i40iw_disable_irq(dev, msix_vec, (void *)iwceq);
362 i40iw_destroy_ceq(iwdev, iwceq, reset);
367 * i40iw_destroy_ccq - destroy control cq
368 * @iwdev: iwarp device
369 * @reset: true if called before reset
371 * Issue destroy ccq request and
372 * free the resources associated with the ccq
374 static void i40iw_destroy_ccq(struct i40iw_device *iwdev, bool reset)
376 struct i40iw_sc_dev *dev = &iwdev->sc_dev;
377 struct i40iw_ccq *ccq = &iwdev->ccq;
378 enum i40iw_status_code status = 0;
380 if (!reset)
381 status = dev->ccq_ops->ccq_destroy(dev->ccq, 0, true);
382 if (status)
383 i40iw_pr_err("ccq destroy failed %d\n", status);
384 i40iw_free_dma_mem(dev->hw, &ccq->mem_cq);
387 /* types of hmc objects */
388 static enum i40iw_hmc_rsrc_type iw_hmc_obj_types[] = {
389 I40IW_HMC_IW_QP,
390 I40IW_HMC_IW_CQ,
391 I40IW_HMC_IW_HTE,
392 I40IW_HMC_IW_ARP,
393 I40IW_HMC_IW_APBVT_ENTRY,
394 I40IW_HMC_IW_MR,
395 I40IW_HMC_IW_XF,
396 I40IW_HMC_IW_XFFL,
397 I40IW_HMC_IW_Q1,
398 I40IW_HMC_IW_Q1FL,
399 I40IW_HMC_IW_TIMER,
403 * i40iw_close_hmc_objects_type - delete hmc objects of a given type
404 * @iwdev: iwarp device
405 * @obj_type: the hmc object type to be deleted
406 * @is_pf: true if the function is PF otherwise false
407 * @reset: true if called before reset
409 static void i40iw_close_hmc_objects_type(struct i40iw_sc_dev *dev,
410 enum i40iw_hmc_rsrc_type obj_type,
411 struct i40iw_hmc_info *hmc_info,
412 bool is_pf,
413 bool reset)
415 struct i40iw_hmc_del_obj_info info;
417 memset(&info, 0, sizeof(info));
418 info.hmc_info = hmc_info;
419 info.rsrc_type = obj_type;
420 info.count = hmc_info->hmc_obj[obj_type].cnt;
421 info.is_pf = is_pf;
422 if (dev->hmc_ops->del_hmc_object(dev, &info, reset))
423 i40iw_pr_err("del obj of type %d failed\n", obj_type);
427 * i40iw_del_hmc_objects - remove all device hmc objects
428 * @dev: iwarp device
429 * @hmc_info: hmc_info to free
430 * @is_pf: true if hmc_info belongs to PF, not vf nor allocated
431 * by PF on behalf of VF
432 * @reset: true if called before reset
434 static void i40iw_del_hmc_objects(struct i40iw_sc_dev *dev,
435 struct i40iw_hmc_info *hmc_info,
436 bool is_pf,
437 bool reset)
439 unsigned int i;
441 for (i = 0; i < IW_HMC_OBJ_TYPE_NUM; i++)
442 i40iw_close_hmc_objects_type(dev, iw_hmc_obj_types[i], hmc_info, is_pf, reset);
446 * i40iw_ceq_handler - interrupt handler for ceq
447 * @data: ceq pointer
449 static irqreturn_t i40iw_ceq_handler(int irq, void *data)
451 struct i40iw_ceq *iwceq = (struct i40iw_ceq *)data;
453 if (iwceq->irq != irq)
454 i40iw_pr_err("expected irq = %d received irq = %d\n", iwceq->irq, irq);
455 tasklet_schedule(&iwceq->dpc_tasklet);
456 return IRQ_HANDLED;
460 * i40iw_create_hmc_obj_type - create hmc object of a given type
461 * @dev: hardware control device structure
462 * @info: information for the hmc object to create
464 static enum i40iw_status_code i40iw_create_hmc_obj_type(struct i40iw_sc_dev *dev,
465 struct i40iw_hmc_create_obj_info *info)
467 return dev->hmc_ops->create_hmc_object(dev, info);
471 * i40iw_create_hmc_objs - create all hmc objects for the device
472 * @iwdev: iwarp device
473 * @is_pf: true if the function is PF otherwise false
475 * Create the device hmc objects and allocate hmc pages
476 * Return 0 if successful, otherwise clean up and return error
478 static enum i40iw_status_code i40iw_create_hmc_objs(struct i40iw_device *iwdev,
479 bool is_pf)
481 struct i40iw_sc_dev *dev = &iwdev->sc_dev;
482 struct i40iw_hmc_create_obj_info info;
483 enum i40iw_status_code status;
484 int i;
486 memset(&info, 0, sizeof(info));
487 info.hmc_info = dev->hmc_info;
488 info.is_pf = is_pf;
489 info.entry_type = iwdev->sd_type;
490 for (i = 0; i < IW_HMC_OBJ_TYPE_NUM; i++) {
491 info.rsrc_type = iw_hmc_obj_types[i];
492 info.count = dev->hmc_info->hmc_obj[info.rsrc_type].cnt;
493 status = i40iw_create_hmc_obj_type(dev, &info);
494 if (status) {
495 i40iw_pr_err("create obj type %d status = %d\n",
496 iw_hmc_obj_types[i], status);
497 break;
500 if (!status)
501 return (dev->cqp_misc_ops->static_hmc_pages_allocated(dev->cqp, 0,
502 dev->hmc_fn_id,
503 true, true));
505 while (i) {
506 i--;
507 /* destroy the hmc objects of a given type */
508 i40iw_close_hmc_objects_type(dev,
509 iw_hmc_obj_types[i],
510 dev->hmc_info,
511 is_pf,
512 false);
514 return status;
518 * i40iw_obj_aligned_mem - get aligned memory from device allocated memory
519 * @iwdev: iwarp device
520 * @memptr: points to the memory addresses
521 * @size: size of memory needed
522 * @mask: mask for the aligned memory
524 * Get aligned memory of the requested size and
525 * update the memptr to point to the new aligned memory
526 * Return 0 if successful, otherwise return no memory error
528 enum i40iw_status_code i40iw_obj_aligned_mem(struct i40iw_device *iwdev,
529 struct i40iw_dma_mem *memptr,
530 u32 size,
531 u32 mask)
533 unsigned long va, newva;
534 unsigned long extra;
536 va = (unsigned long)iwdev->obj_next.va;
537 newva = va;
538 if (mask)
539 newva = ALIGN(va, (mask + 1));
540 extra = newva - va;
541 memptr->va = (u8 *)va + extra;
542 memptr->pa = iwdev->obj_next.pa + extra;
543 memptr->size = size;
544 if ((memptr->va + size) > (iwdev->obj_mem.va + iwdev->obj_mem.size))
545 return I40IW_ERR_NO_MEMORY;
547 iwdev->obj_next.va = memptr->va + size;
548 iwdev->obj_next.pa = memptr->pa + size;
549 return 0;
553 * i40iw_create_cqp - create control qp
554 * @iwdev: iwarp device
556 * Return 0, if the cqp and all the resources associated with it
557 * are successfully created, otherwise return error
559 static enum i40iw_status_code i40iw_create_cqp(struct i40iw_device *iwdev)
561 enum i40iw_status_code status;
562 u32 sqsize = I40IW_CQP_SW_SQSIZE_2048;
563 struct i40iw_dma_mem mem;
564 struct i40iw_sc_dev *dev = &iwdev->sc_dev;
565 struct i40iw_cqp_init_info cqp_init_info;
566 struct i40iw_cqp *cqp = &iwdev->cqp;
567 u16 maj_err, min_err;
568 int i;
570 cqp->cqp_requests = kcalloc(sqsize, sizeof(*cqp->cqp_requests), GFP_KERNEL);
571 if (!cqp->cqp_requests)
572 return I40IW_ERR_NO_MEMORY;
573 cqp->scratch_array = kcalloc(sqsize, sizeof(*cqp->scratch_array), GFP_KERNEL);
574 if (!cqp->scratch_array) {
575 kfree(cqp->cqp_requests);
576 return I40IW_ERR_NO_MEMORY;
578 dev->cqp = &cqp->sc_cqp;
579 dev->cqp->dev = dev;
580 memset(&cqp_init_info, 0, sizeof(cqp_init_info));
581 status = i40iw_allocate_dma_mem(dev->hw, &cqp->sq,
582 (sizeof(struct i40iw_cqp_sq_wqe) * sqsize),
583 I40IW_CQP_ALIGNMENT);
584 if (status)
585 goto exit;
586 status = i40iw_obj_aligned_mem(iwdev, &mem, sizeof(struct i40iw_cqp_ctx),
587 I40IW_HOST_CTX_ALIGNMENT_MASK);
588 if (status)
589 goto exit;
590 dev->cqp->host_ctx_pa = mem.pa;
591 dev->cqp->host_ctx = mem.va;
592 /* populate the cqp init info */
593 cqp_init_info.dev = dev;
594 cqp_init_info.sq_size = sqsize;
595 cqp_init_info.sq = cqp->sq.va;
596 cqp_init_info.sq_pa = cqp->sq.pa;
597 cqp_init_info.host_ctx_pa = mem.pa;
598 cqp_init_info.host_ctx = mem.va;
599 cqp_init_info.hmc_profile = iwdev->resource_profile;
600 cqp_init_info.enabled_vf_count = iwdev->max_rdma_vfs;
601 cqp_init_info.scratch_array = cqp->scratch_array;
602 status = dev->cqp_ops->cqp_init(dev->cqp, &cqp_init_info);
603 if (status) {
604 i40iw_pr_err("cqp init status %d maj_err %d min_err %d\n",
605 status, maj_err, min_err);
606 goto exit;
608 status = dev->cqp_ops->cqp_create(dev->cqp, true, &maj_err, &min_err);
609 if (status) {
610 i40iw_pr_err("cqp create status %d maj_err %d min_err %d\n",
611 status, maj_err, min_err);
612 goto exit;
614 spin_lock_init(&cqp->req_lock);
615 INIT_LIST_HEAD(&cqp->cqp_avail_reqs);
616 INIT_LIST_HEAD(&cqp->cqp_pending_reqs);
617 /* init the waitq of the cqp_requests and add them to the list */
618 for (i = 0; i < I40IW_CQP_SW_SQSIZE_2048; i++) {
619 init_waitqueue_head(&cqp->cqp_requests[i].waitq);
620 list_add_tail(&cqp->cqp_requests[i].list, &cqp->cqp_avail_reqs);
622 return 0;
623 exit:
624 /* clean up the created resources */
625 i40iw_destroy_cqp(iwdev, false);
626 return status;
630 * i40iw_create_ccq - create control cq
631 * @iwdev: iwarp device
633 * Return 0, if the ccq and the resources associated with it
634 * are successfully created, otherwise return error
636 static enum i40iw_status_code i40iw_create_ccq(struct i40iw_device *iwdev)
638 struct i40iw_sc_dev *dev = &iwdev->sc_dev;
639 struct i40iw_dma_mem mem;
640 enum i40iw_status_code status;
641 struct i40iw_ccq_init_info info;
642 struct i40iw_ccq *ccq = &iwdev->ccq;
644 memset(&info, 0, sizeof(info));
645 dev->ccq = &ccq->sc_cq;
646 dev->ccq->dev = dev;
647 info.dev = dev;
648 ccq->shadow_area.size = sizeof(struct i40iw_cq_shadow_area);
649 ccq->mem_cq.size = sizeof(struct i40iw_cqe) * IW_CCQ_SIZE;
650 status = i40iw_allocate_dma_mem(dev->hw, &ccq->mem_cq,
651 ccq->mem_cq.size, I40IW_CQ0_ALIGNMENT);
652 if (status)
653 goto exit;
654 status = i40iw_obj_aligned_mem(iwdev, &mem, ccq->shadow_area.size,
655 I40IW_SHADOWAREA_MASK);
656 if (status)
657 goto exit;
658 ccq->sc_cq.back_cq = (void *)ccq;
659 /* populate the ccq init info */
660 info.cq_base = ccq->mem_cq.va;
661 info.cq_pa = ccq->mem_cq.pa;
662 info.num_elem = IW_CCQ_SIZE;
663 info.shadow_area = mem.va;
664 info.shadow_area_pa = mem.pa;
665 info.ceqe_mask = false;
666 info.ceq_id_valid = true;
667 info.shadow_read_threshold = 16;
668 status = dev->ccq_ops->ccq_init(dev->ccq, &info);
669 if (!status)
670 status = dev->ccq_ops->ccq_create(dev->ccq, 0, true, true);
671 exit:
672 if (status)
673 i40iw_free_dma_mem(dev->hw, &ccq->mem_cq);
674 return status;
678 * i40iw_configure_ceq_vector - set up the msix interrupt vector for ceq
679 * @iwdev: iwarp device
680 * @msix_vec: interrupt vector information
681 * @iwceq: ceq associated with the vector
682 * @ceq_id: the id number of the iwceq
684 * Allocate interrupt resources and enable irq handling
685 * Return 0 if successful, otherwise return error
687 static enum i40iw_status_code i40iw_configure_ceq_vector(struct i40iw_device *iwdev,
688 struct i40iw_ceq *iwceq,
689 u32 ceq_id,
690 struct i40iw_msix_vector *msix_vec)
692 enum i40iw_status_code status;
694 if (iwdev->msix_shared && !ceq_id) {
695 tasklet_init(&iwdev->dpc_tasklet, i40iw_dpc, (unsigned long)iwdev);
696 status = request_irq(msix_vec->irq, i40iw_irq_handler, 0, "AEQCEQ", iwdev);
697 } else {
698 tasklet_init(&iwceq->dpc_tasklet, i40iw_ceq_dpc, (unsigned long)iwceq);
699 status = request_irq(msix_vec->irq, i40iw_ceq_handler, 0, "CEQ", iwceq);
702 if (status) {
703 i40iw_pr_err("ceq irq config fail\n");
704 return I40IW_ERR_CONFIG;
706 msix_vec->ceq_id = ceq_id;
707 msix_vec->cpu_affinity = 0;
709 return 0;
713 * i40iw_create_ceq - create completion event queue
714 * @iwdev: iwarp device
715 * @iwceq: pointer to the ceq resources to be created
716 * @ceq_id: the id number of the iwceq
718 * Return 0, if the ceq and the resources associated with it
719 * are successfully created, otherwise return error
721 static enum i40iw_status_code i40iw_create_ceq(struct i40iw_device *iwdev,
722 struct i40iw_ceq *iwceq,
723 u32 ceq_id)
725 enum i40iw_status_code status;
726 struct i40iw_ceq_init_info info;
727 struct i40iw_sc_dev *dev = &iwdev->sc_dev;
728 u64 scratch;
730 memset(&info, 0, sizeof(info));
731 info.ceq_id = ceq_id;
732 iwceq->iwdev = iwdev;
733 iwceq->mem.size = sizeof(struct i40iw_ceqe) *
734 iwdev->sc_dev.hmc_info->hmc_obj[I40IW_HMC_IW_CQ].cnt;
735 status = i40iw_allocate_dma_mem(dev->hw, &iwceq->mem, iwceq->mem.size,
736 I40IW_CEQ_ALIGNMENT);
737 if (status)
738 goto exit;
739 info.ceq_id = ceq_id;
740 info.ceqe_base = iwceq->mem.va;
741 info.ceqe_pa = iwceq->mem.pa;
743 info.elem_cnt = iwdev->sc_dev.hmc_info->hmc_obj[I40IW_HMC_IW_CQ].cnt;
744 iwceq->sc_ceq.ceq_id = ceq_id;
745 info.dev = dev;
746 scratch = (uintptr_t)&iwdev->cqp.sc_cqp;
747 status = dev->ceq_ops->ceq_init(&iwceq->sc_ceq, &info);
748 if (!status)
749 status = dev->ceq_ops->cceq_create(&iwceq->sc_ceq, scratch);
751 exit:
752 if (status)
753 i40iw_free_dma_mem(dev->hw, &iwceq->mem);
754 return status;
757 void i40iw_request_reset(struct i40iw_device *iwdev)
759 struct i40e_info *ldev = iwdev->ldev;
761 ldev->ops->request_reset(ldev, iwdev->client, 1);
765 * i40iw_setup_ceqs - manage the device ceq's and their interrupt resources
766 * @iwdev: iwarp device
767 * @ldev: i40e lan device
769 * Allocate a list for all device completion event queues
770 * Create the ceq's and configure their msix interrupt vectors
771 * Return 0, if at least one ceq is successfully set up, otherwise return error
773 static enum i40iw_status_code i40iw_setup_ceqs(struct i40iw_device *iwdev,
774 struct i40e_info *ldev)
776 u32 i;
777 u32 ceq_id;
778 struct i40iw_ceq *iwceq;
779 struct i40iw_msix_vector *msix_vec;
780 enum i40iw_status_code status = 0;
781 u32 num_ceqs;
783 if (ldev && ldev->ops && ldev->ops->setup_qvlist) {
784 status = ldev->ops->setup_qvlist(ldev, &i40iw_client,
785 iwdev->iw_qvlist);
786 if (status)
787 goto exit;
788 } else {
789 status = I40IW_ERR_BAD_PTR;
790 goto exit;
793 num_ceqs = min(iwdev->msix_count, iwdev->sc_dev.hmc_fpm_misc.max_ceqs);
794 iwdev->ceqlist = kcalloc(num_ceqs, sizeof(*iwdev->ceqlist), GFP_KERNEL);
795 if (!iwdev->ceqlist) {
796 status = I40IW_ERR_NO_MEMORY;
797 goto exit;
799 i = (iwdev->msix_shared) ? 0 : 1;
800 for (ceq_id = 0; i < num_ceqs; i++, ceq_id++) {
801 iwceq = &iwdev->ceqlist[ceq_id];
802 status = i40iw_create_ceq(iwdev, iwceq, ceq_id);
803 if (status) {
804 i40iw_pr_err("create ceq status = %d\n", status);
805 break;
808 msix_vec = &iwdev->iw_msixtbl[i];
809 iwceq->irq = msix_vec->irq;
810 iwceq->msix_idx = msix_vec->idx;
811 status = i40iw_configure_ceq_vector(iwdev, iwceq, ceq_id, msix_vec);
812 if (status) {
813 i40iw_destroy_ceq(iwdev, iwceq, false);
814 break;
816 i40iw_enable_intr(&iwdev->sc_dev, msix_vec->idx);
817 iwdev->ceqs_count++;
820 exit:
821 if (status) {
822 if (!iwdev->ceqs_count) {
823 kfree(iwdev->ceqlist);
824 iwdev->ceqlist = NULL;
825 } else {
826 status = 0;
829 return status;
833 * i40iw_configure_aeq_vector - set up the msix vector for aeq
834 * @iwdev: iwarp device
836 * Allocate interrupt resources and enable irq handling
837 * Return 0 if successful, otherwise return error
839 static enum i40iw_status_code i40iw_configure_aeq_vector(struct i40iw_device *iwdev)
841 struct i40iw_msix_vector *msix_vec = iwdev->iw_msixtbl;
842 u32 ret = 0;
844 if (!iwdev->msix_shared) {
845 tasklet_init(&iwdev->dpc_tasklet, i40iw_dpc, (unsigned long)iwdev);
846 ret = request_irq(msix_vec->irq, i40iw_irq_handler, 0, "i40iw", iwdev);
848 if (ret) {
849 i40iw_pr_err("aeq irq config fail\n");
850 return I40IW_ERR_CONFIG;
853 return 0;
857 * i40iw_create_aeq - create async event queue
858 * @iwdev: iwarp device
860 * Return 0, if the aeq and the resources associated with it
861 * are successfully created, otherwise return error
863 static enum i40iw_status_code i40iw_create_aeq(struct i40iw_device *iwdev)
865 enum i40iw_status_code status;
866 struct i40iw_aeq_init_info info;
867 struct i40iw_sc_dev *dev = &iwdev->sc_dev;
868 struct i40iw_aeq *aeq = &iwdev->aeq;
869 u64 scratch = 0;
870 u32 aeq_size;
872 aeq_size = 2 * iwdev->sc_dev.hmc_info->hmc_obj[I40IW_HMC_IW_QP].cnt +
873 iwdev->sc_dev.hmc_info->hmc_obj[I40IW_HMC_IW_CQ].cnt;
874 memset(&info, 0, sizeof(info));
875 aeq->mem.size = sizeof(struct i40iw_sc_aeqe) * aeq_size;
876 status = i40iw_allocate_dma_mem(dev->hw, &aeq->mem, aeq->mem.size,
877 I40IW_AEQ_ALIGNMENT);
878 if (status)
879 goto exit;
881 info.aeqe_base = aeq->mem.va;
882 info.aeq_elem_pa = aeq->mem.pa;
883 info.elem_cnt = aeq_size;
884 info.dev = dev;
885 status = dev->aeq_ops->aeq_init(&aeq->sc_aeq, &info);
886 if (status)
887 goto exit;
888 status = dev->aeq_ops->aeq_create(&aeq->sc_aeq, scratch, 1);
889 if (!status)
890 status = dev->aeq_ops->aeq_create_done(&aeq->sc_aeq);
891 exit:
892 if (status)
893 i40iw_free_dma_mem(dev->hw, &aeq->mem);
894 return status;
898 * i40iw_setup_aeq - set up the device aeq
899 * @iwdev: iwarp device
901 * Create the aeq and configure its msix interrupt vector
902 * Return 0 if successful, otherwise return error
904 static enum i40iw_status_code i40iw_setup_aeq(struct i40iw_device *iwdev)
906 struct i40iw_sc_dev *dev = &iwdev->sc_dev;
907 enum i40iw_status_code status;
909 status = i40iw_create_aeq(iwdev);
910 if (status)
911 return status;
913 status = i40iw_configure_aeq_vector(iwdev);
914 if (status) {
915 i40iw_destroy_aeq(iwdev, false);
916 return status;
919 if (!iwdev->msix_shared)
920 i40iw_enable_intr(dev, iwdev->iw_msixtbl[0].idx);
921 return 0;
925 * i40iw_initialize_ilq - create iwarp local queue for cm
926 * @iwdev: iwarp device
928 * Return 0 if successful, otherwise return error
930 static enum i40iw_status_code i40iw_initialize_ilq(struct i40iw_device *iwdev)
932 struct i40iw_puda_rsrc_info info;
933 enum i40iw_status_code status;
935 info.type = I40IW_PUDA_RSRC_TYPE_ILQ;
936 info.cq_id = 1;
937 info.qp_id = 0;
938 info.count = 1;
939 info.pd_id = 1;
940 info.sq_size = 8192;
941 info.rq_size = 8192;
942 info.buf_size = 1024;
943 info.tx_buf_cnt = 16384;
944 info.mss = iwdev->mss;
945 info.receive = i40iw_receive_ilq;
946 info.xmit_complete = i40iw_free_sqbuf;
947 status = i40iw_puda_create_rsrc(&iwdev->sc_dev, &info);
948 if (status)
949 i40iw_pr_err("ilq create fail\n");
950 return status;
954 * i40iw_initialize_ieq - create iwarp exception queue
955 * @iwdev: iwarp device
957 * Return 0 if successful, otherwise return error
959 static enum i40iw_status_code i40iw_initialize_ieq(struct i40iw_device *iwdev)
961 struct i40iw_puda_rsrc_info info;
962 enum i40iw_status_code status;
964 info.type = I40IW_PUDA_RSRC_TYPE_IEQ;
965 info.cq_id = 2;
966 info.qp_id = iwdev->sc_dev.exception_lan_queue;
967 info.count = 1;
968 info.pd_id = 2;
969 info.sq_size = 8192;
970 info.rq_size = 8192;
971 info.buf_size = 2048;
972 info.mss = iwdev->mss;
973 info.tx_buf_cnt = 16384;
974 status = i40iw_puda_create_rsrc(&iwdev->sc_dev, &info);
975 if (status)
976 i40iw_pr_err("ieq create fail\n");
977 return status;
981 * i40iw_hmc_setup - create hmc objects for the device
982 * @iwdev: iwarp device
984 * Set up the device private memory space for the number and size of
985 * the hmc objects and create the objects
986 * Return 0 if successful, otherwise return error
988 static enum i40iw_status_code i40iw_hmc_setup(struct i40iw_device *iwdev)
990 enum i40iw_status_code status;
992 iwdev->sd_type = I40IW_SD_TYPE_DIRECT;
993 status = i40iw_config_fpm_values(&iwdev->sc_dev, IW_CFG_FPM_QP_COUNT);
994 if (status)
995 goto exit;
996 status = i40iw_create_hmc_objs(iwdev, true);
997 if (status)
998 goto exit;
999 iwdev->init_state = HMC_OBJS_CREATED;
1000 exit:
1001 return status;
1005 * i40iw_del_init_mem - deallocate memory resources
1006 * @iwdev: iwarp device
1008 static void i40iw_del_init_mem(struct i40iw_device *iwdev)
1010 struct i40iw_sc_dev *dev = &iwdev->sc_dev;
1012 i40iw_free_dma_mem(&iwdev->hw, &iwdev->obj_mem);
1013 kfree(dev->hmc_info->sd_table.sd_entry);
1014 dev->hmc_info->sd_table.sd_entry = NULL;
1015 kfree(iwdev->mem_resources);
1016 iwdev->mem_resources = NULL;
1017 kfree(iwdev->ceqlist);
1018 iwdev->ceqlist = NULL;
1019 kfree(iwdev->iw_msixtbl);
1020 iwdev->iw_msixtbl = NULL;
1021 kfree(iwdev->hmc_info_mem);
1022 iwdev->hmc_info_mem = NULL;
1026 * i40iw_del_macip_entry - remove a mac ip address entry from the hw table
1027 * @iwdev: iwarp device
1028 * @idx: the index of the mac ip address to delete
1030 static void i40iw_del_macip_entry(struct i40iw_device *iwdev, u8 idx)
1032 struct i40iw_cqp *iwcqp = &iwdev->cqp;
1033 struct i40iw_cqp_request *cqp_request;
1034 struct cqp_commands_info *cqp_info;
1035 enum i40iw_status_code status = 0;
1037 cqp_request = i40iw_get_cqp_request(iwcqp, true);
1038 if (!cqp_request) {
1039 i40iw_pr_err("cqp_request memory failed\n");
1040 return;
1042 cqp_info = &cqp_request->info;
1043 cqp_info->cqp_cmd = OP_DELETE_LOCAL_MAC_IPADDR_ENTRY;
1044 cqp_info->post_sq = 1;
1045 cqp_info->in.u.del_local_mac_ipaddr_entry.cqp = &iwcqp->sc_cqp;
1046 cqp_info->in.u.del_local_mac_ipaddr_entry.scratch = (uintptr_t)cqp_request;
1047 cqp_info->in.u.del_local_mac_ipaddr_entry.entry_idx = idx;
1048 cqp_info->in.u.del_local_mac_ipaddr_entry.ignore_ref_count = 0;
1049 status = i40iw_handle_cqp_op(iwdev, cqp_request);
1050 if (status)
1051 i40iw_pr_err("CQP-OP Del MAC Ip entry fail");
1055 * i40iw_add_mac_ipaddr_entry - add a mac ip address entry to the hw table
1056 * @iwdev: iwarp device
1057 * @mac_addr: pointer to mac address
1058 * @idx: the index of the mac ip address to add
1060 static enum i40iw_status_code i40iw_add_mac_ipaddr_entry(struct i40iw_device *iwdev,
1061 u8 *mac_addr,
1062 u8 idx)
1064 struct i40iw_local_mac_ipaddr_entry_info *info;
1065 struct i40iw_cqp *iwcqp = &iwdev->cqp;
1066 struct i40iw_cqp_request *cqp_request;
1067 struct cqp_commands_info *cqp_info;
1068 enum i40iw_status_code status = 0;
1070 cqp_request = i40iw_get_cqp_request(iwcqp, true);
1071 if (!cqp_request) {
1072 i40iw_pr_err("cqp_request memory failed\n");
1073 return I40IW_ERR_NO_MEMORY;
1076 cqp_info = &cqp_request->info;
1078 cqp_info->post_sq = 1;
1079 info = &cqp_info->in.u.add_local_mac_ipaddr_entry.info;
1080 ether_addr_copy(info->mac_addr, mac_addr);
1081 info->entry_idx = idx;
1082 cqp_info->in.u.add_local_mac_ipaddr_entry.scratch = (uintptr_t)cqp_request;
1083 cqp_info->cqp_cmd = OP_ADD_LOCAL_MAC_IPADDR_ENTRY;
1084 cqp_info->in.u.add_local_mac_ipaddr_entry.cqp = &iwcqp->sc_cqp;
1085 cqp_info->in.u.add_local_mac_ipaddr_entry.scratch = (uintptr_t)cqp_request;
1086 status = i40iw_handle_cqp_op(iwdev, cqp_request);
1087 if (status)
1088 i40iw_pr_err("CQP-OP Add MAC Ip entry fail");
1089 return status;
1093 * i40iw_alloc_local_mac_ipaddr_entry - allocate a mac ip address entry
1094 * @iwdev: iwarp device
1095 * @mac_ip_tbl_idx: the index of the new mac ip address
1097 * Allocate a mac ip address entry and update the mac_ip_tbl_idx
1098 * to hold the index of the newly created mac ip address
1099 * Return 0 if successful, otherwise return error
1101 static enum i40iw_status_code i40iw_alloc_local_mac_ipaddr_entry(struct i40iw_device *iwdev,
1102 u16 *mac_ip_tbl_idx)
1104 struct i40iw_cqp *iwcqp = &iwdev->cqp;
1105 struct i40iw_cqp_request *cqp_request;
1106 struct cqp_commands_info *cqp_info;
1107 enum i40iw_status_code status = 0;
1109 cqp_request = i40iw_get_cqp_request(iwcqp, true);
1110 if (!cqp_request) {
1111 i40iw_pr_err("cqp_request memory failed\n");
1112 return I40IW_ERR_NO_MEMORY;
1115 /* increment refcount, because we need the cqp request ret value */
1116 atomic_inc(&cqp_request->refcount);
1118 cqp_info = &cqp_request->info;
1119 cqp_info->cqp_cmd = OP_ALLOC_LOCAL_MAC_IPADDR_ENTRY;
1120 cqp_info->post_sq = 1;
1121 cqp_info->in.u.alloc_local_mac_ipaddr_entry.cqp = &iwcqp->sc_cqp;
1122 cqp_info->in.u.alloc_local_mac_ipaddr_entry.scratch = (uintptr_t)cqp_request;
1123 status = i40iw_handle_cqp_op(iwdev, cqp_request);
1124 if (!status)
1125 *mac_ip_tbl_idx = cqp_request->compl_info.op_ret_val;
1126 else
1127 i40iw_pr_err("CQP-OP Alloc MAC Ip entry fail");
1128 /* decrement refcount and free the cqp request, if no longer used */
1129 i40iw_put_cqp_request(iwcqp, cqp_request);
1130 return status;
1134 * i40iw_alloc_set_mac_ipaddr - set up a mac ip address table entry
1135 * @iwdev: iwarp device
1136 * @macaddr: pointer to mac address
1138 * Allocate a mac ip address entry and add it to the hw table
1139 * Return 0 if successful, otherwise return error
1141 static enum i40iw_status_code i40iw_alloc_set_mac_ipaddr(struct i40iw_device *iwdev,
1142 u8 *macaddr)
1144 enum i40iw_status_code status;
1146 status = i40iw_alloc_local_mac_ipaddr_entry(iwdev, &iwdev->mac_ip_table_idx);
1147 if (!status) {
1148 status = i40iw_add_mac_ipaddr_entry(iwdev, macaddr,
1149 (u8)iwdev->mac_ip_table_idx);
1150 if (!status)
1151 status = i40iw_add_mac_ipaddr_entry(iwdev, macaddr,
1152 (u8)iwdev->mac_ip_table_idx);
1153 else
1154 i40iw_del_macip_entry(iwdev, (u8)iwdev->mac_ip_table_idx);
1156 return status;
1160 * i40iw_add_ipv6_addr - add ipv6 address to the hw arp table
1161 * @iwdev: iwarp device
1163 static void i40iw_add_ipv6_addr(struct i40iw_device *iwdev)
1165 struct net_device *ip_dev;
1166 struct inet6_dev *idev;
1167 struct inet6_ifaddr *ifp;
1168 __be32 local_ipaddr6[4];
1170 rcu_read_lock();
1171 for_each_netdev_rcu(&init_net, ip_dev) {
1172 if ((((rdma_vlan_dev_vlan_id(ip_dev) < 0xFFFF) &&
1173 (rdma_vlan_dev_real_dev(ip_dev) == iwdev->netdev)) ||
1174 (ip_dev == iwdev->netdev)) && (ip_dev->flags & IFF_UP)) {
1175 idev = __in6_dev_get(ip_dev);
1176 if (!idev) {
1177 i40iw_pr_err("ipv6 inet device not found\n");
1178 break;
1180 list_for_each_entry(ifp, &idev->addr_list, if_list) {
1181 i40iw_pr_info("IP=%pI6, vlan_id=%d, MAC=%pM\n", &ifp->addr,
1182 rdma_vlan_dev_vlan_id(ip_dev), ip_dev->dev_addr);
1183 i40iw_copy_ip_ntohl(local_ipaddr6,
1184 ifp->addr.in6_u.u6_addr32);
1185 i40iw_manage_arp_cache(iwdev,
1186 ip_dev->dev_addr,
1187 local_ipaddr6,
1188 false,
1189 I40IW_ARP_ADD);
1193 rcu_read_unlock();
1197 * i40iw_add_ipv4_addr - add ipv4 address to the hw arp table
1198 * @iwdev: iwarp device
1200 static void i40iw_add_ipv4_addr(struct i40iw_device *iwdev)
1202 struct net_device *dev;
1203 struct in_device *idev;
1204 bool got_lock = true;
1205 u32 ip_addr;
1207 if (!rtnl_trylock())
1208 got_lock = false;
1210 for_each_netdev(&init_net, dev) {
1211 if ((((rdma_vlan_dev_vlan_id(dev) < 0xFFFF) &&
1212 (rdma_vlan_dev_real_dev(dev) == iwdev->netdev)) ||
1213 (dev == iwdev->netdev)) && (dev->flags & IFF_UP)) {
1214 idev = in_dev_get(dev);
1215 for_ifa(idev) {
1216 i40iw_debug(&iwdev->sc_dev, I40IW_DEBUG_CM,
1217 "IP=%pI4, vlan_id=%d, MAC=%pM\n", &ifa->ifa_address,
1218 rdma_vlan_dev_vlan_id(dev), dev->dev_addr);
1220 ip_addr = ntohl(ifa->ifa_address);
1221 i40iw_manage_arp_cache(iwdev,
1222 dev->dev_addr,
1223 &ip_addr,
1224 true,
1225 I40IW_ARP_ADD);
1227 endfor_ifa(idev);
1228 in_dev_put(idev);
1231 if (got_lock)
1232 rtnl_unlock();
1236 * i40iw_add_mac_ip - add mac and ip addresses
1237 * @iwdev: iwarp device
1239 * Create and add a mac ip address entry to the hw table and
1240 * ipv4/ipv6 addresses to the arp cache
1241 * Return 0 if successful, otherwise return error
1243 static enum i40iw_status_code i40iw_add_mac_ip(struct i40iw_device *iwdev)
1245 struct net_device *netdev = iwdev->netdev;
1246 enum i40iw_status_code status;
1248 status = i40iw_alloc_set_mac_ipaddr(iwdev, (u8 *)netdev->dev_addr);
1249 if (status)
1250 return status;
1251 i40iw_add_ipv4_addr(iwdev);
1252 i40iw_add_ipv6_addr(iwdev);
1253 return 0;
1257 * i40iw_wait_pe_ready - Check if firmware is ready
1258 * @hw: provides access to registers
1260 static void i40iw_wait_pe_ready(struct i40iw_hw *hw)
1262 u32 statusfw;
1263 u32 statuscpu0;
1264 u32 statuscpu1;
1265 u32 statuscpu2;
1266 u32 retrycount = 0;
1268 do {
1269 statusfw = i40iw_rd32(hw, I40E_GLPE_FWLDSTATUS);
1270 i40iw_pr_info("[%04d] fm load status[x%04X]\n", __LINE__, statusfw);
1271 statuscpu0 = i40iw_rd32(hw, I40E_GLPE_CPUSTATUS0);
1272 i40iw_pr_info("[%04d] CSR_CQP status[x%04X]\n", __LINE__, statuscpu0);
1273 statuscpu1 = i40iw_rd32(hw, I40E_GLPE_CPUSTATUS1);
1274 i40iw_pr_info("[%04d] I40E_GLPE_CPUSTATUS1 status[x%04X]\n",
1275 __LINE__, statuscpu1);
1276 statuscpu2 = i40iw_rd32(hw, I40E_GLPE_CPUSTATUS2);
1277 i40iw_pr_info("[%04d] I40E_GLPE_CPUSTATUS2 status[x%04X]\n",
1278 __LINE__, statuscpu2);
1279 if ((statuscpu0 == 0x80) && (statuscpu1 == 0x80) && (statuscpu2 == 0x80))
1280 break; /* SUCCESS */
1281 mdelay(1000);
1282 retrycount++;
1283 } while (retrycount < 14);
1284 i40iw_wr32(hw, 0xb4040, 0x4C104C5);
1288 * i40iw_initialize_dev - initialize device
1289 * @iwdev: iwarp device
1290 * @ldev: lan device information
1292 * Allocate memory for the hmc objects and initialize iwdev
1293 * Return 0 if successful, otherwise clean up the resources
1294 * and return error
1296 static enum i40iw_status_code i40iw_initialize_dev(struct i40iw_device *iwdev,
1297 struct i40e_info *ldev)
1299 enum i40iw_status_code status;
1300 struct i40iw_sc_dev *dev = &iwdev->sc_dev;
1301 struct i40iw_device_init_info info;
1302 struct i40iw_dma_mem mem;
1303 u32 size;
1305 memset(&info, 0, sizeof(info));
1306 size = sizeof(struct i40iw_hmc_pble_rsrc) + sizeof(struct i40iw_hmc_info) +
1307 (sizeof(struct i40iw_hmc_obj_info) * I40IW_HMC_IW_MAX);
1308 iwdev->hmc_info_mem = kzalloc(size, GFP_KERNEL);
1309 if (!iwdev->hmc_info_mem) {
1310 i40iw_pr_err("memory alloc fail\n");
1311 return I40IW_ERR_NO_MEMORY;
1313 iwdev->pble_rsrc = (struct i40iw_hmc_pble_rsrc *)iwdev->hmc_info_mem;
1314 dev->hmc_info = &iwdev->hw.hmc;
1315 dev->hmc_info->hmc_obj = (struct i40iw_hmc_obj_info *)(iwdev->pble_rsrc + 1);
1316 status = i40iw_obj_aligned_mem(iwdev, &mem, I40IW_QUERY_FPM_BUF_SIZE,
1317 I40IW_FPM_QUERY_BUF_ALIGNMENT_MASK);
1318 if (status)
1319 goto exit;
1320 info.fpm_query_buf_pa = mem.pa;
1321 info.fpm_query_buf = mem.va;
1322 status = i40iw_obj_aligned_mem(iwdev, &mem, I40IW_COMMIT_FPM_BUF_SIZE,
1323 I40IW_FPM_COMMIT_BUF_ALIGNMENT_MASK);
1324 if (status)
1325 goto exit;
1326 info.fpm_commit_buf_pa = mem.pa;
1327 info.fpm_commit_buf = mem.va;
1328 info.hmc_fn_id = ldev->fid;
1329 info.is_pf = (ldev->ftype) ? false : true;
1330 info.bar0 = ldev->hw_addr;
1331 info.hw = &iwdev->hw;
1332 info.debug_mask = debug;
1333 info.qs_handle = ldev->params.qos.prio_qos[0].qs_handle;
1334 info.exception_lan_queue = 1;
1335 info.vchnl_send = i40iw_virtchnl_send;
1336 status = i40iw_device_init(&iwdev->sc_dev, &info);
1337 exit:
1338 if (status) {
1339 kfree(iwdev->hmc_info_mem);
1340 iwdev->hmc_info_mem = NULL;
1342 return status;
1346 * i40iw_register_notifiers - register tcp ip notifiers
1348 static void i40iw_register_notifiers(void)
1350 if (!i40iw_notifiers_registered) {
1351 register_inetaddr_notifier(&i40iw_inetaddr_notifier);
1352 register_inet6addr_notifier(&i40iw_inetaddr6_notifier);
1353 register_netevent_notifier(&i40iw_net_notifier);
1355 i40iw_notifiers_registered++;
1359 * i40iw_save_msix_info - copy msix vector information to iwarp device
1360 * @iwdev: iwarp device
1361 * @ldev: lan device information
1363 * Allocate iwdev msix table and copy the ldev msix info to the table
1364 * Return 0 if successful, otherwise return error
1366 static enum i40iw_status_code i40iw_save_msix_info(struct i40iw_device *iwdev,
1367 struct i40e_info *ldev)
1369 struct i40e_qvlist_info *iw_qvlist;
1370 struct i40e_qv_info *iw_qvinfo;
1371 u32 ceq_idx;
1372 u32 i;
1373 u32 size;
1375 iwdev->msix_count = ldev->msix_count;
1377 size = sizeof(struct i40iw_msix_vector) * iwdev->msix_count;
1378 size += sizeof(struct i40e_qvlist_info);
1379 size += sizeof(struct i40e_qv_info) * iwdev->msix_count - 1;
1380 iwdev->iw_msixtbl = kzalloc(size, GFP_KERNEL);
1382 if (!iwdev->iw_msixtbl)
1383 return I40IW_ERR_NO_MEMORY;
1384 iwdev->iw_qvlist = (struct i40e_qvlist_info *)(&iwdev->iw_msixtbl[iwdev->msix_count]);
1385 iw_qvlist = iwdev->iw_qvlist;
1386 iw_qvinfo = iw_qvlist->qv_info;
1387 iw_qvlist->num_vectors = iwdev->msix_count;
1388 if (iwdev->msix_count <= num_online_cpus())
1389 iwdev->msix_shared = true;
1390 for (i = 0, ceq_idx = 0; i < iwdev->msix_count; i++, iw_qvinfo++) {
1391 iwdev->iw_msixtbl[i].idx = ldev->msix_entries[i].entry;
1392 iwdev->iw_msixtbl[i].irq = ldev->msix_entries[i].vector;
1393 if (i == 0) {
1394 iw_qvinfo->aeq_idx = 0;
1395 if (iwdev->msix_shared)
1396 iw_qvinfo->ceq_idx = ceq_idx++;
1397 else
1398 iw_qvinfo->ceq_idx = I40E_QUEUE_INVALID_IDX;
1399 } else {
1400 iw_qvinfo->aeq_idx = I40E_QUEUE_INVALID_IDX;
1401 iw_qvinfo->ceq_idx = ceq_idx++;
1403 iw_qvinfo->itr_idx = 3;
1404 iw_qvinfo->v_idx = iwdev->iw_msixtbl[i].idx;
1406 return 0;
1410 * i40iw_deinit_device - clean up the device resources
1411 * @iwdev: iwarp device
1412 * @reset: true if called before reset
1413 * @del_hdl: true if delete hdl entry
1415 * Destroy the ib device interface, remove the mac ip entry and ipv4/ipv6 addresses,
1416 * destroy the device queues and free the pble and the hmc objects
1418 static void i40iw_deinit_device(struct i40iw_device *iwdev, bool reset, bool del_hdl)
1420 struct i40e_info *ldev = iwdev->ldev;
1422 struct i40iw_sc_dev *dev = &iwdev->sc_dev;
1424 i40iw_pr_info("state = %d\n", iwdev->init_state);
1426 switch (iwdev->init_state) {
1427 case RDMA_DEV_REGISTERED:
1428 iwdev->iw_status = 0;
1429 i40iw_port_ibevent(iwdev);
1430 i40iw_destroy_rdma_device(iwdev->iwibdev);
1431 /* fallthrough */
1432 case IP_ADDR_REGISTERED:
1433 if (!reset)
1434 i40iw_del_macip_entry(iwdev, (u8)iwdev->mac_ip_table_idx);
1435 /* fallthrough */
1436 case INET_NOTIFIER:
1437 if (i40iw_notifiers_registered > 0) {
1438 i40iw_notifiers_registered--;
1439 unregister_netevent_notifier(&i40iw_net_notifier);
1440 unregister_inetaddr_notifier(&i40iw_inetaddr_notifier);
1441 unregister_inet6addr_notifier(&i40iw_inetaddr6_notifier);
1443 /* fallthrough */
1444 case CEQ_CREATED:
1445 i40iw_dele_ceqs(iwdev, reset);
1446 /* fallthrough */
1447 case AEQ_CREATED:
1448 i40iw_destroy_aeq(iwdev, reset);
1449 /* fallthrough */
1450 case IEQ_CREATED:
1451 i40iw_puda_dele_resources(dev, I40IW_PUDA_RSRC_TYPE_IEQ, reset);
1452 /* fallthrough */
1453 case ILQ_CREATED:
1454 i40iw_puda_dele_resources(dev, I40IW_PUDA_RSRC_TYPE_ILQ, reset);
1455 /* fallthrough */
1456 case CCQ_CREATED:
1457 i40iw_destroy_ccq(iwdev, reset);
1458 /* fallthrough */
1459 case PBLE_CHUNK_MEM:
1460 i40iw_destroy_pble_pool(dev, iwdev->pble_rsrc);
1461 /* fallthrough */
1462 case HMC_OBJS_CREATED:
1463 i40iw_del_hmc_objects(dev, dev->hmc_info, true, reset);
1464 /* fallthrough */
1465 case CQP_CREATED:
1466 i40iw_destroy_cqp(iwdev, !reset);
1467 /* fallthrough */
1468 case INITIAL_STATE:
1469 i40iw_cleanup_cm_core(&iwdev->cm_core);
1470 if (dev->is_pf)
1471 i40iw_hw_stats_del_timer(dev);
1473 i40iw_del_init_mem(iwdev);
1474 break;
1475 case INVALID_STATE:
1476 /* fallthrough */
1477 default:
1478 i40iw_pr_err("bad init_state = %d\n", iwdev->init_state);
1479 break;
1482 if (del_hdl)
1483 i40iw_del_handler(i40iw_find_i40e_handler(ldev));
1484 kfree(iwdev->hdl);
1488 * i40iw_setup_init_state - set up the initial device struct
1489 * @hdl: handler for iwarp device - one per instance
1490 * @ldev: lan device information
1491 * @client: iwarp client information, provided during registration
1493 * Initialize the iwarp device and its hdl information
1494 * using the ldev and client information
1495 * Return 0 if successful, otherwise return error
1497 static enum i40iw_status_code i40iw_setup_init_state(struct i40iw_handler *hdl,
1498 struct i40e_info *ldev,
1499 struct i40e_client *client)
1501 struct i40iw_device *iwdev = &hdl->device;
1502 struct i40iw_sc_dev *dev = &iwdev->sc_dev;
1503 enum i40iw_status_code status;
1505 memcpy(&hdl->ldev, ldev, sizeof(*ldev));
1506 if (resource_profile == 1)
1507 resource_profile = 2;
1509 iwdev->mpa_version = mpa_version;
1510 iwdev->resource_profile = (resource_profile < I40IW_HMC_PROFILE_EQUAL) ?
1511 (u8)resource_profile + I40IW_HMC_PROFILE_DEFAULT :
1512 I40IW_HMC_PROFILE_DEFAULT;
1513 iwdev->max_rdma_vfs =
1514 (iwdev->resource_profile != I40IW_HMC_PROFILE_DEFAULT) ? max_rdma_vfs : 0;
1515 iwdev->netdev = ldev->netdev;
1516 hdl->client = client;
1517 iwdev->mss = (!ldev->params.mtu) ? I40IW_DEFAULT_MSS : ldev->params.mtu - I40IW_MTU_TO_MSS;
1518 if (!ldev->ftype)
1519 iwdev->db_start = pci_resource_start(ldev->pcidev, 0) + I40IW_DB_ADDR_OFFSET;
1520 else
1521 iwdev->db_start = pci_resource_start(ldev->pcidev, 0) + I40IW_VF_DB_ADDR_OFFSET;
1523 status = i40iw_save_msix_info(iwdev, ldev);
1524 if (status)
1525 goto exit;
1526 iwdev->hw.dev_context = (void *)ldev->pcidev;
1527 iwdev->hw.hw_addr = ldev->hw_addr;
1528 status = i40iw_allocate_dma_mem(&iwdev->hw,
1529 &iwdev->obj_mem, 8192, 4096);
1530 if (status)
1531 goto exit;
1532 iwdev->obj_next = iwdev->obj_mem;
1533 iwdev->push_mode = push_mode;
1534 init_waitqueue_head(&iwdev->vchnl_waitq);
1535 status = i40iw_initialize_dev(iwdev, ldev);
1536 exit:
1537 if (status) {
1538 kfree(iwdev->iw_msixtbl);
1539 i40iw_free_dma_mem(dev->hw, &iwdev->obj_mem);
1540 iwdev->iw_msixtbl = NULL;
1542 return status;
1546 * i40iw_open - client interface operation open for iwarp/uda device
1547 * @ldev: lan device information
1548 * @client: iwarp client information, provided during registration
1550 * Called by the lan driver during the processing of client register
1551 * Create device resources, set up queues, pble and hmc objects and
1552 * register the device with the ib verbs interface
1553 * Return 0 if successful, otherwise return error
1555 static int i40iw_open(struct i40e_info *ldev, struct i40e_client *client)
1557 struct i40iw_device *iwdev;
1558 struct i40iw_sc_dev *dev;
1559 enum i40iw_status_code status;
1560 struct i40iw_handler *hdl;
1562 hdl = kzalloc(sizeof(*hdl), GFP_KERNEL);
1563 if (!hdl)
1564 return -ENOMEM;
1565 iwdev = &hdl->device;
1566 iwdev->hdl = hdl;
1567 dev = &iwdev->sc_dev;
1568 i40iw_setup_cm_core(iwdev);
1570 dev->back_dev = (void *)iwdev;
1571 iwdev->ldev = &hdl->ldev;
1572 iwdev->client = client;
1573 mutex_init(&iwdev->pbl_mutex);
1574 i40iw_add_handler(hdl);
1576 do {
1577 status = i40iw_setup_init_state(hdl, ldev, client);
1578 if (status)
1579 break;
1580 iwdev->init_state = INITIAL_STATE;
1581 if (dev->is_pf)
1582 i40iw_wait_pe_ready(dev->hw);
1583 status = i40iw_create_cqp(iwdev);
1584 if (status)
1585 break;
1586 iwdev->init_state = CQP_CREATED;
1587 status = i40iw_hmc_setup(iwdev);
1588 if (status)
1589 break;
1590 status = i40iw_create_ccq(iwdev);
1591 if (status)
1592 break;
1593 iwdev->init_state = CCQ_CREATED;
1594 status = i40iw_initialize_ilq(iwdev);
1595 if (status)
1596 break;
1597 iwdev->init_state = ILQ_CREATED;
1598 status = i40iw_initialize_ieq(iwdev);
1599 if (status)
1600 break;
1601 iwdev->init_state = IEQ_CREATED;
1602 status = i40iw_setup_aeq(iwdev);
1603 if (status)
1604 break;
1605 iwdev->init_state = AEQ_CREATED;
1606 status = i40iw_setup_ceqs(iwdev, ldev);
1607 if (status)
1608 break;
1609 iwdev->init_state = CEQ_CREATED;
1610 status = i40iw_initialize_hw_resources(iwdev);
1611 if (status)
1612 break;
1613 dev->ccq_ops->ccq_arm(dev->ccq);
1614 status = i40iw_hmc_init_pble(&iwdev->sc_dev, iwdev->pble_rsrc);
1615 if (status)
1616 break;
1617 iwdev->virtchnl_wq = create_singlethread_workqueue("iwvch");
1618 i40iw_register_notifiers();
1619 iwdev->init_state = INET_NOTIFIER;
1620 status = i40iw_add_mac_ip(iwdev);
1621 if (status)
1622 break;
1623 iwdev->init_state = IP_ADDR_REGISTERED;
1624 if (i40iw_register_rdma_device(iwdev)) {
1625 i40iw_pr_err("register rdma device fail\n");
1626 break;
1629 iwdev->init_state = RDMA_DEV_REGISTERED;
1630 iwdev->iw_status = 1;
1631 i40iw_port_ibevent(iwdev);
1632 i40iw_pr_info("i40iw_open completed\n");
1633 return 0;
1634 } while (0);
1636 i40iw_pr_err("status = %d last completion = %d\n", status, iwdev->init_state);
1637 i40iw_deinit_device(iwdev, false, false);
1638 return -ERESTART;
1642 * i40iw_l2param_change : handle qs handles for qos and mss change
1643 * @ldev: lan device information
1644 * @client: client for paramater change
1645 * @params: new parameters from L2
1647 static void i40iw_l2param_change(struct i40e_info *ldev,
1648 struct i40e_client *client,
1649 struct i40e_params *params)
1651 struct i40iw_handler *hdl;
1652 struct i40iw_device *iwdev;
1654 hdl = i40iw_find_i40e_handler(ldev);
1655 if (!hdl)
1656 return;
1658 iwdev = &hdl->device;
1659 if (params->mtu)
1660 iwdev->mss = params->mtu - I40IW_MTU_TO_MSS;
1664 * i40iw_close - client interface operation close for iwarp/uda device
1665 * @ldev: lan device information
1666 * @client: client to close
1668 * Called by the lan driver during the processing of client unregister
1669 * Destroy and clean up the driver resources
1671 static void i40iw_close(struct i40e_info *ldev, struct i40e_client *client, bool reset)
1673 struct i40iw_device *iwdev;
1674 struct i40iw_handler *hdl;
1676 hdl = i40iw_find_i40e_handler(ldev);
1677 if (!hdl)
1678 return;
1680 iwdev = &hdl->device;
1681 destroy_workqueue(iwdev->virtchnl_wq);
1682 i40iw_deinit_device(iwdev, reset, true);
1686 * i40iw_vf_reset - process VF reset
1687 * @ldev: lan device information
1688 * @client: client interface instance
1689 * @vf_id: virtual function id
1691 * Called when a VF is reset by the PF
1692 * Destroy and clean up the VF resources
1694 static void i40iw_vf_reset(struct i40e_info *ldev, struct i40e_client *client, u32 vf_id)
1696 struct i40iw_handler *hdl;
1697 struct i40iw_sc_dev *dev;
1698 struct i40iw_hmc_fcn_info hmc_fcn_info;
1699 struct i40iw_virt_mem vf_dev_mem;
1700 struct i40iw_vfdev *tmp_vfdev;
1701 unsigned int i;
1702 unsigned long flags;
1704 hdl = i40iw_find_i40e_handler(ldev);
1705 if (!hdl)
1706 return;
1708 dev = &hdl->device.sc_dev;
1710 for (i = 0; i < I40IW_MAX_PE_ENABLED_VF_COUNT; i++) {
1711 if (!dev->vf_dev[i] || (dev->vf_dev[i]->vf_id != vf_id))
1712 continue;
1714 /* free all resources allocated on behalf of vf */
1715 tmp_vfdev = dev->vf_dev[i];
1716 spin_lock_irqsave(&dev->dev_pestat.stats_lock, flags);
1717 dev->vf_dev[i] = NULL;
1718 spin_unlock_irqrestore(&dev->dev_pestat.stats_lock, flags);
1719 i40iw_del_hmc_objects(dev, &tmp_vfdev->hmc_info, false, false);
1720 /* remove vf hmc function */
1721 memset(&hmc_fcn_info, 0, sizeof(hmc_fcn_info));
1722 hmc_fcn_info.vf_id = vf_id;
1723 hmc_fcn_info.iw_vf_idx = tmp_vfdev->iw_vf_idx;
1724 hmc_fcn_info.free_fcn = true;
1725 i40iw_cqp_manage_hmc_fcn_cmd(dev, &hmc_fcn_info);
1726 /* free vf_dev */
1727 vf_dev_mem.va = tmp_vfdev;
1728 vf_dev_mem.size = sizeof(struct i40iw_vfdev) +
1729 sizeof(struct i40iw_hmc_obj_info) * I40IW_HMC_IW_MAX;
1730 i40iw_free_virt_mem(dev->hw, &vf_dev_mem);
1731 break;
1736 * i40iw_vf_enable - enable a number of VFs
1737 * @ldev: lan device information
1738 * @client: client interface instance
1739 * @num_vfs: number of VFs for the PF
1741 * Called when the number of VFs changes
1743 static void i40iw_vf_enable(struct i40e_info *ldev,
1744 struct i40e_client *client,
1745 u32 num_vfs)
1747 struct i40iw_handler *hdl;
1749 hdl = i40iw_find_i40e_handler(ldev);
1750 if (!hdl)
1751 return;
1753 if (num_vfs > I40IW_MAX_PE_ENABLED_VF_COUNT)
1754 hdl->device.max_enabled_vfs = I40IW_MAX_PE_ENABLED_VF_COUNT;
1755 else
1756 hdl->device.max_enabled_vfs = num_vfs;
1760 * i40iw_vf_capable - check if VF capable
1761 * @ldev: lan device information
1762 * @client: client interface instance
1763 * @vf_id: virtual function id
1765 * Return 1 if a VF slot is available or if VF is already RDMA enabled
1766 * Return 0 otherwise
1768 static int i40iw_vf_capable(struct i40e_info *ldev,
1769 struct i40e_client *client,
1770 u32 vf_id)
1772 struct i40iw_handler *hdl;
1773 struct i40iw_sc_dev *dev;
1774 unsigned int i;
1776 hdl = i40iw_find_i40e_handler(ldev);
1777 if (!hdl)
1778 return 0;
1780 dev = &hdl->device.sc_dev;
1782 for (i = 0; i < hdl->device.max_enabled_vfs; i++) {
1783 if (!dev->vf_dev[i] || (dev->vf_dev[i]->vf_id == vf_id))
1784 return 1;
1787 return 0;
1791 * i40iw_virtchnl_receive - receive a message through the virtual channel
1792 * @ldev: lan device information
1793 * @client: client interface instance
1794 * @vf_id: virtual function id associated with the message
1795 * @msg: message buffer pointer
1796 * @len: length of the message
1798 * Invoke virtual channel receive operation for the given msg
1799 * Return 0 if successful, otherwise return error
1801 static int i40iw_virtchnl_receive(struct i40e_info *ldev,
1802 struct i40e_client *client,
1803 u32 vf_id,
1804 u8 *msg,
1805 u16 len)
1807 struct i40iw_handler *hdl;
1808 struct i40iw_sc_dev *dev;
1809 struct i40iw_device *iwdev;
1810 int ret_code = I40IW_NOT_SUPPORTED;
1812 if (!len || !msg)
1813 return I40IW_ERR_PARAM;
1815 hdl = i40iw_find_i40e_handler(ldev);
1816 if (!hdl)
1817 return I40IW_ERR_PARAM;
1819 dev = &hdl->device.sc_dev;
1820 iwdev = dev->back_dev;
1822 i40iw_debug(dev, I40IW_DEBUG_VIRT, "msg %p, message length %u\n", msg, len);
1824 if (dev->vchnl_if.vchnl_recv) {
1825 ret_code = dev->vchnl_if.vchnl_recv(dev, vf_id, msg, len);
1826 if (!dev->is_pf) {
1827 atomic_dec(&iwdev->vchnl_msgs);
1828 wake_up(&iwdev->vchnl_waitq);
1831 return ret_code;
1835 * i40iw_virtchnl_send - send a message through the virtual channel
1836 * @dev: iwarp device
1837 * @vf_id: virtual function id associated with the message
1838 * @msg: virtual channel message buffer pointer
1839 * @len: length of the message
1841 * Invoke virtual channel send operation for the given msg
1842 * Return 0 if successful, otherwise return error
1844 static enum i40iw_status_code i40iw_virtchnl_send(struct i40iw_sc_dev *dev,
1845 u32 vf_id,
1846 u8 *msg,
1847 u16 len)
1849 struct i40iw_device *iwdev;
1850 struct i40e_info *ldev;
1851 enum i40iw_status_code ret_code = I40IW_ERR_BAD_PTR;
1853 if (!dev || !dev->back_dev)
1854 return ret_code;
1856 iwdev = dev->back_dev;
1857 ldev = iwdev->ldev;
1859 if (ldev && ldev->ops && ldev->ops->virtchnl_send)
1860 ret_code = ldev->ops->virtchnl_send(ldev, &i40iw_client, vf_id, msg, len);
1862 return ret_code;
1865 /* client interface functions */
1866 static struct i40e_client_ops i40e_ops = {
1867 .open = i40iw_open,
1868 .close = i40iw_close,
1869 .l2_param_change = i40iw_l2param_change,
1870 .virtchnl_receive = i40iw_virtchnl_receive,
1871 .vf_reset = i40iw_vf_reset,
1872 .vf_enable = i40iw_vf_enable,
1873 .vf_capable = i40iw_vf_capable
1877 * i40iw_init_module - driver initialization function
1879 * First function to call when the driver is loaded
1880 * Register the driver as i40e client and port mapper client
1882 static int __init i40iw_init_module(void)
1884 int ret;
1886 memset(&i40iw_client, 0, sizeof(i40iw_client));
1887 i40iw_client.version.major = CLIENT_IW_INTERFACE_VERSION_MAJOR;
1888 i40iw_client.version.minor = CLIENT_IW_INTERFACE_VERSION_MINOR;
1889 i40iw_client.version.build = CLIENT_IW_INTERFACE_VERSION_BUILD;
1890 i40iw_client.ops = &i40e_ops;
1891 memcpy(i40iw_client.name, i40iw_client_name, I40E_CLIENT_STR_LENGTH);
1892 i40iw_client.type = I40E_CLIENT_IWARP;
1893 spin_lock_init(&i40iw_handler_lock);
1894 ret = i40e_register_client(&i40iw_client);
1895 return ret;
1899 * i40iw_exit_module - driver exit clean up function
1901 * The function is called just before the driver is unloaded
1902 * Unregister the driver as i40e client and port mapper client
1904 static void __exit i40iw_exit_module(void)
1906 i40e_unregister_client(&i40iw_client);
1909 module_init(i40iw_init_module);
1910 module_exit(i40iw_exit_module);