blob: 113efc7352ed67b953105a8bf7ee6a95d9313bc8 [file] [log] [blame]
Hans Wippelc6ba7c92018-06-28 19:05:07 +02001/* SPDX-License-Identifier: GPL-2.0 */
2/* Shared Memory Communications Direct over ISM devices (SMC-D)
3 *
4 * SMC-D ISM device structure definitions.
5 *
6 * Copyright IBM Corp. 2018
7 */
8
9#ifndef SMCD_ISM_H
10#define SMCD_ISM_H
11
12#include <linux/uio.h>
Guvenc Gulce49407ae2020-12-01 20:20:42 +010013#include <linux/types.h>
Ursula Braun82087c02020-07-08 17:05:14 +020014#include <linux/mutex.h>
Hans Wippelc6ba7c92018-06-28 19:05:07 +020015
16#include "smc.h"
17
18struct smcd_dev_list { /* List of SMCD devices */
19 struct list_head list;
Ursula Braun82087c02020-07-08 17:05:14 +020020 struct mutex mutex; /* Protects list of devices */
Hans Wippelc6ba7c92018-06-28 19:05:07 +020021};
22
Ursula Braun201091e2020-09-26 12:44:24 +020023extern struct smcd_dev_list smcd_dev_list; /* list of smcd devices */
Hans Wippelc6ba7c92018-06-28 19:05:07 +020024
25struct smc_ism_vlanid { /* VLAN id set on ISM device */
26 struct list_head list;
27 unsigned short vlanid; /* Vlan id */
28 refcount_t refcnt; /* Reference count */
29};
30
31struct smc_ism_position { /* ISM device position to write to */
32 u64 token; /* Token of DMB */
33 u32 offset; /* Offset into DMBE */
34 u8 index; /* Index of DMBE */
35 u8 signal; /* Generate interrupt on owner side */
36};
37
38struct smcd_dev;
39
40int smc_ism_cantalk(u64 peer_gid, unsigned short vlan_id, struct smcd_dev *dev);
41void smc_ism_set_conn(struct smc_connection *conn);
42void smc_ism_unset_conn(struct smc_connection *conn);
43int smc_ism_get_vlan(struct smcd_dev *dev, unsigned short vlan_id);
44int smc_ism_put_vlan(struct smcd_dev *dev, unsigned short vlan_id);
45int smc_ism_register_dmb(struct smc_link_group *lgr, int buf_size,
46 struct smc_buf_desc *dmb_desc);
47int smc_ism_unregister_dmb(struct smcd_dev *dev, struct smc_buf_desc *dmb_desc);
48int smc_ism_write(struct smcd_dev *dev, const struct smc_ism_position *pos,
49 void *data, size_t len);
Hans Wippel0512f692018-11-20 16:46:41 +010050int smc_ism_signal_shutdown(struct smc_link_group *lgr);
Ursula Braun201091e2020-09-26 12:44:24 +020051void smc_ism_get_system_eid(struct smcd_dev *dev, u8 **eid);
Ursula Braun8caaccf2020-09-26 12:44:25 +020052u16 smc_ism_get_chid(struct smcd_dev *dev);
Guvenc Gulce49407ae2020-12-01 20:20:42 +010053bool smc_ism_is_v2_capable(void);
Ursula Braun201091e2020-09-26 12:44:24 +020054void smc_ism_init(void);
Guvenc Gulceaaf95522020-12-01 20:20:48 +010055int smcd_nl_get_device(struct sk_buff *skb, struct netlink_callback *cb);
Hans Wippelc6ba7c92018-06-28 19:05:07 +020056#endif