blob: 861dc24c588c65af9296e2973871693228cb0e8b [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Ursula Braun5f083182017-01-09 16:55:22 +01002/*
3 * Shared Memory Communications over RDMA (SMC-R) and RoCE
4 *
5 * Connection Data Control (CDC)
6 *
7 * Copyright IBM Corp. 2016
8 *
9 * Author(s): Ursula Braun <ubraun@linux.vnet.ibm.com>
10 */
11
12#ifndef SMC_CDC_H
13#define SMC_CDC_H
14
15#include <linux/kernel.h> /* max_t */
16#include <linux/atomic.h>
17#include <linux/in.h>
18#include <linux/compiler.h>
19
20#include "smc.h"
21#include "smc_core.h"
22#include "smc_wr.h"
23
24#define SMC_CDC_MSG_TYPE 0xFE
25
26/* in network byte order */
27union smc_cdc_cursor { /* SMC cursor */
28 struct {
29 __be16 reserved;
30 __be16 wrap;
31 __be32 count;
32 };
33#ifdef KERNEL_HAS_ATOMIC64
34 atomic64_t acurs; /* for atomic processing */
35#else
36 u64 acurs; /* for atomic processing */
37#endif
38} __aligned(8);
39
40/* in network byte order */
41struct smc_cdc_msg {
42 struct smc_wr_rx_hdr common; /* .type = 0xFE */
43 u8 len; /* 44 */
44 __be16 seqno;
45 __be32 token;
46 union smc_cdc_cursor prod;
47 union smc_cdc_cursor cons; /* piggy backed "ack" */
48 struct smc_cdc_producer_flags prod_flags;
49 struct smc_cdc_conn_state_flags conn_state_flags;
50 u8 reserved[18];
Ursula Braunb9a22dd2018-11-20 16:46:42 +010051};
52
53/* SMC-D cursor format */
54union smcd_cdc_cursor {
55 struct {
56 u16 wrap;
57 u32 count;
58 struct smc_cdc_producer_flags prod_flags;
59 struct smc_cdc_conn_state_flags conn_state_flags;
60 } __packed;
61#ifdef KERNEL_HAS_ATOMIC64
62 atomic64_t acurs; /* for atomic processing */
63#else
64 u64 acurs; /* for atomic processing */
65#endif
66} __aligned(8);
Ursula Braun5f083182017-01-09 16:55:22 +010067
Hans Wippelbe244f22018-06-28 19:05:10 +020068/* CDC message for SMC-D */
69struct smcd_cdc_msg {
70 struct smc_wr_rx_hdr common; /* Type = 0xFE */
71 u8 res1[7];
Ursula Braunb9a22dd2018-11-20 16:46:42 +010072 union smcd_cdc_cursor prod;
73 union smcd_cdc_cursor cons;
Hans Wippelbe244f22018-06-28 19:05:10 +020074 u8 res3[8];
Ursula Braunb9a22dd2018-11-20 16:46:42 +010075} __aligned(8);
Hans Wippelbe244f22018-06-28 19:05:10 +020076
Ursula Braun5f083182017-01-09 16:55:22 +010077static inline bool smc_cdc_rxed_any_close(struct smc_connection *conn)
78{
79 return conn->local_rx_ctrl.conn_state_flags.peer_conn_abort ||
80 conn->local_rx_ctrl.conn_state_flags.peer_conn_closed;
81}
82
83static inline bool smc_cdc_rxed_any_close_or_senddone(
84 struct smc_connection *conn)
85{
86 return smc_cdc_rxed_any_close(conn) ||
87 conn->local_rx_ctrl.conn_state_flags.peer_done_writing;
88}
89
90static inline void smc_curs_add(int size, union smc_host_cursor *curs,
91 int value)
92{
93 curs->count += value;
94 if (curs->count >= size) {
95 curs->wrap++;
96 curs->count -= size;
97 }
98}
99
100/* SMC cursors are 8 bytes long and require atomic reading and writing */
101static inline u64 smc_curs_read(union smc_host_cursor *curs,
102 struct smc_connection *conn)
103{
104#ifndef KERNEL_HAS_ATOMIC64
105 unsigned long flags;
106 u64 ret;
107
108 spin_lock_irqsave(&conn->acurs_lock, flags);
109 ret = curs->acurs;
110 spin_unlock_irqrestore(&conn->acurs_lock, flags);
111 return ret;
112#else
113 return atomic64_read(&curs->acurs);
114#endif
115}
116
Stefan Rasplbac6de72018-07-23 13:53:09 +0200117/* Copy cursor src into tgt */
118static inline void smc_curs_copy(union smc_host_cursor *tgt,
119 union smc_host_cursor *src,
120 struct smc_connection *conn)
Ursula Braun5f083182017-01-09 16:55:22 +0100121{
122#ifndef KERNEL_HAS_ATOMIC64
123 unsigned long flags;
Ursula Braun5f083182017-01-09 16:55:22 +0100124
125 spin_lock_irqsave(&conn->acurs_lock, flags);
Stefan Rasplbac6de72018-07-23 13:53:09 +0200126 tgt->acurs = src->acurs;
Ursula Braun5f083182017-01-09 16:55:22 +0100127 spin_unlock_irqrestore(&conn->acurs_lock, flags);
Ursula Braun5f083182017-01-09 16:55:22 +0100128#else
Stefan Rasplbac6de72018-07-23 13:53:09 +0200129 atomic64_set(&tgt->acurs, atomic64_read(&src->acurs));
Ursula Braun5f083182017-01-09 16:55:22 +0100130#endif
131}
132
Stefan Rasplbac6de72018-07-23 13:53:09 +0200133static inline void smc_curs_copy_net(union smc_cdc_cursor *tgt,
134 union smc_cdc_cursor *src,
135 struct smc_connection *conn)
Ursula Braun5f083182017-01-09 16:55:22 +0100136{
137#ifndef KERNEL_HAS_ATOMIC64
138 unsigned long flags;
139
140 spin_lock_irqsave(&conn->acurs_lock, flags);
Stefan Rasplbac6de72018-07-23 13:53:09 +0200141 tgt->acurs = src->acurs;
Ursula Braun5f083182017-01-09 16:55:22 +0100142 spin_unlock_irqrestore(&conn->acurs_lock, flags);
143#else
Stefan Rasplbac6de72018-07-23 13:53:09 +0200144 atomic64_set(&tgt->acurs, atomic64_read(&src->acurs));
Ursula Braun5f083182017-01-09 16:55:22 +0100145#endif
146}
147
Ursula Braunb9a22dd2018-11-20 16:46:42 +0100148static inline void smcd_curs_copy(union smcd_cdc_cursor *tgt,
149 union smcd_cdc_cursor *src,
150 struct smc_connection *conn)
151{
152#ifndef KERNEL_HAS_ATOMIC64
153 unsigned long flags;
154
155 spin_lock_irqsave(&conn->acurs_lock, flags);
156 tgt->acurs = src->acurs;
157 spin_unlock_irqrestore(&conn->acurs_lock, flags);
158#else
159 atomic64_set(&tgt->acurs, atomic64_read(&src->acurs));
160#endif
161}
162
Ursula Braunb8649ef2019-02-04 13:44:45 +0100163/* calculate cursor difference between old and new, where old <= new and
164 * difference cannot exceed size
165 */
Ursula Braun5f083182017-01-09 16:55:22 +0100166static inline int smc_curs_diff(unsigned int size,
167 union smc_host_cursor *old,
168 union smc_host_cursor *new)
169{
170 if (old->wrap != new->wrap)
171 return max_t(int, 0,
172 ((size - old->count) + new->count));
173
174 return max_t(int, 0, (new->count - old->count));
175}
176
Stefan Rasplde8474eb2018-05-23 16:38:11 +0200177/* calculate cursor difference between old and new - returns negative
178 * value in case old > new
179 */
180static inline int smc_curs_comp(unsigned int size,
181 union smc_host_cursor *old,
182 union smc_host_cursor *new)
183{
184 if (old->wrap > new->wrap ||
185 (old->wrap == new->wrap && old->count > new->count))
186 return -smc_curs_diff(size, new, old);
187 return smc_curs_diff(size, old, new);
188}
189
Ursula Braunb8649ef2019-02-04 13:44:45 +0100190/* calculate cursor difference between old and new, where old <= new and
191 * difference may exceed size
192 */
193static inline int smc_curs_diff_large(unsigned int size,
194 union smc_host_cursor *old,
195 union smc_host_cursor *new)
196{
197 if (old->wrap < new->wrap)
198 return min_t(int,
199 (size - old->count) + new->count +
200 (new->wrap - old->wrap - 1) * size,
201 size);
202
203 if (old->wrap > new->wrap) /* wrap has switched from 0xffff to 0x0000 */
204 return min_t(int,
205 (size - old->count) + new->count +
206 (new->wrap + 0xffff - old->wrap) * size,
207 size);
208
209 return max_t(int, 0, (new->count - old->count));
210}
211
Ursula Braun5f083182017-01-09 16:55:22 +0100212static inline void smc_host_cursor_to_cdc(union smc_cdc_cursor *peer,
213 union smc_host_cursor *local,
Ursula Braunccc8ca92019-02-07 14:52:54 +0100214 union smc_host_cursor *save,
Ursula Braun5f083182017-01-09 16:55:22 +0100215 struct smc_connection *conn)
216{
Ursula Braunccc8ca92019-02-07 14:52:54 +0100217 smc_curs_copy(save, local, conn);
218 peer->count = htonl(save->count);
219 peer->wrap = htons(save->wrap);
Ursula Braun5f083182017-01-09 16:55:22 +0100220 /* peer->reserved = htons(0); must be ensured by caller */
221}
222
223static inline void smc_host_msg_to_cdc(struct smc_cdc_msg *peer,
Ursula Braunccc8ca92019-02-07 14:52:54 +0100224 struct smc_connection *conn,
225 union smc_host_cursor *save)
Ursula Braun5f083182017-01-09 16:55:22 +0100226{
Ursula Braunccc8ca92019-02-07 14:52:54 +0100227 struct smc_host_cdc_msg *local = &conn->local_tx_ctrl;
228
Ursula Braun5f083182017-01-09 16:55:22 +0100229 peer->common.type = local->common.type;
230 peer->len = local->len;
231 peer->seqno = htons(local->seqno);
232 peer->token = htonl(local->token);
Ursula Braunccc8ca92019-02-07 14:52:54 +0100233 smc_host_cursor_to_cdc(&peer->prod, &local->prod, save, conn);
234 smc_host_cursor_to_cdc(&peer->cons, &local->cons, save, conn);
Ursula Braun5f083182017-01-09 16:55:22 +0100235 peer->prod_flags = local->prod_flags;
236 peer->conn_state_flags = local->conn_state_flags;
237}
238
239static inline void smc_cdc_cursor_to_host(union smc_host_cursor *local,
240 union smc_cdc_cursor *peer,
241 struct smc_connection *conn)
242{
243 union smc_host_cursor temp, old;
244 union smc_cdc_cursor net;
245
Stefan Rasplbac6de72018-07-23 13:53:09 +0200246 smc_curs_copy(&old, local, conn);
247 smc_curs_copy_net(&net, peer, conn);
Ursula Braun5f083182017-01-09 16:55:22 +0100248 temp.count = ntohl(net.count);
249 temp.wrap = ntohs(net.wrap);
250 if ((old.wrap > temp.wrap) && temp.wrap)
251 return;
252 if ((old.wrap == temp.wrap) &&
253 (old.count > temp.count))
254 return;
Stefan Rasplbac6de72018-07-23 13:53:09 +0200255 smc_curs_copy(local, &temp, conn);
Ursula Braun5f083182017-01-09 16:55:22 +0100256}
257
Hans Wippelbe244f22018-06-28 19:05:10 +0200258static inline void smcr_cdc_msg_to_host(struct smc_host_cdc_msg *local,
259 struct smc_cdc_msg *peer,
260 struct smc_connection *conn)
Ursula Braun5f083182017-01-09 16:55:22 +0100261{
262 local->common.type = peer->common.type;
263 local->len = peer->len;
264 local->seqno = ntohs(peer->seqno);
265 local->token = ntohl(peer->token);
266 smc_cdc_cursor_to_host(&local->prod, &peer->prod, conn);
267 smc_cdc_cursor_to_host(&local->cons, &peer->cons, conn);
268 local->prod_flags = peer->prod_flags;
269 local->conn_state_flags = peer->conn_state_flags;
270}
271
Hans Wippelbe244f22018-06-28 19:05:10 +0200272static inline void smcd_cdc_msg_to_host(struct smc_host_cdc_msg *local,
Ursula Brauna225d2c2019-02-07 15:56:16 +0100273 struct smcd_cdc_msg *peer,
274 struct smc_connection *conn)
Hans Wippelbe244f22018-06-28 19:05:10 +0200275{
Ursula Braunb9a22dd2018-11-20 16:46:42 +0100276 union smc_host_cursor temp;
277
278 temp.wrap = peer->prod.wrap;
279 temp.count = peer->prod.count;
Ursula Brauna225d2c2019-02-07 15:56:16 +0100280 smc_curs_copy(&local->prod, &temp, conn);
Ursula Braunb9a22dd2018-11-20 16:46:42 +0100281
282 temp.wrap = peer->cons.wrap;
283 temp.count = peer->cons.count;
Ursula Brauna225d2c2019-02-07 15:56:16 +0100284 smc_curs_copy(&local->cons, &temp, conn);
Ursula Braunb9a22dd2018-11-20 16:46:42 +0100285 local->prod_flags = peer->cons.prod_flags;
286 local->conn_state_flags = peer->cons.conn_state_flags;
Hans Wippelbe244f22018-06-28 19:05:10 +0200287}
288
289static inline void smc_cdc_msg_to_host(struct smc_host_cdc_msg *local,
290 struct smc_cdc_msg *peer,
291 struct smc_connection *conn)
292{
293 if (conn->lgr->is_smcd)
Ursula Brauna225d2c2019-02-07 15:56:16 +0100294 smcd_cdc_msg_to_host(local, (struct smcd_cdc_msg *)peer, conn);
Hans Wippelbe244f22018-06-28 19:05:10 +0200295 else
296 smcr_cdc_msg_to_host(local, peer, conn);
297}
298
Ursula Braunad6f3172019-02-04 13:44:44 +0100299struct smc_cdc_tx_pend {
300 struct smc_connection *conn; /* socket connection */
301 union smc_host_cursor cursor; /* tx sndbuf cursor sent */
302 union smc_host_cursor p_cursor; /* rx RMBE cursor produced */
303 u16 ctrl_seq; /* conn. tx sequence # */
304};
Ursula Braun5f083182017-01-09 16:55:22 +0100305
Ursula Braun51957bc2017-09-21 09:17:34 +0200306int smc_cdc_get_free_slot(struct smc_connection *conn,
307 struct smc_wr_buf **wr_buf,
Ursula Braunad6f3172019-02-04 13:44:44 +0100308 struct smc_rdma_wr **wr_rdma_buf,
Ursula Braun5f083182017-01-09 16:55:22 +0100309 struct smc_cdc_tx_pend **pend);
310void smc_cdc_tx_dismiss_slots(struct smc_connection *conn);
311int smc_cdc_msg_send(struct smc_connection *conn, struct smc_wr_buf *wr_buf,
312 struct smc_cdc_tx_pend *pend);
313int smc_cdc_get_slot_and_msg_send(struct smc_connection *conn);
Hans Wippelbe244f22018-06-28 19:05:10 +0200314int smcd_cdc_msg_send(struct smc_connection *conn);
Ursula Braun5f083182017-01-09 16:55:22 +0100315int smc_cdc_init(void) __init;
Hans Wippelbe244f22018-06-28 19:05:10 +0200316void smcd_cdc_rx_init(struct smc_connection *conn);
Ursula Braun5f083182017-01-09 16:55:22 +0100317
318#endif /* SMC_CDC_H */