1 /* SPDX-License-Identifier: (GPL-2.0-only OR BSD-3-Clause) */
2 /* Copyright (c) 2019-2020 Marvell International Ltd. */
6 #include <linux/types.h>
7 #include <linux/qed/qed_if.h>
8 struct qed_fcoe_stats
{
10 u64 fcoe_rx_data_pkt_cnt
;
11 u64 fcoe_rx_xfer_pkt_cnt
;
12 u64 fcoe_rx_other_pkt_cnt
;
13 u32 fcoe_silent_drop_pkt_cmdq_full_cnt
;
14 u32 fcoe_silent_drop_pkt_rq_full_cnt
;
15 u32 fcoe_silent_drop_pkt_crc_error_cnt
;
16 u32 fcoe_silent_drop_pkt_task_invalid_cnt
;
17 u32 fcoe_silent_drop_total_pkt_cnt
;
20 u64 fcoe_tx_data_pkt_cnt
;
21 u64 fcoe_tx_xfer_pkt_cnt
;
22 u64 fcoe_tx_other_pkt_cnt
;
25 struct qed_dev_fcoe_info
{
26 struct qed_dev_info common
;
28 void __iomem
*primary_dbq_rq_addr
;
29 void __iomem
*secondary_bdq_rq_addr
;
37 struct qed_fcoe_params_offload
{
38 dma_addr_t sq_pbl_addr
;
39 dma_addr_t sq_curr_page_addr
;
40 dma_addr_t sq_next_page_addr
;
45 u16 tx_max_fc_pay_len
;
46 u16 e_d_tov_timer_val
;
47 u16 rec_tov_timer_val
;
48 u16 rx_max_fc_pay_len
;
51 struct fc_addr_nw s_id
;
53 struct fc_addr_nw d_id
;
58 #define MAX_TID_BLOCKS_FCOE (512)
60 u32 size
; /* In bytes per task */
61 u32 num_tids_per_block
;
62 u8
*blocks
[MAX_TID_BLOCKS_FCOE
];
65 struct qed_fcoe_cb_ops
{
66 struct qed_common_cb_ops common
;
67 u32 (*get_login_failures
)(void *cookie
);
71 * struct qed_fcoe_ops - qed FCoE operations.
72 * @common: common operations pointer
73 * @fill_dev_info: fills FCoE specific information
76 * @return 0 on success, otherwise error value.
77 * @register_ops: register FCoE operations
79 * @param ops - specified using qed_iscsi_cb_ops
80 * @param cookie - driver private
81 * @ll2: light L2 operations pointer
84 * @param tasks - qed will fill information about tasks
85 * return 0 on success, otherwise error value.
86 * @stop: stops fcoe in FW
88 * return 0 on success, otherwise error value.
89 * @acquire_conn: acquire a new fcoe connection
91 * @param handle - qed will fill handle that should be
92 * used henceforth as identifier of the
94 * @param p_doorbell - qed will fill the address of the
96 * return 0 on success, otherwise error value.
97 * @release_conn: release a previously acquired fcoe connection
99 * @param handle - the connection handle.
100 * return 0 on success, otherwise error value.
101 * @offload_conn: configures an offloaded connection
103 * @param handle - the connection handle.
104 * @param conn_info - the configuration to use for the
106 * return 0 on success, otherwise error value.
107 * @destroy_conn: stops an offloaded connection
109 * @param handle - the connection handle.
110 * @param terminate_params
111 * return 0 on success, otherwise error value.
112 * @get_stats: gets FCoE related statistics
114 * @param stats - pointer to struck that would be filled
116 * return 0 on success, error otherwise.
118 struct qed_fcoe_ops
{
119 const struct qed_common_ops
*common
;
121 int (*fill_dev_info
)(struct qed_dev
*cdev
,
122 struct qed_dev_fcoe_info
*info
);
124 void (*register_ops
)(struct qed_dev
*cdev
,
125 struct qed_fcoe_cb_ops
*ops
, void *cookie
);
127 const struct qed_ll2_ops
*ll2
;
129 int (*start
)(struct qed_dev
*cdev
, struct qed_fcoe_tid
*tasks
);
131 int (*stop
)(struct qed_dev
*cdev
);
133 int (*acquire_conn
)(struct qed_dev
*cdev
,
135 u32
*fw_cid
, void __iomem
**p_doorbell
);
137 int (*release_conn
)(struct qed_dev
*cdev
, u32 handle
);
139 int (*offload_conn
)(struct qed_dev
*cdev
,
141 struct qed_fcoe_params_offload
*conn_info
);
142 int (*destroy_conn
)(struct qed_dev
*cdev
,
143 u32 handle
, dma_addr_t terminate_params
);
145 int (*get_stats
)(struct qed_dev
*cdev
, struct qed_fcoe_stats
*stats
);
148 const struct qed_fcoe_ops
*qed_get_fcoe_ops(void);
149 void qed_put_fcoe_ops(void);