2 * QLogic qlcnic NIC Driver
3 * Copyright (c) 2009-2013 QLogic Corporation
5 * See LICENSE.qlcnic for copyright and licensing details.
8 #include <linux/types.h>
10 #include "qlcnic_sriov.h"
12 #include "qlcnic_83xx_hw.h"
14 #define QLC_BC_COMMAND 0
15 #define QLC_BC_RESPONSE 1
17 #define QLC_MBOX_RESP_TIMEOUT (10 * HZ)
18 #define QLC_MBOX_CH_FREE_TIMEOUT (10 * HZ)
21 #define QLC_BC_CFREE 1
23 #define QLC_BC_HDR_SZ 16
24 #define QLC_BC_PAYLOAD_SZ (1024 - QLC_BC_HDR_SZ)
26 #define QLC_DEFAULT_RCV_DESCRIPTORS_SRIOV_VF 2048
27 #define QLC_DEFAULT_JUMBO_RCV_DESCRIPTORS_SRIOV_VF 512
29 #define QLC_83XX_VF_RESET_FAIL_THRESH 8
30 #define QLC_BC_CMD_MAX_RETRY_CNT 5
32 static void qlcnic_sriov_handle_async_issue_cmd(struct work_struct
*work
);
33 static void qlcnic_sriov_vf_free_mac_list(struct qlcnic_adapter
*);
34 static int qlcnic_sriov_alloc_bc_mbx_args(struct qlcnic_cmd_args
*, u32
);
35 static void qlcnic_sriov_vf_poll_dev_state(struct work_struct
*);
36 static void qlcnic_sriov_vf_cancel_fw_work(struct qlcnic_adapter
*);
37 static void qlcnic_sriov_cleanup_transaction(struct qlcnic_bc_trans
*);
38 static int qlcnic_sriov_issue_cmd(struct qlcnic_adapter
*,
39 struct qlcnic_cmd_args
*);
40 static int qlcnic_sriov_channel_cfg_cmd(struct qlcnic_adapter
*, u8
);
41 static void qlcnic_sriov_process_bc_cmd(struct work_struct
*);
42 static int qlcnic_sriov_vf_shutdown(struct pci_dev
*);
43 static int qlcnic_sriov_vf_resume(struct qlcnic_adapter
*);
44 static int qlcnic_sriov_async_issue_cmd(struct qlcnic_adapter
*,
45 struct qlcnic_cmd_args
*);
47 static struct qlcnic_hardware_ops qlcnic_sriov_vf_hw_ops
= {
48 .read_crb
= qlcnic_83xx_read_crb
,
49 .write_crb
= qlcnic_83xx_write_crb
,
50 .read_reg
= qlcnic_83xx_rd_reg_indirect
,
51 .write_reg
= qlcnic_83xx_wrt_reg_indirect
,
52 .get_mac_address
= qlcnic_83xx_get_mac_address
,
53 .setup_intr
= qlcnic_83xx_setup_intr
,
54 .alloc_mbx_args
= qlcnic_83xx_alloc_mbx_args
,
55 .mbx_cmd
= qlcnic_sriov_issue_cmd
,
56 .get_func_no
= qlcnic_83xx_get_func_no
,
57 .api_lock
= qlcnic_83xx_cam_lock
,
58 .api_unlock
= qlcnic_83xx_cam_unlock
,
59 .process_lb_rcv_ring_diag
= qlcnic_83xx_process_rcv_ring_diag
,
60 .create_rx_ctx
= qlcnic_83xx_create_rx_ctx
,
61 .create_tx_ctx
= qlcnic_83xx_create_tx_ctx
,
62 .del_rx_ctx
= qlcnic_83xx_del_rx_ctx
,
63 .del_tx_ctx
= qlcnic_83xx_del_tx_ctx
,
64 .setup_link_event
= qlcnic_83xx_setup_link_event
,
65 .get_nic_info
= qlcnic_83xx_get_nic_info
,
66 .get_pci_info
= qlcnic_83xx_get_pci_info
,
67 .set_nic_info
= qlcnic_83xx_set_nic_info
,
68 .change_macvlan
= qlcnic_83xx_sre_macaddr_change
,
69 .napi_enable
= qlcnic_83xx_napi_enable
,
70 .napi_disable
= qlcnic_83xx_napi_disable
,
71 .config_intr_coal
= qlcnic_83xx_config_intr_coal
,
72 .config_rss
= qlcnic_83xx_config_rss
,
73 .config_hw_lro
= qlcnic_83xx_config_hw_lro
,
74 .config_promisc_mode
= qlcnic_83xx_nic_set_promisc
,
75 .change_l2_filter
= qlcnic_83xx_change_l2_filter
,
76 .get_board_info
= qlcnic_83xx_get_port_info
,
77 .free_mac_list
= qlcnic_sriov_vf_free_mac_list
,
78 .enable_sds_intr
= qlcnic_83xx_enable_sds_intr
,
79 .disable_sds_intr
= qlcnic_83xx_disable_sds_intr
,
80 .encap_rx_offload
= qlcnic_83xx_encap_rx_offload
,
81 .encap_tx_offload
= qlcnic_83xx_encap_tx_offload
,
84 static struct qlcnic_nic_template qlcnic_sriov_vf_ops
= {
85 .config_bridged_mode
= qlcnic_config_bridged_mode
,
86 .config_led
= qlcnic_config_led
,
87 .cancel_idc_work
= qlcnic_sriov_vf_cancel_fw_work
,
88 .napi_add
= qlcnic_83xx_napi_add
,
89 .napi_del
= qlcnic_83xx_napi_del
,
90 .shutdown
= qlcnic_sriov_vf_shutdown
,
91 .resume
= qlcnic_sriov_vf_resume
,
92 .config_ipaddr
= qlcnic_83xx_config_ipaddr
,
93 .clear_legacy_intr
= qlcnic_83xx_clear_legacy_intr
,
96 static const struct qlcnic_mailbox_metadata qlcnic_sriov_bc_mbx_tbl
[] = {
97 {QLCNIC_BC_CMD_CHANNEL_INIT
, 2, 2},
98 {QLCNIC_BC_CMD_CHANNEL_TERM
, 2, 2},
99 {QLCNIC_BC_CMD_GET_ACL
, 3, 14},
100 {QLCNIC_BC_CMD_CFG_GUEST_VLAN
, 2, 2},
103 static inline bool qlcnic_sriov_bc_msg_check(u32 val
)
105 return (val
& (1 << QLC_BC_MSG
)) ? true : false;
108 static inline bool qlcnic_sriov_channel_free_check(u32 val
)
110 return (val
& (1 << QLC_BC_CFREE
)) ? true : false;
113 static inline bool qlcnic_sriov_flr_check(u32 val
)
115 return (val
& (1 << QLC_BC_FLR
)) ? true : false;
118 static inline u8
qlcnic_sriov_target_func_id(u32 val
)
120 return (val
>> 4) & 0xff;
123 static int qlcnic_sriov_virtid_fn(struct qlcnic_adapter
*adapter
, int vf_id
)
125 struct pci_dev
*dev
= adapter
->pdev
;
129 if (qlcnic_sriov_vf_check(adapter
))
132 pos
= pci_find_ext_capability(dev
, PCI_EXT_CAP_ID_SRIOV
);
135 pci_read_config_word(dev
, pos
+ PCI_SRIOV_VF_OFFSET
, &offset
);
136 pci_read_config_word(dev
, pos
+ PCI_SRIOV_VF_STRIDE
, &stride
);
138 return (dev
->devfn
+ offset
+ stride
* vf_id
) & 0xff;
141 int qlcnic_sriov_init(struct qlcnic_adapter
*adapter
, int num_vfs
)
143 struct qlcnic_sriov
*sriov
;
144 struct qlcnic_back_channel
*bc
;
145 struct workqueue_struct
*wq
;
146 struct qlcnic_vport
*vp
;
147 struct qlcnic_vf_info
*vf
;
150 if (!qlcnic_sriov_enable_check(adapter
))
153 sriov
= kzalloc(sizeof(struct qlcnic_sriov
), GFP_KERNEL
);
157 adapter
->ahw
->sriov
= sriov
;
158 sriov
->num_vfs
= num_vfs
;
160 sriov
->vf_info
= kcalloc(num_vfs
, sizeof(struct qlcnic_vf_info
),
162 if (!sriov
->vf_info
) {
164 goto qlcnic_free_sriov
;
167 wq
= create_singlethread_workqueue("bc-trans");
170 dev_err(&adapter
->pdev
->dev
,
171 "Cannot create bc-trans workqueue\n");
172 goto qlcnic_free_vf_info
;
175 bc
->bc_trans_wq
= wq
;
177 wq
= create_singlethread_workqueue("async");
180 dev_err(&adapter
->pdev
->dev
, "Cannot create async workqueue\n");
181 goto qlcnic_destroy_trans_wq
;
184 bc
->bc_async_wq
= wq
;
185 INIT_LIST_HEAD(&bc
->async_cmd_list
);
186 INIT_WORK(&bc
->vf_async_work
, qlcnic_sriov_handle_async_issue_cmd
);
187 spin_lock_init(&bc
->queue_lock
);
188 bc
->adapter
= adapter
;
190 for (i
= 0; i
< num_vfs
; i
++) {
191 vf
= &sriov
->vf_info
[i
];
192 vf
->adapter
= adapter
;
193 vf
->pci_func
= qlcnic_sriov_virtid_fn(adapter
, i
);
194 mutex_init(&vf
->send_cmd_lock
);
195 spin_lock_init(&vf
->vlan_list_lock
);
196 INIT_LIST_HEAD(&vf
->rcv_act
.wait_list
);
197 INIT_LIST_HEAD(&vf
->rcv_pend
.wait_list
);
198 spin_lock_init(&vf
->rcv_act
.lock
);
199 spin_lock_init(&vf
->rcv_pend
.lock
);
200 init_completion(&vf
->ch_free_cmpl
);
202 INIT_WORK(&vf
->trans_work
, qlcnic_sriov_process_bc_cmd
);
204 if (qlcnic_sriov_pf_check(adapter
)) {
205 vp
= kzalloc(sizeof(struct qlcnic_vport
), GFP_KERNEL
);
208 goto qlcnic_destroy_async_wq
;
210 sriov
->vf_info
[i
].vp
= vp
;
211 vp
->vlan_mode
= QLC_GUEST_VLAN_MODE
;
212 vp
->max_tx_bw
= MAX_BW
;
213 vp
->min_tx_bw
= MIN_BW
;
214 vp
->spoofchk
= false;
215 eth_random_addr(vp
->mac
);
216 dev_info(&adapter
->pdev
->dev
,
217 "MAC Address %pM is configured for VF %d\n",
224 qlcnic_destroy_async_wq
:
225 destroy_workqueue(bc
->bc_async_wq
);
227 qlcnic_destroy_trans_wq
:
228 destroy_workqueue(bc
->bc_trans_wq
);
231 kfree(sriov
->vf_info
);
234 kfree(adapter
->ahw
->sriov
);
238 void qlcnic_sriov_cleanup_list(struct qlcnic_trans_list
*t_list
)
240 struct qlcnic_bc_trans
*trans
;
241 struct qlcnic_cmd_args cmd
;
244 spin_lock_irqsave(&t_list
->lock
, flags
);
246 while (!list_empty(&t_list
->wait_list
)) {
247 trans
= list_first_entry(&t_list
->wait_list
,
248 struct qlcnic_bc_trans
, list
);
249 list_del(&trans
->list
);
251 cmd
.req
.arg
= (u32
*)trans
->req_pay
;
252 cmd
.rsp
.arg
= (u32
*)trans
->rsp_pay
;
253 qlcnic_free_mbx_args(&cmd
);
254 qlcnic_sriov_cleanup_transaction(trans
);
257 spin_unlock_irqrestore(&t_list
->lock
, flags
);
260 void __qlcnic_sriov_cleanup(struct qlcnic_adapter
*adapter
)
262 struct qlcnic_sriov
*sriov
= adapter
->ahw
->sriov
;
263 struct qlcnic_back_channel
*bc
= &sriov
->bc
;
264 struct qlcnic_vf_info
*vf
;
267 if (!qlcnic_sriov_enable_check(adapter
))
270 qlcnic_sriov_cleanup_async_list(bc
);
271 destroy_workqueue(bc
->bc_async_wq
);
273 for (i
= 0; i
< sriov
->num_vfs
; i
++) {
274 vf
= &sriov
->vf_info
[i
];
275 qlcnic_sriov_cleanup_list(&vf
->rcv_pend
);
276 cancel_work_sync(&vf
->trans_work
);
277 qlcnic_sriov_cleanup_list(&vf
->rcv_act
);
280 destroy_workqueue(bc
->bc_trans_wq
);
282 for (i
= 0; i
< sriov
->num_vfs
; i
++)
283 kfree(sriov
->vf_info
[i
].vp
);
285 kfree(sriov
->vf_info
);
286 kfree(adapter
->ahw
->sriov
);
289 static void qlcnic_sriov_vf_cleanup(struct qlcnic_adapter
*adapter
)
291 qlcnic_sriov_channel_cfg_cmd(adapter
, QLCNIC_BC_CMD_CHANNEL_TERM
);
292 qlcnic_sriov_cfg_bc_intr(adapter
, 0);
293 __qlcnic_sriov_cleanup(adapter
);
296 void qlcnic_sriov_cleanup(struct qlcnic_adapter
*adapter
)
298 if (!test_bit(__QLCNIC_SRIOV_ENABLE
, &adapter
->state
))
301 qlcnic_sriov_free_vlans(adapter
);
303 if (qlcnic_sriov_pf_check(adapter
))
304 qlcnic_sriov_pf_cleanup(adapter
);
306 if (qlcnic_sriov_vf_check(adapter
))
307 qlcnic_sriov_vf_cleanup(adapter
);
310 static int qlcnic_sriov_post_bc_msg(struct qlcnic_adapter
*adapter
, u32
*hdr
,
311 u32
*pay
, u8 pci_func
, u8 size
)
313 struct qlcnic_hardware_context
*ahw
= adapter
->ahw
;
314 struct qlcnic_mailbox
*mbx
= ahw
->mailbox
;
315 struct qlcnic_cmd_args cmd
;
316 unsigned long timeout
;
319 memset(&cmd
, 0, sizeof(struct qlcnic_cmd_args
));
323 cmd
.func_num
= pci_func
;
324 cmd
.op_type
= QLC_83XX_MBX_POST_BC_OP
;
325 cmd
.cmd_op
= ((struct qlcnic_bc_hdr
*)hdr
)->cmd_op
;
327 err
= mbx
->ops
->enqueue_cmd(adapter
, &cmd
, &timeout
);
329 dev_err(&adapter
->pdev
->dev
,
330 "%s: Mailbox not available, cmd_op=0x%x, cmd_type=0x%x, pci_func=0x%x, op_mode=0x%x\n",
331 __func__
, cmd
.cmd_op
, cmd
.type
, ahw
->pci_func
,
336 if (!wait_for_completion_timeout(&cmd
.completion
, timeout
)) {
337 dev_err(&adapter
->pdev
->dev
,
338 "%s: Mailbox command timed out, cmd_op=0x%x, cmd_type=0x%x, pci_func=0x%x, op_mode=0x%x\n",
339 __func__
, cmd
.cmd_op
, cmd
.type
, ahw
->pci_func
,
341 flush_workqueue(mbx
->work_q
);
344 return cmd
.rsp_opcode
;
347 static void qlcnic_sriov_vf_cfg_buff_desc(struct qlcnic_adapter
*adapter
)
349 adapter
->num_rxd
= QLC_DEFAULT_RCV_DESCRIPTORS_SRIOV_VF
;
350 adapter
->max_rxd
= MAX_RCV_DESCRIPTORS_10G
;
351 adapter
->num_jumbo_rxd
= QLC_DEFAULT_JUMBO_RCV_DESCRIPTORS_SRIOV_VF
;
352 adapter
->max_jumbo_rxd
= MAX_JUMBO_RCV_DESCRIPTORS_10G
;
353 adapter
->num_txd
= MAX_CMD_DESCRIPTORS
;
354 adapter
->max_rds_rings
= MAX_RDS_RINGS
;
357 int qlcnic_sriov_get_vf_vport_info(struct qlcnic_adapter
*adapter
,
358 struct qlcnic_info
*npar_info
, u16 vport_id
)
360 struct device
*dev
= &adapter
->pdev
->dev
;
361 struct qlcnic_cmd_args cmd
;
365 err
= qlcnic_alloc_mbx_args(&cmd
, adapter
, QLCNIC_CMD_GET_NIC_INFO
);
369 cmd
.req
.arg
[1] = vport_id
<< 16 | 0x1;
370 err
= qlcnic_issue_cmd(adapter
, &cmd
);
372 dev_err(&adapter
->pdev
->dev
,
373 "Failed to get vport info, err=%d\n", err
);
374 qlcnic_free_mbx_args(&cmd
);
378 status
= cmd
.rsp
.arg
[2] & 0xffff;
380 npar_info
->min_tx_bw
= MSW(cmd
.rsp
.arg
[2]);
382 npar_info
->max_tx_bw
= LSW(cmd
.rsp
.arg
[3]);
384 npar_info
->max_tx_ques
= MSW(cmd
.rsp
.arg
[3]);
386 npar_info
->max_tx_mac_filters
= LSW(cmd
.rsp
.arg
[4]);
388 npar_info
->max_rx_mcast_mac_filters
= MSW(cmd
.rsp
.arg
[4]);
390 npar_info
->max_rx_ucast_mac_filters
= LSW(cmd
.rsp
.arg
[5]);
392 npar_info
->max_rx_ip_addr
= MSW(cmd
.rsp
.arg
[5]);
394 npar_info
->max_rx_lro_flow
= LSW(cmd
.rsp
.arg
[6]);
396 npar_info
->max_rx_status_rings
= MSW(cmd
.rsp
.arg
[6]);
398 npar_info
->max_rx_buf_rings
= LSW(cmd
.rsp
.arg
[7]);
400 npar_info
->max_rx_ques
= MSW(cmd
.rsp
.arg
[7]);
401 npar_info
->max_tx_vlan_keys
= LSW(cmd
.rsp
.arg
[8]);
402 npar_info
->max_local_ipv6_addrs
= MSW(cmd
.rsp
.arg
[8]);
403 npar_info
->max_remote_ipv6_addrs
= LSW(cmd
.rsp
.arg
[9]);
405 dev_info(dev
, "\n\tmin_tx_bw: %d, max_tx_bw: %d max_tx_ques: %d,\n"
406 "\tmax_tx_mac_filters: %d max_rx_mcast_mac_filters: %d,\n"
407 "\tmax_rx_ucast_mac_filters: 0x%x, max_rx_ip_addr: %d,\n"
408 "\tmax_rx_lro_flow: %d max_rx_status_rings: %d,\n"
409 "\tmax_rx_buf_rings: %d, max_rx_ques: %d, max_tx_vlan_keys %d\n"
410 "\tlocal_ipv6_addr: %d, remote_ipv6_addr: %d\n",
411 npar_info
->min_tx_bw
, npar_info
->max_tx_bw
,
412 npar_info
->max_tx_ques
, npar_info
->max_tx_mac_filters
,
413 npar_info
->max_rx_mcast_mac_filters
,
414 npar_info
->max_rx_ucast_mac_filters
, npar_info
->max_rx_ip_addr
,
415 npar_info
->max_rx_lro_flow
, npar_info
->max_rx_status_rings
,
416 npar_info
->max_rx_buf_rings
, npar_info
->max_rx_ques
,
417 npar_info
->max_tx_vlan_keys
, npar_info
->max_local_ipv6_addrs
,
418 npar_info
->max_remote_ipv6_addrs
);
420 qlcnic_free_mbx_args(&cmd
);
424 static int qlcnic_sriov_set_pvid_mode(struct qlcnic_adapter
*adapter
,
425 struct qlcnic_cmd_args
*cmd
)
427 adapter
->rx_pvid
= MSW(cmd
->rsp
.arg
[1]) & 0xffff;
428 adapter
->flags
&= ~QLCNIC_TAGGING_ENABLED
;
432 static int qlcnic_sriov_set_guest_vlan_mode(struct qlcnic_adapter
*adapter
,
433 struct qlcnic_cmd_args
*cmd
)
435 struct qlcnic_sriov
*sriov
= adapter
->ahw
->sriov
;
439 if (sriov
->allowed_vlans
)
442 sriov
->any_vlan
= cmd
->rsp
.arg
[2] & 0xf;
443 sriov
->num_allowed_vlans
= cmd
->rsp
.arg
[2] >> 16;
444 dev_info(&adapter
->pdev
->dev
, "Number of allowed Guest VLANs = %d\n",
445 sriov
->num_allowed_vlans
);
447 qlcnic_sriov_alloc_vlans(adapter
);
449 if (!sriov
->any_vlan
)
452 num_vlans
= sriov
->num_allowed_vlans
;
453 sriov
->allowed_vlans
= kcalloc(num_vlans
, sizeof(u16
), GFP_KERNEL
);
454 if (!sriov
->allowed_vlans
)
457 vlans
= (u16
*)&cmd
->rsp
.arg
[3];
458 for (i
= 0; i
< num_vlans
; i
++)
459 sriov
->allowed_vlans
[i
] = vlans
[i
];
464 static int qlcnic_sriov_get_vf_acl(struct qlcnic_adapter
*adapter
)
466 struct qlcnic_sriov
*sriov
= adapter
->ahw
->sriov
;
467 struct qlcnic_cmd_args cmd
;
470 memset(&cmd
, 0, sizeof(cmd
));
471 ret
= qlcnic_sriov_alloc_bc_mbx_args(&cmd
, QLCNIC_BC_CMD_GET_ACL
);
475 ret
= qlcnic_issue_cmd(adapter
, &cmd
);
477 dev_err(&adapter
->pdev
->dev
, "Failed to get ACL, err=%d\n",
480 sriov
->vlan_mode
= cmd
.rsp
.arg
[1] & 0x3;
481 switch (sriov
->vlan_mode
) {
482 case QLC_GUEST_VLAN_MODE
:
483 ret
= qlcnic_sriov_set_guest_vlan_mode(adapter
, &cmd
);
486 ret
= qlcnic_sriov_set_pvid_mode(adapter
, &cmd
);
491 qlcnic_free_mbx_args(&cmd
);
495 static int qlcnic_sriov_vf_init_driver(struct qlcnic_adapter
*adapter
)
497 struct qlcnic_hardware_context
*ahw
= adapter
->ahw
;
498 struct qlcnic_info nic_info
;
501 err
= qlcnic_sriov_get_vf_vport_info(adapter
, &nic_info
, 0);
505 ahw
->max_mc_count
= nic_info
.max_rx_mcast_mac_filters
;
507 err
= qlcnic_get_nic_info(adapter
, &nic_info
, ahw
->pci_func
);
511 if (qlcnic_83xx_get_port_info(adapter
))
514 qlcnic_sriov_vf_cfg_buff_desc(adapter
);
515 adapter
->flags
|= QLCNIC_ADAPTER_INITIALIZED
;
516 dev_info(&adapter
->pdev
->dev
, "HAL Version: %d\n",
517 adapter
->ahw
->fw_hal_version
);
519 ahw
->physical_port
= (u8
) nic_info
.phys_port
;
520 ahw
->switch_mode
= nic_info
.switch_mode
;
521 ahw
->max_mtu
= nic_info
.max_mtu
;
522 ahw
->op_mode
= nic_info
.op_mode
;
523 ahw
->capabilities
= nic_info
.capabilities
;
527 static int qlcnic_sriov_setup_vf(struct qlcnic_adapter
*adapter
,
532 adapter
->flags
|= QLCNIC_VLAN_FILTERING
;
533 adapter
->ahw
->total_nic_func
= 1;
534 INIT_LIST_HEAD(&adapter
->vf_mc_list
);
535 if (!qlcnic_use_msi_x
&& !!qlcnic_use_msi
)
536 dev_warn(&adapter
->pdev
->dev
,
537 "Device does not support MSI interrupts\n");
539 /* compute and set default and max tx/sds rings */
540 qlcnic_set_tx_ring_count(adapter
, QLCNIC_SINGLE_RING
);
541 qlcnic_set_sds_ring_count(adapter
, QLCNIC_SINGLE_RING
);
543 err
= qlcnic_setup_intr(adapter
);
545 dev_err(&adapter
->pdev
->dev
, "Failed to setup interrupt\n");
546 goto err_out_disable_msi
;
549 err
= qlcnic_83xx_setup_mbx_intr(adapter
);
551 goto err_out_disable_msi
;
553 err
= qlcnic_sriov_init(adapter
, 1);
555 goto err_out_disable_mbx_intr
;
557 err
= qlcnic_sriov_cfg_bc_intr(adapter
, 1);
559 goto err_out_cleanup_sriov
;
561 err
= qlcnic_sriov_channel_cfg_cmd(adapter
, QLCNIC_BC_CMD_CHANNEL_INIT
);
563 goto err_out_disable_bc_intr
;
565 err
= qlcnic_sriov_vf_init_driver(adapter
);
567 goto err_out_send_channel_term
;
569 err
= qlcnic_sriov_get_vf_acl(adapter
);
571 goto err_out_send_channel_term
;
573 err
= qlcnic_setup_netdev(adapter
, adapter
->netdev
, pci_using_dac
);
575 goto err_out_send_channel_term
;
577 pci_set_drvdata(adapter
->pdev
, adapter
);
578 dev_info(&adapter
->pdev
->dev
, "%s: XGbE port initialized\n",
579 adapter
->netdev
->name
);
581 qlcnic_schedule_work(adapter
, qlcnic_sriov_vf_poll_dev_state
,
582 adapter
->ahw
->idc
.delay
);
585 err_out_send_channel_term
:
586 qlcnic_sriov_channel_cfg_cmd(adapter
, QLCNIC_BC_CMD_CHANNEL_TERM
);
588 err_out_disable_bc_intr
:
589 qlcnic_sriov_cfg_bc_intr(adapter
, 0);
591 err_out_cleanup_sriov
:
592 __qlcnic_sriov_cleanup(adapter
);
594 err_out_disable_mbx_intr
:
595 qlcnic_83xx_free_mbx_intr(adapter
);
598 qlcnic_teardown_intr(adapter
);
602 static int qlcnic_sriov_check_dev_ready(struct qlcnic_adapter
*adapter
)
608 if (++adapter
->fw_fail_cnt
> QLC_BC_CMD_MAX_RETRY_CNT
)
610 state
= QLCRDX(adapter
->ahw
, QLC_83XX_IDC_DEV_STATE
);
611 } while (state
!= QLC_83XX_IDC_DEV_READY
);
616 int qlcnic_sriov_vf_init(struct qlcnic_adapter
*adapter
, int pci_using_dac
)
618 struct qlcnic_hardware_context
*ahw
= adapter
->ahw
;
621 set_bit(QLC_83XX_MODULE_LOADED
, &ahw
->idc
.status
);
622 ahw
->idc
.delay
= QLC_83XX_IDC_FW_POLL_DELAY
;
623 ahw
->reset_context
= 0;
624 adapter
->fw_fail_cnt
= 0;
625 ahw
->msix_supported
= 1;
626 adapter
->need_fw_reset
= 0;
627 adapter
->flags
|= QLCNIC_TX_INTR_SHARED
;
629 err
= qlcnic_sriov_check_dev_ready(adapter
);
633 err
= qlcnic_sriov_setup_vf(adapter
, pci_using_dac
);
637 if (qlcnic_read_mac_addr(adapter
))
638 dev_warn(&adapter
->pdev
->dev
, "failed to read mac addr\n");
640 INIT_DELAYED_WORK(&adapter
->idc_aen_work
, qlcnic_83xx_idc_aen_work
);
642 clear_bit(__QLCNIC_RESETTING
, &adapter
->state
);
646 void qlcnic_sriov_vf_set_ops(struct qlcnic_adapter
*adapter
)
648 struct qlcnic_hardware_context
*ahw
= adapter
->ahw
;
650 ahw
->op_mode
= QLCNIC_SRIOV_VF_FUNC
;
651 dev_info(&adapter
->pdev
->dev
,
652 "HAL Version: %d Non Privileged SRIOV function\n",
653 ahw
->fw_hal_version
);
654 adapter
->nic_ops
= &qlcnic_sriov_vf_ops
;
655 set_bit(__QLCNIC_SRIOV_ENABLE
, &adapter
->state
);
659 void qlcnic_sriov_vf_register_map(struct qlcnic_hardware_context
*ahw
)
661 ahw
->hw_ops
= &qlcnic_sriov_vf_hw_ops
;
662 ahw
->reg_tbl
= (u32
*)qlcnic_83xx_reg_tbl
;
663 ahw
->ext_reg_tbl
= (u32
*)qlcnic_83xx_ext_reg_tbl
;
666 static u32
qlcnic_sriov_get_bc_paysize(u32 real_pay_size
, u8 curr_frag
)
670 pay_size
= real_pay_size
/ ((curr_frag
+ 1) * QLC_BC_PAYLOAD_SZ
);
673 pay_size
= QLC_BC_PAYLOAD_SZ
;
675 pay_size
= real_pay_size
% QLC_BC_PAYLOAD_SZ
;
680 int qlcnic_sriov_func_to_index(struct qlcnic_adapter
*adapter
, u8 pci_func
)
682 struct qlcnic_vf_info
*vf_info
= adapter
->ahw
->sriov
->vf_info
;
685 if (qlcnic_sriov_vf_check(adapter
))
688 for (i
= 0; i
< adapter
->ahw
->sriov
->num_vfs
; i
++) {
689 if (vf_info
[i
].pci_func
== pci_func
)
696 static inline int qlcnic_sriov_alloc_bc_trans(struct qlcnic_bc_trans
**trans
)
698 *trans
= kzalloc(sizeof(struct qlcnic_bc_trans
), GFP_ATOMIC
);
702 init_completion(&(*trans
)->resp_cmpl
);
706 static inline int qlcnic_sriov_alloc_bc_msg(struct qlcnic_bc_hdr
**hdr
,
709 *hdr
= kcalloc(size
, sizeof(struct qlcnic_bc_hdr
), GFP_ATOMIC
);
716 static int qlcnic_sriov_alloc_bc_mbx_args(struct qlcnic_cmd_args
*mbx
, u32 type
)
718 const struct qlcnic_mailbox_metadata
*mbx_tbl
;
721 mbx_tbl
= qlcnic_sriov_bc_mbx_tbl
;
722 size
= ARRAY_SIZE(qlcnic_sriov_bc_mbx_tbl
);
724 for (i
= 0; i
< size
; i
++) {
725 if (type
== mbx_tbl
[i
].cmd
) {
726 mbx
->op_type
= QLC_BC_CMD
;
727 mbx
->req
.num
= mbx_tbl
[i
].in_args
;
728 mbx
->rsp
.num
= mbx_tbl
[i
].out_args
;
729 mbx
->req
.arg
= kcalloc(mbx
->req
.num
, sizeof(u32
),
733 mbx
->rsp
.arg
= kcalloc(mbx
->rsp
.num
, sizeof(u32
),
740 mbx
->req
.arg
[0] = (type
| (mbx
->req
.num
<< 16) |
742 mbx
->rsp
.arg
[0] = (type
& 0xffff) | mbx
->rsp
.num
<< 16;
749 static int qlcnic_sriov_prepare_bc_hdr(struct qlcnic_bc_trans
*trans
,
750 struct qlcnic_cmd_args
*cmd
,
751 u16 seq
, u8 msg_type
)
753 struct qlcnic_bc_hdr
*hdr
;
755 u32 num_regs
, bc_pay_sz
;
757 u8 cmd_op
, num_frags
, t_num_frags
;
759 bc_pay_sz
= QLC_BC_PAYLOAD_SZ
;
760 if (msg_type
== QLC_BC_COMMAND
) {
761 trans
->req_pay
= (struct qlcnic_bc_payload
*)cmd
->req
.arg
;
762 trans
->rsp_pay
= (struct qlcnic_bc_payload
*)cmd
->rsp
.arg
;
763 num_regs
= cmd
->req
.num
;
764 trans
->req_pay_size
= (num_regs
* 4);
765 num_regs
= cmd
->rsp
.num
;
766 trans
->rsp_pay_size
= (num_regs
* 4);
767 cmd_op
= cmd
->req
.arg
[0] & 0xff;
768 remainder
= (trans
->req_pay_size
) % (bc_pay_sz
);
769 num_frags
= (trans
->req_pay_size
) / (bc_pay_sz
);
772 t_num_frags
= num_frags
;
773 if (qlcnic_sriov_alloc_bc_msg(&trans
->req_hdr
, num_frags
))
775 remainder
= (trans
->rsp_pay_size
) % (bc_pay_sz
);
776 num_frags
= (trans
->rsp_pay_size
) / (bc_pay_sz
);
779 if (qlcnic_sriov_alloc_bc_msg(&trans
->rsp_hdr
, num_frags
))
781 num_frags
= t_num_frags
;
782 hdr
= trans
->req_hdr
;
784 cmd
->req
.arg
= (u32
*)trans
->req_pay
;
785 cmd
->rsp
.arg
= (u32
*)trans
->rsp_pay
;
786 cmd_op
= cmd
->req
.arg
[0] & 0xff;
787 cmd
->cmd_op
= cmd_op
;
788 remainder
= (trans
->rsp_pay_size
) % (bc_pay_sz
);
789 num_frags
= (trans
->rsp_pay_size
) / (bc_pay_sz
);
792 cmd
->req
.num
= trans
->req_pay_size
/ 4;
793 cmd
->rsp
.num
= trans
->rsp_pay_size
/ 4;
794 hdr
= trans
->rsp_hdr
;
795 cmd
->op_type
= trans
->req_hdr
->op_type
;
798 trans
->trans_id
= seq
;
799 trans
->cmd_id
= cmd_op
;
800 for (i
= 0; i
< num_frags
; i
++) {
802 hdr
[i
].msg_type
= msg_type
;
803 hdr
[i
].op_type
= cmd
->op_type
;
805 hdr
[i
].num_frags
= num_frags
;
806 hdr
[i
].frag_num
= i
+ 1;
807 hdr
[i
].cmd_op
= cmd_op
;
813 static void qlcnic_sriov_cleanup_transaction(struct qlcnic_bc_trans
*trans
)
817 kfree(trans
->req_hdr
);
818 kfree(trans
->rsp_hdr
);
822 static int qlcnic_sriov_clear_trans(struct qlcnic_vf_info
*vf
,
823 struct qlcnic_bc_trans
*trans
, u8 type
)
825 struct qlcnic_trans_list
*t_list
;
829 if (type
== QLC_BC_RESPONSE
) {
830 t_list
= &vf
->rcv_act
;
831 spin_lock_irqsave(&t_list
->lock
, flags
);
833 list_del(&trans
->list
);
834 if (t_list
->count
> 0)
836 spin_unlock_irqrestore(&t_list
->lock
, flags
);
838 if (type
== QLC_BC_COMMAND
) {
839 while (test_and_set_bit(QLC_BC_VF_SEND
, &vf
->state
))
842 clear_bit(QLC_BC_VF_SEND
, &vf
->state
);
847 static void qlcnic_sriov_schedule_bc_cmd(struct qlcnic_sriov
*sriov
,
848 struct qlcnic_vf_info
*vf
,
851 if (test_bit(QLC_BC_VF_FLR
, &vf
->state
) ||
852 vf
->adapter
->need_fw_reset
)
855 queue_work(sriov
->bc
.bc_trans_wq
, &vf
->trans_work
);
858 static inline void qlcnic_sriov_wait_for_resp(struct qlcnic_bc_trans
*trans
)
860 struct completion
*cmpl
= &trans
->resp_cmpl
;
862 if (wait_for_completion_timeout(cmpl
, QLC_MBOX_RESP_TIMEOUT
))
863 trans
->trans_state
= QLC_END
;
865 trans
->trans_state
= QLC_ABORT
;
870 static void qlcnic_sriov_handle_multi_frags(struct qlcnic_bc_trans
*trans
,
873 if (type
== QLC_BC_RESPONSE
) {
874 trans
->curr_rsp_frag
++;
875 if (trans
->curr_rsp_frag
< trans
->rsp_hdr
->num_frags
)
876 trans
->trans_state
= QLC_INIT
;
878 trans
->trans_state
= QLC_END
;
880 trans
->curr_req_frag
++;
881 if (trans
->curr_req_frag
< trans
->req_hdr
->num_frags
)
882 trans
->trans_state
= QLC_INIT
;
884 trans
->trans_state
= QLC_WAIT_FOR_RESP
;
888 static void qlcnic_sriov_wait_for_channel_free(struct qlcnic_bc_trans
*trans
,
891 struct qlcnic_vf_info
*vf
= trans
->vf
;
892 struct completion
*cmpl
= &vf
->ch_free_cmpl
;
894 if (!wait_for_completion_timeout(cmpl
, QLC_MBOX_CH_FREE_TIMEOUT
)) {
895 trans
->trans_state
= QLC_ABORT
;
899 clear_bit(QLC_BC_VF_CHANNEL
, &vf
->state
);
900 qlcnic_sriov_handle_multi_frags(trans
, type
);
903 static void qlcnic_sriov_pull_bc_msg(struct qlcnic_adapter
*adapter
,
904 u32
*hdr
, u32
*pay
, u32 size
)
906 struct qlcnic_hardware_context
*ahw
= adapter
->ahw
;
907 u8 i
, max
= 2, hdr_size
, j
;
909 hdr_size
= (sizeof(struct qlcnic_bc_hdr
) / sizeof(u32
));
910 max
= (size
/ sizeof(u32
)) + hdr_size
;
912 for (i
= 2, j
= 0; j
< hdr_size
; i
++, j
++)
913 *(hdr
++) = readl(QLCNIC_MBX_FW(ahw
, i
));
914 for (; j
< max
; i
++, j
++)
915 *(pay
++) = readl(QLCNIC_MBX_FW(ahw
, i
));
918 static int __qlcnic_sriov_issue_bc_post(struct qlcnic_vf_info
*vf
)
924 if (!test_and_set_bit(QLC_BC_VF_CHANNEL
, &vf
->state
)) {
934 static int qlcnic_sriov_issue_bc_post(struct qlcnic_bc_trans
*trans
, u8 type
)
936 struct qlcnic_vf_info
*vf
= trans
->vf
;
940 u8 pci_func
= trans
->func_id
;
942 if (__qlcnic_sriov_issue_bc_post(vf
))
945 if (type
== QLC_BC_COMMAND
) {
946 hdr
= (u32
*)(trans
->req_hdr
+ trans
->curr_req_frag
);
947 pay
= (u32
*)(trans
->req_pay
+ trans
->curr_req_frag
);
948 pay_size
= qlcnic_sriov_get_bc_paysize(trans
->req_pay_size
,
949 trans
->curr_req_frag
);
950 pay_size
= (pay_size
/ sizeof(u32
));
952 hdr
= (u32
*)(trans
->rsp_hdr
+ trans
->curr_rsp_frag
);
953 pay
= (u32
*)(trans
->rsp_pay
+ trans
->curr_rsp_frag
);
954 pay_size
= qlcnic_sriov_get_bc_paysize(trans
->rsp_pay_size
,
955 trans
->curr_rsp_frag
);
956 pay_size
= (pay_size
/ sizeof(u32
));
959 ret
= qlcnic_sriov_post_bc_msg(vf
->adapter
, hdr
, pay
,
964 static int __qlcnic_sriov_send_bc_msg(struct qlcnic_bc_trans
*trans
,
965 struct qlcnic_vf_info
*vf
, u8 type
)
971 if (test_bit(QLC_BC_VF_FLR
, &vf
->state
) ||
972 vf
->adapter
->need_fw_reset
)
973 trans
->trans_state
= QLC_ABORT
;
975 switch (trans
->trans_state
) {
977 trans
->trans_state
= QLC_WAIT_FOR_CHANNEL_FREE
;
978 if (qlcnic_sriov_issue_bc_post(trans
, type
))
979 trans
->trans_state
= QLC_ABORT
;
981 case QLC_WAIT_FOR_CHANNEL_FREE
:
982 qlcnic_sriov_wait_for_channel_free(trans
, type
);
984 case QLC_WAIT_FOR_RESP
:
985 qlcnic_sriov_wait_for_resp(trans
);
994 clear_bit(QLC_BC_VF_CHANNEL
, &vf
->state
);
1004 static int qlcnic_sriov_send_bc_cmd(struct qlcnic_adapter
*adapter
,
1005 struct qlcnic_bc_trans
*trans
, int pci_func
)
1007 struct qlcnic_vf_info
*vf
;
1008 int err
, index
= qlcnic_sriov_func_to_index(adapter
, pci_func
);
1013 vf
= &adapter
->ahw
->sriov
->vf_info
[index
];
1015 trans
->func_id
= pci_func
;
1017 if (!test_bit(QLC_BC_VF_STATE
, &vf
->state
)) {
1018 if (qlcnic_sriov_pf_check(adapter
))
1020 if (qlcnic_sriov_vf_check(adapter
) &&
1021 trans
->cmd_id
!= QLCNIC_BC_CMD_CHANNEL_INIT
)
1025 mutex_lock(&vf
->send_cmd_lock
);
1026 vf
->send_cmd
= trans
;
1027 err
= __qlcnic_sriov_send_bc_msg(trans
, vf
, QLC_BC_COMMAND
);
1028 qlcnic_sriov_clear_trans(vf
, trans
, QLC_BC_COMMAND
);
1029 mutex_unlock(&vf
->send_cmd_lock
);
1033 static void __qlcnic_sriov_process_bc_cmd(struct qlcnic_adapter
*adapter
,
1034 struct qlcnic_bc_trans
*trans
,
1035 struct qlcnic_cmd_args
*cmd
)
1037 #ifdef CONFIG_QLCNIC_SRIOV
1038 if (qlcnic_sriov_pf_check(adapter
)) {
1039 qlcnic_sriov_pf_process_bc_cmd(adapter
, trans
, cmd
);
1043 cmd
->rsp
.arg
[0] |= (0x9 << 25);
1047 static void qlcnic_sriov_process_bc_cmd(struct work_struct
*work
)
1049 struct qlcnic_vf_info
*vf
= container_of(work
, struct qlcnic_vf_info
,
1051 struct qlcnic_bc_trans
*trans
= NULL
;
1052 struct qlcnic_adapter
*adapter
= vf
->adapter
;
1053 struct qlcnic_cmd_args cmd
;
1056 if (adapter
->need_fw_reset
)
1059 if (test_bit(QLC_BC_VF_FLR
, &vf
->state
))
1062 memset(&cmd
, 0, sizeof(struct qlcnic_cmd_args
));
1063 trans
= list_first_entry(&vf
->rcv_act
.wait_list
,
1064 struct qlcnic_bc_trans
, list
);
1065 adapter
= vf
->adapter
;
1067 if (qlcnic_sriov_prepare_bc_hdr(trans
, &cmd
, trans
->req_hdr
->seq_id
,
1071 __qlcnic_sriov_process_bc_cmd(adapter
, trans
, &cmd
);
1072 trans
->trans_state
= QLC_INIT
;
1073 __qlcnic_sriov_send_bc_msg(trans
, vf
, QLC_BC_RESPONSE
);
1076 qlcnic_free_mbx_args(&cmd
);
1077 req
= qlcnic_sriov_clear_trans(vf
, trans
, QLC_BC_RESPONSE
);
1078 qlcnic_sriov_cleanup_transaction(trans
);
1080 qlcnic_sriov_schedule_bc_cmd(adapter
->ahw
->sriov
, vf
,
1081 qlcnic_sriov_process_bc_cmd
);
1084 static void qlcnic_sriov_handle_bc_resp(struct qlcnic_bc_hdr
*hdr
,
1085 struct qlcnic_vf_info
*vf
)
1087 struct qlcnic_bc_trans
*trans
;
1090 if (test_and_set_bit(QLC_BC_VF_SEND
, &vf
->state
))
1093 trans
= vf
->send_cmd
;
1098 if (trans
->trans_id
!= hdr
->seq_id
)
1101 pay_size
= qlcnic_sriov_get_bc_paysize(trans
->rsp_pay_size
,
1102 trans
->curr_rsp_frag
);
1103 qlcnic_sriov_pull_bc_msg(vf
->adapter
,
1104 (u32
*)(trans
->rsp_hdr
+ trans
->curr_rsp_frag
),
1105 (u32
*)(trans
->rsp_pay
+ trans
->curr_rsp_frag
),
1107 if (++trans
->curr_rsp_frag
< trans
->rsp_hdr
->num_frags
)
1110 complete(&trans
->resp_cmpl
);
1113 clear_bit(QLC_BC_VF_SEND
, &vf
->state
);
1116 int __qlcnic_sriov_add_act_list(struct qlcnic_sriov
*sriov
,
1117 struct qlcnic_vf_info
*vf
,
1118 struct qlcnic_bc_trans
*trans
)
1120 struct qlcnic_trans_list
*t_list
= &vf
->rcv_act
;
1123 list_add_tail(&trans
->list
, &t_list
->wait_list
);
1124 if (t_list
->count
== 1)
1125 qlcnic_sriov_schedule_bc_cmd(sriov
, vf
,
1126 qlcnic_sriov_process_bc_cmd
);
1130 static int qlcnic_sriov_add_act_list(struct qlcnic_sriov
*sriov
,
1131 struct qlcnic_vf_info
*vf
,
1132 struct qlcnic_bc_trans
*trans
)
1134 struct qlcnic_trans_list
*t_list
= &vf
->rcv_act
;
1136 spin_lock(&t_list
->lock
);
1138 __qlcnic_sriov_add_act_list(sriov
, vf
, trans
);
1140 spin_unlock(&t_list
->lock
);
1144 static void qlcnic_sriov_handle_pending_trans(struct qlcnic_sriov
*sriov
,
1145 struct qlcnic_vf_info
*vf
,
1146 struct qlcnic_bc_hdr
*hdr
)
1148 struct qlcnic_bc_trans
*trans
= NULL
;
1149 struct list_head
*node
;
1150 u32 pay_size
, curr_frag
;
1151 u8 found
= 0, active
= 0;
1153 spin_lock(&vf
->rcv_pend
.lock
);
1154 if (vf
->rcv_pend
.count
> 0) {
1155 list_for_each(node
, &vf
->rcv_pend
.wait_list
) {
1156 trans
= list_entry(node
, struct qlcnic_bc_trans
, list
);
1157 if (trans
->trans_id
== hdr
->seq_id
) {
1165 curr_frag
= trans
->curr_req_frag
;
1166 pay_size
= qlcnic_sriov_get_bc_paysize(trans
->req_pay_size
,
1168 qlcnic_sriov_pull_bc_msg(vf
->adapter
,
1169 (u32
*)(trans
->req_hdr
+ curr_frag
),
1170 (u32
*)(trans
->req_pay
+ curr_frag
),
1172 trans
->curr_req_frag
++;
1173 if (trans
->curr_req_frag
>= hdr
->num_frags
) {
1174 vf
->rcv_pend
.count
--;
1175 list_del(&trans
->list
);
1179 spin_unlock(&vf
->rcv_pend
.lock
);
1182 if (qlcnic_sriov_add_act_list(sriov
, vf
, trans
))
1183 qlcnic_sriov_cleanup_transaction(trans
);
1188 static void qlcnic_sriov_handle_bc_cmd(struct qlcnic_sriov
*sriov
,
1189 struct qlcnic_bc_hdr
*hdr
,
1190 struct qlcnic_vf_info
*vf
)
1192 struct qlcnic_bc_trans
*trans
;
1193 struct qlcnic_adapter
*adapter
= vf
->adapter
;
1194 struct qlcnic_cmd_args cmd
;
1199 if (adapter
->need_fw_reset
)
1202 if (!test_bit(QLC_BC_VF_STATE
, &vf
->state
) &&
1203 hdr
->op_type
!= QLC_BC_CMD
&&
1204 hdr
->cmd_op
!= QLCNIC_BC_CMD_CHANNEL_INIT
)
1207 if (hdr
->frag_num
> 1) {
1208 qlcnic_sriov_handle_pending_trans(sriov
, vf
, hdr
);
1212 memset(&cmd
, 0, sizeof(struct qlcnic_cmd_args
));
1213 cmd_op
= hdr
->cmd_op
;
1214 if (qlcnic_sriov_alloc_bc_trans(&trans
))
1217 if (hdr
->op_type
== QLC_BC_CMD
)
1218 err
= qlcnic_sriov_alloc_bc_mbx_args(&cmd
, cmd_op
);
1220 err
= qlcnic_alloc_mbx_args(&cmd
, adapter
, cmd_op
);
1223 qlcnic_sriov_cleanup_transaction(trans
);
1227 cmd
.op_type
= hdr
->op_type
;
1228 if (qlcnic_sriov_prepare_bc_hdr(trans
, &cmd
, hdr
->seq_id
,
1230 qlcnic_free_mbx_args(&cmd
);
1231 qlcnic_sriov_cleanup_transaction(trans
);
1235 pay_size
= qlcnic_sriov_get_bc_paysize(trans
->req_pay_size
,
1236 trans
->curr_req_frag
);
1237 qlcnic_sriov_pull_bc_msg(vf
->adapter
,
1238 (u32
*)(trans
->req_hdr
+ trans
->curr_req_frag
),
1239 (u32
*)(trans
->req_pay
+ trans
->curr_req_frag
),
1241 trans
->func_id
= vf
->pci_func
;
1243 trans
->trans_id
= hdr
->seq_id
;
1244 trans
->curr_req_frag
++;
1246 if (qlcnic_sriov_soft_flr_check(adapter
, trans
, vf
))
1249 if (trans
->curr_req_frag
== trans
->req_hdr
->num_frags
) {
1250 if (qlcnic_sriov_add_act_list(sriov
, vf
, trans
)) {
1251 qlcnic_free_mbx_args(&cmd
);
1252 qlcnic_sriov_cleanup_transaction(trans
);
1255 spin_lock(&vf
->rcv_pend
.lock
);
1256 list_add_tail(&trans
->list
, &vf
->rcv_pend
.wait_list
);
1257 vf
->rcv_pend
.count
++;
1258 spin_unlock(&vf
->rcv_pend
.lock
);
1262 static void qlcnic_sriov_handle_msg_event(struct qlcnic_sriov
*sriov
,
1263 struct qlcnic_vf_info
*vf
)
1265 struct qlcnic_bc_hdr hdr
;
1266 u32
*ptr
= (u32
*)&hdr
;
1269 for (i
= 2; i
< 6; i
++)
1270 ptr
[i
- 2] = readl(QLCNIC_MBX_FW(vf
->adapter
->ahw
, i
));
1271 msg_type
= hdr
.msg_type
;
1274 case QLC_BC_COMMAND
:
1275 qlcnic_sriov_handle_bc_cmd(sriov
, &hdr
, vf
);
1277 case QLC_BC_RESPONSE
:
1278 qlcnic_sriov_handle_bc_resp(&hdr
, vf
);
1283 static void qlcnic_sriov_handle_flr_event(struct qlcnic_sriov
*sriov
,
1284 struct qlcnic_vf_info
*vf
)
1286 struct qlcnic_adapter
*adapter
= vf
->adapter
;
1288 if (qlcnic_sriov_pf_check(adapter
))
1289 qlcnic_sriov_pf_handle_flr(sriov
, vf
);
1291 dev_err(&adapter
->pdev
->dev
,
1292 "Invalid event to VF. VF should not get FLR event\n");
1295 void qlcnic_sriov_handle_bc_event(struct qlcnic_adapter
*adapter
, u32 event
)
1297 struct qlcnic_vf_info
*vf
;
1298 struct qlcnic_sriov
*sriov
;
1302 sriov
= adapter
->ahw
->sriov
;
1303 pci_func
= qlcnic_sriov_target_func_id(event
);
1304 index
= qlcnic_sriov_func_to_index(adapter
, pci_func
);
1309 vf
= &sriov
->vf_info
[index
];
1310 vf
->pci_func
= pci_func
;
1312 if (qlcnic_sriov_channel_free_check(event
))
1313 complete(&vf
->ch_free_cmpl
);
1315 if (qlcnic_sriov_flr_check(event
)) {
1316 qlcnic_sriov_handle_flr_event(sriov
, vf
);
1320 if (qlcnic_sriov_bc_msg_check(event
))
1321 qlcnic_sriov_handle_msg_event(sriov
, vf
);
1324 int qlcnic_sriov_cfg_bc_intr(struct qlcnic_adapter
*adapter
, u8 enable
)
1326 struct qlcnic_cmd_args cmd
;
1329 if (!test_bit(__QLCNIC_SRIOV_ENABLE
, &adapter
->state
))
1332 if (qlcnic_alloc_mbx_args(&cmd
, adapter
, QLCNIC_CMD_BC_EVENT_SETUP
))
1336 cmd
.req
.arg
[1] = (1 << 4) | (1 << 5) | (1 << 6) | (1 << 7);
1338 err
= qlcnic_83xx_issue_cmd(adapter
, &cmd
);
1340 if (err
!= QLCNIC_RCODE_SUCCESS
) {
1341 dev_err(&adapter
->pdev
->dev
,
1342 "Failed to %s bc events, err=%d\n",
1343 (enable
? "enable" : "disable"), err
);
1346 qlcnic_free_mbx_args(&cmd
);
1350 static int qlcnic_sriov_retry_bc_cmd(struct qlcnic_adapter
*adapter
,
1351 struct qlcnic_bc_trans
*trans
)
1353 u8 max
= QLC_BC_CMD_MAX_RETRY_CNT
;
1356 state
= QLCRDX(adapter
->ahw
, QLC_83XX_IDC_DEV_STATE
);
1357 if (state
== QLC_83XX_IDC_DEV_READY
) {
1359 clear_bit(QLC_BC_VF_CHANNEL
, &trans
->vf
->state
);
1360 trans
->trans_state
= QLC_INIT
;
1361 if (++adapter
->fw_fail_cnt
> max
)
1370 static int __qlcnic_sriov_issue_cmd(struct qlcnic_adapter
*adapter
,
1371 struct qlcnic_cmd_args
*cmd
)
1373 struct qlcnic_hardware_context
*ahw
= adapter
->ahw
;
1374 struct qlcnic_mailbox
*mbx
= ahw
->mailbox
;
1375 struct device
*dev
= &adapter
->pdev
->dev
;
1376 struct qlcnic_bc_trans
*trans
;
1378 u32 rsp_data
, opcode
, mbx_err_code
, rsp
;
1379 u16 seq
= ++adapter
->ahw
->sriov
->bc
.trans_counter
;
1380 u8 func
= ahw
->pci_func
;
1382 rsp
= qlcnic_sriov_alloc_bc_trans(&trans
);
1386 rsp
= qlcnic_sriov_prepare_bc_hdr(trans
, cmd
, seq
, QLC_BC_COMMAND
);
1388 goto cleanup_transaction
;
1391 if (!test_bit(QLC_83XX_MBX_READY
, &mbx
->status
)) {
1393 QLCDB(adapter
, DRV
, "MBX not Ready!(cmd 0x%x) for VF 0x%x\n",
1394 QLCNIC_MBX_RSP(cmd
->req
.arg
[0]), func
);
1398 err
= qlcnic_sriov_send_bc_cmd(adapter
, trans
, func
);
1400 dev_err(dev
, "MBX command 0x%x timed out for VF %d\n",
1401 (cmd
->req
.arg
[0] & 0xffff), func
);
1402 rsp
= QLCNIC_RCODE_TIMEOUT
;
1404 /* After adapter reset PF driver may take some time to
1405 * respond to VF's request. Retry request till maximum retries.
1407 if ((trans
->req_hdr
->cmd_op
== QLCNIC_BC_CMD_CHANNEL_INIT
) &&
1408 !qlcnic_sriov_retry_bc_cmd(adapter
, trans
))
1414 rsp_data
= cmd
->rsp
.arg
[0];
1415 mbx_err_code
= QLCNIC_MBX_STATUS(rsp_data
);
1416 opcode
= QLCNIC_MBX_RSP(cmd
->req
.arg
[0]);
1418 if ((mbx_err_code
== QLCNIC_MBX_RSP_OK
) ||
1419 (mbx_err_code
== QLCNIC_MBX_PORT_RSP_OK
)) {
1420 rsp
= QLCNIC_RCODE_SUCCESS
;
1422 if (cmd
->type
== QLC_83XX_MBX_CMD_NO_WAIT
) {
1423 rsp
= QLCNIC_RCODE_SUCCESS
;
1430 "MBX command 0x%x failed with err:0x%x for VF %d\n",
1431 opcode
, mbx_err_code
, func
);
1436 if (rsp
== QLCNIC_RCODE_TIMEOUT
) {
1437 ahw
->reset_context
= 1;
1438 adapter
->need_fw_reset
= 1;
1439 clear_bit(QLC_83XX_MBX_READY
, &mbx
->status
);
1442 cleanup_transaction
:
1443 qlcnic_sriov_cleanup_transaction(trans
);
1446 if (cmd
->type
== QLC_83XX_MBX_CMD_NO_WAIT
) {
1447 qlcnic_free_mbx_args(cmd
);
1455 static int qlcnic_sriov_issue_cmd(struct qlcnic_adapter
*adapter
,
1456 struct qlcnic_cmd_args
*cmd
)
1458 if (cmd
->type
== QLC_83XX_MBX_CMD_NO_WAIT
)
1459 return qlcnic_sriov_async_issue_cmd(adapter
, cmd
);
1461 return __qlcnic_sriov_issue_cmd(adapter
, cmd
);
1464 static int qlcnic_sriov_channel_cfg_cmd(struct qlcnic_adapter
*adapter
, u8 cmd_op
)
1466 struct qlcnic_cmd_args cmd
;
1467 struct qlcnic_vf_info
*vf
= &adapter
->ahw
->sriov
->vf_info
[0];
1470 memset(&cmd
, 0, sizeof(cmd
));
1471 if (qlcnic_sriov_alloc_bc_mbx_args(&cmd
, cmd_op
))
1474 ret
= qlcnic_issue_cmd(adapter
, &cmd
);
1476 dev_err(&adapter
->pdev
->dev
,
1477 "Failed bc channel %s %d\n", cmd_op
? "term" : "init",
1482 cmd_op
= (cmd
.rsp
.arg
[0] & 0xff);
1483 if (cmd
.rsp
.arg
[0] >> 25 == 2)
1485 if (cmd_op
== QLCNIC_BC_CMD_CHANNEL_INIT
)
1486 set_bit(QLC_BC_VF_STATE
, &vf
->state
);
1488 clear_bit(QLC_BC_VF_STATE
, &vf
->state
);
1491 qlcnic_free_mbx_args(&cmd
);
1495 static void qlcnic_vf_add_mc_list(struct net_device
*netdev
, const u8
*mac
,
1496 enum qlcnic_mac_type mac_type
)
1498 struct qlcnic_adapter
*adapter
= netdev_priv(netdev
);
1499 struct qlcnic_sriov
*sriov
= adapter
->ahw
->sriov
;
1500 struct qlcnic_vf_info
*vf
;
1504 vf
= &adapter
->ahw
->sriov
->vf_info
[0];
1506 if (!qlcnic_sriov_check_any_vlan(vf
)) {
1507 qlcnic_nic_add_mac(adapter
, mac
, 0, mac_type
);
1509 spin_lock(&vf
->vlan_list_lock
);
1510 for (i
= 0; i
< sriov
->num_allowed_vlans
; i
++) {
1511 vlan_id
= vf
->sriov_vlans
[i
];
1513 qlcnic_nic_add_mac(adapter
, mac
, vlan_id
,
1516 spin_unlock(&vf
->vlan_list_lock
);
1517 if (qlcnic_84xx_check(adapter
))
1518 qlcnic_nic_add_mac(adapter
, mac
, 0, mac_type
);
1522 void qlcnic_sriov_cleanup_async_list(struct qlcnic_back_channel
*bc
)
1524 struct list_head
*head
= &bc
->async_cmd_list
;
1525 struct qlcnic_async_cmd
*entry
;
1527 flush_workqueue(bc
->bc_async_wq
);
1528 cancel_work_sync(&bc
->vf_async_work
);
1530 spin_lock(&bc
->queue_lock
);
1531 while (!list_empty(head
)) {
1532 entry
= list_entry(head
->next
, struct qlcnic_async_cmd
,
1534 list_del(&entry
->list
);
1538 spin_unlock(&bc
->queue_lock
);
1541 void qlcnic_sriov_vf_set_multi(struct net_device
*netdev
)
1543 struct qlcnic_adapter
*adapter
= netdev_priv(netdev
);
1544 struct qlcnic_hardware_context
*ahw
= adapter
->ahw
;
1545 static const u8 bcast_addr
[ETH_ALEN
] = {
1546 0xff, 0xff, 0xff, 0xff, 0xff, 0xff
1548 struct netdev_hw_addr
*ha
;
1549 u32 mode
= VPORT_MISS_MODE_DROP
;
1551 if (!test_bit(__QLCNIC_FW_ATTACHED
, &adapter
->state
))
1554 if (netdev
->flags
& IFF_PROMISC
) {
1555 if (!(adapter
->flags
& QLCNIC_PROMISC_DISABLED
))
1556 mode
= VPORT_MISS_MODE_ACCEPT_ALL
;
1557 } else if ((netdev
->flags
& IFF_ALLMULTI
) ||
1558 (netdev_mc_count(netdev
) > ahw
->max_mc_count
)) {
1559 mode
= VPORT_MISS_MODE_ACCEPT_MULTI
;
1561 qlcnic_vf_add_mc_list(netdev
, bcast_addr
, QLCNIC_BROADCAST_MAC
);
1562 if (!netdev_mc_empty(netdev
)) {
1563 qlcnic_flush_mcast_mac(adapter
);
1564 netdev_for_each_mc_addr(ha
, netdev
)
1565 qlcnic_vf_add_mc_list(netdev
, ha
->addr
,
1566 QLCNIC_MULTICAST_MAC
);
1570 /* configure unicast MAC address, if there is not sufficient space
1571 * to store all the unicast addresses then enable promiscuous mode
1573 if (netdev_uc_count(netdev
) > ahw
->max_uc_count
) {
1574 mode
= VPORT_MISS_MODE_ACCEPT_ALL
;
1575 } else if (!netdev_uc_empty(netdev
)) {
1576 netdev_for_each_uc_addr(ha
, netdev
)
1577 qlcnic_vf_add_mc_list(netdev
, ha
->addr
,
1578 QLCNIC_UNICAST_MAC
);
1581 if (adapter
->pdev
->is_virtfn
) {
1582 if (mode
== VPORT_MISS_MODE_ACCEPT_ALL
&&
1583 !adapter
->fdb_mac_learn
) {
1584 qlcnic_alloc_lb_filters_mem(adapter
);
1585 adapter
->drv_mac_learn
= 1;
1586 adapter
->rx_mac_learn
= true;
1588 adapter
->drv_mac_learn
= 0;
1589 adapter
->rx_mac_learn
= false;
1593 qlcnic_nic_set_promisc(adapter
, mode
);
1596 static void qlcnic_sriov_handle_async_issue_cmd(struct work_struct
*work
)
1598 struct qlcnic_async_cmd
*entry
, *tmp
;
1599 struct qlcnic_back_channel
*bc
;
1600 struct qlcnic_cmd_args
*cmd
;
1601 struct list_head
*head
;
1602 LIST_HEAD(del_list
);
1604 bc
= container_of(work
, struct qlcnic_back_channel
, vf_async_work
);
1605 head
= &bc
->async_cmd_list
;
1607 spin_lock(&bc
->queue_lock
);
1608 list_splice_init(head
, &del_list
);
1609 spin_unlock(&bc
->queue_lock
);
1611 list_for_each_entry_safe(entry
, tmp
, &del_list
, list
) {
1612 list_del(&entry
->list
);
1614 __qlcnic_sriov_issue_cmd(bc
->adapter
, cmd
);
1618 if (!list_empty(head
))
1619 queue_work(bc
->bc_async_wq
, &bc
->vf_async_work
);
1624 static struct qlcnic_async_cmd
*
1625 qlcnic_sriov_alloc_async_cmd(struct qlcnic_back_channel
*bc
,
1626 struct qlcnic_cmd_args
*cmd
)
1628 struct qlcnic_async_cmd
*entry
= NULL
;
1630 entry
= kzalloc(sizeof(*entry
), GFP_ATOMIC
);
1636 spin_lock(&bc
->queue_lock
);
1637 list_add_tail(&entry
->list
, &bc
->async_cmd_list
);
1638 spin_unlock(&bc
->queue_lock
);
1643 static void qlcnic_sriov_schedule_async_cmd(struct qlcnic_back_channel
*bc
,
1644 struct qlcnic_cmd_args
*cmd
)
1646 struct qlcnic_async_cmd
*entry
= NULL
;
1648 entry
= qlcnic_sriov_alloc_async_cmd(bc
, cmd
);
1650 qlcnic_free_mbx_args(cmd
);
1655 queue_work(bc
->bc_async_wq
, &bc
->vf_async_work
);
1658 static int qlcnic_sriov_async_issue_cmd(struct qlcnic_adapter
*adapter
,
1659 struct qlcnic_cmd_args
*cmd
)
1662 struct qlcnic_back_channel
*bc
= &adapter
->ahw
->sriov
->bc
;
1664 if (adapter
->need_fw_reset
)
1667 qlcnic_sriov_schedule_async_cmd(bc
, cmd
);
1672 static int qlcnic_sriov_vf_reinit_driver(struct qlcnic_adapter
*adapter
)
1676 adapter
->need_fw_reset
= 0;
1677 qlcnic_83xx_reinit_mbx_work(adapter
->ahw
->mailbox
);
1678 qlcnic_83xx_enable_mbx_interrupt(adapter
);
1680 err
= qlcnic_sriov_cfg_bc_intr(adapter
, 1);
1684 err
= qlcnic_sriov_channel_cfg_cmd(adapter
, QLCNIC_BC_CMD_CHANNEL_INIT
);
1686 goto err_out_cleanup_bc_intr
;
1688 err
= qlcnic_sriov_vf_init_driver(adapter
);
1690 goto err_out_term_channel
;
1694 err_out_term_channel
:
1695 qlcnic_sriov_channel_cfg_cmd(adapter
, QLCNIC_BC_CMD_CHANNEL_TERM
);
1697 err_out_cleanup_bc_intr
:
1698 qlcnic_sriov_cfg_bc_intr(adapter
, 0);
1702 static void qlcnic_sriov_vf_attach(struct qlcnic_adapter
*adapter
)
1704 struct net_device
*netdev
= adapter
->netdev
;
1706 if (netif_running(netdev
)) {
1707 if (!qlcnic_up(adapter
, netdev
))
1708 qlcnic_restore_indev_addr(netdev
, NETDEV_UP
);
1711 netif_device_attach(netdev
);
1714 static void qlcnic_sriov_vf_detach(struct qlcnic_adapter
*adapter
)
1716 struct qlcnic_hardware_context
*ahw
= adapter
->ahw
;
1717 struct qlcnic_intrpt_config
*intr_tbl
= ahw
->intr_tbl
;
1718 struct net_device
*netdev
= adapter
->netdev
;
1719 u8 i
, max_ints
= ahw
->num_msix
- 1;
1721 netif_device_detach(netdev
);
1722 qlcnic_83xx_detach_mailbox_work(adapter
);
1723 qlcnic_83xx_disable_mbx_intr(adapter
);
1725 if (netif_running(netdev
))
1726 qlcnic_down(adapter
, netdev
);
1728 for (i
= 0; i
< max_ints
; i
++) {
1730 intr_tbl
[i
].enabled
= 0;
1731 intr_tbl
[i
].src
= 0;
1733 ahw
->reset_context
= 0;
1736 static int qlcnic_sriov_vf_handle_dev_ready(struct qlcnic_adapter
*adapter
)
1738 struct qlcnic_hardware_context
*ahw
= adapter
->ahw
;
1739 struct device
*dev
= &adapter
->pdev
->dev
;
1740 struct qlc_83xx_idc
*idc
= &ahw
->idc
;
1741 u8 func
= ahw
->pci_func
;
1744 if ((idc
->prev_state
== QLC_83XX_IDC_DEV_NEED_RESET
) ||
1745 (idc
->prev_state
== QLC_83XX_IDC_DEV_INIT
)) {
1746 if (!qlcnic_sriov_vf_reinit_driver(adapter
)) {
1747 qlcnic_sriov_vf_attach(adapter
);
1748 adapter
->fw_fail_cnt
= 0;
1750 "%s: Reinitialization of VF 0x%x done after FW reset\n",
1754 "%s: Reinitialization of VF 0x%x failed after FW reset\n",
1756 state
= QLCRDX(ahw
, QLC_83XX_IDC_DEV_STATE
);
1757 dev_info(dev
, "Current state 0x%x after FW reset\n",
1765 static int qlcnic_sriov_vf_handle_context_reset(struct qlcnic_adapter
*adapter
)
1767 struct qlcnic_hardware_context
*ahw
= adapter
->ahw
;
1768 struct qlcnic_mailbox
*mbx
= ahw
->mailbox
;
1769 struct device
*dev
= &adapter
->pdev
->dev
;
1770 struct qlc_83xx_idc
*idc
= &ahw
->idc
;
1771 u8 func
= ahw
->pci_func
;
1774 adapter
->reset_ctx_cnt
++;
1776 /* Skip the context reset and check if FW is hung */
1777 if (adapter
->reset_ctx_cnt
< 3) {
1778 adapter
->need_fw_reset
= 1;
1779 clear_bit(QLC_83XX_MBX_READY
, &mbx
->status
);
1781 "Resetting context, wait here to check if FW is in failed state\n");
1785 /* Check if number of resets exceed the threshold.
1786 * If it exceeds the threshold just fail the VF.
1788 if (adapter
->reset_ctx_cnt
> QLC_83XX_VF_RESET_FAIL_THRESH
) {
1789 clear_bit(QLC_83XX_MODULE_LOADED
, &idc
->status
);
1790 adapter
->tx_timeo_cnt
= 0;
1791 adapter
->fw_fail_cnt
= 0;
1792 adapter
->reset_ctx_cnt
= 0;
1793 qlcnic_sriov_vf_detach(adapter
);
1795 "Device context resets have exceeded the threshold, device interface will be shutdown\n");
1799 dev_info(dev
, "Resetting context of VF 0x%x\n", func
);
1800 dev_info(dev
, "%s: Context reset count %d for VF 0x%x\n",
1801 __func__
, adapter
->reset_ctx_cnt
, func
);
1802 set_bit(__QLCNIC_RESETTING
, &adapter
->state
);
1803 adapter
->need_fw_reset
= 1;
1804 clear_bit(QLC_83XX_MBX_READY
, &mbx
->status
);
1805 qlcnic_sriov_vf_detach(adapter
);
1806 adapter
->need_fw_reset
= 0;
1808 if (!qlcnic_sriov_vf_reinit_driver(adapter
)) {
1809 qlcnic_sriov_vf_attach(adapter
);
1810 adapter
->tx_timeo_cnt
= 0;
1811 adapter
->reset_ctx_cnt
= 0;
1812 adapter
->fw_fail_cnt
= 0;
1813 dev_info(dev
, "Done resetting context for VF 0x%x\n", func
);
1815 dev_err(dev
, "%s: Reinitialization of VF 0x%x failed\n",
1817 state
= QLCRDX(ahw
, QLC_83XX_IDC_DEV_STATE
);
1818 dev_info(dev
, "%s: Current state 0x%x\n", __func__
, state
);
1824 static int qlcnic_sriov_vf_idc_ready_state(struct qlcnic_adapter
*adapter
)
1826 struct qlcnic_hardware_context
*ahw
= adapter
->ahw
;
1829 if (ahw
->idc
.prev_state
!= QLC_83XX_IDC_DEV_READY
)
1830 ret
= qlcnic_sriov_vf_handle_dev_ready(adapter
);
1831 else if (ahw
->reset_context
)
1832 ret
= qlcnic_sriov_vf_handle_context_reset(adapter
);
1834 clear_bit(__QLCNIC_RESETTING
, &adapter
->state
);
1838 static int qlcnic_sriov_vf_idc_failed_state(struct qlcnic_adapter
*adapter
)
1840 struct qlc_83xx_idc
*idc
= &adapter
->ahw
->idc
;
1842 dev_err(&adapter
->pdev
->dev
, "Device is in failed state\n");
1843 if (idc
->prev_state
== QLC_83XX_IDC_DEV_READY
)
1844 qlcnic_sriov_vf_detach(adapter
);
1846 clear_bit(QLC_83XX_MODULE_LOADED
, &idc
->status
);
1847 clear_bit(__QLCNIC_RESETTING
, &adapter
->state
);
1852 qlcnic_sriov_vf_idc_need_quiescent_state(struct qlcnic_adapter
*adapter
)
1854 struct qlcnic_mailbox
*mbx
= adapter
->ahw
->mailbox
;
1855 struct qlc_83xx_idc
*idc
= &adapter
->ahw
->idc
;
1857 dev_info(&adapter
->pdev
->dev
, "Device is in quiescent state\n");
1858 if (idc
->prev_state
== QLC_83XX_IDC_DEV_READY
) {
1859 set_bit(__QLCNIC_RESETTING
, &adapter
->state
);
1860 adapter
->tx_timeo_cnt
= 0;
1861 adapter
->reset_ctx_cnt
= 0;
1862 clear_bit(QLC_83XX_MBX_READY
, &mbx
->status
);
1863 qlcnic_sriov_vf_detach(adapter
);
1869 static int qlcnic_sriov_vf_idc_init_reset_state(struct qlcnic_adapter
*adapter
)
1871 struct qlcnic_mailbox
*mbx
= adapter
->ahw
->mailbox
;
1872 struct qlc_83xx_idc
*idc
= &adapter
->ahw
->idc
;
1873 u8 func
= adapter
->ahw
->pci_func
;
1875 if (idc
->prev_state
== QLC_83XX_IDC_DEV_READY
) {
1876 dev_err(&adapter
->pdev
->dev
,
1877 "Firmware hang detected by VF 0x%x\n", func
);
1878 set_bit(__QLCNIC_RESETTING
, &adapter
->state
);
1879 adapter
->tx_timeo_cnt
= 0;
1880 adapter
->reset_ctx_cnt
= 0;
1881 clear_bit(QLC_83XX_MBX_READY
, &mbx
->status
);
1882 qlcnic_sriov_vf_detach(adapter
);
1887 static int qlcnic_sriov_vf_idc_unknown_state(struct qlcnic_adapter
*adapter
)
1889 dev_err(&adapter
->pdev
->dev
, "%s: Device in unknown state\n", __func__
);
1893 static void qlcnic_sriov_vf_periodic_tasks(struct qlcnic_adapter
*adapter
)
1895 if (adapter
->fhash
.fnum
)
1896 qlcnic_prune_lb_filters(adapter
);
1899 static void qlcnic_sriov_vf_poll_dev_state(struct work_struct
*work
)
1901 struct qlcnic_adapter
*adapter
;
1902 struct qlc_83xx_idc
*idc
;
1905 adapter
= container_of(work
, struct qlcnic_adapter
, fw_work
.work
);
1906 idc
= &adapter
->ahw
->idc
;
1907 idc
->curr_state
= QLCRDX(adapter
->ahw
, QLC_83XX_IDC_DEV_STATE
);
1909 switch (idc
->curr_state
) {
1910 case QLC_83XX_IDC_DEV_READY
:
1911 ret
= qlcnic_sriov_vf_idc_ready_state(adapter
);
1913 case QLC_83XX_IDC_DEV_NEED_RESET
:
1914 case QLC_83XX_IDC_DEV_INIT
:
1915 ret
= qlcnic_sriov_vf_idc_init_reset_state(adapter
);
1917 case QLC_83XX_IDC_DEV_NEED_QUISCENT
:
1918 ret
= qlcnic_sriov_vf_idc_need_quiescent_state(adapter
);
1920 case QLC_83XX_IDC_DEV_FAILED
:
1921 ret
= qlcnic_sriov_vf_idc_failed_state(adapter
);
1923 case QLC_83XX_IDC_DEV_QUISCENT
:
1926 ret
= qlcnic_sriov_vf_idc_unknown_state(adapter
);
1929 idc
->prev_state
= idc
->curr_state
;
1930 qlcnic_sriov_vf_periodic_tasks(adapter
);
1932 if (!ret
&& test_bit(QLC_83XX_MODULE_LOADED
, &idc
->status
))
1933 qlcnic_schedule_work(adapter
, qlcnic_sriov_vf_poll_dev_state
,
1937 static void qlcnic_sriov_vf_cancel_fw_work(struct qlcnic_adapter
*adapter
)
1939 while (test_and_set_bit(__QLCNIC_RESETTING
, &adapter
->state
))
1942 clear_bit(QLC_83XX_MODULE_LOADED
, &adapter
->ahw
->idc
.status
);
1943 clear_bit(__QLCNIC_RESETTING
, &adapter
->state
);
1944 cancel_delayed_work_sync(&adapter
->fw_work
);
1947 static int qlcnic_sriov_check_vlan_id(struct qlcnic_sriov
*sriov
,
1948 struct qlcnic_vf_info
*vf
, u16 vlan_id
)
1950 int i
, err
= -EINVAL
;
1952 if (!vf
->sriov_vlans
)
1955 spin_lock_bh(&vf
->vlan_list_lock
);
1957 for (i
= 0; i
< sriov
->num_allowed_vlans
; i
++) {
1958 if (vf
->sriov_vlans
[i
] == vlan_id
) {
1964 spin_unlock_bh(&vf
->vlan_list_lock
);
1968 static int qlcnic_sriov_validate_num_vlans(struct qlcnic_sriov
*sriov
,
1969 struct qlcnic_vf_info
*vf
)
1973 spin_lock_bh(&vf
->vlan_list_lock
);
1975 if (vf
->num_vlan
>= sriov
->num_allowed_vlans
)
1978 spin_unlock_bh(&vf
->vlan_list_lock
);
1982 static int qlcnic_sriov_validate_vlan_cfg(struct qlcnic_adapter
*adapter
,
1985 struct qlcnic_sriov
*sriov
= adapter
->ahw
->sriov
;
1986 struct qlcnic_vf_info
*vf
;
1991 vf
= &adapter
->ahw
->sriov
->vf_info
[0];
1992 vlan_exist
= qlcnic_sriov_check_any_vlan(vf
);
1993 if (sriov
->vlan_mode
!= QLC_GUEST_VLAN_MODE
)
1997 if (qlcnic_83xx_vf_check(adapter
) && vlan_exist
)
2000 if (qlcnic_sriov_validate_num_vlans(sriov
, vf
))
2003 if (sriov
->any_vlan
) {
2004 for (i
= 0; i
< sriov
->num_allowed_vlans
; i
++) {
2005 if (sriov
->allowed_vlans
[i
] == vid
)
2013 if (!vlan_exist
|| qlcnic_sriov_check_vlan_id(sriov
, vf
, vid
))
2020 static void qlcnic_sriov_vlan_operation(struct qlcnic_vf_info
*vf
, u16 vlan_id
,
2021 enum qlcnic_vlan_operations opcode
)
2023 struct qlcnic_adapter
*adapter
= vf
->adapter
;
2024 struct qlcnic_sriov
*sriov
;
2026 sriov
= adapter
->ahw
->sriov
;
2028 if (!vf
->sriov_vlans
)
2031 spin_lock_bh(&vf
->vlan_list_lock
);
2035 qlcnic_sriov_add_vlan_id(sriov
, vf
, vlan_id
);
2037 case QLC_VLAN_DELETE
:
2038 qlcnic_sriov_del_vlan_id(sriov
, vf
, vlan_id
);
2041 netdev_err(adapter
->netdev
, "Invalid VLAN operation\n");
2044 spin_unlock_bh(&vf
->vlan_list_lock
);
2048 int qlcnic_sriov_cfg_vf_guest_vlan(struct qlcnic_adapter
*adapter
,
2051 struct qlcnic_sriov
*sriov
= adapter
->ahw
->sriov
;
2052 struct net_device
*netdev
= adapter
->netdev
;
2053 struct qlcnic_vf_info
*vf
;
2054 struct qlcnic_cmd_args cmd
;
2057 memset(&cmd
, 0, sizeof(cmd
));
2061 vf
= &adapter
->ahw
->sriov
->vf_info
[0];
2062 ret
= qlcnic_sriov_validate_vlan_cfg(adapter
, vid
, enable
);
2066 ret
= qlcnic_sriov_alloc_bc_mbx_args(&cmd
,
2067 QLCNIC_BC_CMD_CFG_GUEST_VLAN
);
2071 cmd
.req
.arg
[1] = (enable
& 1) | vid
<< 16;
2073 qlcnic_sriov_cleanup_async_list(&sriov
->bc
);
2074 ret
= qlcnic_issue_cmd(adapter
, &cmd
);
2076 dev_err(&adapter
->pdev
->dev
,
2077 "Failed to configure guest VLAN, err=%d\n", ret
);
2079 netif_addr_lock_bh(netdev
);
2080 qlcnic_free_mac_list(adapter
);
2081 netif_addr_unlock_bh(netdev
);
2084 qlcnic_sriov_vlan_operation(vf
, vid
, QLC_VLAN_ADD
);
2086 qlcnic_sriov_vlan_operation(vf
, vid
, QLC_VLAN_DELETE
);
2088 netif_addr_lock_bh(netdev
);
2089 qlcnic_set_multi(netdev
);
2090 netif_addr_unlock_bh(netdev
);
2093 qlcnic_free_mbx_args(&cmd
);
2097 static void qlcnic_sriov_vf_free_mac_list(struct qlcnic_adapter
*adapter
)
2099 struct list_head
*head
= &adapter
->mac_list
;
2100 struct qlcnic_mac_vlan_list
*cur
;
2102 while (!list_empty(head
)) {
2103 cur
= list_entry(head
->next
, struct qlcnic_mac_vlan_list
, list
);
2104 qlcnic_sre_macaddr_change(adapter
, cur
->mac_addr
, cur
->vlan_id
,
2106 list_del(&cur
->list
);
2112 static int qlcnic_sriov_vf_shutdown(struct pci_dev
*pdev
)
2114 struct qlcnic_adapter
*adapter
= pci_get_drvdata(pdev
);
2115 struct net_device
*netdev
= adapter
->netdev
;
2118 netif_device_detach(netdev
);
2119 qlcnic_cancel_idc_work(adapter
);
2121 if (netif_running(netdev
))
2122 qlcnic_down(adapter
, netdev
);
2124 qlcnic_sriov_channel_cfg_cmd(adapter
, QLCNIC_BC_CMD_CHANNEL_TERM
);
2125 qlcnic_sriov_cfg_bc_intr(adapter
, 0);
2126 qlcnic_83xx_disable_mbx_intr(adapter
);
2127 cancel_delayed_work_sync(&adapter
->idc_aen_work
);
2129 retval
= pci_save_state(pdev
);
2136 static int qlcnic_sriov_vf_resume(struct qlcnic_adapter
*adapter
)
2138 struct qlc_83xx_idc
*idc
= &adapter
->ahw
->idc
;
2139 struct net_device
*netdev
= adapter
->netdev
;
2142 set_bit(QLC_83XX_MODULE_LOADED
, &idc
->status
);
2143 qlcnic_83xx_enable_mbx_interrupt(adapter
);
2144 err
= qlcnic_sriov_cfg_bc_intr(adapter
, 1);
2148 err
= qlcnic_sriov_channel_cfg_cmd(adapter
, QLCNIC_BC_CMD_CHANNEL_INIT
);
2150 if (netif_running(netdev
)) {
2151 err
= qlcnic_up(adapter
, netdev
);
2153 qlcnic_restore_indev_addr(netdev
, NETDEV_UP
);
2157 netif_device_attach(netdev
);
2158 qlcnic_schedule_work(adapter
, qlcnic_sriov_vf_poll_dev_state
,
2163 void qlcnic_sriov_alloc_vlans(struct qlcnic_adapter
*adapter
)
2165 struct qlcnic_sriov
*sriov
= adapter
->ahw
->sriov
;
2166 struct qlcnic_vf_info
*vf
;
2169 for (i
= 0; i
< sriov
->num_vfs
; i
++) {
2170 vf
= &sriov
->vf_info
[i
];
2171 vf
->sriov_vlans
= kcalloc(sriov
->num_allowed_vlans
,
2172 sizeof(*vf
->sriov_vlans
), GFP_KERNEL
);
2176 void qlcnic_sriov_free_vlans(struct qlcnic_adapter
*adapter
)
2178 struct qlcnic_sriov
*sriov
= adapter
->ahw
->sriov
;
2179 struct qlcnic_vf_info
*vf
;
2182 for (i
= 0; i
< sriov
->num_vfs
; i
++) {
2183 vf
= &sriov
->vf_info
[i
];
2184 kfree(vf
->sriov_vlans
);
2185 vf
->sriov_vlans
= NULL
;
2189 void qlcnic_sriov_add_vlan_id(struct qlcnic_sriov
*sriov
,
2190 struct qlcnic_vf_info
*vf
, u16 vlan_id
)
2194 for (i
= 0; i
< sriov
->num_allowed_vlans
; i
++) {
2195 if (!vf
->sriov_vlans
[i
]) {
2196 vf
->sriov_vlans
[i
] = vlan_id
;
2203 void qlcnic_sriov_del_vlan_id(struct qlcnic_sriov
*sriov
,
2204 struct qlcnic_vf_info
*vf
, u16 vlan_id
)
2208 for (i
= 0; i
< sriov
->num_allowed_vlans
; i
++) {
2209 if (vf
->sriov_vlans
[i
] == vlan_id
) {
2210 vf
->sriov_vlans
[i
] = 0;
2217 bool qlcnic_sriov_check_any_vlan(struct qlcnic_vf_info
*vf
)
2221 spin_lock_bh(&vf
->vlan_list_lock
);
2226 spin_unlock_bh(&vf
->vlan_list_lock
);