1 /* QLogic qed NIC Driver
2 * Copyright (c) 2015-2017 QLogic Corporation
4 * This software is available to you under a choice of one of two
5 * licenses. You may choose to be licensed under the terms of the GNU
6 * General Public License (GPL) Version 2, available from the file
7 * COPYING in the main directory of this source tree, or the
8 * OpenIB.org BSD license below:
10 * Redistribution and use in source and binary forms, with or
11 * without modification, are permitted provided that the following
14 * - Redistributions of source code must retain the above
15 * copyright notice, this list of conditions and the following
18 * - Redistributions in binary form must reproduce the above
19 * copyright notice, this list of conditions and the following
20 * disclaimer in the documentation and /or other materials
21 * provided with the distribution.
23 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
24 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
25 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
26 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
27 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
28 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
29 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
36 #include <linux/types.h>
38 #include <linux/delay.h>
39 #include <linux/firmware.h>
40 #include <linux/interrupt.h>
41 #include <linux/list.h>
42 #include <linux/mutex.h>
43 #include <linux/pci.h>
44 #include <linux/slab.h>
45 #include <linux/string.h>
46 #include <linux/workqueue.h>
47 #include <linux/zlib.h>
48 #include <linux/hashtable.h>
49 #include <linux/qed/qed_if.h>
50 #include "qed_debug.h"
53 extern const struct qed_common_ops qed_common_ops_pass
;
54 #define DRV_MODULE_VERSION "8.10.10.20"
56 #define MAX_HWFNS_PER_DEVICE (4)
60 #define QED_WFQ_UNIT 100
62 #define ISCSI_BDQ_ID(_port_id) (_port_id)
63 #define FCOE_BDQ_ID(_port_id) ((_port_id) + 2)
64 #define QED_WID_SIZE (1024)
65 #define QED_PF_DEMS_SIZE (4)
68 enum qed_coalescing_mode
{
69 QED_COAL_MODE_DISABLE
,
73 struct qed_eth_cb_ops
;
75 union qed_mcp_protocol_stats
;
76 enum qed_mcp_protocol_type
;
79 static inline u32
qed_db_addr(u32 cid
, u32 DEMS
)
81 u32 db_addr
= FIELD_VALUE(DB_LEGACY_ADDR_DEMS
, DEMS
) |
82 (cid
* QED_PF_DEMS_SIZE
);
87 static inline u32
qed_db_addr_vf(u32 cid
, u32 DEMS
)
89 u32 db_addr
= FIELD_VALUE(DB_LEGACY_ADDR_DEMS
, DEMS
) |
90 FIELD_VALUE(DB_LEGACY_ADDR_ICID
, cid
);
95 #define ALIGNED_TYPE_SIZE(type_name, p_hwfn) \
96 ((sizeof(type_name) + (u32)(1 << (p_hwfn->cdev->cache_shift)) - 1) & \
97 ~((1 << (p_hwfn->cdev->cache_shift)) - 1))
99 #define for_each_hwfn(cdev, i) for (i = 0; i < cdev->num_hwfns; i++)
101 #define D_TRINE(val, cond1, cond2, true1, true2, def) \
102 (val == (cond1) ? true1 : \
103 (val == (cond2) ? true2 : def))
109 struct qed_sb_attn_info
;
111 struct qed_sb_sp_info
;
121 QED_MODE_L2GENEVE_TUNN
,
122 QED_MODE_IPGENEVE_TUNN
,
129 QED_TUNN_CLSS_MAC_VLAN
,
130 QED_TUNN_CLSS_MAC_VNI
,
131 QED_TUNN_CLSS_INNER_MAC_VLAN
,
132 QED_TUNN_CLSS_INNER_MAC_VNI
,
136 struct qed_tunn_start_params
{
137 unsigned long tunn_mode
;
140 u8 update_vxlan_udp_port
;
141 u8 update_geneve_udp_port
;
143 u8 tunn_clss_l2geneve
;
144 u8 tunn_clss_ipgeneve
;
149 struct qed_tunn_update_params
{
150 unsigned long tunn_mode_update_mask
;
151 unsigned long tunn_mode
;
154 u8 update_rx_pf_clss
;
155 u8 update_tx_pf_clss
;
156 u8 update_vxlan_udp_port
;
157 u8 update_geneve_udp_port
;
159 u8 tunn_clss_l2geneve
;
160 u8 tunn_clss_ipgeneve
;
165 /* The PCI personality is not quite synonymous to protocol ID:
166 * 1. All personalities need CORE connections
167 * 2. The Ethernet personality may support also the RoCE protocol
169 enum qed_pci_personality
{
174 QED_PCI_DEFAULT
/* default in shmem */
177 /* All VFs are symmetric, all counters are PF + all VFs */
184 /* HW / FW resources, output of features supported below, most information
185 * is received from MFW.
200 QED_RDMA_STATS_QUEUE
,
214 QED_PORT_MODE_DE_2X40G
,
215 QED_PORT_MODE_DE_2X50G
,
216 QED_PORT_MODE_DE_1X100G
,
217 QED_PORT_MODE_DE_4X10G_F
,
218 QED_PORT_MODE_DE_4X10G_E
,
219 QED_PORT_MODE_DE_4X20G
,
220 QED_PORT_MODE_DE_1X40G
,
221 QED_PORT_MODE_DE_2X25G
,
222 QED_PORT_MODE_DE_1X25G
232 enum qed_wol_support
{
233 QED_WOL_SUPPORT_NONE
,
238 /* PCI personality */
239 enum qed_pci_personality personality
;
241 /* Resource Allocation scheme results */
242 u32 resc_start
[QED_MAX_RESC
];
243 u32 resc_num
[QED_MAX_RESC
];
244 u32 feat_num
[QED_MAX_FEATURES
];
246 #define RESC_START(_p_hwfn, resc) ((_p_hwfn)->hw_info.resc_start[resc])
247 #define RESC_NUM(_p_hwfn, resc) ((_p_hwfn)->hw_info.resc_num[resc])
248 #define RESC_END(_p_hwfn, resc) (RESC_START(_p_hwfn, resc) + \
249 RESC_NUM(_p_hwfn, resc))
250 #define FEAT_NUM(_p_hwfn, resc) ((_p_hwfn)->hw_info.feat_num[resc])
261 unsigned char hw_mac_addr
[ETH_ALEN
];
267 struct qed_igu_info
*p_igu_info
;
271 unsigned long device_capabilities
;
274 enum qed_wol_support b_wol_support
;
277 /* maximun size of read/write commands (HW limit) */
278 #define DMAE_MAX_RW_SIZE 0x2000
280 struct qed_dmae_info
{
281 /* Mutex for synchronizing access to functions */
286 dma_addr_t completion_word_phys_addr
;
288 /* The memory location where the DMAE writes the completion
289 * value when an operation is finished on this context.
291 u32
*p_completion_word
;
293 dma_addr_t intermediate_buffer_phys_addr
;
295 /* An intermediate buffer for DMAE operations that use virtual
296 * addresses - data is DMA'd to/from this buffer and then
297 * memcpy'd to/from the virtual address
299 u32
*p_intermediate_buffer
;
301 dma_addr_t dmae_cmd_phys_addr
;
302 struct dmae_cmd
*p_dmae_cmd
;
305 struct qed_wfq_data
{
306 /* when feature is configured for at least 1 vport */
312 struct init_qm_pq_params
*qm_pq_params
;
313 struct init_qm_vport_params
*qm_vport_params
;
314 struct init_qm_port_params
*qm_port_params
;
325 u8 max_phys_tcs_per_port
;
332 struct qed_wfq_data
*wfq_data
;
341 struct qed_storm_stats
{
342 struct storm_stats mstats
;
343 struct storm_stats pstats
;
344 struct storm_stats tstats
;
345 struct storm_stats ustats
;
349 struct fw_ver_info
*fw_ver_info
;
350 const u8
*modes_tree_buf
;
351 union init_op
*init_ops
;
356 struct qed_simd_fp_handler
{
358 void (*func
)(void *);
362 struct qed_dev
*cdev
;
363 u8 my_id
; /* ID inside the PF */
364 #define IS_LEAD_HWFN(edev) (!((edev)->my_id))
365 u8 rel_pf_id
; /* Relative to engine*/
367 #define QED_PATH_ID(_p_hwfn) ((_p_hwfn)->abs_pf_id & 1)
373 char name
[NAME_SIZE
];
375 bool first_on_engine
;
378 u8 num_funcs_on_engine
;
382 void __iomem
*regview
;
383 void __iomem
*doorbells
;
385 unsigned long db_size
;
388 struct qed_ptt_pool
*p_ptt_pool
;
391 struct qed_hw_info hw_info
;
393 /* rt_array (for init-tool) */
394 struct qed_rt_data rt_data
;
397 struct qed_spq
*p_spq
;
403 struct qed_consq
*p_consq
;
405 /* Slow-Path definitions */
406 struct tasklet_struct
*sp_dpc
;
407 bool b_sp_dpc_enabled
;
409 struct qed_ptt
*p_main_ptt
;
410 struct qed_ptt
*p_dpc_ptt
;
412 struct qed_sb_sp_info
*p_sp_sb
;
413 struct qed_sb_attn_info
*p_sb_attn
;
415 /* Protocol related */
417 struct qed_ll2_info
*p_ll2_info
;
418 struct qed_ooo_info
*p_ooo_info
;
419 struct qed_rdma_info
*p_rdma_info
;
420 struct qed_iscsi_info
*p_iscsi_info
;
421 struct qed_fcoe_info
*p_fcoe_info
;
422 struct qed_pf_params pf_params
;
424 bool b_rdma_enabled_in_prs
;
425 u32 rdma_prs_search_reg
;
427 /* Array of sb_info of all status blocks */
428 struct qed_sb_info
*sbs_info
[MAX_SB_PER_PF_MIMD
];
431 struct qed_cxt_mngr
*p_cxt_mngr
;
433 /* Flag indicating whether interrupts are enabled or not*/
435 bool b_int_requested
;
437 /* True if the driver requests for the link */
438 bool b_drv_link_init
;
440 struct qed_vf_iov
*vf_iov_info
;
441 struct qed_pf_iov
*pf_iov_info
;
442 struct qed_mcp_info
*mcp_info
;
444 struct qed_dcbx_info
*p_dcbx_info
;
446 struct qed_dmae_info dmae_info
;
449 struct qed_qm_info qm_info
;
450 struct qed_storm_stats storm_stats
;
452 /* Buffer for unzipping firmware data */
455 struct dbg_tools_data dbg_info
;
457 /* PWM region specific data */
461 /* This is used to calculate the doorbell address */
462 u32 dpi_start_offset
;
464 /* If one of the following is set then EDPM shouldn't be used */
468 /* p_ptp_ptt is valid for leading HWFN only */
469 struct qed_ptt
*p_ptp_ptt
;
470 struct qed_simd_fp_handler simd_proto_handler
[64];
472 #ifdef CONFIG_QED_SRIOV
473 struct workqueue_struct
*iov_wq
;
474 struct delayed_work iov_task
;
475 unsigned long iov_task_flags
;
478 struct z_stream_s
*stream
;
479 struct qed_roce_ll2_info
*ll2
;
485 unsigned long mem_start
;
486 unsigned long mem_end
;
491 struct qed_int_param
{
494 u8 min_msix_cnt
; /* for minimal functionality */
497 struct qed_int_params
{
498 struct qed_int_param in
;
499 struct qed_int_param out
;
500 struct msix_entry
*msix_table
;
508 struct qed_dbg_feature
{
509 struct dentry
*dentry
;
515 struct qed_dbg_params
{
516 struct qed_dbg_feature features
[DBG_FEATURE_NUM
];
524 char name
[NAME_SIZE
];
527 #define QED_DEV_TYPE_BB (0 << 0)
528 #define QED_DEV_TYPE_AH BIT(0)
529 /* Translate type/revision combo into the proper conditions */
530 #define QED_IS_BB(dev) ((dev)->type == QED_DEV_TYPE_BB)
531 #define QED_IS_BB_A0(dev) (QED_IS_BB(dev) && \
533 #define QED_IS_BB_B0(dev) (QED_IS_BB(dev) && \
535 #define QED_IS_AH(dev) ((dev)->type == QED_DEV_TYPE_AH)
536 #define QED_IS_K2(dev) QED_IS_AH(dev)
538 #define QED_GET_TYPE(dev) (QED_IS_BB_A0(dev) ? CHIP_BB_A0 : \
539 QED_IS_BB_B0(dev) ? CHIP_BB_B0 : CHIP_K2)
545 #define CHIP_NUM_MASK 0xffff
546 #define CHIP_NUM_SHIFT 16
549 #define CHIP_REV_MASK 0xf
550 #define CHIP_REV_SHIFT 12
551 #define CHIP_REV_IS_A0(_cdev) (!(_cdev)->chip_rev)
552 #define CHIP_REV_IS_B0(_cdev) ((_cdev)->chip_rev == 1)
555 #define CHIP_METAL_MASK 0xff
556 #define CHIP_METAL_SHIFT 4
559 #define CHIP_BOND_ID_MASK 0xf
560 #define CHIP_BOND_ID_SHIFT 0
563 u8 num_ports_in_engines
;
564 u8 num_funcs_in_port
;
567 enum qed_mf_mode mf_mode
;
568 #define IS_MF_DEFAULT(_p_hwfn) (((_p_hwfn)->cdev)->mf_mode == QED_MF_DEFAULT)
569 #define IS_MF_SI(_p_hwfn) (((_p_hwfn)->cdev)->mf_mode == QED_MF_NPAR)
570 #define IS_MF_SD(_p_hwfn) (((_p_hwfn)->cdev)->mf_mode == QED_MF_OVLAN)
574 u8 ver_str
[VER_SIZE
];
576 /* Add MF related configuration */
580 /* WoL related configurations */
582 u8 wol_mac
[ETH_ALEN
];
585 enum qed_coalescing_mode int_coalescing_mode
;
586 u16 rx_coalesce_usecs
;
587 u16 tx_coalesce_usecs
;
589 /* Start Bar offset of first hwfn */
590 void __iomem
*regview
;
591 void __iomem
*doorbells
;
593 unsigned long db_size
;
599 const struct iro
*iro_arr
;
600 #define IRO (p_hwfn->cdev->iro_arr)
604 struct qed_hwfn hwfns
[MAX_HWFNS_PER_DEVICE
];
607 struct qed_hw_sriov_info
*p_iov_info
;
608 #define IS_QED_SRIOV(cdev) (!!(cdev)->p_iov_info)
610 unsigned long tunn_mode
;
614 struct qed_eth_stats
*reset_stats
;
615 struct qed_fw_data
*fw_data
;
619 /* Linux specific here */
620 struct qede_dev
*edev
;
621 struct pci_dev
*pdev
;
623 #define QED_FLAG_STORAGE_STARTED (BIT(0))
626 struct pci_params pci_params
;
628 struct qed_int_params int_params
;
631 #define IS_QED_ETH_IF(cdev) ((cdev)->protocol == QED_PROTOCOL_ETH)
632 #define IS_QED_FCOE_IF(cdev) ((cdev)->protocol == QED_PROTOCOL_FCOE)
634 /* Callbacks to protocol driver */
636 struct qed_common_cb_ops
*common
;
637 struct qed_eth_cb_ops
*eth
;
638 struct qed_fcoe_cb_ops
*fcoe
;
639 struct qed_iscsi_cb_ops
*iscsi
;
643 struct qed_dbg_params dbg_params
;
645 #ifdef CONFIG_QED_LL2
646 struct qed_cb_ll2_info
*ll2
;
647 u8 ll2_mac_address
[ETH_ALEN
];
649 DECLARE_HASHTABLE(connections
, 10);
650 const struct firmware
*firmware
;
654 u32 rdma_max_srq_sge
;
657 #define NUM_OF_VFS(dev) MAX_NUM_VFS_BB
658 #define NUM_OF_L2_QUEUES(dev) MAX_NUM_L2_QUEUES_BB
659 #define NUM_OF_SBS(dev) MAX_SB_PER_PATH_BB
660 #define NUM_OF_ENG_PFS(dev) MAX_NUM_PFS_BB
663 * @brief qed_concrete_to_sw_fid - get the sw function id from
664 * the concrete value.
666 * @param concrete_fid
670 static inline u8
qed_concrete_to_sw_fid(struct qed_dev
*cdev
,
673 u8 vfid
= GET_FIELD(concrete_fid
, PXP_CONCRETE_FID_VFID
);
674 u8 pfid
= GET_FIELD(concrete_fid
, PXP_CONCRETE_FID_PFID
);
675 u8 vf_valid
= GET_FIELD(concrete_fid
,
676 PXP_CONCRETE_FID_VFVALID
);
680 sw_fid
= vfid
+ MAX_NUM_PFS
;
690 int qed_configure_vport_wfq(struct qed_dev
*cdev
, u16 vp_id
, u32 rate
);
691 void qed_configure_vp_wfq_on_link_change(struct qed_dev
*cdev
,
692 struct qed_ptt
*p_ptt
,
695 void qed_clean_wfq_db(struct qed_hwfn
*p_hwfn
, struct qed_ptt
*p_ptt
);
696 #define QED_LEADING_HWFN(dev) (&dev->hwfns[0])
698 /* Other Linux specific common definitions */
699 #define DP_NAME(cdev) ((cdev)->name)
701 #define REG_ADDR(cdev, offset) (void __iomem *)((u8 __iomem *)\
705 #define REG_RD(cdev, offset) readl(REG_ADDR(cdev, offset))
706 #define REG_WR(cdev, offset, val) writel((u32)val, REG_ADDR(cdev, offset))
707 #define REG_WR16(cdev, offset, val) writew((u16)val, REG_ADDR(cdev, offset))
709 #define DOORBELL(cdev, db_addr, val) \
710 writel((u32)val, (void __iomem *)((u8 __iomem *)\
711 (cdev->doorbells) + (db_addr)))
714 int qed_fill_dev_info(struct qed_dev
*cdev
,
715 struct qed_dev_info
*dev_info
);
716 void qed_link_update(struct qed_hwfn
*hwfn
);
717 u32
qed_unzip_data(struct qed_hwfn
*p_hwfn
,
718 u32 input_len
, u8
*input_buf
,
719 u32 max_size
, u8
*unzip_buf
);
720 void qed_get_protocol_stats(struct qed_dev
*cdev
,
721 enum qed_mcp_protocol_type type
,
722 union qed_mcp_protocol_stats
*stats
);
723 int qed_slowpath_irq_req(struct qed_hwfn
*hwfn
);