1 // SPDX-License-Identifier: GPL-2.0-only
3 * QLogic qlcnic NIC Driver
4 * Copyright (c) 2009-2013 QLogic Corporation
7 #include <linux/types.h>
9 #include "qlcnic_sriov.h"
11 #include "qlcnic_83xx_hw.h"
13 #define QLC_BC_COMMAND 0
14 #define QLC_BC_RESPONSE 1
16 #define QLC_MBOX_RESP_TIMEOUT (10 * HZ)
17 #define QLC_MBOX_CH_FREE_TIMEOUT (10 * HZ)
20 #define QLC_BC_CFREE 1
22 #define QLC_BC_HDR_SZ 16
23 #define QLC_BC_PAYLOAD_SZ (1024 - QLC_BC_HDR_SZ)
25 #define QLC_DEFAULT_RCV_DESCRIPTORS_SRIOV_VF 2048
26 #define QLC_DEFAULT_JUMBO_RCV_DESCRIPTORS_SRIOV_VF 512
28 #define QLC_83XX_VF_RESET_FAIL_THRESH 8
29 #define QLC_BC_CMD_MAX_RETRY_CNT 5
31 static void qlcnic_sriov_handle_async_issue_cmd(struct work_struct
*work
);
32 static void qlcnic_sriov_vf_free_mac_list(struct qlcnic_adapter
*);
33 static int qlcnic_sriov_alloc_bc_mbx_args(struct qlcnic_cmd_args
*, u32
);
34 static void qlcnic_sriov_vf_poll_dev_state(struct work_struct
*);
35 static void qlcnic_sriov_vf_cancel_fw_work(struct qlcnic_adapter
*);
36 static void qlcnic_sriov_cleanup_transaction(struct qlcnic_bc_trans
*);
37 static int qlcnic_sriov_issue_cmd(struct qlcnic_adapter
*,
38 struct qlcnic_cmd_args
*);
39 static int qlcnic_sriov_channel_cfg_cmd(struct qlcnic_adapter
*, u8
);
40 static void qlcnic_sriov_process_bc_cmd(struct work_struct
*);
41 static int qlcnic_sriov_vf_shutdown(struct pci_dev
*);
42 static int qlcnic_sriov_vf_resume(struct qlcnic_adapter
*);
43 static int qlcnic_sriov_async_issue_cmd(struct qlcnic_adapter
*,
44 struct qlcnic_cmd_args
*);
46 static struct qlcnic_hardware_ops qlcnic_sriov_vf_hw_ops
= {
47 .read_crb
= qlcnic_83xx_read_crb
,
48 .write_crb
= qlcnic_83xx_write_crb
,
49 .read_reg
= qlcnic_83xx_rd_reg_indirect
,
50 .write_reg
= qlcnic_83xx_wrt_reg_indirect
,
51 .get_mac_address
= qlcnic_83xx_get_mac_address
,
52 .setup_intr
= qlcnic_83xx_setup_intr
,
53 .alloc_mbx_args
= qlcnic_83xx_alloc_mbx_args
,
54 .mbx_cmd
= qlcnic_sriov_issue_cmd
,
55 .get_func_no
= qlcnic_83xx_get_func_no
,
56 .api_lock
= qlcnic_83xx_cam_lock
,
57 .api_unlock
= qlcnic_83xx_cam_unlock
,
58 .process_lb_rcv_ring_diag
= qlcnic_83xx_process_rcv_ring_diag
,
59 .create_rx_ctx
= qlcnic_83xx_create_rx_ctx
,
60 .create_tx_ctx
= qlcnic_83xx_create_tx_ctx
,
61 .del_rx_ctx
= qlcnic_83xx_del_rx_ctx
,
62 .del_tx_ctx
= qlcnic_83xx_del_tx_ctx
,
63 .setup_link_event
= qlcnic_83xx_setup_link_event
,
64 .get_nic_info
= qlcnic_83xx_get_nic_info
,
65 .get_pci_info
= qlcnic_83xx_get_pci_info
,
66 .set_nic_info
= qlcnic_83xx_set_nic_info
,
67 .change_macvlan
= qlcnic_83xx_sre_macaddr_change
,
68 .napi_enable
= qlcnic_83xx_napi_enable
,
69 .napi_disable
= qlcnic_83xx_napi_disable
,
70 .config_intr_coal
= qlcnic_83xx_config_intr_coal
,
71 .config_rss
= qlcnic_83xx_config_rss
,
72 .config_hw_lro
= qlcnic_83xx_config_hw_lro
,
73 .config_promisc_mode
= qlcnic_83xx_nic_set_promisc
,
74 .change_l2_filter
= qlcnic_83xx_change_l2_filter
,
75 .get_board_info
= qlcnic_83xx_get_port_info
,
76 .free_mac_list
= qlcnic_sriov_vf_free_mac_list
,
77 .enable_sds_intr
= qlcnic_83xx_enable_sds_intr
,
78 .disable_sds_intr
= qlcnic_83xx_disable_sds_intr
,
79 .encap_rx_offload
= qlcnic_83xx_encap_rx_offload
,
80 .encap_tx_offload
= qlcnic_83xx_encap_tx_offload
,
83 static struct qlcnic_nic_template qlcnic_sriov_vf_ops
= {
84 .config_bridged_mode
= qlcnic_config_bridged_mode
,
85 .config_led
= qlcnic_config_led
,
86 .cancel_idc_work
= qlcnic_sriov_vf_cancel_fw_work
,
87 .napi_add
= qlcnic_83xx_napi_add
,
88 .napi_del
= qlcnic_83xx_napi_del
,
89 .shutdown
= qlcnic_sriov_vf_shutdown
,
90 .resume
= qlcnic_sriov_vf_resume
,
91 .config_ipaddr
= qlcnic_83xx_config_ipaddr
,
92 .clear_legacy_intr
= qlcnic_83xx_clear_legacy_intr
,
95 static const struct qlcnic_mailbox_metadata qlcnic_sriov_bc_mbx_tbl
[] = {
96 {QLCNIC_BC_CMD_CHANNEL_INIT
, 2, 2},
97 {QLCNIC_BC_CMD_CHANNEL_TERM
, 2, 2},
98 {QLCNIC_BC_CMD_GET_ACL
, 3, 14},
99 {QLCNIC_BC_CMD_CFG_GUEST_VLAN
, 2, 2},
102 static inline bool qlcnic_sriov_bc_msg_check(u32 val
)
104 return (val
& (1 << QLC_BC_MSG
)) ? true : false;
107 static inline bool qlcnic_sriov_channel_free_check(u32 val
)
109 return (val
& (1 << QLC_BC_CFREE
)) ? true : false;
112 static inline bool qlcnic_sriov_flr_check(u32 val
)
114 return (val
& (1 << QLC_BC_FLR
)) ? true : false;
117 static inline u8
qlcnic_sriov_target_func_id(u32 val
)
119 return (val
>> 4) & 0xff;
122 static int qlcnic_sriov_virtid_fn(struct qlcnic_adapter
*adapter
, int vf_id
)
124 struct pci_dev
*dev
= adapter
->pdev
;
128 if (qlcnic_sriov_vf_check(adapter
))
131 pos
= pci_find_ext_capability(dev
, PCI_EXT_CAP_ID_SRIOV
);
134 pci_read_config_word(dev
, pos
+ PCI_SRIOV_VF_OFFSET
, &offset
);
135 pci_read_config_word(dev
, pos
+ PCI_SRIOV_VF_STRIDE
, &stride
);
137 return (dev
->devfn
+ offset
+ stride
* vf_id
) & 0xff;
140 int qlcnic_sriov_init(struct qlcnic_adapter
*adapter
, int num_vfs
)
142 struct qlcnic_sriov
*sriov
;
143 struct qlcnic_back_channel
*bc
;
144 struct workqueue_struct
*wq
;
145 struct qlcnic_vport
*vp
;
146 struct qlcnic_vf_info
*vf
;
149 if (!qlcnic_sriov_enable_check(adapter
))
152 sriov
= kzalloc(sizeof(struct qlcnic_sriov
), GFP_KERNEL
);
156 adapter
->ahw
->sriov
= sriov
;
157 sriov
->num_vfs
= num_vfs
;
159 sriov
->vf_info
= kcalloc(num_vfs
, sizeof(struct qlcnic_vf_info
),
161 if (!sriov
->vf_info
) {
163 goto qlcnic_free_sriov
;
166 wq
= create_singlethread_workqueue("bc-trans");
169 dev_err(&adapter
->pdev
->dev
,
170 "Cannot create bc-trans workqueue\n");
171 goto qlcnic_free_vf_info
;
174 bc
->bc_trans_wq
= wq
;
176 wq
= create_singlethread_workqueue("async");
179 dev_err(&adapter
->pdev
->dev
, "Cannot create async workqueue\n");
180 goto qlcnic_destroy_trans_wq
;
183 bc
->bc_async_wq
= wq
;
184 INIT_LIST_HEAD(&bc
->async_cmd_list
);
185 INIT_WORK(&bc
->vf_async_work
, qlcnic_sriov_handle_async_issue_cmd
);
186 spin_lock_init(&bc
->queue_lock
);
187 bc
->adapter
= adapter
;
189 for (i
= 0; i
< num_vfs
; i
++) {
190 vf
= &sriov
->vf_info
[i
];
191 vf
->adapter
= adapter
;
192 vf
->pci_func
= qlcnic_sriov_virtid_fn(adapter
, i
);
193 mutex_init(&vf
->send_cmd_lock
);
194 spin_lock_init(&vf
->vlan_list_lock
);
195 INIT_LIST_HEAD(&vf
->rcv_act
.wait_list
);
196 INIT_LIST_HEAD(&vf
->rcv_pend
.wait_list
);
197 spin_lock_init(&vf
->rcv_act
.lock
);
198 spin_lock_init(&vf
->rcv_pend
.lock
);
199 init_completion(&vf
->ch_free_cmpl
);
201 INIT_WORK(&vf
->trans_work
, qlcnic_sriov_process_bc_cmd
);
203 if (qlcnic_sriov_pf_check(adapter
)) {
204 vp
= kzalloc(sizeof(struct qlcnic_vport
), GFP_KERNEL
);
207 goto qlcnic_destroy_async_wq
;
209 sriov
->vf_info
[i
].vp
= vp
;
210 vp
->vlan_mode
= QLC_GUEST_VLAN_MODE
;
211 vp
->max_tx_bw
= MAX_BW
;
212 vp
->min_tx_bw
= MIN_BW
;
213 vp
->spoofchk
= false;
214 eth_random_addr(vp
->mac
);
215 dev_info(&adapter
->pdev
->dev
,
216 "MAC Address %pM is configured for VF %d\n",
223 qlcnic_destroy_async_wq
:
224 destroy_workqueue(bc
->bc_async_wq
);
226 qlcnic_destroy_trans_wq
:
227 destroy_workqueue(bc
->bc_trans_wq
);
230 kfree(sriov
->vf_info
);
233 kfree(adapter
->ahw
->sriov
);
237 void qlcnic_sriov_cleanup_list(struct qlcnic_trans_list
*t_list
)
239 struct qlcnic_bc_trans
*trans
;
240 struct qlcnic_cmd_args cmd
;
243 spin_lock_irqsave(&t_list
->lock
, flags
);
245 while (!list_empty(&t_list
->wait_list
)) {
246 trans
= list_first_entry(&t_list
->wait_list
,
247 struct qlcnic_bc_trans
, list
);
248 list_del(&trans
->list
);
250 cmd
.req
.arg
= (u32
*)trans
->req_pay
;
251 cmd
.rsp
.arg
= (u32
*)trans
->rsp_pay
;
252 qlcnic_free_mbx_args(&cmd
);
253 qlcnic_sriov_cleanup_transaction(trans
);
256 spin_unlock_irqrestore(&t_list
->lock
, flags
);
259 void __qlcnic_sriov_cleanup(struct qlcnic_adapter
*adapter
)
261 struct qlcnic_sriov
*sriov
= adapter
->ahw
->sriov
;
262 struct qlcnic_back_channel
*bc
= &sriov
->bc
;
263 struct qlcnic_vf_info
*vf
;
266 if (!qlcnic_sriov_enable_check(adapter
))
269 qlcnic_sriov_cleanup_async_list(bc
);
270 destroy_workqueue(bc
->bc_async_wq
);
272 for (i
= 0; i
< sriov
->num_vfs
; i
++) {
273 vf
= &sriov
->vf_info
[i
];
274 qlcnic_sriov_cleanup_list(&vf
->rcv_pend
);
275 cancel_work_sync(&vf
->trans_work
);
276 qlcnic_sriov_cleanup_list(&vf
->rcv_act
);
279 destroy_workqueue(bc
->bc_trans_wq
);
281 for (i
= 0; i
< sriov
->num_vfs
; i
++)
282 kfree(sriov
->vf_info
[i
].vp
);
284 kfree(sriov
->vf_info
);
285 kfree(adapter
->ahw
->sriov
);
288 static void qlcnic_sriov_vf_cleanup(struct qlcnic_adapter
*adapter
)
290 qlcnic_sriov_channel_cfg_cmd(adapter
, QLCNIC_BC_CMD_CHANNEL_TERM
);
291 qlcnic_sriov_cfg_bc_intr(adapter
, 0);
292 __qlcnic_sriov_cleanup(adapter
);
295 void qlcnic_sriov_cleanup(struct qlcnic_adapter
*adapter
)
297 if (!test_bit(__QLCNIC_SRIOV_ENABLE
, &adapter
->state
))
300 qlcnic_sriov_free_vlans(adapter
);
302 if (qlcnic_sriov_pf_check(adapter
))
303 qlcnic_sriov_pf_cleanup(adapter
);
305 if (qlcnic_sriov_vf_check(adapter
))
306 qlcnic_sriov_vf_cleanup(adapter
);
309 static int qlcnic_sriov_post_bc_msg(struct qlcnic_adapter
*adapter
, u32
*hdr
,
310 u32
*pay
, u8 pci_func
, u8 size
)
312 struct qlcnic_hardware_context
*ahw
= adapter
->ahw
;
313 struct qlcnic_mailbox
*mbx
= ahw
->mailbox
;
314 struct qlcnic_cmd_args cmd
;
315 unsigned long timeout
;
318 memset(&cmd
, 0, sizeof(struct qlcnic_cmd_args
));
322 cmd
.func_num
= pci_func
;
323 cmd
.op_type
= QLC_83XX_MBX_POST_BC_OP
;
324 cmd
.cmd_op
= ((struct qlcnic_bc_hdr
*)hdr
)->cmd_op
;
326 err
= mbx
->ops
->enqueue_cmd(adapter
, &cmd
, &timeout
);
328 dev_err(&adapter
->pdev
->dev
,
329 "%s: Mailbox not available, cmd_op=0x%x, cmd_type=0x%x, pci_func=0x%x, op_mode=0x%x\n",
330 __func__
, cmd
.cmd_op
, cmd
.type
, ahw
->pci_func
,
335 if (!wait_for_completion_timeout(&cmd
.completion
, timeout
)) {
336 dev_err(&adapter
->pdev
->dev
,
337 "%s: Mailbox command timed out, cmd_op=0x%x, cmd_type=0x%x, pci_func=0x%x, op_mode=0x%x\n",
338 __func__
, cmd
.cmd_op
, cmd
.type
, ahw
->pci_func
,
340 flush_workqueue(mbx
->work_q
);
343 return cmd
.rsp_opcode
;
346 static void qlcnic_sriov_vf_cfg_buff_desc(struct qlcnic_adapter
*adapter
)
348 adapter
->num_rxd
= QLC_DEFAULT_RCV_DESCRIPTORS_SRIOV_VF
;
349 adapter
->max_rxd
= MAX_RCV_DESCRIPTORS_10G
;
350 adapter
->num_jumbo_rxd
= QLC_DEFAULT_JUMBO_RCV_DESCRIPTORS_SRIOV_VF
;
351 adapter
->max_jumbo_rxd
= MAX_JUMBO_RCV_DESCRIPTORS_10G
;
352 adapter
->num_txd
= MAX_CMD_DESCRIPTORS
;
353 adapter
->max_rds_rings
= MAX_RDS_RINGS
;
356 int qlcnic_sriov_get_vf_vport_info(struct qlcnic_adapter
*adapter
,
357 struct qlcnic_info
*npar_info
, u16 vport_id
)
359 struct device
*dev
= &adapter
->pdev
->dev
;
360 struct qlcnic_cmd_args cmd
;
364 err
= qlcnic_alloc_mbx_args(&cmd
, adapter
, QLCNIC_CMD_GET_NIC_INFO
);
368 cmd
.req
.arg
[1] = vport_id
<< 16 | 0x1;
369 err
= qlcnic_issue_cmd(adapter
, &cmd
);
371 dev_err(&adapter
->pdev
->dev
,
372 "Failed to get vport info, err=%d\n", err
);
373 qlcnic_free_mbx_args(&cmd
);
377 status
= cmd
.rsp
.arg
[2] & 0xffff;
379 npar_info
->min_tx_bw
= MSW(cmd
.rsp
.arg
[2]);
381 npar_info
->max_tx_bw
= LSW(cmd
.rsp
.arg
[3]);
383 npar_info
->max_tx_ques
= MSW(cmd
.rsp
.arg
[3]);
385 npar_info
->max_tx_mac_filters
= LSW(cmd
.rsp
.arg
[4]);
387 npar_info
->max_rx_mcast_mac_filters
= MSW(cmd
.rsp
.arg
[4]);
389 npar_info
->max_rx_ucast_mac_filters
= LSW(cmd
.rsp
.arg
[5]);
391 npar_info
->max_rx_ip_addr
= MSW(cmd
.rsp
.arg
[5]);
393 npar_info
->max_rx_lro_flow
= LSW(cmd
.rsp
.arg
[6]);
395 npar_info
->max_rx_status_rings
= MSW(cmd
.rsp
.arg
[6]);
397 npar_info
->max_rx_buf_rings
= LSW(cmd
.rsp
.arg
[7]);
399 npar_info
->max_rx_ques
= MSW(cmd
.rsp
.arg
[7]);
400 npar_info
->max_tx_vlan_keys
= LSW(cmd
.rsp
.arg
[8]);
401 npar_info
->max_local_ipv6_addrs
= MSW(cmd
.rsp
.arg
[8]);
402 npar_info
->max_remote_ipv6_addrs
= LSW(cmd
.rsp
.arg
[9]);
404 dev_info(dev
, "\n\tmin_tx_bw: %d, max_tx_bw: %d max_tx_ques: %d,\n"
405 "\tmax_tx_mac_filters: %d max_rx_mcast_mac_filters: %d,\n"
406 "\tmax_rx_ucast_mac_filters: 0x%x, max_rx_ip_addr: %d,\n"
407 "\tmax_rx_lro_flow: %d max_rx_status_rings: %d,\n"
408 "\tmax_rx_buf_rings: %d, max_rx_ques: %d, max_tx_vlan_keys %d\n"
409 "\tlocal_ipv6_addr: %d, remote_ipv6_addr: %d\n",
410 npar_info
->min_tx_bw
, npar_info
->max_tx_bw
,
411 npar_info
->max_tx_ques
, npar_info
->max_tx_mac_filters
,
412 npar_info
->max_rx_mcast_mac_filters
,
413 npar_info
->max_rx_ucast_mac_filters
, npar_info
->max_rx_ip_addr
,
414 npar_info
->max_rx_lro_flow
, npar_info
->max_rx_status_rings
,
415 npar_info
->max_rx_buf_rings
, npar_info
->max_rx_ques
,
416 npar_info
->max_tx_vlan_keys
, npar_info
->max_local_ipv6_addrs
,
417 npar_info
->max_remote_ipv6_addrs
);
419 qlcnic_free_mbx_args(&cmd
);
423 static int qlcnic_sriov_set_pvid_mode(struct qlcnic_adapter
*adapter
,
424 struct qlcnic_cmd_args
*cmd
)
426 adapter
->rx_pvid
= MSW(cmd
->rsp
.arg
[1]) & 0xffff;
427 adapter
->flags
&= ~QLCNIC_TAGGING_ENABLED
;
431 static int qlcnic_sriov_set_guest_vlan_mode(struct qlcnic_adapter
*adapter
,
432 struct qlcnic_cmd_args
*cmd
)
434 struct qlcnic_sriov
*sriov
= adapter
->ahw
->sriov
;
438 if (sriov
->allowed_vlans
)
441 sriov
->any_vlan
= cmd
->rsp
.arg
[2] & 0xf;
442 sriov
->num_allowed_vlans
= cmd
->rsp
.arg
[2] >> 16;
443 dev_info(&adapter
->pdev
->dev
, "Number of allowed Guest VLANs = %d\n",
444 sriov
->num_allowed_vlans
);
446 qlcnic_sriov_alloc_vlans(adapter
);
448 if (!sriov
->any_vlan
)
451 num_vlans
= sriov
->num_allowed_vlans
;
452 sriov
->allowed_vlans
= kcalloc(num_vlans
, sizeof(u16
), GFP_KERNEL
);
453 if (!sriov
->allowed_vlans
)
456 vlans
= (u16
*)&cmd
->rsp
.arg
[3];
457 for (i
= 0; i
< num_vlans
; i
++)
458 sriov
->allowed_vlans
[i
] = vlans
[i
];
463 static int qlcnic_sriov_get_vf_acl(struct qlcnic_adapter
*adapter
)
465 struct qlcnic_sriov
*sriov
= adapter
->ahw
->sriov
;
466 struct qlcnic_cmd_args cmd
;
469 memset(&cmd
, 0, sizeof(cmd
));
470 ret
= qlcnic_sriov_alloc_bc_mbx_args(&cmd
, QLCNIC_BC_CMD_GET_ACL
);
474 ret
= qlcnic_issue_cmd(adapter
, &cmd
);
476 dev_err(&adapter
->pdev
->dev
, "Failed to get ACL, err=%d\n",
479 sriov
->vlan_mode
= cmd
.rsp
.arg
[1] & 0x3;
480 switch (sriov
->vlan_mode
) {
481 case QLC_GUEST_VLAN_MODE
:
482 ret
= qlcnic_sriov_set_guest_vlan_mode(adapter
, &cmd
);
485 ret
= qlcnic_sriov_set_pvid_mode(adapter
, &cmd
);
490 qlcnic_free_mbx_args(&cmd
);
494 static int qlcnic_sriov_vf_init_driver(struct qlcnic_adapter
*adapter
)
496 struct qlcnic_hardware_context
*ahw
= adapter
->ahw
;
497 struct qlcnic_info nic_info
;
500 err
= qlcnic_sriov_get_vf_vport_info(adapter
, &nic_info
, 0);
504 ahw
->max_mc_count
= nic_info
.max_rx_mcast_mac_filters
;
506 err
= qlcnic_get_nic_info(adapter
, &nic_info
, ahw
->pci_func
);
510 if (qlcnic_83xx_get_port_info(adapter
))
513 qlcnic_sriov_vf_cfg_buff_desc(adapter
);
514 adapter
->flags
|= QLCNIC_ADAPTER_INITIALIZED
;
515 dev_info(&adapter
->pdev
->dev
, "HAL Version: %d\n",
516 adapter
->ahw
->fw_hal_version
);
518 ahw
->physical_port
= (u8
) nic_info
.phys_port
;
519 ahw
->switch_mode
= nic_info
.switch_mode
;
520 ahw
->max_mtu
= nic_info
.max_mtu
;
521 ahw
->op_mode
= nic_info
.op_mode
;
522 ahw
->capabilities
= nic_info
.capabilities
;
526 static int qlcnic_sriov_setup_vf(struct qlcnic_adapter
*adapter
,
531 adapter
->flags
|= QLCNIC_VLAN_FILTERING
;
532 adapter
->ahw
->total_nic_func
= 1;
533 INIT_LIST_HEAD(&adapter
->vf_mc_list
);
534 if (!qlcnic_use_msi_x
&& !!qlcnic_use_msi
)
535 dev_warn(&adapter
->pdev
->dev
,
536 "Device does not support MSI interrupts\n");
538 /* compute and set default and max tx/sds rings */
539 qlcnic_set_tx_ring_count(adapter
, QLCNIC_SINGLE_RING
);
540 qlcnic_set_sds_ring_count(adapter
, QLCNIC_SINGLE_RING
);
542 err
= qlcnic_setup_intr(adapter
);
544 dev_err(&adapter
->pdev
->dev
, "Failed to setup interrupt\n");
545 goto err_out_disable_msi
;
548 err
= qlcnic_83xx_setup_mbx_intr(adapter
);
550 goto err_out_disable_msi
;
552 err
= qlcnic_sriov_init(adapter
, 1);
554 goto err_out_disable_mbx_intr
;
556 err
= qlcnic_sriov_cfg_bc_intr(adapter
, 1);
558 goto err_out_cleanup_sriov
;
560 err
= qlcnic_sriov_channel_cfg_cmd(adapter
, QLCNIC_BC_CMD_CHANNEL_INIT
);
562 goto err_out_disable_bc_intr
;
564 err
= qlcnic_sriov_vf_init_driver(adapter
);
566 goto err_out_send_channel_term
;
568 err
= qlcnic_sriov_get_vf_acl(adapter
);
570 goto err_out_send_channel_term
;
572 err
= qlcnic_setup_netdev(adapter
, adapter
->netdev
, pci_using_dac
);
574 goto err_out_send_channel_term
;
576 pci_set_drvdata(adapter
->pdev
, adapter
);
577 dev_info(&adapter
->pdev
->dev
, "%s: XGbE port initialized\n",
578 adapter
->netdev
->name
);
580 qlcnic_schedule_work(adapter
, qlcnic_sriov_vf_poll_dev_state
,
581 adapter
->ahw
->idc
.delay
);
584 err_out_send_channel_term
:
585 qlcnic_sriov_channel_cfg_cmd(adapter
, QLCNIC_BC_CMD_CHANNEL_TERM
);
587 err_out_disable_bc_intr
:
588 qlcnic_sriov_cfg_bc_intr(adapter
, 0);
590 err_out_cleanup_sriov
:
591 __qlcnic_sriov_cleanup(adapter
);
593 err_out_disable_mbx_intr
:
594 qlcnic_83xx_free_mbx_intr(adapter
);
597 qlcnic_teardown_intr(adapter
);
601 static int qlcnic_sriov_check_dev_ready(struct qlcnic_adapter
*adapter
)
607 if (++adapter
->fw_fail_cnt
> QLC_BC_CMD_MAX_RETRY_CNT
)
609 state
= QLCRDX(adapter
->ahw
, QLC_83XX_IDC_DEV_STATE
);
610 } while (state
!= QLC_83XX_IDC_DEV_READY
);
615 int qlcnic_sriov_vf_init(struct qlcnic_adapter
*adapter
, int pci_using_dac
)
617 struct qlcnic_hardware_context
*ahw
= adapter
->ahw
;
620 set_bit(QLC_83XX_MODULE_LOADED
, &ahw
->idc
.status
);
621 ahw
->idc
.delay
= QLC_83XX_IDC_FW_POLL_DELAY
;
622 ahw
->reset_context
= 0;
623 adapter
->fw_fail_cnt
= 0;
624 ahw
->msix_supported
= 1;
625 adapter
->need_fw_reset
= 0;
626 adapter
->flags
|= QLCNIC_TX_INTR_SHARED
;
628 err
= qlcnic_sriov_check_dev_ready(adapter
);
632 err
= qlcnic_sriov_setup_vf(adapter
, pci_using_dac
);
636 if (qlcnic_read_mac_addr(adapter
))
637 dev_warn(&adapter
->pdev
->dev
, "failed to read mac addr\n");
639 INIT_DELAYED_WORK(&adapter
->idc_aen_work
, qlcnic_83xx_idc_aen_work
);
641 clear_bit(__QLCNIC_RESETTING
, &adapter
->state
);
645 void qlcnic_sriov_vf_set_ops(struct qlcnic_adapter
*adapter
)
647 struct qlcnic_hardware_context
*ahw
= adapter
->ahw
;
649 ahw
->op_mode
= QLCNIC_SRIOV_VF_FUNC
;
650 dev_info(&adapter
->pdev
->dev
,
651 "HAL Version: %d Non Privileged SRIOV function\n",
652 ahw
->fw_hal_version
);
653 adapter
->nic_ops
= &qlcnic_sriov_vf_ops
;
654 set_bit(__QLCNIC_SRIOV_ENABLE
, &adapter
->state
);
658 void qlcnic_sriov_vf_register_map(struct qlcnic_hardware_context
*ahw
)
660 ahw
->hw_ops
= &qlcnic_sriov_vf_hw_ops
;
661 ahw
->reg_tbl
= (u32
*)qlcnic_83xx_reg_tbl
;
662 ahw
->ext_reg_tbl
= (u32
*)qlcnic_83xx_ext_reg_tbl
;
665 static u32
qlcnic_sriov_get_bc_paysize(u32 real_pay_size
, u8 curr_frag
)
669 pay_size
= real_pay_size
/ ((curr_frag
+ 1) * QLC_BC_PAYLOAD_SZ
);
672 pay_size
= QLC_BC_PAYLOAD_SZ
;
674 pay_size
= real_pay_size
% QLC_BC_PAYLOAD_SZ
;
679 int qlcnic_sriov_func_to_index(struct qlcnic_adapter
*adapter
, u8 pci_func
)
681 struct qlcnic_vf_info
*vf_info
= adapter
->ahw
->sriov
->vf_info
;
684 if (qlcnic_sriov_vf_check(adapter
))
687 for (i
= 0; i
< adapter
->ahw
->sriov
->num_vfs
; i
++) {
688 if (vf_info
[i
].pci_func
== pci_func
)
695 static inline int qlcnic_sriov_alloc_bc_trans(struct qlcnic_bc_trans
**trans
)
697 *trans
= kzalloc(sizeof(struct qlcnic_bc_trans
), GFP_ATOMIC
);
701 init_completion(&(*trans
)->resp_cmpl
);
705 static inline int qlcnic_sriov_alloc_bc_msg(struct qlcnic_bc_hdr
**hdr
,
708 *hdr
= kcalloc(size
, sizeof(struct qlcnic_bc_hdr
), GFP_ATOMIC
);
715 static int qlcnic_sriov_alloc_bc_mbx_args(struct qlcnic_cmd_args
*mbx
, u32 type
)
717 const struct qlcnic_mailbox_metadata
*mbx_tbl
;
720 mbx_tbl
= qlcnic_sriov_bc_mbx_tbl
;
721 size
= ARRAY_SIZE(qlcnic_sriov_bc_mbx_tbl
);
723 for (i
= 0; i
< size
; i
++) {
724 if (type
== mbx_tbl
[i
].cmd
) {
725 mbx
->op_type
= QLC_BC_CMD
;
726 mbx
->req
.num
= mbx_tbl
[i
].in_args
;
727 mbx
->rsp
.num
= mbx_tbl
[i
].out_args
;
728 mbx
->req
.arg
= kcalloc(mbx
->req
.num
, sizeof(u32
),
732 mbx
->rsp
.arg
= kcalloc(mbx
->rsp
.num
, sizeof(u32
),
739 mbx
->req
.arg
[0] = (type
| (mbx
->req
.num
<< 16) |
741 mbx
->rsp
.arg
[0] = (type
& 0xffff) | mbx
->rsp
.num
<< 16;
748 static int qlcnic_sriov_prepare_bc_hdr(struct qlcnic_bc_trans
*trans
,
749 struct qlcnic_cmd_args
*cmd
,
750 u16 seq
, u8 msg_type
)
752 struct qlcnic_bc_hdr
*hdr
;
754 u32 num_regs
, bc_pay_sz
;
756 u8 cmd_op
, num_frags
, t_num_frags
;
758 bc_pay_sz
= QLC_BC_PAYLOAD_SZ
;
759 if (msg_type
== QLC_BC_COMMAND
) {
760 trans
->req_pay
= (struct qlcnic_bc_payload
*)cmd
->req
.arg
;
761 trans
->rsp_pay
= (struct qlcnic_bc_payload
*)cmd
->rsp
.arg
;
762 num_regs
= cmd
->req
.num
;
763 trans
->req_pay_size
= (num_regs
* 4);
764 num_regs
= cmd
->rsp
.num
;
765 trans
->rsp_pay_size
= (num_regs
* 4);
766 cmd_op
= cmd
->req
.arg
[0] & 0xff;
767 remainder
= (trans
->req_pay_size
) % (bc_pay_sz
);
768 num_frags
= (trans
->req_pay_size
) / (bc_pay_sz
);
771 t_num_frags
= num_frags
;
772 if (qlcnic_sriov_alloc_bc_msg(&trans
->req_hdr
, num_frags
))
774 remainder
= (trans
->rsp_pay_size
) % (bc_pay_sz
);
775 num_frags
= (trans
->rsp_pay_size
) / (bc_pay_sz
);
778 if (qlcnic_sriov_alloc_bc_msg(&trans
->rsp_hdr
, num_frags
))
780 num_frags
= t_num_frags
;
781 hdr
= trans
->req_hdr
;
783 cmd
->req
.arg
= (u32
*)trans
->req_pay
;
784 cmd
->rsp
.arg
= (u32
*)trans
->rsp_pay
;
785 cmd_op
= cmd
->req
.arg
[0] & 0xff;
786 cmd
->cmd_op
= cmd_op
;
787 remainder
= (trans
->rsp_pay_size
) % (bc_pay_sz
);
788 num_frags
= (trans
->rsp_pay_size
) / (bc_pay_sz
);
791 cmd
->req
.num
= trans
->req_pay_size
/ 4;
792 cmd
->rsp
.num
= trans
->rsp_pay_size
/ 4;
793 hdr
= trans
->rsp_hdr
;
794 cmd
->op_type
= trans
->req_hdr
->op_type
;
797 trans
->trans_id
= seq
;
798 trans
->cmd_id
= cmd_op
;
799 for (i
= 0; i
< num_frags
; i
++) {
801 hdr
[i
].msg_type
= msg_type
;
802 hdr
[i
].op_type
= cmd
->op_type
;
804 hdr
[i
].num_frags
= num_frags
;
805 hdr
[i
].frag_num
= i
+ 1;
806 hdr
[i
].cmd_op
= cmd_op
;
812 static void qlcnic_sriov_cleanup_transaction(struct qlcnic_bc_trans
*trans
)
816 kfree(trans
->req_hdr
);
817 kfree(trans
->rsp_hdr
);
821 static int qlcnic_sriov_clear_trans(struct qlcnic_vf_info
*vf
,
822 struct qlcnic_bc_trans
*trans
, u8 type
)
824 struct qlcnic_trans_list
*t_list
;
828 if (type
== QLC_BC_RESPONSE
) {
829 t_list
= &vf
->rcv_act
;
830 spin_lock_irqsave(&t_list
->lock
, flags
);
832 list_del(&trans
->list
);
833 if (t_list
->count
> 0)
835 spin_unlock_irqrestore(&t_list
->lock
, flags
);
837 if (type
== QLC_BC_COMMAND
) {
838 while (test_and_set_bit(QLC_BC_VF_SEND
, &vf
->state
))
841 clear_bit(QLC_BC_VF_SEND
, &vf
->state
);
846 static void qlcnic_sriov_schedule_bc_cmd(struct qlcnic_sriov
*sriov
,
847 struct qlcnic_vf_info
*vf
,
850 if (test_bit(QLC_BC_VF_FLR
, &vf
->state
) ||
851 vf
->adapter
->need_fw_reset
)
854 queue_work(sriov
->bc
.bc_trans_wq
, &vf
->trans_work
);
857 static inline void qlcnic_sriov_wait_for_resp(struct qlcnic_bc_trans
*trans
)
859 struct completion
*cmpl
= &trans
->resp_cmpl
;
861 if (wait_for_completion_timeout(cmpl
, QLC_MBOX_RESP_TIMEOUT
))
862 trans
->trans_state
= QLC_END
;
864 trans
->trans_state
= QLC_ABORT
;
869 static void qlcnic_sriov_handle_multi_frags(struct qlcnic_bc_trans
*trans
,
872 if (type
== QLC_BC_RESPONSE
) {
873 trans
->curr_rsp_frag
++;
874 if (trans
->curr_rsp_frag
< trans
->rsp_hdr
->num_frags
)
875 trans
->trans_state
= QLC_INIT
;
877 trans
->trans_state
= QLC_END
;
879 trans
->curr_req_frag
++;
880 if (trans
->curr_req_frag
< trans
->req_hdr
->num_frags
)
881 trans
->trans_state
= QLC_INIT
;
883 trans
->trans_state
= QLC_WAIT_FOR_RESP
;
887 static void qlcnic_sriov_wait_for_channel_free(struct qlcnic_bc_trans
*trans
,
890 struct qlcnic_vf_info
*vf
= trans
->vf
;
891 struct completion
*cmpl
= &vf
->ch_free_cmpl
;
893 if (!wait_for_completion_timeout(cmpl
, QLC_MBOX_CH_FREE_TIMEOUT
)) {
894 trans
->trans_state
= QLC_ABORT
;
898 clear_bit(QLC_BC_VF_CHANNEL
, &vf
->state
);
899 qlcnic_sriov_handle_multi_frags(trans
, type
);
902 static void qlcnic_sriov_pull_bc_msg(struct qlcnic_adapter
*adapter
,
903 u32
*hdr
, u32
*pay
, u32 size
)
905 struct qlcnic_hardware_context
*ahw
= adapter
->ahw
;
906 u8 i
, max
= 2, hdr_size
, j
;
908 hdr_size
= (sizeof(struct qlcnic_bc_hdr
) / sizeof(u32
));
909 max
= (size
/ sizeof(u32
)) + hdr_size
;
911 for (i
= 2, j
= 0; j
< hdr_size
; i
++, j
++)
912 *(hdr
++) = readl(QLCNIC_MBX_FW(ahw
, i
));
913 for (; j
< max
; i
++, j
++)
914 *(pay
++) = readl(QLCNIC_MBX_FW(ahw
, i
));
917 static int __qlcnic_sriov_issue_bc_post(struct qlcnic_vf_info
*vf
)
923 if (!test_and_set_bit(QLC_BC_VF_CHANNEL
, &vf
->state
)) {
933 static int qlcnic_sriov_issue_bc_post(struct qlcnic_bc_trans
*trans
, u8 type
)
935 struct qlcnic_vf_info
*vf
= trans
->vf
;
939 u8 pci_func
= trans
->func_id
;
941 if (__qlcnic_sriov_issue_bc_post(vf
))
944 if (type
== QLC_BC_COMMAND
) {
945 hdr
= (u32
*)(trans
->req_hdr
+ trans
->curr_req_frag
);
946 pay
= (u32
*)(trans
->req_pay
+ trans
->curr_req_frag
);
947 pay_size
= qlcnic_sriov_get_bc_paysize(trans
->req_pay_size
,
948 trans
->curr_req_frag
);
949 pay_size
= (pay_size
/ sizeof(u32
));
951 hdr
= (u32
*)(trans
->rsp_hdr
+ trans
->curr_rsp_frag
);
952 pay
= (u32
*)(trans
->rsp_pay
+ trans
->curr_rsp_frag
);
953 pay_size
= qlcnic_sriov_get_bc_paysize(trans
->rsp_pay_size
,
954 trans
->curr_rsp_frag
);
955 pay_size
= (pay_size
/ sizeof(u32
));
958 ret
= qlcnic_sriov_post_bc_msg(vf
->adapter
, hdr
, pay
,
963 static int __qlcnic_sriov_send_bc_msg(struct qlcnic_bc_trans
*trans
,
964 struct qlcnic_vf_info
*vf
, u8 type
)
970 if (test_bit(QLC_BC_VF_FLR
, &vf
->state
) ||
971 vf
->adapter
->need_fw_reset
)
972 trans
->trans_state
= QLC_ABORT
;
974 switch (trans
->trans_state
) {
976 trans
->trans_state
= QLC_WAIT_FOR_CHANNEL_FREE
;
977 if (qlcnic_sriov_issue_bc_post(trans
, type
))
978 trans
->trans_state
= QLC_ABORT
;
980 case QLC_WAIT_FOR_CHANNEL_FREE
:
981 qlcnic_sriov_wait_for_channel_free(trans
, type
);
983 case QLC_WAIT_FOR_RESP
:
984 qlcnic_sriov_wait_for_resp(trans
);
993 clear_bit(QLC_BC_VF_CHANNEL
, &vf
->state
);
1003 static int qlcnic_sriov_send_bc_cmd(struct qlcnic_adapter
*adapter
,
1004 struct qlcnic_bc_trans
*trans
, int pci_func
)
1006 struct qlcnic_vf_info
*vf
;
1007 int err
, index
= qlcnic_sriov_func_to_index(adapter
, pci_func
);
1012 vf
= &adapter
->ahw
->sriov
->vf_info
[index
];
1014 trans
->func_id
= pci_func
;
1016 if (!test_bit(QLC_BC_VF_STATE
, &vf
->state
)) {
1017 if (qlcnic_sriov_pf_check(adapter
))
1019 if (qlcnic_sriov_vf_check(adapter
) &&
1020 trans
->cmd_id
!= QLCNIC_BC_CMD_CHANNEL_INIT
)
1024 mutex_lock(&vf
->send_cmd_lock
);
1025 vf
->send_cmd
= trans
;
1026 err
= __qlcnic_sriov_send_bc_msg(trans
, vf
, QLC_BC_COMMAND
);
1027 qlcnic_sriov_clear_trans(vf
, trans
, QLC_BC_COMMAND
);
1028 mutex_unlock(&vf
->send_cmd_lock
);
1032 static void __qlcnic_sriov_process_bc_cmd(struct qlcnic_adapter
*adapter
,
1033 struct qlcnic_bc_trans
*trans
,
1034 struct qlcnic_cmd_args
*cmd
)
1036 #ifdef CONFIG_QLCNIC_SRIOV
1037 if (qlcnic_sriov_pf_check(adapter
)) {
1038 qlcnic_sriov_pf_process_bc_cmd(adapter
, trans
, cmd
);
1042 cmd
->rsp
.arg
[0] |= (0x9 << 25);
1046 static void qlcnic_sriov_process_bc_cmd(struct work_struct
*work
)
1048 struct qlcnic_vf_info
*vf
= container_of(work
, struct qlcnic_vf_info
,
1050 struct qlcnic_bc_trans
*trans
= NULL
;
1051 struct qlcnic_adapter
*adapter
= vf
->adapter
;
1052 struct qlcnic_cmd_args cmd
;
1055 if (adapter
->need_fw_reset
)
1058 if (test_bit(QLC_BC_VF_FLR
, &vf
->state
))
1061 memset(&cmd
, 0, sizeof(struct qlcnic_cmd_args
));
1062 trans
= list_first_entry(&vf
->rcv_act
.wait_list
,
1063 struct qlcnic_bc_trans
, list
);
1064 adapter
= vf
->adapter
;
1066 if (qlcnic_sriov_prepare_bc_hdr(trans
, &cmd
, trans
->req_hdr
->seq_id
,
1070 __qlcnic_sriov_process_bc_cmd(adapter
, trans
, &cmd
);
1071 trans
->trans_state
= QLC_INIT
;
1072 __qlcnic_sriov_send_bc_msg(trans
, vf
, QLC_BC_RESPONSE
);
1075 qlcnic_free_mbx_args(&cmd
);
1076 req
= qlcnic_sriov_clear_trans(vf
, trans
, QLC_BC_RESPONSE
);
1077 qlcnic_sriov_cleanup_transaction(trans
);
1079 qlcnic_sriov_schedule_bc_cmd(adapter
->ahw
->sriov
, vf
,
1080 qlcnic_sriov_process_bc_cmd
);
1083 static void qlcnic_sriov_handle_bc_resp(struct qlcnic_bc_hdr
*hdr
,
1084 struct qlcnic_vf_info
*vf
)
1086 struct qlcnic_bc_trans
*trans
;
1089 if (test_and_set_bit(QLC_BC_VF_SEND
, &vf
->state
))
1092 trans
= vf
->send_cmd
;
1097 if (trans
->trans_id
!= hdr
->seq_id
)
1100 pay_size
= qlcnic_sriov_get_bc_paysize(trans
->rsp_pay_size
,
1101 trans
->curr_rsp_frag
);
1102 qlcnic_sriov_pull_bc_msg(vf
->adapter
,
1103 (u32
*)(trans
->rsp_hdr
+ trans
->curr_rsp_frag
),
1104 (u32
*)(trans
->rsp_pay
+ trans
->curr_rsp_frag
),
1106 if (++trans
->curr_rsp_frag
< trans
->rsp_hdr
->num_frags
)
1109 complete(&trans
->resp_cmpl
);
1112 clear_bit(QLC_BC_VF_SEND
, &vf
->state
);
1115 int __qlcnic_sriov_add_act_list(struct qlcnic_sriov
*sriov
,
1116 struct qlcnic_vf_info
*vf
,
1117 struct qlcnic_bc_trans
*trans
)
1119 struct qlcnic_trans_list
*t_list
= &vf
->rcv_act
;
1122 list_add_tail(&trans
->list
, &t_list
->wait_list
);
1123 if (t_list
->count
== 1)
1124 qlcnic_sriov_schedule_bc_cmd(sriov
, vf
,
1125 qlcnic_sriov_process_bc_cmd
);
1129 static int qlcnic_sriov_add_act_list(struct qlcnic_sriov
*sriov
,
1130 struct qlcnic_vf_info
*vf
,
1131 struct qlcnic_bc_trans
*trans
)
1133 struct qlcnic_trans_list
*t_list
= &vf
->rcv_act
;
1135 spin_lock(&t_list
->lock
);
1137 __qlcnic_sriov_add_act_list(sriov
, vf
, trans
);
1139 spin_unlock(&t_list
->lock
);
1143 static void qlcnic_sriov_handle_pending_trans(struct qlcnic_sriov
*sriov
,
1144 struct qlcnic_vf_info
*vf
,
1145 struct qlcnic_bc_hdr
*hdr
)
1147 struct qlcnic_bc_trans
*trans
= NULL
;
1148 struct list_head
*node
;
1149 u32 pay_size
, curr_frag
;
1150 u8 found
= 0, active
= 0;
1152 spin_lock(&vf
->rcv_pend
.lock
);
1153 if (vf
->rcv_pend
.count
> 0) {
1154 list_for_each(node
, &vf
->rcv_pend
.wait_list
) {
1155 trans
= list_entry(node
, struct qlcnic_bc_trans
, list
);
1156 if (trans
->trans_id
== hdr
->seq_id
) {
1164 curr_frag
= trans
->curr_req_frag
;
1165 pay_size
= qlcnic_sriov_get_bc_paysize(trans
->req_pay_size
,
1167 qlcnic_sriov_pull_bc_msg(vf
->adapter
,
1168 (u32
*)(trans
->req_hdr
+ curr_frag
),
1169 (u32
*)(trans
->req_pay
+ curr_frag
),
1171 trans
->curr_req_frag
++;
1172 if (trans
->curr_req_frag
>= hdr
->num_frags
) {
1173 vf
->rcv_pend
.count
--;
1174 list_del(&trans
->list
);
1178 spin_unlock(&vf
->rcv_pend
.lock
);
1181 if (qlcnic_sriov_add_act_list(sriov
, vf
, trans
))
1182 qlcnic_sriov_cleanup_transaction(trans
);
1187 static void qlcnic_sriov_handle_bc_cmd(struct qlcnic_sriov
*sriov
,
1188 struct qlcnic_bc_hdr
*hdr
,
1189 struct qlcnic_vf_info
*vf
)
1191 struct qlcnic_bc_trans
*trans
;
1192 struct qlcnic_adapter
*adapter
= vf
->adapter
;
1193 struct qlcnic_cmd_args cmd
;
1198 if (adapter
->need_fw_reset
)
1201 if (!test_bit(QLC_BC_VF_STATE
, &vf
->state
) &&
1202 hdr
->op_type
!= QLC_BC_CMD
&&
1203 hdr
->cmd_op
!= QLCNIC_BC_CMD_CHANNEL_INIT
)
1206 if (hdr
->frag_num
> 1) {
1207 qlcnic_sriov_handle_pending_trans(sriov
, vf
, hdr
);
1211 memset(&cmd
, 0, sizeof(struct qlcnic_cmd_args
));
1212 cmd_op
= hdr
->cmd_op
;
1213 if (qlcnic_sriov_alloc_bc_trans(&trans
))
1216 if (hdr
->op_type
== QLC_BC_CMD
)
1217 err
= qlcnic_sriov_alloc_bc_mbx_args(&cmd
, cmd_op
);
1219 err
= qlcnic_alloc_mbx_args(&cmd
, adapter
, cmd_op
);
1222 qlcnic_sriov_cleanup_transaction(trans
);
1226 cmd
.op_type
= hdr
->op_type
;
1227 if (qlcnic_sriov_prepare_bc_hdr(trans
, &cmd
, hdr
->seq_id
,
1229 qlcnic_free_mbx_args(&cmd
);
1230 qlcnic_sriov_cleanup_transaction(trans
);
1234 pay_size
= qlcnic_sriov_get_bc_paysize(trans
->req_pay_size
,
1235 trans
->curr_req_frag
);
1236 qlcnic_sriov_pull_bc_msg(vf
->adapter
,
1237 (u32
*)(trans
->req_hdr
+ trans
->curr_req_frag
),
1238 (u32
*)(trans
->req_pay
+ trans
->curr_req_frag
),
1240 trans
->func_id
= vf
->pci_func
;
1242 trans
->trans_id
= hdr
->seq_id
;
1243 trans
->curr_req_frag
++;
1245 if (qlcnic_sriov_soft_flr_check(adapter
, trans
, vf
))
1248 if (trans
->curr_req_frag
== trans
->req_hdr
->num_frags
) {
1249 if (qlcnic_sriov_add_act_list(sriov
, vf
, trans
)) {
1250 qlcnic_free_mbx_args(&cmd
);
1251 qlcnic_sriov_cleanup_transaction(trans
);
1254 spin_lock(&vf
->rcv_pend
.lock
);
1255 list_add_tail(&trans
->list
, &vf
->rcv_pend
.wait_list
);
1256 vf
->rcv_pend
.count
++;
1257 spin_unlock(&vf
->rcv_pend
.lock
);
1261 static void qlcnic_sriov_handle_msg_event(struct qlcnic_sriov
*sriov
,
1262 struct qlcnic_vf_info
*vf
)
1264 struct qlcnic_bc_hdr hdr
;
1265 u32
*ptr
= (u32
*)&hdr
;
1268 for (i
= 2; i
< 6; i
++)
1269 ptr
[i
- 2] = readl(QLCNIC_MBX_FW(vf
->adapter
->ahw
, i
));
1270 msg_type
= hdr
.msg_type
;
1273 case QLC_BC_COMMAND
:
1274 qlcnic_sriov_handle_bc_cmd(sriov
, &hdr
, vf
);
1276 case QLC_BC_RESPONSE
:
1277 qlcnic_sriov_handle_bc_resp(&hdr
, vf
);
1282 static void qlcnic_sriov_handle_flr_event(struct qlcnic_sriov
*sriov
,
1283 struct qlcnic_vf_info
*vf
)
1285 struct qlcnic_adapter
*adapter
= vf
->adapter
;
1287 if (qlcnic_sriov_pf_check(adapter
))
1288 qlcnic_sriov_pf_handle_flr(sriov
, vf
);
1290 dev_err(&adapter
->pdev
->dev
,
1291 "Invalid event to VF. VF should not get FLR event\n");
1294 void qlcnic_sriov_handle_bc_event(struct qlcnic_adapter
*adapter
, u32 event
)
1296 struct qlcnic_vf_info
*vf
;
1297 struct qlcnic_sriov
*sriov
;
1301 sriov
= adapter
->ahw
->sriov
;
1302 pci_func
= qlcnic_sriov_target_func_id(event
);
1303 index
= qlcnic_sriov_func_to_index(adapter
, pci_func
);
1308 vf
= &sriov
->vf_info
[index
];
1309 vf
->pci_func
= pci_func
;
1311 if (qlcnic_sriov_channel_free_check(event
))
1312 complete(&vf
->ch_free_cmpl
);
1314 if (qlcnic_sriov_flr_check(event
)) {
1315 qlcnic_sriov_handle_flr_event(sriov
, vf
);
1319 if (qlcnic_sriov_bc_msg_check(event
))
1320 qlcnic_sriov_handle_msg_event(sriov
, vf
);
1323 int qlcnic_sriov_cfg_bc_intr(struct qlcnic_adapter
*adapter
, u8 enable
)
1325 struct qlcnic_cmd_args cmd
;
1328 if (!test_bit(__QLCNIC_SRIOV_ENABLE
, &adapter
->state
))
1331 if (qlcnic_alloc_mbx_args(&cmd
, adapter
, QLCNIC_CMD_BC_EVENT_SETUP
))
1335 cmd
.req
.arg
[1] = (1 << 4) | (1 << 5) | (1 << 6) | (1 << 7);
1337 err
= qlcnic_83xx_issue_cmd(adapter
, &cmd
);
1339 if (err
!= QLCNIC_RCODE_SUCCESS
) {
1340 dev_err(&adapter
->pdev
->dev
,
1341 "Failed to %s bc events, err=%d\n",
1342 (enable
? "enable" : "disable"), err
);
1345 qlcnic_free_mbx_args(&cmd
);
1349 static int qlcnic_sriov_retry_bc_cmd(struct qlcnic_adapter
*adapter
,
1350 struct qlcnic_bc_trans
*trans
)
1352 u8 max
= QLC_BC_CMD_MAX_RETRY_CNT
;
1355 state
= QLCRDX(adapter
->ahw
, QLC_83XX_IDC_DEV_STATE
);
1356 if (state
== QLC_83XX_IDC_DEV_READY
) {
1358 clear_bit(QLC_BC_VF_CHANNEL
, &trans
->vf
->state
);
1359 trans
->trans_state
= QLC_INIT
;
1360 if (++adapter
->fw_fail_cnt
> max
)
1369 static int __qlcnic_sriov_issue_cmd(struct qlcnic_adapter
*adapter
,
1370 struct qlcnic_cmd_args
*cmd
)
1372 struct qlcnic_hardware_context
*ahw
= adapter
->ahw
;
1373 struct qlcnic_mailbox
*mbx
= ahw
->mailbox
;
1374 struct device
*dev
= &adapter
->pdev
->dev
;
1375 struct qlcnic_bc_trans
*trans
;
1377 u32 rsp_data
, opcode
, mbx_err_code
, rsp
;
1378 u16 seq
= ++adapter
->ahw
->sriov
->bc
.trans_counter
;
1379 u8 func
= ahw
->pci_func
;
1381 rsp
= qlcnic_sriov_alloc_bc_trans(&trans
);
1385 rsp
= qlcnic_sriov_prepare_bc_hdr(trans
, cmd
, seq
, QLC_BC_COMMAND
);
1387 goto cleanup_transaction
;
1390 if (!test_bit(QLC_83XX_MBX_READY
, &mbx
->status
)) {
1392 QLCDB(adapter
, DRV
, "MBX not Ready!(cmd 0x%x) for VF 0x%x\n",
1393 QLCNIC_MBX_RSP(cmd
->req
.arg
[0]), func
);
1397 err
= qlcnic_sriov_send_bc_cmd(adapter
, trans
, func
);
1399 dev_err(dev
, "MBX command 0x%x timed out for VF %d\n",
1400 (cmd
->req
.arg
[0] & 0xffff), func
);
1401 rsp
= QLCNIC_RCODE_TIMEOUT
;
1403 /* After adapter reset PF driver may take some time to
1404 * respond to VF's request. Retry request till maximum retries.
1406 if ((trans
->req_hdr
->cmd_op
== QLCNIC_BC_CMD_CHANNEL_INIT
) &&
1407 !qlcnic_sriov_retry_bc_cmd(adapter
, trans
))
1413 rsp_data
= cmd
->rsp
.arg
[0];
1414 mbx_err_code
= QLCNIC_MBX_STATUS(rsp_data
);
1415 opcode
= QLCNIC_MBX_RSP(cmd
->req
.arg
[0]);
1417 if ((mbx_err_code
== QLCNIC_MBX_RSP_OK
) ||
1418 (mbx_err_code
== QLCNIC_MBX_PORT_RSP_OK
)) {
1419 rsp
= QLCNIC_RCODE_SUCCESS
;
1421 if (cmd
->type
== QLC_83XX_MBX_CMD_NO_WAIT
) {
1422 rsp
= QLCNIC_RCODE_SUCCESS
;
1429 "MBX command 0x%x failed with err:0x%x for VF %d\n",
1430 opcode
, mbx_err_code
, func
);
1435 if (rsp
== QLCNIC_RCODE_TIMEOUT
) {
1436 ahw
->reset_context
= 1;
1437 adapter
->need_fw_reset
= 1;
1438 clear_bit(QLC_83XX_MBX_READY
, &mbx
->status
);
1441 cleanup_transaction
:
1442 qlcnic_sriov_cleanup_transaction(trans
);
1445 if (cmd
->type
== QLC_83XX_MBX_CMD_NO_WAIT
) {
1446 qlcnic_free_mbx_args(cmd
);
1454 static int qlcnic_sriov_issue_cmd(struct qlcnic_adapter
*adapter
,
1455 struct qlcnic_cmd_args
*cmd
)
1457 if (cmd
->type
== QLC_83XX_MBX_CMD_NO_WAIT
)
1458 return qlcnic_sriov_async_issue_cmd(adapter
, cmd
);
1460 return __qlcnic_sriov_issue_cmd(adapter
, cmd
);
1463 static int qlcnic_sriov_channel_cfg_cmd(struct qlcnic_adapter
*adapter
, u8 cmd_op
)
1465 struct qlcnic_cmd_args cmd
;
1466 struct qlcnic_vf_info
*vf
= &adapter
->ahw
->sriov
->vf_info
[0];
1469 memset(&cmd
, 0, sizeof(cmd
));
1470 if (qlcnic_sriov_alloc_bc_mbx_args(&cmd
, cmd_op
))
1473 ret
= qlcnic_issue_cmd(adapter
, &cmd
);
1475 dev_err(&adapter
->pdev
->dev
,
1476 "Failed bc channel %s %d\n", cmd_op
? "term" : "init",
1481 cmd_op
= (cmd
.rsp
.arg
[0] & 0xff);
1482 if (cmd
.rsp
.arg
[0] >> 25 == 2)
1484 if (cmd_op
== QLCNIC_BC_CMD_CHANNEL_INIT
)
1485 set_bit(QLC_BC_VF_STATE
, &vf
->state
);
1487 clear_bit(QLC_BC_VF_STATE
, &vf
->state
);
1490 qlcnic_free_mbx_args(&cmd
);
1494 static void qlcnic_vf_add_mc_list(struct net_device
*netdev
, const u8
*mac
,
1495 enum qlcnic_mac_type mac_type
)
1497 struct qlcnic_adapter
*adapter
= netdev_priv(netdev
);
1498 struct qlcnic_sriov
*sriov
= adapter
->ahw
->sriov
;
1499 struct qlcnic_vf_info
*vf
;
1503 vf
= &adapter
->ahw
->sriov
->vf_info
[0];
1505 if (!qlcnic_sriov_check_any_vlan(vf
)) {
1506 qlcnic_nic_add_mac(adapter
, mac
, 0, mac_type
);
1508 spin_lock(&vf
->vlan_list_lock
);
1509 for (i
= 0; i
< sriov
->num_allowed_vlans
; i
++) {
1510 vlan_id
= vf
->sriov_vlans
[i
];
1512 qlcnic_nic_add_mac(adapter
, mac
, vlan_id
,
1515 spin_unlock(&vf
->vlan_list_lock
);
1516 if (qlcnic_84xx_check(adapter
))
1517 qlcnic_nic_add_mac(adapter
, mac
, 0, mac_type
);
1521 void qlcnic_sriov_cleanup_async_list(struct qlcnic_back_channel
*bc
)
1523 struct list_head
*head
= &bc
->async_cmd_list
;
1524 struct qlcnic_async_cmd
*entry
;
1526 flush_workqueue(bc
->bc_async_wq
);
1527 cancel_work_sync(&bc
->vf_async_work
);
1529 spin_lock(&bc
->queue_lock
);
1530 while (!list_empty(head
)) {
1531 entry
= list_entry(head
->next
, struct qlcnic_async_cmd
,
1533 list_del(&entry
->list
);
1537 spin_unlock(&bc
->queue_lock
);
1540 void qlcnic_sriov_vf_set_multi(struct net_device
*netdev
)
1542 struct qlcnic_adapter
*adapter
= netdev_priv(netdev
);
1543 struct qlcnic_hardware_context
*ahw
= adapter
->ahw
;
1544 static const u8 bcast_addr
[ETH_ALEN
] = {
1545 0xff, 0xff, 0xff, 0xff, 0xff, 0xff
1547 struct netdev_hw_addr
*ha
;
1548 u32 mode
= VPORT_MISS_MODE_DROP
;
1550 if (!test_bit(__QLCNIC_FW_ATTACHED
, &adapter
->state
))
1553 if (netdev
->flags
& IFF_PROMISC
) {
1554 if (!(adapter
->flags
& QLCNIC_PROMISC_DISABLED
))
1555 mode
= VPORT_MISS_MODE_ACCEPT_ALL
;
1556 } else if ((netdev
->flags
& IFF_ALLMULTI
) ||
1557 (netdev_mc_count(netdev
) > ahw
->max_mc_count
)) {
1558 mode
= VPORT_MISS_MODE_ACCEPT_MULTI
;
1560 qlcnic_vf_add_mc_list(netdev
, bcast_addr
, QLCNIC_BROADCAST_MAC
);
1561 if (!netdev_mc_empty(netdev
)) {
1562 qlcnic_flush_mcast_mac(adapter
);
1563 netdev_for_each_mc_addr(ha
, netdev
)
1564 qlcnic_vf_add_mc_list(netdev
, ha
->addr
,
1565 QLCNIC_MULTICAST_MAC
);
1569 /* configure unicast MAC address, if there is not sufficient space
1570 * to store all the unicast addresses then enable promiscuous mode
1572 if (netdev_uc_count(netdev
) > ahw
->max_uc_count
) {
1573 mode
= VPORT_MISS_MODE_ACCEPT_ALL
;
1574 } else if (!netdev_uc_empty(netdev
)) {
1575 netdev_for_each_uc_addr(ha
, netdev
)
1576 qlcnic_vf_add_mc_list(netdev
, ha
->addr
,
1577 QLCNIC_UNICAST_MAC
);
1580 if (adapter
->pdev
->is_virtfn
) {
1581 if (mode
== VPORT_MISS_MODE_ACCEPT_ALL
&&
1582 !adapter
->fdb_mac_learn
) {
1583 qlcnic_alloc_lb_filters_mem(adapter
);
1584 adapter
->drv_mac_learn
= true;
1585 adapter
->rx_mac_learn
= true;
1587 adapter
->drv_mac_learn
= false;
1588 adapter
->rx_mac_learn
= false;
1592 qlcnic_nic_set_promisc(adapter
, mode
);
1595 static void qlcnic_sriov_handle_async_issue_cmd(struct work_struct
*work
)
1597 struct qlcnic_async_cmd
*entry
, *tmp
;
1598 struct qlcnic_back_channel
*bc
;
1599 struct qlcnic_cmd_args
*cmd
;
1600 struct list_head
*head
;
1601 LIST_HEAD(del_list
);
1603 bc
= container_of(work
, struct qlcnic_back_channel
, vf_async_work
);
1604 head
= &bc
->async_cmd_list
;
1606 spin_lock(&bc
->queue_lock
);
1607 list_splice_init(head
, &del_list
);
1608 spin_unlock(&bc
->queue_lock
);
1610 list_for_each_entry_safe(entry
, tmp
, &del_list
, list
) {
1611 list_del(&entry
->list
);
1613 __qlcnic_sriov_issue_cmd(bc
->adapter
, cmd
);
1617 if (!list_empty(head
))
1618 queue_work(bc
->bc_async_wq
, &bc
->vf_async_work
);
1623 static struct qlcnic_async_cmd
*
1624 qlcnic_sriov_alloc_async_cmd(struct qlcnic_back_channel
*bc
,
1625 struct qlcnic_cmd_args
*cmd
)
1627 struct qlcnic_async_cmd
*entry
= NULL
;
1629 entry
= kzalloc(sizeof(*entry
), GFP_ATOMIC
);
1635 spin_lock(&bc
->queue_lock
);
1636 list_add_tail(&entry
->list
, &bc
->async_cmd_list
);
1637 spin_unlock(&bc
->queue_lock
);
1642 static void qlcnic_sriov_schedule_async_cmd(struct qlcnic_back_channel
*bc
,
1643 struct qlcnic_cmd_args
*cmd
)
1645 struct qlcnic_async_cmd
*entry
= NULL
;
1647 entry
= qlcnic_sriov_alloc_async_cmd(bc
, cmd
);
1649 qlcnic_free_mbx_args(cmd
);
1654 queue_work(bc
->bc_async_wq
, &bc
->vf_async_work
);
1657 static int qlcnic_sriov_async_issue_cmd(struct qlcnic_adapter
*adapter
,
1658 struct qlcnic_cmd_args
*cmd
)
1661 struct qlcnic_back_channel
*bc
= &adapter
->ahw
->sriov
->bc
;
1663 if (adapter
->need_fw_reset
)
1666 qlcnic_sriov_schedule_async_cmd(bc
, cmd
);
1671 static int qlcnic_sriov_vf_reinit_driver(struct qlcnic_adapter
*adapter
)
1675 adapter
->need_fw_reset
= 0;
1676 qlcnic_83xx_reinit_mbx_work(adapter
->ahw
->mailbox
);
1677 qlcnic_83xx_enable_mbx_interrupt(adapter
);
1679 err
= qlcnic_sriov_cfg_bc_intr(adapter
, 1);
1683 err
= qlcnic_sriov_channel_cfg_cmd(adapter
, QLCNIC_BC_CMD_CHANNEL_INIT
);
1685 goto err_out_cleanup_bc_intr
;
1687 err
= qlcnic_sriov_vf_init_driver(adapter
);
1689 goto err_out_term_channel
;
1693 err_out_term_channel
:
1694 qlcnic_sriov_channel_cfg_cmd(adapter
, QLCNIC_BC_CMD_CHANNEL_TERM
);
1696 err_out_cleanup_bc_intr
:
1697 qlcnic_sriov_cfg_bc_intr(adapter
, 0);
1701 static void qlcnic_sriov_vf_attach(struct qlcnic_adapter
*adapter
)
1703 struct net_device
*netdev
= adapter
->netdev
;
1705 if (netif_running(netdev
)) {
1706 if (!qlcnic_up(adapter
, netdev
))
1707 qlcnic_restore_indev_addr(netdev
, NETDEV_UP
);
1710 netif_device_attach(netdev
);
1713 static void qlcnic_sriov_vf_detach(struct qlcnic_adapter
*adapter
)
1715 struct qlcnic_hardware_context
*ahw
= adapter
->ahw
;
1716 struct qlcnic_intrpt_config
*intr_tbl
= ahw
->intr_tbl
;
1717 struct net_device
*netdev
= adapter
->netdev
;
1718 u8 i
, max_ints
= ahw
->num_msix
- 1;
1720 netif_device_detach(netdev
);
1721 qlcnic_83xx_detach_mailbox_work(adapter
);
1722 qlcnic_83xx_disable_mbx_intr(adapter
);
1724 if (netif_running(netdev
))
1725 qlcnic_down(adapter
, netdev
);
1727 for (i
= 0; i
< max_ints
; i
++) {
1729 intr_tbl
[i
].enabled
= 0;
1730 intr_tbl
[i
].src
= 0;
1732 ahw
->reset_context
= 0;
1735 static int qlcnic_sriov_vf_handle_dev_ready(struct qlcnic_adapter
*adapter
)
1737 struct qlcnic_hardware_context
*ahw
= adapter
->ahw
;
1738 struct device
*dev
= &adapter
->pdev
->dev
;
1739 struct qlc_83xx_idc
*idc
= &ahw
->idc
;
1740 u8 func
= ahw
->pci_func
;
1743 if ((idc
->prev_state
== QLC_83XX_IDC_DEV_NEED_RESET
) ||
1744 (idc
->prev_state
== QLC_83XX_IDC_DEV_INIT
)) {
1745 if (!qlcnic_sriov_vf_reinit_driver(adapter
)) {
1746 qlcnic_sriov_vf_attach(adapter
);
1747 adapter
->fw_fail_cnt
= 0;
1749 "%s: Reinitialization of VF 0x%x done after FW reset\n",
1753 "%s: Reinitialization of VF 0x%x failed after FW reset\n",
1755 state
= QLCRDX(ahw
, QLC_83XX_IDC_DEV_STATE
);
1756 dev_info(dev
, "Current state 0x%x after FW reset\n",
1764 static int qlcnic_sriov_vf_handle_context_reset(struct qlcnic_adapter
*adapter
)
1766 struct qlcnic_hardware_context
*ahw
= adapter
->ahw
;
1767 struct qlcnic_mailbox
*mbx
= ahw
->mailbox
;
1768 struct device
*dev
= &adapter
->pdev
->dev
;
1769 struct qlc_83xx_idc
*idc
= &ahw
->idc
;
1770 u8 func
= ahw
->pci_func
;
1773 adapter
->reset_ctx_cnt
++;
1775 /* Skip the context reset and check if FW is hung */
1776 if (adapter
->reset_ctx_cnt
< 3) {
1777 adapter
->need_fw_reset
= 1;
1778 clear_bit(QLC_83XX_MBX_READY
, &mbx
->status
);
1780 "Resetting context, wait here to check if FW is in failed state\n");
1784 /* Check if number of resets exceed the threshold.
1785 * If it exceeds the threshold just fail the VF.
1787 if (adapter
->reset_ctx_cnt
> QLC_83XX_VF_RESET_FAIL_THRESH
) {
1788 clear_bit(QLC_83XX_MODULE_LOADED
, &idc
->status
);
1789 adapter
->tx_timeo_cnt
= 0;
1790 adapter
->fw_fail_cnt
= 0;
1791 adapter
->reset_ctx_cnt
= 0;
1792 qlcnic_sriov_vf_detach(adapter
);
1794 "Device context resets have exceeded the threshold, device interface will be shutdown\n");
1798 dev_info(dev
, "Resetting context of VF 0x%x\n", func
);
1799 dev_info(dev
, "%s: Context reset count %d for VF 0x%x\n",
1800 __func__
, adapter
->reset_ctx_cnt
, func
);
1801 set_bit(__QLCNIC_RESETTING
, &adapter
->state
);
1802 adapter
->need_fw_reset
= 1;
1803 clear_bit(QLC_83XX_MBX_READY
, &mbx
->status
);
1804 qlcnic_sriov_vf_detach(adapter
);
1805 adapter
->need_fw_reset
= 0;
1807 if (!qlcnic_sriov_vf_reinit_driver(adapter
)) {
1808 qlcnic_sriov_vf_attach(adapter
);
1809 adapter
->tx_timeo_cnt
= 0;
1810 adapter
->reset_ctx_cnt
= 0;
1811 adapter
->fw_fail_cnt
= 0;
1812 dev_info(dev
, "Done resetting context for VF 0x%x\n", func
);
1814 dev_err(dev
, "%s: Reinitialization of VF 0x%x failed\n",
1816 state
= QLCRDX(ahw
, QLC_83XX_IDC_DEV_STATE
);
1817 dev_info(dev
, "%s: Current state 0x%x\n", __func__
, state
);
1823 static int qlcnic_sriov_vf_idc_ready_state(struct qlcnic_adapter
*adapter
)
1825 struct qlcnic_hardware_context
*ahw
= adapter
->ahw
;
1828 if (ahw
->idc
.prev_state
!= QLC_83XX_IDC_DEV_READY
)
1829 ret
= qlcnic_sriov_vf_handle_dev_ready(adapter
);
1830 else if (ahw
->reset_context
)
1831 ret
= qlcnic_sriov_vf_handle_context_reset(adapter
);
1833 clear_bit(__QLCNIC_RESETTING
, &adapter
->state
);
1837 static int qlcnic_sriov_vf_idc_failed_state(struct qlcnic_adapter
*adapter
)
1839 struct qlc_83xx_idc
*idc
= &adapter
->ahw
->idc
;
1841 dev_err(&adapter
->pdev
->dev
, "Device is in failed state\n");
1842 if (idc
->prev_state
== QLC_83XX_IDC_DEV_READY
)
1843 qlcnic_sriov_vf_detach(adapter
);
1845 clear_bit(QLC_83XX_MODULE_LOADED
, &idc
->status
);
1846 clear_bit(__QLCNIC_RESETTING
, &adapter
->state
);
1851 qlcnic_sriov_vf_idc_need_quiescent_state(struct qlcnic_adapter
*adapter
)
1853 struct qlcnic_mailbox
*mbx
= adapter
->ahw
->mailbox
;
1854 struct qlc_83xx_idc
*idc
= &adapter
->ahw
->idc
;
1856 dev_info(&adapter
->pdev
->dev
, "Device is in quiescent state\n");
1857 if (idc
->prev_state
== QLC_83XX_IDC_DEV_READY
) {
1858 set_bit(__QLCNIC_RESETTING
, &adapter
->state
);
1859 adapter
->tx_timeo_cnt
= 0;
1860 adapter
->reset_ctx_cnt
= 0;
1861 clear_bit(QLC_83XX_MBX_READY
, &mbx
->status
);
1862 qlcnic_sriov_vf_detach(adapter
);
1868 static int qlcnic_sriov_vf_idc_init_reset_state(struct qlcnic_adapter
*adapter
)
1870 struct qlcnic_mailbox
*mbx
= adapter
->ahw
->mailbox
;
1871 struct qlc_83xx_idc
*idc
= &adapter
->ahw
->idc
;
1872 u8 func
= adapter
->ahw
->pci_func
;
1874 if (idc
->prev_state
== QLC_83XX_IDC_DEV_READY
) {
1875 dev_err(&adapter
->pdev
->dev
,
1876 "Firmware hang detected by VF 0x%x\n", func
);
1877 set_bit(__QLCNIC_RESETTING
, &adapter
->state
);
1878 adapter
->tx_timeo_cnt
= 0;
1879 adapter
->reset_ctx_cnt
= 0;
1880 clear_bit(QLC_83XX_MBX_READY
, &mbx
->status
);
1881 qlcnic_sriov_vf_detach(adapter
);
1886 static int qlcnic_sriov_vf_idc_unknown_state(struct qlcnic_adapter
*adapter
)
1888 dev_err(&adapter
->pdev
->dev
, "%s: Device in unknown state\n", __func__
);
1892 static void qlcnic_sriov_vf_periodic_tasks(struct qlcnic_adapter
*adapter
)
1894 if (adapter
->fhash
.fnum
)
1895 qlcnic_prune_lb_filters(adapter
);
1898 static void qlcnic_sriov_vf_poll_dev_state(struct work_struct
*work
)
1900 struct qlcnic_adapter
*adapter
;
1901 struct qlc_83xx_idc
*idc
;
1904 adapter
= container_of(work
, struct qlcnic_adapter
, fw_work
.work
);
1905 idc
= &adapter
->ahw
->idc
;
1906 idc
->curr_state
= QLCRDX(adapter
->ahw
, QLC_83XX_IDC_DEV_STATE
);
1908 switch (idc
->curr_state
) {
1909 case QLC_83XX_IDC_DEV_READY
:
1910 ret
= qlcnic_sriov_vf_idc_ready_state(adapter
);
1912 case QLC_83XX_IDC_DEV_NEED_RESET
:
1913 case QLC_83XX_IDC_DEV_INIT
:
1914 ret
= qlcnic_sriov_vf_idc_init_reset_state(adapter
);
1916 case QLC_83XX_IDC_DEV_NEED_QUISCENT
:
1917 ret
= qlcnic_sriov_vf_idc_need_quiescent_state(adapter
);
1919 case QLC_83XX_IDC_DEV_FAILED
:
1920 ret
= qlcnic_sriov_vf_idc_failed_state(adapter
);
1922 case QLC_83XX_IDC_DEV_QUISCENT
:
1925 ret
= qlcnic_sriov_vf_idc_unknown_state(adapter
);
1928 idc
->prev_state
= idc
->curr_state
;
1929 qlcnic_sriov_vf_periodic_tasks(adapter
);
1931 if (!ret
&& test_bit(QLC_83XX_MODULE_LOADED
, &idc
->status
))
1932 qlcnic_schedule_work(adapter
, qlcnic_sriov_vf_poll_dev_state
,
1936 static void qlcnic_sriov_vf_cancel_fw_work(struct qlcnic_adapter
*adapter
)
1938 while (test_and_set_bit(__QLCNIC_RESETTING
, &adapter
->state
))
1941 clear_bit(QLC_83XX_MODULE_LOADED
, &adapter
->ahw
->idc
.status
);
1942 clear_bit(__QLCNIC_RESETTING
, &adapter
->state
);
1943 cancel_delayed_work_sync(&adapter
->fw_work
);
1946 static int qlcnic_sriov_check_vlan_id(struct qlcnic_sriov
*sriov
,
1947 struct qlcnic_vf_info
*vf
, u16 vlan_id
)
1949 int i
, err
= -EINVAL
;
1951 if (!vf
->sriov_vlans
)
1954 spin_lock_bh(&vf
->vlan_list_lock
);
1956 for (i
= 0; i
< sriov
->num_allowed_vlans
; i
++) {
1957 if (vf
->sriov_vlans
[i
] == vlan_id
) {
1963 spin_unlock_bh(&vf
->vlan_list_lock
);
1967 static int qlcnic_sriov_validate_num_vlans(struct qlcnic_sriov
*sriov
,
1968 struct qlcnic_vf_info
*vf
)
1972 spin_lock_bh(&vf
->vlan_list_lock
);
1974 if (vf
->num_vlan
>= sriov
->num_allowed_vlans
)
1977 spin_unlock_bh(&vf
->vlan_list_lock
);
1981 static int qlcnic_sriov_validate_vlan_cfg(struct qlcnic_adapter
*adapter
,
1984 struct qlcnic_sriov
*sriov
= adapter
->ahw
->sriov
;
1985 struct qlcnic_vf_info
*vf
;
1990 vf
= &adapter
->ahw
->sriov
->vf_info
[0];
1991 vlan_exist
= qlcnic_sriov_check_any_vlan(vf
);
1992 if (sriov
->vlan_mode
!= QLC_GUEST_VLAN_MODE
)
1996 if (qlcnic_83xx_vf_check(adapter
) && vlan_exist
)
1999 if (qlcnic_sriov_validate_num_vlans(sriov
, vf
))
2002 if (sriov
->any_vlan
) {
2003 for (i
= 0; i
< sriov
->num_allowed_vlans
; i
++) {
2004 if (sriov
->allowed_vlans
[i
] == vid
)
2012 if (!vlan_exist
|| qlcnic_sriov_check_vlan_id(sriov
, vf
, vid
))
2019 static void qlcnic_sriov_vlan_operation(struct qlcnic_vf_info
*vf
, u16 vlan_id
,
2020 enum qlcnic_vlan_operations opcode
)
2022 struct qlcnic_adapter
*adapter
= vf
->adapter
;
2023 struct qlcnic_sriov
*sriov
;
2025 sriov
= adapter
->ahw
->sriov
;
2027 if (!vf
->sriov_vlans
)
2030 spin_lock_bh(&vf
->vlan_list_lock
);
2034 qlcnic_sriov_add_vlan_id(sriov
, vf
, vlan_id
);
2036 case QLC_VLAN_DELETE
:
2037 qlcnic_sriov_del_vlan_id(sriov
, vf
, vlan_id
);
2040 netdev_err(adapter
->netdev
, "Invalid VLAN operation\n");
2043 spin_unlock_bh(&vf
->vlan_list_lock
);
2047 int qlcnic_sriov_cfg_vf_guest_vlan(struct qlcnic_adapter
*adapter
,
2050 struct qlcnic_sriov
*sriov
= adapter
->ahw
->sriov
;
2051 struct net_device
*netdev
= adapter
->netdev
;
2052 struct qlcnic_vf_info
*vf
;
2053 struct qlcnic_cmd_args cmd
;
2056 memset(&cmd
, 0, sizeof(cmd
));
2060 vf
= &adapter
->ahw
->sriov
->vf_info
[0];
2061 ret
= qlcnic_sriov_validate_vlan_cfg(adapter
, vid
, enable
);
2065 ret
= qlcnic_sriov_alloc_bc_mbx_args(&cmd
,
2066 QLCNIC_BC_CMD_CFG_GUEST_VLAN
);
2070 cmd
.req
.arg
[1] = (enable
& 1) | vid
<< 16;
2072 qlcnic_sriov_cleanup_async_list(&sriov
->bc
);
2073 ret
= qlcnic_issue_cmd(adapter
, &cmd
);
2075 dev_err(&adapter
->pdev
->dev
,
2076 "Failed to configure guest VLAN, err=%d\n", ret
);
2078 netif_addr_lock_bh(netdev
);
2079 qlcnic_free_mac_list(adapter
);
2080 netif_addr_unlock_bh(netdev
);
2083 qlcnic_sriov_vlan_operation(vf
, vid
, QLC_VLAN_ADD
);
2085 qlcnic_sriov_vlan_operation(vf
, vid
, QLC_VLAN_DELETE
);
2087 netif_addr_lock_bh(netdev
);
2088 qlcnic_set_multi(netdev
);
2089 netif_addr_unlock_bh(netdev
);
2092 qlcnic_free_mbx_args(&cmd
);
2096 static void qlcnic_sriov_vf_free_mac_list(struct qlcnic_adapter
*adapter
)
2098 struct list_head
*head
= &adapter
->mac_list
;
2099 struct qlcnic_mac_vlan_list
*cur
;
2101 while (!list_empty(head
)) {
2102 cur
= list_entry(head
->next
, struct qlcnic_mac_vlan_list
, list
);
2103 qlcnic_sre_macaddr_change(adapter
, cur
->mac_addr
, cur
->vlan_id
,
2105 list_del(&cur
->list
);
2111 static int qlcnic_sriov_vf_shutdown(struct pci_dev
*pdev
)
2113 struct qlcnic_adapter
*adapter
= pci_get_drvdata(pdev
);
2114 struct net_device
*netdev
= adapter
->netdev
;
2116 netif_device_detach(netdev
);
2117 qlcnic_cancel_idc_work(adapter
);
2119 if (netif_running(netdev
))
2120 qlcnic_down(adapter
, netdev
);
2122 qlcnic_sriov_channel_cfg_cmd(adapter
, QLCNIC_BC_CMD_CHANNEL_TERM
);
2123 qlcnic_sriov_cfg_bc_intr(adapter
, 0);
2124 qlcnic_83xx_disable_mbx_intr(adapter
);
2125 cancel_delayed_work_sync(&adapter
->idc_aen_work
);
2127 return pci_save_state(pdev
);
2130 static int qlcnic_sriov_vf_resume(struct qlcnic_adapter
*adapter
)
2132 struct qlc_83xx_idc
*idc
= &adapter
->ahw
->idc
;
2133 struct net_device
*netdev
= adapter
->netdev
;
2136 set_bit(QLC_83XX_MODULE_LOADED
, &idc
->status
);
2137 qlcnic_83xx_enable_mbx_interrupt(adapter
);
2138 err
= qlcnic_sriov_cfg_bc_intr(adapter
, 1);
2142 err
= qlcnic_sriov_channel_cfg_cmd(adapter
, QLCNIC_BC_CMD_CHANNEL_INIT
);
2144 if (netif_running(netdev
)) {
2145 err
= qlcnic_up(adapter
, netdev
);
2147 qlcnic_restore_indev_addr(netdev
, NETDEV_UP
);
2151 netif_device_attach(netdev
);
2152 qlcnic_schedule_work(adapter
, qlcnic_sriov_vf_poll_dev_state
,
2157 void qlcnic_sriov_alloc_vlans(struct qlcnic_adapter
*adapter
)
2159 struct qlcnic_sriov
*sriov
= adapter
->ahw
->sriov
;
2160 struct qlcnic_vf_info
*vf
;
2163 for (i
= 0; i
< sriov
->num_vfs
; i
++) {
2164 vf
= &sriov
->vf_info
[i
];
2165 vf
->sriov_vlans
= kcalloc(sriov
->num_allowed_vlans
,
2166 sizeof(*vf
->sriov_vlans
), GFP_KERNEL
);
2170 void qlcnic_sriov_free_vlans(struct qlcnic_adapter
*adapter
)
2172 struct qlcnic_sriov
*sriov
= adapter
->ahw
->sriov
;
2173 struct qlcnic_vf_info
*vf
;
2176 for (i
= 0; i
< sriov
->num_vfs
; i
++) {
2177 vf
= &sriov
->vf_info
[i
];
2178 kfree(vf
->sriov_vlans
);
2179 vf
->sriov_vlans
= NULL
;
2183 void qlcnic_sriov_add_vlan_id(struct qlcnic_sriov
*sriov
,
2184 struct qlcnic_vf_info
*vf
, u16 vlan_id
)
2188 for (i
= 0; i
< sriov
->num_allowed_vlans
; i
++) {
2189 if (!vf
->sriov_vlans
[i
]) {
2190 vf
->sriov_vlans
[i
] = vlan_id
;
2197 void qlcnic_sriov_del_vlan_id(struct qlcnic_sriov
*sriov
,
2198 struct qlcnic_vf_info
*vf
, u16 vlan_id
)
2202 for (i
= 0; i
< sriov
->num_allowed_vlans
; i
++) {
2203 if (vf
->sriov_vlans
[i
] == vlan_id
) {
2204 vf
->sriov_vlans
[i
] = 0;
2211 bool qlcnic_sriov_check_any_vlan(struct qlcnic_vf_info
*vf
)
2215 spin_lock_bh(&vf
->vlan_list_lock
);
2220 spin_unlock_bh(&vf
->vlan_list_lock
);