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
15 * - Redistributions of source code must retain the above
16 * copyright notice, this list of conditions and the following
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
33 *******************************************************************************/
37 #include <linux/netdevice.h>
38 #include <linux/inetdevice.h>
39 #include <linux/spinlock.h>
40 #include <linux/kernel.h>
41 #include <linux/delay.h>
42 #include <linux/pci.h>
43 #include <linux/dma-mapping.h>
44 #include <linux/workqueue.h>
45 #include <linux/slab.h>
47 #include <linux/crc32c.h>
48 #include <linux/net/intel/i40e_client.h>
49 #include <rdma/ib_smi.h>
50 #include <rdma/ib_verbs.h>
51 #include <rdma/ib_pack.h>
52 #include <rdma/rdma_cm.h>
53 #include <rdma/iw_cm.h>
54 #include <crypto/hash.h>
56 #include "i40iw_status.h"
57 #include "i40iw_osdep.h"
59 #include "i40iw_hmc.h"
61 #include "i40iw_type.h"
63 #include <rdma/i40iw-abi.h>
64 #include "i40iw_pble.h"
65 #include "i40iw_verbs.h"
67 #include "i40iw_user.h"
68 #include "i40iw_puda.h"
70 #define I40IW_FW_VER_DEFAULT 2
71 #define I40IW_HW_VERSION 2
73 #define I40IW_ARP_ADD 1
74 #define I40IW_ARP_DELETE 2
75 #define I40IW_ARP_RESOLVE 3
77 #define I40IW_MACIP_ADD 1
78 #define I40IW_MACIP_DELETE 2
80 #define IW_CCQ_SIZE (I40IW_CQP_SW_SQSIZE_2048 + 1)
81 #define IW_CEQ_SIZE 2048
82 #define IW_AEQ_SIZE 2048
84 #define RX_BUF_SIZE (1536 + 8)
85 #define IW_REG0_SIZE (4 * 1024)
86 #define IW_TX_TIMEOUT (6 * HZ)
87 #define IW_FIRST_QPN 1
88 #define IW_SW_CONTEXT_ALIGN 1024
90 #define MAX_DPC_ITERATIONS 128
92 #define I40IW_EVENT_TIMEOUT 100000
93 #define I40IW_VCHNL_EVENT_TIMEOUT 100000
95 #define I40IW_NO_VLAN 0xffff
96 #define I40IW_NO_QSET 0xffff
98 /* access to mcast filter list */
99 #define IW_ADD_MCAST false
100 #define IW_DEL_MCAST true
102 #define I40IW_DRV_OPT_ENABLE_MPA_VER_0 0x00000001
103 #define I40IW_DRV_OPT_DISABLE_MPA_CRC 0x00000002
104 #define I40IW_DRV_OPT_DISABLE_FIRST_WRITE 0x00000004
105 #define I40IW_DRV_OPT_DISABLE_INTF 0x00000008
106 #define I40IW_DRV_OPT_ENABLE_MSI 0x00000010
107 #define I40IW_DRV_OPT_DUAL_LOGICAL_PORT 0x00000020
108 #define I40IW_DRV_OPT_NO_INLINE_DATA 0x00000080
109 #define I40IW_DRV_OPT_DISABLE_INT_MOD 0x00000100
110 #define I40IW_DRV_OPT_DISABLE_VIRT_WQ 0x00000200
111 #define I40IW_DRV_OPT_ENABLE_PAU 0x00000400
112 #define I40IW_DRV_OPT_MCAST_LOGPORT_MAP 0x00000800
114 #define IW_HMC_OBJ_TYPE_NUM ARRAY_SIZE(iw_hmc_obj_types)
115 #define IW_CFG_FPM_QP_COUNT 32768
116 #define I40IW_MAX_PAGES_PER_FMR 512
117 #define I40IW_MIN_PAGES_PER_FMR 1
118 #define I40IW_CQP_COMPL_RQ_WQE_FLUSHED 2
119 #define I40IW_CQP_COMPL_SQ_WQE_FLUSHED 3
120 #define I40IW_CQP_COMPL_RQ_SQ_WQE_FLUSHED 4
122 struct i40iw_cqp_compl_info
{
130 #define i40iw_pr_err(fmt, args ...) pr_err("%s: "fmt, __func__, ## args)
132 #define i40iw_pr_info(fmt, args ...) pr_info("%s: " fmt, __func__, ## args)
134 #define i40iw_pr_warn(fmt, args ...) pr_warn("%s: " fmt, __func__, ## args)
136 struct i40iw_cqp_request
{
137 struct cqp_commands_info info
;
138 wait_queue_head_t waitq
;
139 struct list_head list
;
141 void (*callback_fcn
)(struct i40iw_cqp_request
*, u32
);
143 struct i40iw_cqp_compl_info compl_info
;
150 struct i40iw_sc_cqp sc_cqp
;
151 spinlock_t req_lock
; /*cqp request list */
152 wait_queue_head_t waitq
;
153 struct i40iw_dma_mem sq
;
154 struct i40iw_dma_mem host_ctx
;
156 struct i40iw_cqp_request
*cqp_requests
;
157 struct list_head cqp_avail_reqs
;
158 struct list_head cqp_pending_reqs
;
164 struct i40iw_sc_cq sc_cq
;
165 spinlock_t lock
; /* ccq control */
166 wait_queue_head_t waitq
;
167 struct i40iw_dma_mem mem_cq
;
168 struct i40iw_dma_mem shadow_area
;
172 struct i40iw_sc_ceq sc_ceq
;
173 struct i40iw_dma_mem mem
;
176 struct i40iw_device
*iwdev
;
177 struct tasklet_struct dpc_tasklet
;
181 struct i40iw_sc_aeq sc_aeq
;
182 struct i40iw_dma_mem mem
;
185 struct i40iw_arp_entry
{
187 u8 mac_addr
[ETH_ALEN
];
190 enum init_completion_state
{
205 struct i40iw_msix_vector
{
213 struct l2params_work
{
214 struct work_struct work
;
215 struct i40iw_device
*iwdev
;
216 struct i40iw_l2params l2params
;
219 #define I40IW_MSIX_TABLE_SIZE 65
221 struct virtchnl_work
{
222 struct work_struct work
;
224 struct i40iw_cqp_request
*cqp_request
;
225 struct i40iw_virtchnl_work_info work_info
;
229 struct i40e_qvlist_info
;
231 struct i40iw_device
{
232 struct i40iw_ib_device
*iwibdev
;
233 struct net_device
*netdev
;
234 wait_queue_head_t vchnl_waitq
;
235 struct i40iw_sc_dev sc_dev
;
236 struct i40iw_sc_vsi vsi
;
237 struct i40iw_handler
*hdl
;
238 struct i40e_info
*ldev
;
239 struct i40e_client
*client
;
241 struct i40iw_cm_core cm_core
;
243 unsigned long *allocated_qps
;
244 unsigned long *allocated_cqs
;
245 unsigned long *allocated_mrs
;
246 unsigned long *allocated_pds
;
247 unsigned long *allocated_arps
;
248 struct i40iw_qp
**qp_table
;
251 struct i40iw_msix_vector
*iw_msixtbl
;
252 struct i40e_qvlist_info
*iw_qvlist
;
254 struct i40iw_hmc_pble_rsrc
*pble_rsrc
;
255 struct i40iw_arp_entry
*arp_table
;
256 struct i40iw_cqp cqp
;
257 struct i40iw_ccq ccq
;
259 struct i40iw_ceq
*ceqlist
;
260 struct i40iw_aeq aeq
;
263 spinlock_t resource_lock
; /* hw resource access */
264 spinlock_t qptable_lock
;
267 u32 of_device_registered
;
269 u32 device_cap_flags
;
270 unsigned long db_start
;
279 struct mutex pbl_mutex
;
280 struct tasklet_struct dpc_tasklet
;
281 struct workqueue_struct
*virtchnl_wq
;
282 struct virtchnl_work virtchnl_w
[I40IW_MAX_PE_ENABLED_VF_COUNT
];
283 struct i40iw_dma_mem obj_mem
;
284 struct i40iw_dma_mem obj_next
;
287 struct workqueue_struct
*param_wq
;
288 atomic_t params_busy
;
289 enum init_completion_state init_state
;
290 u16 mac_ip_table_idx
;
311 wait_queue_head_t close_wq
;
312 atomic64_t use_count
;
315 struct i40iw_ib_device
{
316 struct ib_device ibdev
;
317 struct i40iw_device
*iwdev
;
320 struct i40iw_handler
{
321 struct list_head list
;
322 struct i40e_client
*client
;
323 struct i40iw_device device
;
324 struct i40e_info ldev
;
328 * i40iw_fw_major_ver - get firmware major version
331 static inline u64
i40iw_fw_major_ver(struct i40iw_sc_dev
*dev
)
333 return RS_64(dev
->feature_info
[I40IW_FEATURE_FW_INFO
],
338 * i40iw_fw_minor_ver - get firmware minor version
341 static inline u64
i40iw_fw_minor_ver(struct i40iw_sc_dev
*dev
)
343 return RS_64(dev
->feature_info
[I40IW_FEATURE_FW_INFO
],
348 * to_iwdev - get device
351 static inline struct i40iw_device
*to_iwdev(struct ib_device
*ibdev
)
353 return container_of(ibdev
, struct i40iw_ib_device
, ibdev
)->iwdev
;
357 * to_ucontext - get user context
358 * @ibucontext: ib user context
360 static inline struct i40iw_ucontext
*to_ucontext(struct ib_ucontext
*ibucontext
)
362 return container_of(ibucontext
, struct i40iw_ucontext
, ibucontext
);
366 * to_iwpd - get protection domain
369 static inline struct i40iw_pd
*to_iwpd(struct ib_pd
*ibpd
)
371 return container_of(ibpd
, struct i40iw_pd
, ibpd
);
375 * to_iwmr - get device memory region
376 * @ibdev: ib memory region
378 static inline struct i40iw_mr
*to_iwmr(struct ib_mr
*ibmr
)
380 return container_of(ibmr
, struct i40iw_mr
, ibmr
);
384 * to_iwmw - get device memory window
385 * @ibmw: ib memory window
387 static inline struct i40iw_mr
*to_iwmw(struct ib_mw
*ibmw
)
389 return container_of(ibmw
, struct i40iw_mr
, ibmw
);
393 * to_iwcq - get completion queue
396 static inline struct i40iw_cq
*to_iwcq(struct ib_cq
*ibcq
)
398 return container_of(ibcq
, struct i40iw_cq
, ibcq
);
402 * to_iwqp - get device qp
405 static inline struct i40iw_qp
*to_iwqp(struct ib_qp
*ibqp
)
407 return container_of(ibqp
, struct i40iw_qp
, ibqp
);
411 void i40iw_qp_add_ref(struct ib_qp
*ibqp
);
412 void i40iw_qp_rem_ref(struct ib_qp
*ibqp
);
413 struct ib_qp
*i40iw_get_qp(struct ib_device
*, int);
415 void i40iw_flush_wqes(struct i40iw_device
*iwdev
,
416 struct i40iw_qp
*qp
);
418 void i40iw_manage_arp_cache(struct i40iw_device
*iwdev
,
419 unsigned char *mac_addr
,
424 int i40iw_manage_apbvt(struct i40iw_device
*iwdev
,
425 u16 accel_local_port
,
428 struct i40iw_cqp_request
*i40iw_get_cqp_request(struct i40iw_cqp
*cqp
, bool wait
);
429 void i40iw_free_cqp_request(struct i40iw_cqp
*cqp
, struct i40iw_cqp_request
*cqp_request
);
430 void i40iw_put_cqp_request(struct i40iw_cqp
*cqp
, struct i40iw_cqp_request
*cqp_request
);
433 * i40iw_alloc_resource - allocate a resource
434 * @iwdev: device pointer
435 * @resource_array: resource bit array:
436 * @max_resources: maximum resource number
437 * @req_resources_num: Allocated resource number
438 * @next: next free id
440 static inline int i40iw_alloc_resource(struct i40iw_device
*iwdev
,
441 unsigned long *resource_array
,
443 u32
*req_resource_num
,
449 spin_lock_irqsave(&iwdev
->resource_lock
, flags
);
450 resource_num
= find_next_zero_bit(resource_array
, max_resources
, *next
);
451 if (resource_num
>= max_resources
) {
452 resource_num
= find_first_zero_bit(resource_array
, max_resources
);
453 if (resource_num
>= max_resources
) {
454 spin_unlock_irqrestore(&iwdev
->resource_lock
, flags
);
458 set_bit(resource_num
, resource_array
);
459 *next
= resource_num
+ 1;
460 if (*next
== max_resources
)
462 *req_resource_num
= resource_num
;
463 spin_unlock_irqrestore(&iwdev
->resource_lock
, flags
);
469 * i40iw_is_resource_allocated - detrmine if resource is
471 * @iwdev: device pointer
472 * @resource_array: resource array for the resource_num
473 * @resource_num: resource number to check
475 static inline bool i40iw_is_resource_allocated(struct i40iw_device
*iwdev
,
476 unsigned long *resource_array
,
482 spin_lock_irqsave(&iwdev
->resource_lock
, flags
);
484 bit_is_set
= test_bit(resource_num
, resource_array
);
485 spin_unlock_irqrestore(&iwdev
->resource_lock
, flags
);
491 * i40iw_free_resource - free a resource
492 * @iwdev: device pointer
493 * @resource_array: resource array for the resource_num
494 * @resource_num: resource number to free
496 static inline void i40iw_free_resource(struct i40iw_device
*iwdev
,
497 unsigned long *resource_array
,
502 spin_lock_irqsave(&iwdev
->resource_lock
, flags
);
503 clear_bit(resource_num
, resource_array
);
504 spin_unlock_irqrestore(&iwdev
->resource_lock
, flags
);
508 * to_iwhdl - Get the handler from the device pointer
509 * @iwdev: device pointer
511 static inline struct i40iw_handler
*to_iwhdl(struct i40iw_device
*iw_dev
)
513 return container_of(iw_dev
, struct i40iw_handler
, device
);
516 struct i40iw_handler
*i40iw_find_netdev(struct net_device
*netdev
);
519 * iw_init_resources -
521 u32
i40iw_initialize_hw_resources(struct i40iw_device
*iwdev
);
523 int i40iw_register_rdma_device(struct i40iw_device
*iwdev
);
524 void i40iw_port_ibevent(struct i40iw_device
*iwdev
);
525 void i40iw_cm_disconn(struct i40iw_qp
*iwqp
);
526 void i40iw_cm_disconn_worker(void *);
527 int mini_cm_recv_pkt(struct i40iw_cm_core
*, struct i40iw_device
*,
530 enum i40iw_status_code
i40iw_handle_cqp_op(struct i40iw_device
*iwdev
,
531 struct i40iw_cqp_request
*cqp_request
);
532 enum i40iw_status_code
i40iw_add_mac_addr(struct i40iw_device
*iwdev
,
533 u8
*mac_addr
, u8
*mac_index
);
534 int i40iw_modify_qp(struct ib_qp
*, struct ib_qp_attr
*, int, struct ib_udata
*);
535 void i40iw_cq_wq_destroy(struct i40iw_device
*iwdev
, struct i40iw_sc_cq
*cq
);
537 void i40iw_cleanup_pending_cqp_op(struct i40iw_device
*iwdev
);
538 void i40iw_rem_pdusecount(struct i40iw_pd
*iwpd
, struct i40iw_device
*iwdev
);
539 void i40iw_add_pdusecount(struct i40iw_pd
*iwpd
);
540 void i40iw_rem_devusecount(struct i40iw_device
*iwdev
);
541 void i40iw_add_devusecount(struct i40iw_device
*iwdev
);
542 void i40iw_hw_modify_qp(struct i40iw_device
*iwdev
, struct i40iw_qp
*iwqp
,
543 struct i40iw_modify_qp_info
*info
, bool wait
);
545 void i40iw_qp_suspend_resume(struct i40iw_sc_dev
*dev
,
546 struct i40iw_sc_qp
*qp
,
548 enum i40iw_status_code
i40iw_manage_qhash(struct i40iw_device
*iwdev
,
549 struct i40iw_cm_info
*cminfo
,
550 enum i40iw_quad_entry_type etype
,
551 enum i40iw_quad_hash_manage_type mtype
,
554 void i40iw_receive_ilq(struct i40iw_sc_vsi
*vsi
, struct i40iw_puda_buf
*rbuf
);
555 void i40iw_free_sqbuf(struct i40iw_sc_vsi
*vsi
, void *bufp
);
556 void i40iw_free_qp_resources(struct i40iw_qp
*iwqp
);
558 enum i40iw_status_code
i40iw_obj_aligned_mem(struct i40iw_device
*iwdev
,
559 struct i40iw_dma_mem
*memptr
,
562 void i40iw_request_reset(struct i40iw_device
*iwdev
);
563 void i40iw_destroy_rdma_device(struct i40iw_ib_device
*iwibdev
);
564 int i40iw_setup_cm_core(struct i40iw_device
*iwdev
);
565 void i40iw_cleanup_cm_core(struct i40iw_cm_core
*cm_core
);
566 void i40iw_process_ceq(struct i40iw_device
*, struct i40iw_ceq
*iwceq
);
567 void i40iw_process_aeq(struct i40iw_device
*);
568 void i40iw_next_iw_state(struct i40iw_qp
*iwqp
,
569 u8 state
, u8 del_hash
,
570 u8 term
, u8 term_len
);
571 int i40iw_send_syn(struct i40iw_cm_node
*cm_node
, u32 sendack
);
572 int i40iw_send_reset(struct i40iw_cm_node
*cm_node
);
573 struct i40iw_cm_node
*i40iw_find_node(struct i40iw_cm_core
*cm_core
,
579 bool accelerated_list
);
581 enum i40iw_status_code
i40iw_hw_flush_wqes(struct i40iw_device
*iwdev
,
582 struct i40iw_sc_qp
*qp
,
583 struct i40iw_qp_flush_info
*info
,
586 void i40iw_gen_ae(struct i40iw_device
*iwdev
,
587 struct i40iw_sc_qp
*qp
,
588 struct i40iw_gen_ae_info
*info
,
591 void i40iw_copy_ip_ntohl(u32
*dst
, __be32
*src
);
592 struct ib_mr
*i40iw_reg_phys_mr(struct ib_pd
*ib_pd
,
598 int i40iw_inetaddr_event(struct notifier_block
*notifier
,
601 int i40iw_inet6addr_event(struct notifier_block
*notifier
,
604 int i40iw_net_event(struct notifier_block
*notifier
,
607 int i40iw_netdevice_event(struct notifier_block
*notifier
,