blob: 2c07d0ed971a6de112037085a31a581d11fab77b [file] [log] [blame]
Yuval Mintz0a7fb112016-10-01 21:59:55 +03001/* QLogic qed NIC Driver
Mintz, Yuvale8f1cb52017-01-01 13:57:00 +02002 * Copyright (c) 2015-2017 QLogic Corporation
Yuval Mintz0a7fb112016-10-01 21:59:55 +03003 *
Mintz, Yuvale8f1cb52017-01-01 13:57:00 +02004 * 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:
Yuval Mintz0a7fb112016-10-01 21:59:55 +03009 *
Mintz, Yuvale8f1cb52017-01-01 13:57:00 +020010 * Redistribution and use in source and binary forms, with or
11 * without modification, are permitted provided that the following
12 * conditions are met:
13 *
14 * - Redistributions of source code must retain the above
15 * copyright notice, this list of conditions and the following
16 * disclaimer.
17 *
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.
22 *
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
30 * SOFTWARE.
Yuval Mintz0a7fb112016-10-01 21:59:55 +030031 */
32
33#ifndef _QED_LL2_H
34#define _QED_LL2_H
35
36#include <linux/types.h>
37#include <linux/kernel.h>
38#include <linux/list.h>
39#include <linux/mutex.h>
40#include <linux/slab.h>
41#include <linux/spinlock.h>
42#include <linux/qed/qed_chain.h>
43#include <linux/qed/qed_ll2_if.h>
44#include "qed.h"
45#include "qed_hsi.h"
46#include "qed_sp.h"
47
48#define QED_MAX_NUM_OF_LL2_CONNECTIONS (4)
49
Ram Amraniabd49672016-10-01 22:00:01 +030050enum qed_ll2_roce_flavor_type {
51 QED_LL2_ROCE,
52 QED_LL2_RROCE,
53 MAX_QED_LL2_ROCE_FLAVOR_TYPE
54};
55
Yuval Mintz0a7fb112016-10-01 21:59:55 +030056enum qed_ll2_conn_type {
Arun Easi1e128c82017-02-15 06:28:22 -080057 QED_LL2_TYPE_FCOE,
Yuval Mintz0a7fb112016-10-01 21:59:55 +030058 QED_LL2_TYPE_ISCSI,
59 QED_LL2_TYPE_TEST,
60 QED_LL2_TYPE_ISCSI_OOO,
61 QED_LL2_TYPE_RESERVED2,
62 QED_LL2_TYPE_ROCE,
63 QED_LL2_TYPE_RESERVED3,
64 MAX_QED_LL2_RX_CONN_TYPE
65};
66
Yuval Mintz1d6cff42016-12-01 00:21:07 -080067enum qed_ll2_tx_dest {
68 QED_LL2_TX_DEST_NW, /* Light L2 TX Destination to the Network */
69 QED_LL2_TX_DEST_LB, /* Light L2 TX Destination to the Loopback */
70 QED_LL2_TX_DEST_MAX
71};
72
Yuval Mintz0a7fb112016-10-01 21:59:55 +030073struct qed_ll2_rx_packet {
74 struct list_head list_entry;
75 struct core_rx_bd_with_buff_len *rxq_bd;
76 dma_addr_t rx_buf_addr;
77 u16 buf_length;
78 void *cookie;
79 u8 placement_offset;
80 u16 parse_flags;
81 u16 packet_length;
82 u16 vlan;
83 u32 opaque_data[2];
84};
85
86struct qed_ll2_tx_packet {
87 struct list_head list_entry;
88 u16 bd_used;
89 u16 vlan;
90 u16 l4_hdr_offset_w;
91 u8 bd_flags;
92 bool notify_fw;
93 void *cookie;
94
95 struct {
96 struct core_tx_bd *txq_bd;
97 dma_addr_t tx_frag;
98 u16 frag_len;
99 } bds_set[ETH_TX_MAX_BDS_PER_NON_LSO_PACKET];
100};
101
102struct qed_ll2_rx_queue {
103 /* Lock protecting the Rx queue manipulation */
104 spinlock_t lock;
105 struct qed_chain rxq_chain;
106 struct qed_chain rcq_chain;
107 u8 rx_sb_index;
108 bool b_cb_registred;
109 __le16 *p_fw_cons;
110 struct list_head active_descq;
111 struct list_head free_descq;
112 struct list_head posting_descq;
113 struct qed_ll2_rx_packet *descq_array;
114 void __iomem *set_prod_addr;
115};
116
117struct qed_ll2_tx_queue {
118 /* Lock protecting the Tx queue manipulation */
119 spinlock_t lock;
120 struct qed_chain txq_chain;
121 u8 tx_sb_index;
122 bool b_cb_registred;
123 __le16 *p_fw_cons;
124 struct list_head active_descq;
125 struct list_head free_descq;
126 struct list_head sending_descq;
127 struct qed_ll2_tx_packet *descq_array;
128 struct qed_ll2_tx_packet *cur_send_packet;
129 struct qed_ll2_tx_packet cur_completing_packet;
130 u16 cur_completing_bd_idx;
131 void __iomem *doorbell_addr;
132 u16 bds_idx;
133 u16 cur_send_frag_num;
134 u16 cur_completing_frag_num;
135 bool b_completing_packet;
136};
137
Arnd Bergmann0629a332017-01-18 15:52:52 +0100138struct qed_ll2_conn {
Yuval Mintz0a7fb112016-10-01 21:59:55 +0300139 enum qed_ll2_conn_type conn_type;
Yuval Mintz0a7fb112016-10-01 21:59:55 +0300140 u16 mtu;
141 u8 rx_drop_ttl0_flg;
142 u8 rx_vlan_removal_en;
143 u8 tx_tc;
144 enum core_tx_dest tx_dest;
145 enum core_error_handle ai_err_packet_too_big;
146 enum core_error_handle ai_err_no_buf;
Arnd Bergmann0629a332017-01-18 15:52:52 +0100147 u8 gsi_enable;
148};
149
150struct qed_ll2_info {
151 /* Lock protecting the state of LL2 */
152 struct mutex mutex;
153 struct qed_ll2_conn conn;
154 u32 cid;
155 u8 my_id;
156 u8 queue_id;
157 u8 tx_stats_id;
158 bool b_active;
Yuval Mintz0a7fb112016-10-01 21:59:55 +0300159 u8 tx_stats_en;
160 struct qed_ll2_rx_queue rx_queue;
161 struct qed_ll2_tx_queue tx_queue;
162};
163
164/**
165 * @brief qed_ll2_acquire_connection - allocate resources,
166 * starts rx & tx (if relevant) queues pair. Provides
167 * connecion handler as output parameter.
168 *
169 * @param p_hwfn
170 * @param p_params Contain various configuration properties
171 * @param rx_num_desc
172 * @param tx_num_desc
173 *
174 * @param p_connection_handle Output container for LL2 connection's handle
175 *
176 * @return 0 on success, failure otherwise
177 */
178int qed_ll2_acquire_connection(struct qed_hwfn *p_hwfn,
Arnd Bergmann0629a332017-01-18 15:52:52 +0100179 struct qed_ll2_conn *p_params,
Yuval Mintz0a7fb112016-10-01 21:59:55 +0300180 u16 rx_num_desc,
181 u16 tx_num_desc,
182 u8 *p_connection_handle);
183
184/**
185 * @brief qed_ll2_establish_connection - start previously
186 * allocated LL2 queues pair
187 *
188 * @param p_hwfn
189 * @param p_ptt
190 * @param connection_handle LL2 connection's handle obtained from
191 * qed_ll2_require_connection
192 *
193 * @return 0 on success, failure otherwise
194 */
195int qed_ll2_establish_connection(struct qed_hwfn *p_hwfn, u8 connection_handle);
196
197/**
198 * @brief qed_ll2_post_rx_buffers - submit buffers to LL2 Rx queue.
199 *
200 * @param p_hwfn
201 * @param connection_handle LL2 connection's handle obtained from
202 * qed_ll2_require_connection
203 * @param addr rx (physical address) buffers to submit
204 * @param cookie
205 * @param notify_fw produce corresponding Rx BD immediately
206 *
207 * @return 0 on success, failure otherwise
208 */
209int qed_ll2_post_rx_buffer(struct qed_hwfn *p_hwfn,
210 u8 connection_handle,
211 dma_addr_t addr,
212 u16 buf_len, void *cookie, u8 notify_fw);
213
214/**
215 * @brief qed_ll2_prepare_tx_packet - request for start Tx BD
216 * to prepare Tx packet submission to FW.
217 *
218 * @param p_hwfn
219 * @param connection_handle LL2 connection's handle obtained from
220 * qed_ll2_require_connection
221 * @param num_of_bds a number of requested BD equals a number of
222 * fragments in Tx packet
223 * @param vlan VLAN to insert to packet (if insertion set)
224 * @param bd_flags
225 * @param l4_hdr_offset_w L4 Header Offset from start of packet
226 * (in words). This is needed if both l4_csum
227 * and ipv6_ext are set
Yuval Mintz1d6cff42016-12-01 00:21:07 -0800228 * @param e_tx_dest indicates if the packet is to be transmitted via
229 * loopback or to the network
Yuval Mintz0a7fb112016-10-01 21:59:55 +0300230 * @param first_frag
231 * @param first_frag_len
232 * @param cookie
233 *
234 * @param notify_fw
235 *
236 * @return 0 on success, failure otherwise
237 */
238int qed_ll2_prepare_tx_packet(struct qed_hwfn *p_hwfn,
239 u8 connection_handle,
240 u8 num_of_bds,
241 u16 vlan,
242 u8 bd_flags,
243 u16 l4_hdr_offset_w,
Yuval Mintz1d6cff42016-12-01 00:21:07 -0800244 enum qed_ll2_tx_dest e_tx_dest,
Ram Amraniabd49672016-10-01 22:00:01 +0300245 enum qed_ll2_roce_flavor_type qed_roce_flavor,
Yuval Mintz0a7fb112016-10-01 21:59:55 +0300246 dma_addr_t first_frag,
247 u16 first_frag_len, void *cookie, u8 notify_fw);
248
249/**
250 * @brief qed_ll2_release_connection - releases resources
251 * allocated for LL2 connection
252 *
253 * @param p_hwfn
254 * @param connection_handle LL2 connection's handle obtained from
255 * qed_ll2_require_connection
256 */
257void qed_ll2_release_connection(struct qed_hwfn *p_hwfn, u8 connection_handle);
258
259/**
260 * @brief qed_ll2_set_fragment_of_tx_packet - provides fragments to fill
261 * Tx BD of BDs requested by
262 * qed_ll2_prepare_tx_packet
263 *
264 * @param p_hwfn
265 * @param connection_handle LL2 connection's handle
266 * obtained from
267 * qed_ll2_require_connection
268 * @param addr
269 * @param nbytes
270 *
271 * @return 0 on success, failure otherwise
272 */
273int qed_ll2_set_fragment_of_tx_packet(struct qed_hwfn *p_hwfn,
274 u8 connection_handle,
275 dma_addr_t addr, u16 nbytes);
276
277/**
278 * @brief qed_ll2_terminate_connection - stops Tx/Rx queues
279 *
280 *
281 * @param p_hwfn
282 * @param connection_handle LL2 connection's handle
283 * obtained from
284 * qed_ll2_require_connection
285 *
286 * @return 0 on success, failure otherwise
287 */
288int qed_ll2_terminate_connection(struct qed_hwfn *p_hwfn, u8 connection_handle);
289
290/**
291 * @brief qed_ll2_get_stats - get LL2 queue's statistics
292 *
293 *
294 * @param p_hwfn
295 * @param connection_handle LL2 connection's handle obtained from
296 * qed_ll2_require_connection
297 * @param p_stats
298 *
299 * @return 0 on success, failure otherwise
300 */
301int qed_ll2_get_stats(struct qed_hwfn *p_hwfn,
302 u8 connection_handle, struct qed_ll2_stats *p_stats);
303
304/**
305 * @brief qed_ll2_alloc - Allocates LL2 connections set
306 *
307 * @param p_hwfn
308 *
Tomer Tayar3587cb82017-05-21 12:10:56 +0300309 * @return int
Yuval Mintz0a7fb112016-10-01 21:59:55 +0300310 */
Tomer Tayar3587cb82017-05-21 12:10:56 +0300311int qed_ll2_alloc(struct qed_hwfn *p_hwfn);
Yuval Mintz0a7fb112016-10-01 21:59:55 +0300312
313/**
314 * @brief qed_ll2_setup - Inits LL2 connections set
315 *
316 * @param p_hwfn
Yuval Mintz0a7fb112016-10-01 21:59:55 +0300317 *
318 */
Tomer Tayar3587cb82017-05-21 12:10:56 +0300319void qed_ll2_setup(struct qed_hwfn *p_hwfn);
Yuval Mintz0a7fb112016-10-01 21:59:55 +0300320
321/**
322 * @brief qed_ll2_free - Releases LL2 connections set
323 *
324 * @param p_hwfn
Yuval Mintz0a7fb112016-10-01 21:59:55 +0300325 *
326 */
Tomer Tayar3587cb82017-05-21 12:10:56 +0300327void qed_ll2_free(struct qed_hwfn *p_hwfn);
328
Yuval Mintz0a7fb112016-10-01 21:59:55 +0300329#endif