Yuval Mintz | fc83182 | 2016-12-01 00:21:06 -0800 | [diff] [blame^] | 1 | /* QLogic qed NIC Driver |
| 2 | * Copyright (c) 2015 QLogic Corporation |
| 3 | * |
| 4 | * This software is available under the terms of the GNU General Public License |
| 5 | * (GPL) Version 2, available from the file COPYING in the main directory of |
| 6 | * this source tree. |
| 7 | */ |
| 8 | |
| 9 | #ifndef _QED_ISCSI_IF_H |
| 10 | #define _QED_ISCSI_IF_H |
| 11 | #include <linux/types.h> |
| 12 | #include <linux/qed/qed_if.h> |
| 13 | |
| 14 | typedef int (*iscsi_event_cb_t) (void *context, |
| 15 | u8 fw_event_code, void *fw_handle); |
| 16 | struct qed_iscsi_stats { |
| 17 | u64 iscsi_rx_bytes_cnt; |
| 18 | u64 iscsi_rx_packet_cnt; |
| 19 | u64 iscsi_rx_new_ooo_isle_events_cnt; |
| 20 | u32 iscsi_cmdq_threshold_cnt; |
| 21 | u32 iscsi_rq_threshold_cnt; |
| 22 | u32 iscsi_immq_threshold_cnt; |
| 23 | |
| 24 | u64 iscsi_rx_dropped_pdus_task_not_valid; |
| 25 | |
| 26 | u64 iscsi_rx_data_pdu_cnt; |
| 27 | u64 iscsi_rx_r2t_pdu_cnt; |
| 28 | u64 iscsi_rx_total_pdu_cnt; |
| 29 | |
| 30 | u64 iscsi_tx_go_to_slow_start_event_cnt; |
| 31 | u64 iscsi_tx_fast_retransmit_event_cnt; |
| 32 | |
| 33 | u64 iscsi_tx_data_pdu_cnt; |
| 34 | u64 iscsi_tx_r2t_pdu_cnt; |
| 35 | u64 iscsi_tx_total_pdu_cnt; |
| 36 | |
| 37 | u64 iscsi_tx_bytes_cnt; |
| 38 | u64 iscsi_tx_packet_cnt; |
| 39 | }; |
| 40 | |
| 41 | struct qed_dev_iscsi_info { |
| 42 | struct qed_dev_info common; |
| 43 | |
| 44 | void __iomem *primary_dbq_rq_addr; |
| 45 | void __iomem *secondary_bdq_rq_addr; |
| 46 | }; |
| 47 | |
| 48 | struct qed_iscsi_id_params { |
| 49 | u8 mac[ETH_ALEN]; |
| 50 | u32 ip[4]; |
| 51 | u16 port; |
| 52 | }; |
| 53 | |
| 54 | struct qed_iscsi_params_offload { |
| 55 | u8 layer_code; |
| 56 | dma_addr_t sq_pbl_addr; |
| 57 | u32 initial_ack; |
| 58 | |
| 59 | struct qed_iscsi_id_params src; |
| 60 | struct qed_iscsi_id_params dst; |
| 61 | u16 vlan_id; |
| 62 | u8 tcp_flags; |
| 63 | u8 ip_version; |
| 64 | u8 default_cq; |
| 65 | |
| 66 | u8 ka_max_probe_cnt; |
| 67 | u8 dup_ack_theshold; |
| 68 | u32 rcv_next; |
| 69 | u32 snd_una; |
| 70 | u32 snd_next; |
| 71 | u32 snd_max; |
| 72 | u32 snd_wnd; |
| 73 | u32 rcv_wnd; |
| 74 | u32 snd_wl1; |
| 75 | u32 cwnd; |
| 76 | u32 ss_thresh; |
| 77 | u16 srtt; |
| 78 | u16 rtt_var; |
| 79 | u32 ts_time; |
| 80 | u32 ts_recent; |
| 81 | u32 ts_recent_age; |
| 82 | u32 total_rt; |
| 83 | u32 ka_timeout_delta; |
| 84 | u32 rt_timeout_delta; |
| 85 | u8 dup_ack_cnt; |
| 86 | u8 snd_wnd_probe_cnt; |
| 87 | u8 ka_probe_cnt; |
| 88 | u8 rt_cnt; |
| 89 | u32 flow_label; |
| 90 | u32 ka_timeout; |
| 91 | u32 ka_interval; |
| 92 | u32 max_rt_time; |
| 93 | u32 initial_rcv_wnd; |
| 94 | u8 ttl; |
| 95 | u8 tos_or_tc; |
| 96 | u16 remote_port; |
| 97 | u16 local_port; |
| 98 | u16 mss; |
| 99 | u8 snd_wnd_scale; |
| 100 | u8 rcv_wnd_scale; |
| 101 | u32 ts_ticks_per_second; |
| 102 | u16 da_timeout_value; |
| 103 | u8 ack_frequency; |
| 104 | }; |
| 105 | |
| 106 | struct qed_iscsi_params_update { |
| 107 | u8 update_flag; |
| 108 | #define QED_ISCSI_CONN_HD_EN BIT(0) |
| 109 | #define QED_ISCSI_CONN_DD_EN BIT(1) |
| 110 | #define QED_ISCSI_CONN_INITIAL_R2T BIT(2) |
| 111 | #define QED_ISCSI_CONN_IMMEDIATE_DATA BIT(3) |
| 112 | |
| 113 | u32 max_seq_size; |
| 114 | u32 max_recv_pdu_length; |
| 115 | u32 max_send_pdu_length; |
| 116 | u32 first_seq_length; |
| 117 | u32 exp_stat_sn; |
| 118 | }; |
| 119 | |
| 120 | #define MAX_TID_BLOCKS_ISCSI (512) |
| 121 | struct qed_iscsi_tid { |
| 122 | u32 size; /* In bytes per task */ |
| 123 | u32 num_tids_per_block; |
| 124 | u8 *blocks[MAX_TID_BLOCKS_ISCSI]; |
| 125 | }; |
| 126 | |
| 127 | struct qed_iscsi_cb_ops { |
| 128 | struct qed_common_cb_ops common; |
| 129 | }; |
| 130 | |
| 131 | /** |
| 132 | * struct qed_iscsi_ops - qed iSCSI operations. |
| 133 | * @common: common operations pointer |
| 134 | * @ll2: light L2 operations pointer |
| 135 | * @fill_dev_info: fills iSCSI specific information |
| 136 | * @param cdev |
| 137 | * @param info |
| 138 | * @return 0 on sucesss, otherwise error value. |
| 139 | * @register_ops: register iscsi operations |
| 140 | * @param cdev |
| 141 | * @param ops - specified using qed_iscsi_cb_ops |
| 142 | * @param cookie - driver private |
| 143 | * @start: iscsi in FW |
| 144 | * @param cdev |
| 145 | * @param tasks - qed will fill information about tasks |
| 146 | * return 0 on success, otherwise error value. |
| 147 | * @stop: iscsi in FW |
| 148 | * @param cdev |
| 149 | * return 0 on success, otherwise error value. |
| 150 | * @acquire_conn: acquire a new iscsi connection |
| 151 | * @param cdev |
| 152 | * @param handle - qed will fill handle that should be |
| 153 | * used henceforth as identifier of the |
| 154 | * connection. |
| 155 | * @param p_doorbell - qed will fill the address of the |
| 156 | * doorbell. |
| 157 | * @return 0 on sucesss, otherwise error value. |
| 158 | * @release_conn: release a previously acquired iscsi connection |
| 159 | * @param cdev |
| 160 | * @param handle - the connection handle. |
| 161 | * @return 0 on success, otherwise error value. |
| 162 | * @offload_conn: configures an offloaded connection |
| 163 | * @param cdev |
| 164 | * @param handle - the connection handle. |
| 165 | * @param conn_info - the configuration to use for the |
| 166 | * offload. |
| 167 | * @return 0 on success, otherwise error value. |
| 168 | * @update_conn: updates an offloaded connection |
| 169 | * @param cdev |
| 170 | * @param handle - the connection handle. |
| 171 | * @param conn_info - the configuration to use for the |
| 172 | * offload. |
| 173 | * @return 0 on success, otherwise error value. |
| 174 | * @destroy_conn: stops an offloaded connection |
| 175 | * @param cdev |
| 176 | * @param handle - the connection handle. |
| 177 | * @return 0 on success, otherwise error value. |
| 178 | * @clear_sq: clear all task in sq |
| 179 | * @param cdev |
| 180 | * @param handle - the connection handle. |
| 181 | * @return 0 on success, otherwise error value. |
| 182 | * @get_stats: iSCSI related statistics |
| 183 | * @param cdev |
| 184 | * @param stats - pointer to struck that would be filled |
| 185 | * we stats |
| 186 | * @return 0 on success, error otherwise. |
| 187 | */ |
| 188 | struct qed_iscsi_ops { |
| 189 | const struct qed_common_ops *common; |
| 190 | |
| 191 | const struct qed_ll2_ops *ll2; |
| 192 | |
| 193 | int (*fill_dev_info)(struct qed_dev *cdev, |
| 194 | struct qed_dev_iscsi_info *info); |
| 195 | |
| 196 | void (*register_ops)(struct qed_dev *cdev, |
| 197 | struct qed_iscsi_cb_ops *ops, void *cookie); |
| 198 | |
| 199 | int (*start)(struct qed_dev *cdev, |
| 200 | struct qed_iscsi_tid *tasks, |
| 201 | void *event_context, iscsi_event_cb_t async_event_cb); |
| 202 | |
| 203 | int (*stop)(struct qed_dev *cdev); |
| 204 | |
| 205 | int (*acquire_conn)(struct qed_dev *cdev, |
| 206 | u32 *handle, |
| 207 | u32 *fw_cid, void __iomem **p_doorbell); |
| 208 | |
| 209 | int (*release_conn)(struct qed_dev *cdev, u32 handle); |
| 210 | |
| 211 | int (*offload_conn)(struct qed_dev *cdev, |
| 212 | u32 handle, |
| 213 | struct qed_iscsi_params_offload *conn_info); |
| 214 | |
| 215 | int (*update_conn)(struct qed_dev *cdev, |
| 216 | u32 handle, |
| 217 | struct qed_iscsi_params_update *conn_info); |
| 218 | |
| 219 | int (*destroy_conn)(struct qed_dev *cdev, u32 handle, u8 abrt_conn); |
| 220 | |
| 221 | int (*clear_sq)(struct qed_dev *cdev, u32 handle); |
| 222 | |
| 223 | int (*get_stats)(struct qed_dev *cdev, |
| 224 | struct qed_iscsi_stats *stats); |
| 225 | }; |
| 226 | |
| 227 | const struct qed_iscsi_ops *qed_get_iscsi_ops(void); |
| 228 | void qed_put_iscsi_ops(void); |
| 229 | #endif |