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 #define SMC_MAX_PNETID_LEN 16 /* Max. length of PNET id */
21 int smc_hash_sk(struct sock
*sk
);
22 void smc_unhash_sk(struct sock
*sk
);
24 /* SMCD/ISM device driver interface */
36 #define ISM_EVENT_DMB 0
37 #define ISM_EVENT_GID 1
38 #define ISM_EVENT_SWR 2
40 #define ISM_ERROR 0xFFFF
53 int (*query_remote_gid
)(struct smcd_dev
*dev
, u64 rgid
, u32 vid_valid
,
55 int (*register_dmb
)(struct smcd_dev
*dev
, struct smcd_dmb
*dmb
);
56 int (*unregister_dmb
)(struct smcd_dev
*dev
, struct smcd_dmb
*dmb
);
57 int (*add_vlan_id
)(struct smcd_dev
*dev
, u64 vlan_id
);
58 int (*del_vlan_id
)(struct smcd_dev
*dev
, u64 vlan_id
);
59 int (*set_vlan_required
)(struct smcd_dev
*dev
);
60 int (*reset_vlan_required
)(struct smcd_dev
*dev
);
61 int (*signal_event
)(struct smcd_dev
*dev
, u64 rgid
, u32 trigger_irq
,
62 u32 event_code
, u64 info
);
63 int (*move_data
)(struct smcd_dev
*dev
, u64 dmb_tok
, unsigned int idx
,
64 bool sf
, unsigned int offset
, void *data
,
69 const struct smcd_ops
*ops
;
73 struct list_head list
;
75 struct smc_connection
**conn
;
76 struct list_head vlan
;
77 struct workqueue_struct
*event_wq
;
78 u8 pnetid
[SMC_MAX_PNETID_LEN
];
80 struct list_head lgr_list
;
83 wait_queue_head_t lgrs_deleted
;
87 struct smcd_dev
*smcd_alloc_dev(struct device
*parent
, const char *name
,
88 const struct smcd_ops
*ops
, int max_dmbs
);
89 int smcd_register_dev(struct smcd_dev
*smcd
);
90 void smcd_unregister_dev(struct smcd_dev
*smcd
);
91 void smcd_free_dev(struct smcd_dev
*smcd
);
92 void smcd_handle_event(struct smcd_dev
*dev
, struct smcd_event
*event
);
93 void smcd_handle_irq(struct smcd_dev
*dev
, unsigned int bit
);