t4_tom.h revision 346970
1/*-
2 * Copyright (c) 2012, 2015 Chelsio Communications, Inc.
3 * All rights reserved.
4 * Written by: Navdeep Parhar <np@FreeBSD.org>
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:
9 * 1. Redistributions of source code must retain the above copyright
10 *    notice, this list of conditions and the following disclaimer.
11 * 2. Redistributions in binary form must reproduce the above copyright
12 *    notice, this list of conditions and the following disclaimer in the
13 *    documentation and/or other materials provided with the distribution.
14 *
15 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
16 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18 * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
19 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25 * SUCH DAMAGE.
26 *
27 * $FreeBSD: stable/11/sys/dev/cxgbe/tom/t4_tom.h 346970 2019-04-30 18:03:17Z np $
28 *
29 */
30
31#ifndef __T4_TOM_H__
32#define __T4_TOM_H__
33#include <sys/vmem.h>
34#include "tom/t4_tls.h"
35
36#define LISTEN_HASH_SIZE 32
37
38/*
39 * Min receive window.  We want it to be large enough to accommodate receive
40 * coalescing, handle jumbo frames, and not trigger sender SWS avoidance.
41 */
42#define MIN_RCV_WND (24 * 1024U)
43
44/*
45 * Max receive window supported by HW in bytes.  Only a small part of it can
46 * be set through option0, the rest needs to be set through RX_DATA_ACK.
47 */
48#define MAX_RCV_WND ((1U << 27) - 1)
49
50#define	DDP_RSVD_WIN (16 * 1024U)
51#define	SB_DDP_INDICATE	SB_IN_TOE	/* soreceive must respond to indicate */
52
53#define USE_DDP_RX_FLOW_CONTROL
54
55#define PPOD_SZ(n)	((n) * sizeof(struct pagepod))
56#define PPOD_SIZE	(PPOD_SZ(1))
57
58/* TOE PCB flags */
59enum {
60	TPF_ATTACHED	   = (1 << 0),	/* a tcpcb refers to this toepcb */
61	TPF_FLOWC_WR_SENT  = (1 << 1),	/* firmware flow context WR sent */
62	TPF_TX_DATA_SENT   = (1 << 2),	/* some data sent */
63	TPF_TX_SUSPENDED   = (1 << 3),	/* tx suspended for lack of resources */
64	TPF_SEND_FIN	   = (1 << 4),	/* send FIN after all pending data */
65	TPF_FIN_SENT	   = (1 << 5),	/* FIN has been sent */
66	TPF_ABORT_SHUTDOWN = (1 << 6),	/* connection abort is in progress */
67	TPF_CPL_PENDING    = (1 << 7),	/* haven't received the last CPL */
68	TPF_SYNQE	   = (1 << 8),	/* synq_entry, not really a toepcb */
69	TPF_SYNQE_EXPANDED = (1 << 9),	/* toepcb ready, tid context updated */
70	TPF_FORCE_CREDITS  = (1 << 10), /* always send credits */
71};
72
73enum {
74	DDP_OK		= (1 << 0),	/* OK to turn on DDP */
75	DDP_SC_REQ	= (1 << 1),	/* state change (on/off) requested */
76	DDP_ON		= (1 << 2),	/* DDP is turned on */
77	DDP_BUF0_ACTIVE	= (1 << 3),	/* buffer 0 in use (not invalidated) */
78	DDP_BUF1_ACTIVE	= (1 << 4),	/* buffer 1 in use (not invalidated) */
79	DDP_TASK_ACTIVE = (1 << 5),	/* requeue task is queued / running */
80	DDP_DEAD	= (1 << 6),	/* toepcb is shutting down */
81};
82
83struct sockopt;
84struct offload_settings;
85
86struct ofld_tx_sdesc {
87	uint32_t plen;		/* payload length */
88	uint8_t tx_credits;	/* firmware tx credits (unit is 16B) */
89	void *iv_buffer;	/* optional buffer holding IVs for TLS */
90};
91
92struct ppod_region {
93	u_int pr_start;
94	u_int pr_len;
95	u_int pr_page_shift[4];
96	uint32_t pr_tag_mask;		/* hardware tagmask for this region. */
97	uint32_t pr_invalid_bit;	/* OR with this to invalidate tag. */
98	uint32_t pr_alias_mask;		/* AND with tag to get alias bits. */
99	u_int pr_alias_shift;		/* shift this much for first alias bit. */
100	vmem_t *pr_arena;
101};
102
103struct ppod_reservation {
104	struct ppod_region *prsv_pr;
105	uint32_t prsv_tag;		/* Full tag: pgsz, alias, tag, color */
106	u_int prsv_nppods;
107};
108
109struct pageset {
110	TAILQ_ENTRY(pageset) link;
111	vm_page_t *pages;
112	int npages;
113	int flags;
114	int offset;		/* offset in first page */
115	int len;
116	struct ppod_reservation prsv;
117	struct vmspace *vm;
118	vm_offset_t start;
119	u_int vm_timestamp;
120};
121
122TAILQ_HEAD(pagesetq, pageset);
123
124#define	PS_WIRED		0x0001	/* Pages wired rather than held. */
125#define	PS_PPODS_WRITTEN	0x0002	/* Page pods written to the card. */
126
127#define	EXT_FLAG_AIOTX		EXT_FLAG_VENDOR1
128
129#define	IS_AIOTX_MBUF(m)						\
130	((m)->m_flags & M_EXT && (m)->m_ext.ext_flags & EXT_FLAG_AIOTX)
131
132struct ddp_buffer {
133	struct pageset *ps;
134
135	struct kaiocb *job;
136	int cancel_pending;
137};
138
139struct ddp_pcb {
140	u_int flags;
141	struct ddp_buffer db[2];
142	TAILQ_HEAD(, pageset) cached_pagesets;
143	TAILQ_HEAD(, kaiocb) aiojobq;
144	u_int waiting_count;
145	u_int active_count;
146	u_int cached_count;
147	int active_id;	/* the currently active DDP buffer */
148	struct task requeue_task;
149	struct kaiocb *queueing;
150	struct mtx lock;
151};
152
153struct aiotx_buffer {
154	struct pageset ps;
155	struct kaiocb *job;
156	int refcount;
157};
158
159struct toepcb {
160	TAILQ_ENTRY(toepcb) link; /* toep_list */
161	u_int flags;		/* miscellaneous flags */
162	int refcount;
163	struct tom_data *td;
164	struct inpcb *inp;	/* backpointer to host stack's PCB */
165	struct vnet *vnet;
166	struct vi_info *vi;	/* virtual interface */
167	struct sge_wrq *ofld_txq;
168	struct sge_ofld_rxq *ofld_rxq;
169	struct sge_wrq *ctrlq;
170	struct l2t_entry *l2te;	/* L2 table entry used by this connection */
171	struct clip_entry *ce;	/* CLIP table entry used by this tid */
172	int tid;		/* Connection identifier */
173	int tc_idx;		/* traffic class that this tid is bound to */
174
175	/* tx credit handling */
176	u_int tx_total;		/* total tx WR credits (in 16B units) */
177	u_int tx_credits;	/* tx WR credits (in 16B units) available */
178	u_int tx_nocompl;	/* tx WR credits since last compl request */
179	u_int plen_nocompl;	/* payload since last compl request */
180
181	/* rx credit handling */
182	u_int sb_cc;		/* last noted value of so_rcv->sb_cc */
183	int rx_credits;		/* rx credits (in bytes) to be returned to hw */
184
185	u_int ulp_mode;	/* ULP mode */
186	void *ulpcb;
187	void *ulpcb2;
188	struct mbufq ulp_pduq;	/* PDUs waiting to be sent out. */
189	struct mbufq ulp_pdu_reclaimq;
190
191	struct ddp_pcb ddp;
192	struct tls_ofld_info tls;
193
194	TAILQ_HEAD(, kaiocb) aiotx_jobq;
195	struct task aiotx_task;
196	bool aiotx_task_active;
197
198	/* Tx software descriptor */
199	uint8_t txsd_total;
200	uint8_t txsd_pidx;
201	uint8_t txsd_cidx;
202	uint8_t txsd_avail;
203	struct ofld_tx_sdesc txsd[];
204};
205
206#define	DDP_LOCK(toep)		mtx_lock(&(toep)->ddp.lock)
207#define	DDP_UNLOCK(toep)	mtx_unlock(&(toep)->ddp.lock)
208#define	DDP_ASSERT_LOCKED(toep)	mtx_assert(&(toep)->ddp.lock, MA_OWNED)
209
210struct flowc_tx_params {
211	uint32_t snd_nxt;
212	uint32_t rcv_nxt;
213	unsigned int snd_space;
214	unsigned int mss;
215};
216
217/*
218 * Compressed state for embryonic connections for a listener.
219 */
220struct synq_entry {
221	struct listen_ctx *lctx;	/* backpointer to listen ctx */
222	struct mbuf *syn;
223	int flags;			/* same as toepcb's tp_flags */
224	volatile int ok_to_respond;
225	volatile u_int refcnt;
226	int tid;
227	uint32_t iss;
228	uint32_t irs;
229	uint32_t ts;
230	uint16_t txqid;
231	uint16_t rxqid;
232	uint16_t l2e_idx;
233	uint16_t ulp_mode;
234	uint16_t rcv_bufsize;
235	__be16 tcp_opt; /* from cpl_pass_establish */
236	struct toepcb *toep;
237};
238
239/* listen_ctx flags */
240#define LCTX_RPL_PENDING 1	/* waiting for a CPL_PASS_OPEN_RPL */
241
242struct listen_ctx {
243	LIST_ENTRY(listen_ctx) link;	/* listen hash linkage */
244	volatile int refcount;
245	int stid;
246	struct stid_region stid_region;
247	int flags;
248	struct inpcb *inp;		/* listening socket's inp */
249	struct vnet *vnet;
250	struct sge_wrq *ctrlq;
251	struct sge_ofld_rxq *ofld_rxq;
252	struct clip_entry *ce;
253};
254
255struct tom_data {
256	struct toedev tod;
257
258	/* toepcb's associated with this TOE device */
259	struct mtx toep_list_lock;
260	TAILQ_HEAD(, toepcb) toep_list;
261
262	struct mtx lctx_hash_lock;
263	LIST_HEAD(, listen_ctx) *listen_hash;
264	u_long listen_mask;
265	int lctx_count;		/* # of lctx in the hash table */
266
267	struct ppod_region pr;
268
269	/* WRs that will not be sent to the chip because L2 resolution failed */
270	struct mtx unsent_wr_lock;
271	STAILQ_HEAD(, wrqe) unsent_wr_list;
272	struct task reclaim_wr_resources;
273};
274
275static inline struct tom_data *
276tod_td(struct toedev *tod)
277{
278
279	return (__containerof(tod, struct tom_data, tod));
280}
281
282static inline struct adapter *
283td_adapter(struct tom_data *td)
284{
285
286	return (td->tod.tod_softc);
287}
288
289static inline void
290set_mbuf_ulp_submode(struct mbuf *m, uint8_t ulp_submode)
291{
292
293	M_ASSERTPKTHDR(m);
294	m->m_pkthdr.PH_per.eight[0] = ulp_submode;
295}
296
297static inline uint8_t
298mbuf_ulp_submode(struct mbuf *m)
299{
300
301	M_ASSERTPKTHDR(m);
302	return (m->m_pkthdr.PH_per.eight[0]);
303}
304
305/* t4_tom.c */
306struct toepcb *alloc_toepcb(struct vi_info *, int, int, int);
307struct toepcb *hold_toepcb(struct toepcb *);
308void free_toepcb(struct toepcb *);
309void offload_socket(struct socket *, struct toepcb *);
310void undo_offload_socket(struct socket *);
311void final_cpl_received(struct toepcb *);
312void insert_tid(struct adapter *, int, void *, int);
313void *lookup_tid(struct adapter *, int);
314void update_tid(struct adapter *, int, void *);
315void remove_tid(struct adapter *, int, int);
316int find_best_mtu_idx(struct adapter *, struct in_conninfo *,
317    struct offload_settings *);
318u_long select_rcv_wnd(struct socket *);
319int select_rcv_wscale(void);
320uint64_t calc_opt0(struct socket *, struct vi_info *, struct l2t_entry *,
321    int, int, int, int, struct offload_settings *);
322uint64_t select_ntuple(struct vi_info *, struct l2t_entry *);
323int select_ulp_mode(struct socket *, struct adapter *,
324    struct offload_settings *);
325void set_ulp_mode(struct toepcb *, int);
326int negative_advice(int);
327
328/* t4_connect.c */
329void t4_init_connect_cpl_handlers(void);
330void t4_uninit_connect_cpl_handlers(void);
331int t4_connect(struct toedev *, struct socket *, struct rtentry *,
332    struct sockaddr *);
333void act_open_failure_cleanup(struct adapter *, u_int, u_int);
334
335/* t4_listen.c */
336void t4_init_listen_cpl_handlers(void);
337void t4_uninit_listen_cpl_handlers(void);
338int t4_listen_start(struct toedev *, struct tcpcb *);
339int t4_listen_stop(struct toedev *, struct tcpcb *);
340void t4_syncache_added(struct toedev *, void *);
341void t4_syncache_removed(struct toedev *, void *);
342int t4_syncache_respond(struct toedev *, void *, struct mbuf *);
343int do_abort_req_synqe(struct sge_iq *, const struct rss_header *,
344    struct mbuf *);
345int do_abort_rpl_synqe(struct sge_iq *, const struct rss_header *,
346    struct mbuf *);
347void t4_offload_socket(struct toedev *, void *, struct socket *);
348void synack_failure_cleanup(struct adapter *, int);
349
350/* t4_cpl_io.c */
351void aiotx_init_toep(struct toepcb *);
352int t4_aio_queue_aiotx(struct socket *, struct kaiocb *);
353void t4_init_cpl_io_handlers(void);
354void t4_uninit_cpl_io_handlers(void);
355void send_abort_rpl(struct adapter *, struct sge_wrq *, int , int);
356void send_flowc_wr(struct toepcb *, struct flowc_tx_params *);
357void send_reset(struct adapter *, struct toepcb *, uint32_t);
358int send_rx_credits(struct adapter *, struct toepcb *, int);
359void send_rx_modulate(struct adapter *, struct toepcb *);
360void make_established(struct toepcb *, uint32_t, uint32_t, uint16_t);
361int t4_close_conn(struct adapter *, struct toepcb *);
362void t4_rcvd(struct toedev *, struct tcpcb *);
363void t4_rcvd_locked(struct toedev *, struct tcpcb *);
364int t4_tod_output(struct toedev *, struct tcpcb *);
365int t4_send_fin(struct toedev *, struct tcpcb *);
366int t4_send_rst(struct toedev *, struct tcpcb *);
367void t4_set_tcb_field(struct adapter *, struct sge_wrq *, struct toepcb *,
368    uint16_t, uint64_t, uint64_t, int, int);
369void t4_push_frames(struct adapter *sc, struct toepcb *toep, int drop);
370void t4_push_pdus(struct adapter *sc, struct toepcb *toep, int drop);
371
372/* t4_ddp.c */
373int t4_init_ppod_region(struct ppod_region *, struct t4_range *, u_int,
374    const char *);
375void t4_free_ppod_region(struct ppod_region *);
376int t4_alloc_page_pods_for_ps(struct ppod_region *, struct pageset *);
377int t4_alloc_page_pods_for_buf(struct ppod_region *, vm_offset_t, int,
378    struct ppod_reservation *);
379int t4_write_page_pods_for_ps(struct adapter *, struct sge_wrq *, int,
380    struct pageset *);
381int t4_write_page_pods_for_buf(struct adapter *, struct sge_wrq *, int tid,
382    struct ppod_reservation *, vm_offset_t, int);
383void t4_free_page_pods(struct ppod_reservation *);
384int t4_soreceive_ddp(struct socket *, struct sockaddr **, struct uio *,
385    struct mbuf **, struct mbuf **, int *);
386int t4_aio_queue_ddp(struct socket *, struct kaiocb *);
387void t4_ddp_mod_load(void);
388void t4_ddp_mod_unload(void);
389void ddp_assert_empty(struct toepcb *);
390void ddp_init_toep(struct toepcb *);
391void ddp_uninit_toep(struct toepcb *);
392void ddp_queue_toep(struct toepcb *);
393void release_ddp_resources(struct toepcb *toep);
394void handle_ddp_close(struct toepcb *, struct tcpcb *, uint32_t);
395void handle_ddp_indicate(struct toepcb *);
396void insert_ddp_data(struct toepcb *, uint32_t);
397const struct offload_settings *lookup_offload_policy(struct adapter *, int,
398    struct mbuf *, uint16_t, struct inpcb *);
399
400/* t4_tls.c */
401bool can_tls_offload(struct adapter *);
402int t4_ctloutput_tls(struct socket *, struct sockopt *);
403void t4_push_tls_records(struct adapter *, struct toepcb *, int);
404void t4_tls_mod_load(void);
405void t4_tls_mod_unload(void);
406void tls_establish(struct toepcb *);
407void tls_init_toep(struct toepcb *);
408int tls_rx_key(struct toepcb *);
409void tls_stop_handshake_timer(struct toepcb *);
410int tls_tx_key(struct toepcb *);
411void tls_uninit_toep(struct toepcb *);
412
413#endif
414