1 /* SPDX-License-Identifier: GPL-2.0 */
3 * Shared Memory Communications over RDMA (SMC-R) and RoCE
5 * Definitions for the SMC module (socket related)
7 * Copyright IBM Corp. 2016
9 * Author(s): Ursula Braun <ubraun@linux.vnet.ibm.com>
14 #include <linux/device.h>
15 #include <linux/spinlock.h>
16 #include <linux/types.h>
17 #include <linux/wait.h>
18 #include "linux/ism.h"
22 #define SMC_MAX_PNETID_LEN 16 /* Max. length of PNET id */
29 /* SMCD/ISM device driver interface */
41 #define ISM_EVENT_DMB 0
42 #define ISM_EVENT_GID 1
43 #define ISM_EVENT_SWR 2
45 #define ISM_RESERVED_VLANID 0x1FFF
47 #define ISM_ERROR 0xFFFF
57 int (*query_remote_gid
)(struct smcd_dev
*dev
, struct smcd_gid
*rgid
,
58 u32 vid_valid
, u32 vid
);
59 int (*register_dmb
)(struct smcd_dev
*dev
, struct smcd_dmb
*dmb
,
61 int (*unregister_dmb
)(struct smcd_dev
*dev
, struct smcd_dmb
*dmb
);
62 int (*move_data
)(struct smcd_dev
*dev
, u64 dmb_tok
, unsigned int idx
,
63 bool sf
, unsigned int offset
, void *data
,
65 int (*supports_v2
)(void);
66 void (*get_local_gid
)(struct smcd_dev
*dev
, struct smcd_gid
*gid
);
67 u16 (*get_chid
)(struct smcd_dev
*dev
);
68 struct device
* (*get_dev
)(struct smcd_dev
*dev
);
70 /* optional operations */
71 int (*add_vlan_id
)(struct smcd_dev
*dev
, u64 vlan_id
);
72 int (*del_vlan_id
)(struct smcd_dev
*dev
, u64 vlan_id
);
73 int (*set_vlan_required
)(struct smcd_dev
*dev
);
74 int (*reset_vlan_required
)(struct smcd_dev
*dev
);
75 int (*signal_event
)(struct smcd_dev
*dev
, struct smcd_gid
*rgid
,
76 u32 trigger_irq
, u32 event_code
, u64 info
);
77 int (*support_dmb_nocopy
)(struct smcd_dev
*dev
);
78 int (*attach_dmb
)(struct smcd_dev
*dev
, struct smcd_dmb
*dmb
);
79 int (*detach_dmb
)(struct smcd_dev
*dev
, u64 token
);
83 const struct smcd_ops
*ops
;
86 struct list_head list
;
88 struct smc_connection
**conn
;
89 struct list_head vlan
;
90 struct workqueue_struct
*event_wq
;
91 u8 pnetid
[SMC_MAX_PNETID_LEN
];
93 struct list_head lgr_list
;
96 wait_queue_head_t lgrs_deleted
;