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
33 #ifndef _QED_ISCSI_IF_H
34 #define _QED_ISCSI_IF_H
35 #include <linux/types.h>
36 #include <linux/qed/qed_if.h>
38 typedef int (*iscsi_event_cb_t) (void *context,
39 u8 fw_event_code, void *fw_handle);
40 struct qed_iscsi_stats {
41 u64 iscsi_rx_bytes_cnt;
42 u64 iscsi_rx_packet_cnt;
43 u64 iscsi_rx_new_ooo_isle_events_cnt;
44 u32 iscsi_cmdq_threshold_cnt;
45 u32 iscsi_rq_threshold_cnt;
46 u32 iscsi_immq_threshold_cnt;
48 u64 iscsi_rx_dropped_pdus_task_not_valid;
50 u64 iscsi_rx_data_pdu_cnt;
51 u64 iscsi_rx_r2t_pdu_cnt;
52 u64 iscsi_rx_total_pdu_cnt;
54 u64 iscsi_tx_go_to_slow_start_event_cnt;
55 u64 iscsi_tx_fast_retransmit_event_cnt;
57 u64 iscsi_tx_data_pdu_cnt;
58 u64 iscsi_tx_r2t_pdu_cnt;
59 u64 iscsi_tx_total_pdu_cnt;
61 u64 iscsi_tx_bytes_cnt;
62 u64 iscsi_tx_packet_cnt;
65 struct qed_dev_iscsi_info {
66 struct qed_dev_info common;
68 void __iomem *primary_dbq_rq_addr;
69 void __iomem *secondary_bdq_rq_addr;
74 struct qed_iscsi_id_params {
80 struct qed_iscsi_params_offload {
82 dma_addr_t sq_pbl_addr;
85 struct qed_iscsi_id_params src;
86 struct qed_iscsi_id_params dst;
108 u32 ka_timeout_delta;
109 u32 rt_timeout_delta;
111 u8 snd_wnd_probe_cnt;
126 u16 da_timeout_value;
130 struct qed_iscsi_params_update {
132 #define QED_ISCSI_CONN_HD_EN BIT(0)
133 #define QED_ISCSI_CONN_DD_EN BIT(1)
134 #define QED_ISCSI_CONN_INITIAL_R2T BIT(2)
135 #define QED_ISCSI_CONN_IMMEDIATE_DATA BIT(3)
138 u32 max_recv_pdu_length;
139 u32 max_send_pdu_length;
140 u32 first_seq_length;
144 #define MAX_TID_BLOCKS_ISCSI (512)
145 struct qed_iscsi_tid {
146 u32 size; /* In bytes per task */
147 u32 num_tids_per_block;
148 u8 *blocks[MAX_TID_BLOCKS_ISCSI];
151 struct qed_iscsi_cb_ops {
152 struct qed_common_cb_ops common;
156 * struct qed_iscsi_ops - qed iSCSI operations.
157 * @common: common operations pointer
158 * @ll2: light L2 operations pointer
159 * @fill_dev_info: fills iSCSI specific information
162 * @return 0 on sucesss, otherwise error value.
163 * @register_ops: register iscsi operations
165 * @param ops - specified using qed_iscsi_cb_ops
166 * @param cookie - driver private
167 * @start: iscsi in FW
169 * @param tasks - qed will fill information about tasks
170 * return 0 on success, otherwise error value.
173 * return 0 on success, otherwise error value.
174 * @acquire_conn: acquire a new iscsi connection
176 * @param handle - qed will fill handle that should be
177 * used henceforth as identifier of the
179 * @param p_doorbell - qed will fill the address of the
181 * @return 0 on sucesss, otherwise error value.
182 * @release_conn: release a previously acquired iscsi connection
184 * @param handle - the connection handle.
185 * @return 0 on success, otherwise error value.
186 * @offload_conn: configures an offloaded connection
188 * @param handle - the connection handle.
189 * @param conn_info - the configuration to use for the
191 * @return 0 on success, otherwise error value.
192 * @update_conn: updates an offloaded connection
194 * @param handle - the connection handle.
195 * @param conn_info - the configuration to use for the
197 * @return 0 on success, otherwise error value.
198 * @destroy_conn: stops an offloaded connection
200 * @param handle - the connection handle.
201 * @return 0 on success, otherwise error value.
202 * @clear_sq: clear all task in sq
204 * @param handle - the connection handle.
205 * @return 0 on success, otherwise error value.
206 * @get_stats: iSCSI related statistics
208 * @param stats - pointer to struck that would be filled
210 * @return 0 on success, error otherwise.
211 * @change_mac Change MAC of interface
213 * @param handle - the connection handle.
214 * @param mac - new MAC to configure.
215 * @return 0 on success, otherwise error value.
217 struct qed_iscsi_ops {
218 const struct qed_common_ops *common;
220 const struct qed_ll2_ops *ll2;
222 int (*fill_dev_info)(struct qed_dev *cdev,
223 struct qed_dev_iscsi_info *info);
225 void (*register_ops)(struct qed_dev *cdev,
226 struct qed_iscsi_cb_ops *ops, void *cookie);
228 int (*start)(struct qed_dev *cdev,
229 struct qed_iscsi_tid *tasks,
230 void *event_context, iscsi_event_cb_t async_event_cb);
232 int (*stop)(struct qed_dev *cdev);
234 int (*acquire_conn)(struct qed_dev *cdev,
236 u32 *fw_cid, void __iomem **p_doorbell);
238 int (*release_conn)(struct qed_dev *cdev, u32 handle);
240 int (*offload_conn)(struct qed_dev *cdev,
242 struct qed_iscsi_params_offload *conn_info);
244 int (*update_conn)(struct qed_dev *cdev,
246 struct qed_iscsi_params_update *conn_info);
248 int (*destroy_conn)(struct qed_dev *cdev, u32 handle, u8 abrt_conn);
250 int (*clear_sq)(struct qed_dev *cdev, u32 handle);
252 int (*get_stats)(struct qed_dev *cdev,
253 struct qed_iscsi_stats *stats);
255 int (*change_mac)(struct qed_dev *cdev, u32 handle, const u8 *mac);
258 const struct qed_iscsi_ops *qed_get_iscsi_ops(void);
259 void qed_put_iscsi_ops(void);