FreeBSD kernel CXGBE device code
offload.h
Go to the documentation of this file.
1/*-
2 * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
3 *
4 * Copyright (c) 2010 Chelsio Communications, Inc.
5 * All rights reserved.
6 * Written by: Navdeep Parhar <np@FreeBSD.org>
7 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
10 * are met:
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
18 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 * SUCH DAMAGE.
28 *
29 * $FreeBSD$
30 *
31 */
32
33#ifndef __T4_OFFLOAD_H__
34#define __T4_OFFLOAD_H__
35#include <sys/param.h>
36#include <sys/proc.h>
37#include <sys/condvar.h>
38
39#define INIT_ULPTX_WRH(w, wrlen, atomic, tid) do { \
40 (w)->wr_hi = htonl(V_FW_WR_OP(FW_ULPTX_WR) | V_FW_WR_ATOMIC(atomic)); \
41 (w)->wr_mid = htonl(V_FW_WR_LEN16(DIV_ROUND_UP(wrlen, 16)) | \
42 V_FW_WR_FLOWID(tid)); \
43 (w)->wr_lo = cpu_to_be64(0); \
44} while (0)
45
46#define INIT_ULPTX_WR(w, wrlen, atomic, tid) \
47 INIT_ULPTX_WRH(&((w)->wr), wrlen, atomic, tid)
48
49#define INIT_TP_WR(w, tid) do { \
50 (w)->wr.wr_hi = htonl(V_FW_WR_OP(FW_TP_WR) | \
51 V_FW_WR_IMMDLEN(sizeof(*w) - sizeof(w->wr))); \
52 (w)->wr.wr_mid = htonl(V_FW_WR_LEN16(DIV_ROUND_UP(sizeof(*w), 16)) | \
53 V_FW_WR_FLOWID(tid)); \
54 (w)->wr.wr_lo = cpu_to_be64(0); \
55} while (0)
56
57#define INIT_TP_WR_MIT_CPL(w, cpl, tid) do { \
58 INIT_TP_WR(w, tid); \
59 OPCODE_TID(w) = htonl(MK_OPCODE_TID(cpl, tid)); \
60} while (0)
61
63struct listen_ctx;
64
67 u_int used; /* # of stids used by this region */
68 u_int free; /* # of contiguous stids free right after this region */
69};
70
71/*
72 * Max # of ATIDs. The absolute HW max is 14b (enough for 16K) but we reserve
73 * the upper 3b for use as a cookie to demux the reply.
74 */
75#define MAX_ATIDS 2048U
76
78 void *data;
80};
81
82/* cxgbe_rate_tag flags */
83enum {
84 EO_FLOWC_PENDING = (1 << 0), /* flowc needs to be sent */
85 EO_FLOWC_RPL_PENDING = (1 << 1), /* flowc credits due back */
86 EO_SND_TAG_REF = (1 << 2), /* kernel has a ref on us */
87 EO_FLUSH_RPL_PENDING = (1 << 3), /* credit flush rpl due back */
88};
89
91 struct m_snd_tag com;
93 u_int flags;
94 struct mtx lock;
96 int etid;
97 struct mbufq pending_tx, pending_fwack;
98 int plen;
100 uint32_t ctrl0;
101 uint16_t iqid;
102 int8_t schedcl;
103 uint64_t max_rate; /* in bytes/s */
104 uint8_t tx_total; /* total tx WR credits (in 16B units) */
105 uint8_t tx_credits; /* tx WR credits (in 16B units) available */
106 uint8_t tx_nocompl; /* tx WR credits since last compl request */
107 uint8_t ncompl; /* # of completions outstanding. */
108};
109
110static inline struct cxgbe_rate_tag *
111mst_to_crt(struct m_snd_tag *t)
112{
113 return (__containerof(t, struct cxgbe_rate_tag, com));
114}
115
119};
120
121/*
122 * Holds the size, base address, start, end, etc. of various types of TIDs. The
123 * tables themselves are allocated dynamically.
124 */
125struct tid_info {
126 u_int nstids;
128
129 u_int natids;
130
131 u_int nftids;
133 u_int ftid_end;
134
135 u_int nhpftids;
138
139 u_int ntids;
140 u_int tid_base;
141
142 u_int netids;
144 u_int etid_end;
145
146 struct mtx stid_lock __aligned(CACHE_LINE_SIZE);
149 u_int nstids_free_head; /* # of available stids at the beginning */
150 struct stid_head stids;
151
152 struct mtx atid_lock __aligned(CACHE_LINE_SIZE);
156
157 /* High priority filters and normal filters share the lock and cv. */
158 struct mtx ftid_lock __aligned(CACHE_LINE_SIZE);
159 struct cv ftid_cv;
164
165 /*
166 * hashfilter and TOE are mutually exclusive and both use ntids and
167 * tids_in_use. The lock and cv are used only by hashfilter.
168 */
169 struct mtx hftid_lock __aligned(CACHE_LINE_SIZE);
170 struct cv hftid_cv;
171 void **tid_tab;
173
174 void *hftid_hash_4t; /* LIST_HEAD(, filter_entry) *hftid_hash_4t; */
176 void *hftid_hash_tid; /* LIST_HEAD(, filter_entry) *hftid_hash_tid; */
178
179 struct mtx etid_lock __aligned(CACHE_LINE_SIZE);
183};
184
185struct t4_range {
186 u_int start;
187 u_int size;
188};
189
190struct t4_virt_res { /* virtualized HW resources */
191 struct t4_range ddp;
194 struct t4_range rq;
195 struct t4_range pbl;
196 struct t4_range qp;
197 struct t4_range cq;
198 struct t4_range srq;
199 struct t4_range ocq;
200 struct t4_range l2t;
201 struct t4_range key;
202};
203
204enum {
210
211struct adapter;
212struct port_info;
213struct uld_info {
217 int (*activate)(struct adapter *);
218 int (*deactivate)(struct adapter *);
219 void (*async_event)(struct adapter *);
220};
221
225 int ddp;
227 int tls;
236 int iso;
237};
238
239/* iWARP driver tunables */
241 int wc_en;
242};
243
247};
248
249#ifdef TCP_OFFLOAD
250int t4_register_uld(struct uld_info *);
251int t4_unregister_uld(struct uld_info *);
252int t4_activate_uld(struct adapter *, int);
253int t4_deactivate_uld(struct adapter *, int);
254int uld_active(struct adapter *, int);
255#endif
256#endif
@ EO_FLOWC_PENDING
Definition: offload.h:84
@ EO_SND_TAG_REF
Definition: offload.h:86
@ EO_FLOWC_RPL_PENDING
Definition: offload.h:85
@ EO_FLUSH_RPL_PENDING
Definition: offload.h:87
@ ULD_ISCSI
Definition: offload.h:207
@ ULD_MAX
Definition: offload.h:208
@ ULD_IWARP
Definition: offload.h:206
@ ULD_TOM
Definition: offload.h:205
TAILQ_HEAD(stid_head, stid_region)
static struct cxgbe_rate_tag * mst_to_crt(struct m_snd_tag *t)
Definition: offload.h:111
struct mtx lock
Definition: offload.h:94
uint64_t max_rate
Definition: offload.h:103
uint16_t iqid
Definition: offload.h:101
uint8_t tx_total
Definition: offload.h:104
struct m_snd_tag com
Definition: offload.h:91
int8_t schedcl
Definition: offload.h:102
u_int flags
Definition: offload.h:93
uint8_t tx_credits
Definition: offload.h:105
uint8_t ncompl
Definition: offload.h:107
uint8_t tx_nocompl
Definition: offload.h:106
struct sge_ofld_txq * eo_txq
Definition: offload.h:99
struct adapter * adapter
Definition: offload.h:92
uint32_t ctrl0
Definition: offload.h:100
struct mbufq pending_tx pending_fwack
Definition: offload.h:97
Definition: t4_filter.c:56
int wc_en
Definition: offload.h:241
TAILQ_ENTRY(stid_region) link
u_int free
Definition: offload.h:68
u_int used
Definition: offload.h:67
u_int start
Definition: offload.h:186
u_int size
Definition: offload.h:187
struct t4_range l2t
Definition: offload.h:200
struct t4_range pbl
Definition: offload.h:195
struct t4_range cq
Definition: offload.h:197
struct t4_range key
Definition: offload.h:201
struct t4_range stag
Definition: offload.h:193
struct t4_range ocq
Definition: offload.h:199
struct t4_range srq
Definition: offload.h:198
struct t4_range qp
Definition: offload.h:196
struct t4_range ddp
Definition: offload.h:191
struct t4_range iscsi
Definition: offload.h:192
struct t4_range rq
Definition: offload.h:194
u_int nftids
Definition: offload.h:131
void * hftid_hash_4t
Definition: offload.h:174
u_int etid_end
Definition: offload.h:144
u_int ftid_end
Definition: offload.h:133
union etid_entry * efree
Definition: offload.h:181
u_int etids_in_use
Definition: offload.h:182
u_int stids_in_use
Definition: offload.h:148
u_int stid_base
Definition: offload.h:127
u_int nhpftids
Definition: offload.h:135
u_int etid_base
Definition: offload.h:143
struct cv ftid_cv
Definition: offload.h:159
u_int hpftid_end
Definition: offload.h:137
union aopen_entry * afree
Definition: offload.h:154
u_int hpftid_base
Definition: offload.h:136
union etid_entry * etid_tab
Definition: offload.h:180
u_int atids_in_use
Definition: offload.h:155
struct filter_entry * ftid_tab
Definition: offload.h:160
u_int nstids_free_head
Definition: offload.h:149
void ** tid_tab
Definition: offload.h:171
struct filter_entry * hpftid_tab
Definition: offload.h:161
u_long hftid_4t_mask
Definition: offload.h:175
u_int tids_in_use
Definition: offload.h:172
u_int hpftids_in_use
Definition: offload.h:163
u_int natids
Definition: offload.h:129
struct stid_head stids
Definition: offload.h:150
u_int ftid_base
Definition: offload.h:132
struct listen_ctx ** stid_tab
Definition: offload.h:147
u_int ftids_in_use
Definition: offload.h:162
u_int nstids
Definition: offload.h:126
u_int netids
Definition: offload.h:142
u_int tid_base
Definition: offload.h:140
struct mtx stid_lock __aligned(CACHE_LINE_SIZE)
struct cv hftid_cv
Definition: offload.h:170
void * hftid_hash_tid
Definition: offload.h:176
union aopen_entry * atid_tab
Definition: offload.h:153
u_long hftid_tid_mask
Definition: offload.h:177
u_int ntids
Definition: offload.h:139
int inline_keys
Definition: offload.h:245
int combo_wrs
Definition: offload.h:246
int num_tls_rx_ports
Definition: offload.h:230
int update_hc_on_pmtu_change
Definition: offload.h:235
int rx_coalesce
Definition: offload.h:226
int cop_managed_offloading
Definition: offload.h:233
int tx_zcopy
Definition: offload.h:232
int * tls_rx_ports
Definition: offload.h:229
int sndbuf
Definition: offload.h:224
int autorcvbuf_inc
Definition: offload.h:234
int cong_algorithm
Definition: offload.h:223
int tx_align
Definition: offload.h:231
int tls_rx_timeout
Definition: offload.h:228
void(* async_event)(struct adapter *)
Definition: offload.h:219
int(* deactivate)(struct adapter *)
Definition: offload.h:218
SLIST_ENTRY(uld_info) link
int uld_id
Definition: offload.h:216
int refcount
Definition: offload.h:215
int(* activate)(struct adapter *)
Definition: offload.h:217
Definition: offload.h:77
void * data
Definition: offload.h:78
union aopen_entry * next
Definition: offload.h:79
Definition: offload.h:116
union etid_entry * next
Definition: offload.h:118
struct cxgbe_rate_tag * cst
Definition: offload.h:117