Linux Audio

Check our new training course

Yocto distribution development and maintenance

Need a Yocto distribution for your embedded project?
Loading...
v5.4
  1/* SPDX-License-Identifier: GPL-2.0 */
  2/*
  3 * Shared Memory Communications over RDMA (SMC-R) and RoCE
  4 *
  5 *  Definitions for SMC Connections, Link Groups and Links
  6 *
  7 *  Copyright IBM Corp. 2016
  8 *
  9 *  Author(s):  Ursula Braun <ubraun@linux.vnet.ibm.com>
 10 */
 11
 12#ifndef _SMC_CORE_H
 13#define _SMC_CORE_H
 14
 15#include <linux/atomic.h>
 
 
 16#include <rdma/ib_verbs.h>
 
 
 17
 18#include "smc.h"
 19#include "smc_ib.h"
 
 20
 21#define SMC_RMBS_PER_LGR_MAX	255	/* max. # of RMBs per link group */
 
 
 
 
 
 
 
 
 
 22
 23struct smc_lgr_list {			/* list of link group definition */
 24	struct list_head	list;
 25	spinlock_t		lock;	/* protects list of link groups */
 26	u32			num;	/* unique link group number */
 27};
 28
 29enum smc_lgr_role {		/* possible roles of a link group */
 30	SMC_CLNT,	/* client */
 31	SMC_SERV	/* server */
 32};
 33
 34enum smc_link_state {			/* possible states of a link */
 
 35	SMC_LNK_INACTIVE,	/* link is inactive */
 36	SMC_LNK_ACTIVATING,	/* link is being activated */
 37	SMC_LNK_ACTIVE,		/* link is active */
 38	SMC_LNK_DELETING,	/* link is being deleted */
 39};
 40
 41#define SMC_WR_BUF_SIZE		48	/* size of work request buffer */
 
 42
 43struct smc_wr_buf {
 44	u8	raw[SMC_WR_BUF_SIZE];
 45};
 46
 
 
 
 
 47#define SMC_WR_REG_MR_WAIT_TIME	(5 * HZ)/* wait time for ib_wr_reg_mr result */
 48
 49enum smc_wr_reg_state {
 50	POSTED,		/* ib_wr_reg_mr request posted */
 51	CONFIRMED,	/* ib_wr_reg_mr response: successful */
 52	FAILED		/* ib_wr_reg_mr response: failure */
 53};
 54
 55struct smc_rdma_sge {				/* sges for RDMA writes */
 56	struct ib_sge		wr_tx_rdma_sge[SMC_IB_MAX_SEND_SGE];
 57};
 58
 59#define SMC_MAX_RDMA_WRITES	2		/* max. # of RDMA writes per
 60						 * message send
 61						 */
 62
 63struct smc_rdma_sges {				/* sges per message send */
 64	struct smc_rdma_sge	tx_rdma_sge[SMC_MAX_RDMA_WRITES];
 65};
 66
 67struct smc_rdma_wr {				/* work requests per message
 68						 * send
 69						 */
 70	struct ib_rdma_wr	wr_tx_rdma[SMC_MAX_RDMA_WRITES];
 71};
 72
 
 
 73struct smc_link {
 74	struct smc_ib_device	*smcibdev;	/* ib-device */
 75	u8			ibport;		/* port - values 1 | 2 */
 76	struct ib_pd		*roce_pd;	/* IB protection domain,
 77						 * unique for every RoCE QP
 78						 */
 79	struct ib_qp		*roce_qp;	/* IB queue pair */
 80	struct ib_qp_attr	qp_attr;	/* IB queue pair attributes */
 81
 82	struct smc_wr_buf	*wr_tx_bufs;	/* WR send payload buffers */
 83	struct ib_send_wr	*wr_tx_ibs;	/* WR send meta data */
 84	struct ib_sge		*wr_tx_sges;	/* WR send gather meta data */
 85	struct smc_rdma_sges	*wr_tx_rdma_sges;/*RDMA WRITE gather meta data*/
 86	struct smc_rdma_wr	*wr_tx_rdmas;	/* WR RDMA WRITE */
 87	struct smc_wr_tx_pend	*wr_tx_pends;	/* WR send waiting for CQE */
 
 88	/* above four vectors have wr_tx_cnt elements and use the same index */
 
 
 
 89	dma_addr_t		wr_tx_dma_addr;	/* DMA address of wr_tx_bufs */
 
 90	atomic_long_t		wr_tx_id;	/* seq # of last sent WR */
 91	unsigned long		*wr_tx_mask;	/* bit mask of used indexes */
 92	u32			wr_tx_cnt;	/* number of WR send buffers */
 93	wait_queue_head_t	wr_tx_wait;	/* wait for free WR send buf */
 
 
 
 
 94
 95	struct smc_wr_buf	*wr_rx_bufs;	/* WR recv payload buffers */
 96	struct ib_recv_wr	*wr_rx_ibs;	/* WR recv meta data */
 97	struct ib_sge		*wr_rx_sges;	/* WR recv scatter meta data */
 98	/* above three vectors have wr_rx_cnt elements and use the same index */
 99	dma_addr_t		wr_rx_dma_addr;	/* DMA address of wr_rx_bufs */
 
100	u64			wr_rx_id;	/* seq # of last recv WR */
 
101	u32			wr_rx_cnt;	/* number of WR recv buffers */
102	unsigned long		wr_rx_tstamp;	/* jiffies when last buf rx */
 
103
104	struct ib_reg_wr	wr_reg;		/* WR register memory region */
105	wait_queue_head_t	wr_reg_wait;	/* wait for wr_reg result */
 
 
 
 
106	enum smc_wr_reg_state	wr_reg_state;	/* state of wr_reg request */
107
108	u8			gid[SMC_GID_SIZE];/* gid matching used vlan id*/
109	u8			sgid_index;	/* gid index for vlan id      */
110	u32			peer_qpn;	/* QP number of peer */
111	enum ib_mtu		path_mtu;	/* used mtu */
112	enum ib_mtu		peer_mtu;	/* mtu size of peer */
113	u32			psn_initial;	/* QP tx initial packet seqno */
114	u32			peer_psn;	/* QP rx initial packet seqno */
115	u8			peer_mac[ETH_ALEN];	/* = gid[8:10||13:15] */
116	u8			peer_gid[SMC_GID_SIZE];	/* gid of peer*/
117	u8			link_id;	/* unique # within link group */
 
 
 
 
 
 
 
 
 
 
118
119	enum smc_link_state	state;		/* state of link */
120	struct workqueue_struct *llc_wq;	/* single thread work queue */
121	struct completion	llc_confirm;	/* wait for rx of conf link */
122	struct completion	llc_confirm_resp; /* wait 4 rx of cnf lnk rsp */
123	int			llc_confirm_rc; /* rc from confirm link msg */
124	int			llc_confirm_resp_rc; /* rc from conf_resp msg */
125	struct completion	llc_add;	/* wait for rx of add link */
126	struct completion	llc_add_resp;	/* wait for rx of add link rsp*/
127	struct delayed_work	llc_testlink_wrk; /* testlink worker */
128	struct completion	llc_testlink_resp; /* wait for rx of testlink */
129	int			llc_testlink_time; /* testlink interval */
130	struct completion	llc_confirm_rkey; /* wait 4 rx of cnf rkey */
131	int			llc_confirm_rkey_rc; /* rc from cnf rkey msg */
132	struct completion	llc_delete_rkey; /* wait 4 rx of del rkey */
133	int			llc_delete_rkey_rc; /* rc from del rkey msg */
134	struct mutex		llc_delete_rkey_mutex; /* serialize usage */
135};
136
137/* For now we just allow one parallel link per link group. The SMC protocol
138 * allows more (up to 8).
139 */
140#define SMC_LINKS_PER_LGR_MAX	1
141#define SMC_SINGLE_LINK		0
142
143#define SMC_FIRST_CONTACT	1		/* first contact to a peer */
144#define SMC_REUSE_CONTACT	0		/* follow-on contact to a peer*/
 
 
 
 
 
 
145
146/* tx/rx buffer list element for sndbufs list and rmbs list of a lgr */
147struct smc_buf_desc {
148	struct list_head	list;
149	void			*cpu_addr;	/* virtual address of buffer */
150	struct page		*pages;
151	int			len;		/* length of buffer */
152	u32			used;		/* currently used / unused */
153	u8			wr_reg	: 1;	/* mem region registered */
154	u8			regerr	: 1;	/* err during registration */
155	union {
156		struct { /* SMC-R */
157			struct sg_table		sgt[SMC_LINKS_PER_LGR_MAX];
158						/* virtual buffer */
159			struct ib_mr		*mr_rx[SMC_LINKS_PER_LGR_MAX];
160						/* for rmb only: memory region
161						 * incl. rkey provided to peer
162						 */
163			u32			order;	/* allocation order */
 
 
 
 
 
 
 
 
 
 
 
 
 
 
164		};
165		struct { /* SMC-D */
166			unsigned short		sba_idx;
167						/* SBA index number */
168			u64			token;
169						/* DMB token number */
170			dma_addr_t		dma_addr;
171						/* DMA address */
172		};
173	};
174};
175
176struct smc_rtoken {				/* address/key of remote RMB */
177	u64			dma_addr;
178	u32			rkey;
179};
180
181#define SMC_LGR_ID_SIZE		4
182#define SMC_BUF_MIN_SIZE	16384	/* minimum size of an RMB */
183#define SMC_RMBE_SIZES		16	/* number of distinct RMBE sizes */
184/* theoretically, the RFC states that largest size would be 512K,
185 * i.e. compressed 5 and thus 6 sizes (0..5), despite
186 * struct smc_clc_msg_accept_confirm.rmbe_size being a 4 bit value (0..15)
187 */
188
189struct smcd_dev;
190
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
191struct smc_link_group {
192	struct list_head	list;
193	struct rb_root		conns_all;	/* connection tree */
194	rwlock_t		conns_lock;	/* protects conns_all */
195	unsigned int		conns_num;	/* current # of connections */
196	unsigned short		vlan_id;	/* vlan id of link group */
197
198	struct list_head	sndbufs[SMC_RMBE_SIZES];/* tx buffers */
199	rwlock_t		sndbufs_lock;	/* protects tx buffers */
200	struct list_head	rmbs[SMC_RMBE_SIZES];	/* rx buffers */
201	rwlock_t		rmbs_lock;	/* protects rx buffers */
 
 
202
203	u8			id[SMC_LGR_ID_SIZE];	/* unique lgr id */
204	struct delayed_work	free_work;	/* delayed freeing of an lgr */
 
 
205	u8			sync_err : 1;	/* lgr no longer fits to peer */
206	u8			terminating : 1;/* lgr is terminating */
 
207
 
208	bool			is_smcd;	/* SMC-R or SMC-D */
 
 
 
 
 
209	union {
210		struct { /* SMC-R */
211			enum smc_lgr_role	role;
212						/* client or server */
213			struct smc_link		lnk[SMC_LINKS_PER_LGR_MAX];
214						/* smc link */
 
 
 
 
215			char			peer_systemid[SMC_SYSTEMID_LEN];
216						/* unique system_id of peer */
217			struct smc_rtoken	rtokens[SMC_RMBS_PER_LGR_MAX]
218						[SMC_LINKS_PER_LGR_MAX];
219						/* remote addr/key pairs */
220			DECLARE_BITMAP(rtokens_used_mask, SMC_RMBS_PER_LGR_MAX);
221						/* used rtoken elements */
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
222		};
223		struct { /* SMC-D */
224			u64			peer_gid;
225						/* Peer GID (remote) */
226			struct smcd_dev		*smcd;
227						/* ISM device for VLAN reg. */
 
 
228		};
229	};
230};
231
232struct smc_clc_msg_local;
233
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
234struct smc_init_info {
235	u8			is_smcd;
 
 
 
 
 
 
 
 
236	unsigned short		vlan_id;
237	int			srv_first_contact;
238	int			cln_first_contact;
239	/* SMC-R */
240	struct smc_clc_msg_local *ib_lcl;
 
 
 
 
241	struct smc_ib_device	*ib_dev;
242	u8			ib_gid[SMC_GID_SIZE];
243	u8			ib_port;
244	u32			ib_clcqpn;
 
245	/* SMC-D */
246	u64			ism_gid;
247	struct smcd_dev		*ism_dev;
 
 
 
 
248};
249
250/* Find the connection associated with the given alert token in the link group.
251 * To use rbtrees we have to implement our own search core.
252 * Requires @conns_lock
253 * @token	alert token to search for
254 * @lgr		 link group to search in
255 * Returns connection associated with token if found, NULL otherwise.
256 */
257static inline struct smc_connection *smc_lgr_find_conn(
258	u32 token, struct smc_link_group *lgr)
259{
260	struct smc_connection *res = NULL;
261	struct rb_node *node;
262
263	node = lgr->conns_all.rb_node;
264	while (node) {
265		struct smc_connection *cur = rb_entry(node,
266					struct smc_connection, alert_node);
267
268		if (cur->alert_token_local > token) {
269			node = node->rb_left;
270		} else {
271			if (cur->alert_token_local < token) {
272				node = node->rb_right;
273			} else {
274				res = cur;
275				break;
276			}
277		}
278	}
279
280	return res;
281}
282
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
283struct smc_sock;
284struct smc_clc_msg_accept_confirm;
285struct smc_clc_msg_local;
286
287void smc_lgr_forget(struct smc_link_group *lgr);
288void smc_lgr_terminate(struct smc_link_group *lgr);
289void smc_port_terminate(struct smc_ib_device *smcibdev, u8 ibport);
290void smc_smcd_terminate(struct smcd_dev *dev, u64 peer_gid,
 
 
 
291			unsigned short vlan);
 
 
292int smc_buf_create(struct smc_sock *smc, bool is_smcd);
 
293int smc_uncompress_bufsize(u8 compressed);
294int smc_rmb_rtoken_handling(struct smc_connection *conn,
295			    struct smc_clc_msg_accept_confirm *clc);
296int smc_rtoken_add(struct smc_link_group *lgr, __be64 nw_vaddr, __be32 nw_rkey);
297int smc_rtoken_delete(struct smc_link_group *lgr, __be32 nw_rkey);
298void smc_sndbuf_sync_sg_for_cpu(struct smc_connection *conn);
 
 
 
299void smc_sndbuf_sync_sg_for_device(struct smc_connection *conn);
300void smc_rmb_sync_sg_for_cpu(struct smc_connection *conn);
301void smc_rmb_sync_sg_for_device(struct smc_connection *conn);
302int smc_vlan_by_tcpsk(struct socket *clcsock, struct smc_init_info *ini);
303
304void smc_conn_free(struct smc_connection *conn);
305int smc_conn_create(struct smc_sock *smc, struct smc_init_info *ini);
306void smcd_conn_free(struct smc_connection *conn);
307void smc_lgr_schedule_free_work_fast(struct smc_link_group *lgr);
308void smc_core_exit(void);
309
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
310static inline struct smc_link_group *smc_get_lgr(struct smc_link *link)
311{
312	return container_of(link, struct smc_link_group, lnk[SMC_SINGLE_LINK]);
313}
314#endif
v6.13.7
  1/* SPDX-License-Identifier: GPL-2.0 */
  2/*
  3 * Shared Memory Communications over RDMA (SMC-R) and RoCE
  4 *
  5 *  Definitions for SMC Connections, Link Groups and Links
  6 *
  7 *  Copyright IBM Corp. 2016
  8 *
  9 *  Author(s):  Ursula Braun <ubraun@linux.vnet.ibm.com>
 10 */
 11
 12#ifndef _SMC_CORE_H
 13#define _SMC_CORE_H
 14
 15#include <linux/atomic.h>
 16#include <linux/smc.h>
 17#include <linux/pci.h>
 18#include <rdma/ib_verbs.h>
 19#include <net/genetlink.h>
 20#include <net/smc.h>
 21
 22#include "smc.h"
 23#include "smc_ib.h"
 24#include "smc_clc.h"
 25
 26#define SMC_RMBS_PER_LGR_MAX	255	/* max. # of RMBs per link group */
 27#define SMC_CONN_PER_LGR_MIN	16	/* min. # of connections per link group */
 28#define SMC_CONN_PER_LGR_MAX	255	/* max. # of connections per link group,
 29					 * also is the default value for SMC-R v1 and v2.0
 30					 */
 31#define SMC_CONN_PER_LGR_PREFER	255	/* Preferred connections per link group used for
 32					 * SMC-R v2.1 and later negotiation, vendors or
 33					 * distributions may modify it to a value between
 34					 * 16-255 as needed.
 35					 */
 36
 37struct smc_lgr_list {			/* list of link group definition */
 38	struct list_head	list;
 39	spinlock_t		lock;	/* protects list of link groups */
 40	u32			num;	/* unique link group number */
 41};
 42
 43enum smc_lgr_role {		/* possible roles of a link group */
 44	SMC_CLNT,	/* client */
 45	SMC_SERV	/* server */
 46};
 47
 48enum smc_link_state {			/* possible states of a link */
 49	SMC_LNK_UNUSED,		/* link is unused */
 50	SMC_LNK_INACTIVE,	/* link is inactive */
 51	SMC_LNK_ACTIVATING,	/* link is being activated */
 52	SMC_LNK_ACTIVE,		/* link is active */
 
 53};
 54
 55#define SMC_WR_BUF_SIZE		48	/* size of work request buffer */
 56#define SMC_WR_BUF_V2_SIZE	8192	/* size of v2 work request buffer */
 57
 58struct smc_wr_buf {
 59	u8	raw[SMC_WR_BUF_SIZE];
 60};
 61
 62struct smc_wr_v2_buf {
 63	u8	raw[SMC_WR_BUF_V2_SIZE];
 64};
 65
 66#define SMC_WR_REG_MR_WAIT_TIME	(5 * HZ)/* wait time for ib_wr_reg_mr result */
 67
 68enum smc_wr_reg_state {
 69	POSTED,		/* ib_wr_reg_mr request posted */
 70	CONFIRMED,	/* ib_wr_reg_mr response: successful */
 71	FAILED		/* ib_wr_reg_mr response: failure */
 72};
 73
 74struct smc_rdma_sge {				/* sges for RDMA writes */
 75	struct ib_sge		wr_tx_rdma_sge[SMC_IB_MAX_SEND_SGE];
 76};
 77
 78#define SMC_MAX_RDMA_WRITES	2		/* max. # of RDMA writes per
 79						 * message send
 80						 */
 81
 82struct smc_rdma_sges {				/* sges per message send */
 83	struct smc_rdma_sge	tx_rdma_sge[SMC_MAX_RDMA_WRITES];
 84};
 85
 86struct smc_rdma_wr {				/* work requests per message
 87						 * send
 88						 */
 89	struct ib_rdma_wr	wr_tx_rdma[SMC_MAX_RDMA_WRITES];
 90};
 91
 92#define SMC_LGR_ID_SIZE		4
 93
 94struct smc_link {
 95	struct smc_ib_device	*smcibdev;	/* ib-device */
 96	u8			ibport;		/* port - values 1 | 2 */
 97	struct ib_pd		*roce_pd;	/* IB protection domain,
 98						 * unique for every RoCE QP
 99						 */
100	struct ib_qp		*roce_qp;	/* IB queue pair */
101	struct ib_qp_attr	qp_attr;	/* IB queue pair attributes */
102
103	struct smc_wr_buf	*wr_tx_bufs;	/* WR send payload buffers */
104	struct ib_send_wr	*wr_tx_ibs;	/* WR send meta data */
105	struct ib_sge		*wr_tx_sges;	/* WR send gather meta data */
106	struct smc_rdma_sges	*wr_tx_rdma_sges;/*RDMA WRITE gather meta data*/
107	struct smc_rdma_wr	*wr_tx_rdmas;	/* WR RDMA WRITE */
108	struct smc_wr_tx_pend	*wr_tx_pends;	/* WR send waiting for CQE */
109	struct completion	*wr_tx_compl;	/* WR send CQE completion */
110	/* above four vectors have wr_tx_cnt elements and use the same index */
111	struct ib_send_wr	*wr_tx_v2_ib;	/* WR send v2 meta data */
112	struct ib_sge		*wr_tx_v2_sge;	/* WR send v2 gather meta data*/
113	struct smc_wr_tx_pend	*wr_tx_v2_pend;	/* WR send v2 waiting for CQE */
114	dma_addr_t		wr_tx_dma_addr;	/* DMA address of wr_tx_bufs */
115	dma_addr_t		wr_tx_v2_dma_addr; /* DMA address of v2 tx buf*/
116	atomic_long_t		wr_tx_id;	/* seq # of last sent WR */
117	unsigned long		*wr_tx_mask;	/* bit mask of used indexes */
118	u32			wr_tx_cnt;	/* number of WR send buffers */
119	wait_queue_head_t	wr_tx_wait;	/* wait for free WR send buf */
120	struct {
121		struct percpu_ref	wr_tx_refs;
122	} ____cacheline_aligned_in_smp;
123	struct completion	tx_ref_comp;
124
125	struct smc_wr_buf	*wr_rx_bufs;	/* WR recv payload buffers */
126	struct ib_recv_wr	*wr_rx_ibs;	/* WR recv meta data */
127	struct ib_sge		*wr_rx_sges;	/* WR recv scatter meta data */
128	/* above three vectors have wr_rx_cnt elements and use the same index */
129	dma_addr_t		wr_rx_dma_addr;	/* DMA address of wr_rx_bufs */
130	dma_addr_t		wr_rx_v2_dma_addr; /* DMA address of v2 rx buf*/
131	u64			wr_rx_id;	/* seq # of last recv WR */
132	u64			wr_rx_id_compl; /* seq # of last completed WR */
133	u32			wr_rx_cnt;	/* number of WR recv buffers */
134	unsigned long		wr_rx_tstamp;	/* jiffies when last buf rx */
135	wait_queue_head_t       wr_rx_empty_wait; /* wait for RQ empty */
136
137	struct ib_reg_wr	wr_reg;		/* WR register memory region */
138	wait_queue_head_t	wr_reg_wait;	/* wait for wr_reg result */
139	struct {
140		struct percpu_ref	wr_reg_refs;
141	} ____cacheline_aligned_in_smp;
142	struct completion	reg_ref_comp;
143	enum smc_wr_reg_state	wr_reg_state;	/* state of wr_reg request */
144
145	u8			gid[SMC_GID_SIZE];/* gid matching used vlan id*/
146	u8			sgid_index;	/* gid index for vlan id      */
147	u32			peer_qpn;	/* QP number of peer */
148	enum ib_mtu		path_mtu;	/* used mtu */
149	enum ib_mtu		peer_mtu;	/* mtu size of peer */
150	u32			psn_initial;	/* QP tx initial packet seqno */
151	u32			peer_psn;	/* QP rx initial packet seqno */
152	u8			peer_mac[ETH_ALEN];	/* = gid[8:10||13:15] */
153	u8			peer_gid[SMC_GID_SIZE];	/* gid of peer*/
154	u8			link_id;	/* unique # within link group */
155	u8			link_uid[SMC_LGR_ID_SIZE]; /* unique lnk id */
156	u8			peer_link_uid[SMC_LGR_ID_SIZE]; /* peer uid */
157	u8			link_idx;	/* index in lgr link array */
158	u8			link_is_asym;	/* is link asymmetric? */
159	u8			clearing : 1;	/* link is being cleared */
160	refcount_t		refcnt;		/* link reference count */
161	struct smc_link_group	*lgr;		/* parent link group */
162	struct work_struct	link_down_wrk;	/* wrk to bring link down */
163	char			ibname[IB_DEVICE_NAME_MAX]; /* ib device name */
164	int			ndev_ifidx; /* network device ifindex */
165
166	enum smc_link_state	state;		/* state of link */
 
 
 
 
 
 
 
167	struct delayed_work	llc_testlink_wrk; /* testlink worker */
168	struct completion	llc_testlink_resp; /* wait for rx of testlink */
169	int			llc_testlink_time; /* testlink interval */
170	atomic_t		conn_cnt; /* connections on this link */
 
 
 
 
171};
172
173/* For now we just allow one parallel link per link group. The SMC protocol
174 * allows more (up to 8).
175 */
176#define SMC_LINKS_PER_LGR_MAX	3
177#define SMC_SINGLE_LINK		0
178#define SMC_LINKS_ADD_LNK_MIN	1	/* min. # of links per link group */
179#define SMC_LINKS_ADD_LNK_MAX	2	/* max. # of links per link group, also is the
180					 * default value for smc-r v1.0 and v2.0
181					 */
182#define SMC_LINKS_PER_LGR_MAX_PREFER	2	/* Preferred max links per link group used for
183						 * SMC-R v2.1 and later negotiation, vendors or
184						 * distributions may modify it to a value between
185						 * 1-2 as needed.
186						 */
187
188/* tx/rx buffer list element for sndbufs list and rmbs list of a lgr */
189struct smc_buf_desc {
190	struct list_head	list;
191	void			*cpu_addr;	/* virtual address of buffer */
192	struct page		*pages;
193	int			len;		/* length of buffer */
194	u32			used;		/* currently used / unused */
 
 
195	union {
196		struct { /* SMC-R */
197			struct sg_table	sgt[SMC_LINKS_PER_LGR_MAX];
198					/* virtual buffer */
199			struct ib_mr	*mr[SMC_LINKS_PER_LGR_MAX];
200					/* memory region: for rmb and
201					 * vzalloced sndbuf
202					 * incl. rkey provided to peer
203					 * and lkey provided to local
204					 */
205			u32		order;	/* allocation order */
206
207			u8		is_conf_rkey;
208					/* confirm_rkey done */
209			u8		is_reg_mr[SMC_LINKS_PER_LGR_MAX];
210					/* mem region registered */
211			u8		is_map_ib[SMC_LINKS_PER_LGR_MAX];
212					/* mem region mapped to lnk */
213			u8		is_dma_need_sync;
214			u8		is_reg_err;
215					/* buffer registration err */
216			u8		is_vm;
217					/* virtually contiguous */
218		};
219		struct { /* SMC-D */
220			unsigned short	sba_idx;
221					/* SBA index number */
222			u64		token;
223					/* DMB token number */
224			dma_addr_t	dma_addr;
225					/* DMA address */
226		};
227	};
228};
229
230struct smc_rtoken {				/* address/key of remote RMB */
231	u64			dma_addr;
232	u32			rkey;
233};
234
 
235#define SMC_BUF_MIN_SIZE	16384	/* minimum size of an RMB */
236#define SMC_RMBE_SIZES		16	/* number of distinct RMBE sizes */
237/* theoretically, the RFC states that largest size would be 512K,
238 * i.e. compressed 5 and thus 6 sizes (0..5), despite
239 * struct smc_clc_msg_accept_confirm.rmbe_size being a 4 bit value (0..15)
240 */
241
242struct smcd_dev;
243
244enum smc_lgr_type {				/* redundancy state of lgr */
245	SMC_LGR_NONE,			/* no active links, lgr to be deleted */
246	SMC_LGR_SINGLE,			/* 1 active RNIC on each peer */
247	SMC_LGR_SYMMETRIC,		/* 2 active RNICs on each peer */
248	SMC_LGR_ASYMMETRIC_PEER,	/* local has 2, peer 1 active RNICs */
249	SMC_LGR_ASYMMETRIC_LOCAL,	/* local has 1, peer 2 active RNICs */
250};
251
252enum smcr_buf_type {		/* types of SMC-R sndbufs and RMBs */
253	SMCR_PHYS_CONT_BUFS	= 0,
254	SMCR_VIRT_CONT_BUFS	= 1,
255	SMCR_MIXED_BUFS		= 2,
256};
257
258enum smc_llc_flowtype {
259	SMC_LLC_FLOW_NONE	= 0,
260	SMC_LLC_FLOW_ADD_LINK	= 2,
261	SMC_LLC_FLOW_DEL_LINK	= 4,
262	SMC_LLC_FLOW_REQ_ADD_LINK = 5,
263	SMC_LLC_FLOW_RKEY	= 6,
264};
265
266struct smc_llc_qentry;
267
268struct smc_llc_flow {
269	enum smc_llc_flowtype type;
270	struct smc_llc_qentry *qentry;
271};
272
273struct smc_link_group {
274	struct list_head	list;
275	struct rb_root		conns_all;	/* connection tree */
276	rwlock_t		conns_lock;	/* protects conns_all */
277	unsigned int		conns_num;	/* current # of connections */
278	unsigned short		vlan_id;	/* vlan id of link group */
279
280	struct list_head	sndbufs[SMC_RMBE_SIZES];/* tx buffers */
281	struct rw_semaphore	sndbufs_lock;	/* protects tx buffers */
282	struct list_head	rmbs[SMC_RMBE_SIZES];	/* rx buffers */
283	struct rw_semaphore	rmbs_lock;	/* protects rx buffers */
284	u64			alloc_sndbufs;	/* stats of tx buffers */
285	u64			alloc_rmbs;	/* stats of rx buffers */
286
287	u8			id[SMC_LGR_ID_SIZE];	/* unique lgr id */
288	struct delayed_work	free_work;	/* delayed freeing of an lgr */
289	struct work_struct	terminate_work;	/* abnormal lgr termination */
290	struct workqueue_struct	*tx_wq;		/* wq for conn. tx workers */
291	u8			sync_err : 1;	/* lgr no longer fits to peer */
292	u8			terminating : 1;/* lgr is terminating */
293	u8			freeing : 1;	/* lgr is being freed */
294
295	refcount_t		refcnt;		/* lgr reference count */
296	bool			is_smcd;	/* SMC-R or SMC-D */
297	u8			smc_version;
298	u8			negotiated_eid[SMC_MAX_EID_LEN];
299	u8			peer_os;	/* peer operating system */
300	u8			peer_smc_release;
301	u8			peer_hostname[SMC_MAX_HOSTNAME_LEN];
302	union {
303		struct { /* SMC-R */
304			enum smc_lgr_role	role;
305						/* client or server */
306			struct smc_link		lnk[SMC_LINKS_PER_LGR_MAX];
307						/* smc link */
308			struct smc_wr_v2_buf	*wr_rx_buf_v2;
309						/* WR v2 recv payload buffer */
310			struct smc_wr_v2_buf	*wr_tx_buf_v2;
311						/* WR v2 send payload buffer */
312			char			peer_systemid[SMC_SYSTEMID_LEN];
313						/* unique system_id of peer */
314			struct smc_rtoken	rtokens[SMC_RMBS_PER_LGR_MAX]
315						[SMC_LINKS_PER_LGR_MAX];
316						/* remote addr/key pairs */
317			DECLARE_BITMAP(rtokens_used_mask, SMC_RMBS_PER_LGR_MAX);
318						/* used rtoken elements */
319			u8			next_link_id;
320			enum smc_lgr_type	type;
321			enum smcr_buf_type	buf_type;
322						/* redundancy state */
323			u8			pnet_id[SMC_MAX_PNETID_LEN + 1];
324						/* pnet id of this lgr */
325			struct list_head	llc_event_q;
326						/* queue for llc events */
327			spinlock_t		llc_event_q_lock;
328						/* protects llc_event_q */
329			struct rw_semaphore	llc_conf_mutex;
330						/* protects lgr reconfig. */
331			struct work_struct	llc_add_link_work;
332			struct work_struct	llc_del_link_work;
333			struct work_struct	llc_event_work;
334						/* llc event worker */
335			wait_queue_head_t	llc_flow_waiter;
336						/* w4 next llc event */
337			wait_queue_head_t	llc_msg_waiter;
338						/* w4 next llc msg */
339			struct smc_llc_flow	llc_flow_lcl;
340						/* llc local control field */
341			struct smc_llc_flow	llc_flow_rmt;
342						/* llc remote control field */
343			struct smc_llc_qentry	*delayed_event;
344						/* arrived when flow active */
345			spinlock_t		llc_flow_lock;
346						/* protects llc flow */
347			int			llc_testlink_time;
348						/* link keep alive time */
349			u32			llc_termination_rsn;
350						/* rsn code for termination */
351			u8			nexthop_mac[ETH_ALEN];
352			u8			uses_gateway;
353			__be32			saddr;
354						/* net namespace */
355			struct net		*net;
356			u8			max_conns;
357						/* max conn can be assigned to lgr */
358			u8			max_links;
359						/* max links can be added in lgr */
360		};
361		struct { /* SMC-D */
362			struct smcd_gid		peer_gid;
363						/* Peer GID (remote) */
364			struct smcd_dev		*smcd;
365						/* ISM device for VLAN reg. */
366			u8			peer_shutdown : 1;
367						/* peer triggered shutdownn */
368		};
369	};
370};
371
372struct smc_clc_msg_local;
373
374#define GID_LIST_SIZE	2
375
376struct smc_gidlist {
377	u8			len;
378	u8			list[GID_LIST_SIZE][SMC_GID_SIZE];
379};
380
381struct smc_init_info_smcrv2 {
382	/* Input fields */
383	__be32			saddr;
384	struct sock		*clc_sk;
385	__be32			daddr;
386
387	/* Output fields when saddr is set */
388	struct smc_ib_device	*ib_dev_v2;
389	u8			ib_port_v2;
390	u8			ib_gid_v2[SMC_GID_SIZE];
391
392	/* Additional output fields when clc_sk and daddr is set as well */
393	u8			uses_gateway;
394	u8			nexthop_mac[ETH_ALEN];
395
396	struct smc_gidlist	gidlist;
397};
398
399#define SMC_MAX_V2_ISM_DEVS	SMCD_CLC_MAX_V2_GID_ENTRIES
400				/* max # of proposed non-native ISM devices,
401				 * which can't exceed the max # of CHID-GID
402				 * entries in CLC proposal SMC-Dv2 extension.
403				 */
404struct smc_init_info {
405	u8			is_smcd;
406	u8			smc_type_v1;
407	u8			smc_type_v2;
408	u8			release_nr;
409	u8			max_conns;
410	u8			max_links;
411	u8			first_contact_peer;
412	u8			first_contact_local;
413	u16			feature_mask;
414	unsigned short		vlan_id;
415	u32			rc;
416	u8			negotiated_eid[SMC_MAX_EID_LEN];
417	/* SMC-R */
418	u8			smcr_version;
419	u8			check_smcrv2;
420	u8			peer_gid[SMC_GID_SIZE];
421	u8			peer_mac[ETH_ALEN];
422	u8			peer_systemid[SMC_SYSTEMID_LEN];
423	struct smc_ib_device	*ib_dev;
424	u8			ib_gid[SMC_GID_SIZE];
425	u8			ib_port;
426	u32			ib_clcqpn;
427	struct smc_init_info_smcrv2 smcrv2;
428	/* SMC-D */
429	struct smcd_gid		ism_peer_gid[SMC_MAX_V2_ISM_DEVS + 1];
430	struct smcd_dev		*ism_dev[SMC_MAX_V2_ISM_DEVS + 1];
431	u16			ism_chid[SMC_MAX_V2_ISM_DEVS + 1];
432	u8			ism_offered_cnt; /* # of ISM devices offered */
433	u8			ism_selected;    /* index of selected ISM dev*/
434	u8			smcd_version;
435};
436
437/* Find the connection associated with the given alert token in the link group.
438 * To use rbtrees we have to implement our own search core.
439 * Requires @conns_lock
440 * @token	alert token to search for
441 * @lgr		 link group to search in
442 * Returns connection associated with token if found, NULL otherwise.
443 */
444static inline struct smc_connection *smc_lgr_find_conn(
445	u32 token, struct smc_link_group *lgr)
446{
447	struct smc_connection *res = NULL;
448	struct rb_node *node;
449
450	node = lgr->conns_all.rb_node;
451	while (node) {
452		struct smc_connection *cur = rb_entry(node,
453					struct smc_connection, alert_node);
454
455		if (cur->alert_token_local > token) {
456			node = node->rb_left;
457		} else {
458			if (cur->alert_token_local < token) {
459				node = node->rb_right;
460			} else {
461				res = cur;
462				break;
463			}
464		}
465	}
466
467	return res;
468}
469
470static inline bool smc_conn_lgr_valid(struct smc_connection *conn)
471{
472	return conn->lgr && conn->alert_token_local;
473}
474
475/*
476 * Returns true if the specified link is usable.
477 *
478 * usable means the link is ready to receive RDMA messages, map memory
479 * on the link, etc. This doesn't ensure we are able to send RDMA messages
480 * on this link, if sending RDMA messages is needed, use smc_link_sendable()
481 */
482static inline bool smc_link_usable(struct smc_link *lnk)
483{
484	if (lnk->state == SMC_LNK_UNUSED || lnk->state == SMC_LNK_INACTIVE)
485		return false;
486	return true;
487}
488
489/*
490 * Returns true if the specified link is ready to receive AND send RDMA
491 * messages.
492 *
493 * For the client side in first contact, the underlying QP may still in
494 * RESET or RTR when the link state is ACTIVATING, checks in smc_link_usable()
495 * is not strong enough. For those places that need to send any CDC or LLC
496 * messages, use smc_link_sendable(), otherwise, use smc_link_usable() instead
497 */
498static inline bool smc_link_sendable(struct smc_link *lnk)
499{
500	return smc_link_usable(lnk) &&
501		lnk->qp_attr.cur_qp_state == IB_QPS_RTS;
502}
503
504static inline bool smc_link_active(struct smc_link *lnk)
505{
506	return lnk->state == SMC_LNK_ACTIVE;
507}
508
509static inline void smc_gid_be16_convert(__u8 *buf, u8 *gid_raw)
510{
511	sprintf(buf, "%04x:%04x:%04x:%04x:%04x:%04x:%04x:%04x",
512		be16_to_cpu(((__be16 *)gid_raw)[0]),
513		be16_to_cpu(((__be16 *)gid_raw)[1]),
514		be16_to_cpu(((__be16 *)gid_raw)[2]),
515		be16_to_cpu(((__be16 *)gid_raw)[3]),
516		be16_to_cpu(((__be16 *)gid_raw)[4]),
517		be16_to_cpu(((__be16 *)gid_raw)[5]),
518		be16_to_cpu(((__be16 *)gid_raw)[6]),
519		be16_to_cpu(((__be16 *)gid_raw)[7]));
520}
521
522struct smc_pci_dev {
523	__u32		pci_fid;
524	__u16		pci_pchid;
525	__u16		pci_vendor;
526	__u16		pci_device;
527	__u8		pci_id[SMC_PCI_ID_STR_LEN];
528};
529
530static inline void smc_set_pci_values(struct pci_dev *pci_dev,
531				      struct smc_pci_dev *smc_dev)
532{
533	smc_dev->pci_vendor = pci_dev->vendor;
534	smc_dev->pci_device = pci_dev->device;
535	snprintf(smc_dev->pci_id, sizeof(smc_dev->pci_id), "%s",
536		 pci_name(pci_dev));
537#if IS_ENABLED(CONFIG_S390)
538	{ /* Set s390 specific PCI information */
539	struct zpci_dev *zdev;
540
541	zdev = to_zpci(pci_dev);
542	smc_dev->pci_fid = zdev->fid;
543	smc_dev->pci_pchid = zdev->pchid;
544	}
545#endif
546}
547
548struct smc_sock;
549struct smc_clc_msg_accept_confirm;
 
550
551void smc_lgr_cleanup_early(struct smc_link_group *lgr);
552void smc_lgr_terminate_sched(struct smc_link_group *lgr);
553void smc_lgr_hold(struct smc_link_group *lgr);
554void smc_lgr_put(struct smc_link_group *lgr);
555void smcr_port_add(struct smc_ib_device *smcibdev, u8 ibport);
556void smcr_port_err(struct smc_ib_device *smcibdev, u8 ibport);
557void smc_smcd_terminate(struct smcd_dev *dev, struct smcd_gid *peer_gid,
558			unsigned short vlan);
559void smc_smcd_terminate_all(struct smcd_dev *dev);
560void smc_smcr_terminate_all(struct smc_ib_device *smcibdev);
561int smc_buf_create(struct smc_sock *smc, bool is_smcd);
562int smcd_buf_attach(struct smc_sock *smc);
563int smc_uncompress_bufsize(u8 compressed);
564int smc_rmb_rtoken_handling(struct smc_connection *conn, struct smc_link *link,
565			    struct smc_clc_msg_accept_confirm *clc);
566int smc_rtoken_add(struct smc_link *lnk, __be64 nw_vaddr, __be32 nw_rkey);
567int smc_rtoken_delete(struct smc_link *lnk, __be32 nw_rkey);
568void smc_rtoken_set(struct smc_link_group *lgr, int link_idx, int link_idx_new,
569		    __be32 nw_rkey_known, __be64 nw_vaddr, __be32 nw_rkey);
570void smc_rtoken_set2(struct smc_link_group *lgr, int rtok_idx, int link_id,
571		     __be64 nw_vaddr, __be32 nw_rkey);
572void smc_sndbuf_sync_sg_for_device(struct smc_connection *conn);
573void smc_rmb_sync_sg_for_cpu(struct smc_connection *conn);
 
574int smc_vlan_by_tcpsk(struct socket *clcsock, struct smc_init_info *ini);
575
576void smc_conn_free(struct smc_connection *conn);
577int smc_conn_create(struct smc_sock *smc, struct smc_init_info *ini);
578int smc_core_init(void);
 
579void smc_core_exit(void);
580
581int smcr_link_init(struct smc_link_group *lgr, struct smc_link *lnk,
582		   u8 link_idx, struct smc_init_info *ini);
583void smcr_link_clear(struct smc_link *lnk, bool log);
584void smcr_link_hold(struct smc_link *lnk);
585void smcr_link_put(struct smc_link *lnk);
586void smc_switch_link_and_count(struct smc_connection *conn,
587			       struct smc_link *to_lnk);
588int smcr_buf_map_lgr(struct smc_link *lnk);
589int smcr_buf_reg_lgr(struct smc_link *lnk);
590void smcr_lgr_set_type(struct smc_link_group *lgr, enum smc_lgr_type new_type);
591void smcr_lgr_set_type_asym(struct smc_link_group *lgr,
592			    enum smc_lgr_type new_type, int asym_lnk_idx);
593int smcr_link_reg_buf(struct smc_link *link, struct smc_buf_desc *rmb_desc);
594struct smc_link *smc_switch_conns(struct smc_link_group *lgr,
595				  struct smc_link *from_lnk, bool is_dev_err);
596void smcr_link_down_cond(struct smc_link *lnk);
597void smcr_link_down_cond_sched(struct smc_link *lnk);
598int smc_nl_get_sys_info(struct sk_buff *skb, struct netlink_callback *cb);
599int smcr_nl_get_lgr(struct sk_buff *skb, struct netlink_callback *cb);
600int smcr_nl_get_link(struct sk_buff *skb, struct netlink_callback *cb);
601int smcd_nl_get_lgr(struct sk_buff *skb, struct netlink_callback *cb);
602
603static inline struct smc_link_group *smc_get_lgr(struct smc_link *link)
604{
605	return link->lgr;
606}
607#endif