smc.h 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. /*
  3. * Shared Memory Communications over RDMA (SMC-R) and RoCE
  4. *
  5. * Definitions for the SMC module (socket related)
  6. *
  7. * Copyright IBM Corp. 2016
  8. *
  9. * Author(s): Ursula Braun <[email protected]>
  10. */
  11. #ifndef _SMC_H
  12. #define _SMC_H
  13. #include <linux/device.h>
  14. #include <linux/spinlock.h>
  15. #include <linux/types.h>
  16. #include <linux/wait.h>
  17. struct sock;
  18. #define SMC_MAX_PNETID_LEN 16 /* Max. length of PNET id */
  19. struct smc_hashinfo {
  20. rwlock_t lock;
  21. struct hlist_head ht;
  22. };
  23. int smc_hash_sk(struct sock *sk);
  24. void smc_unhash_sk(struct sock *sk);
  25. /* SMCD/ISM device driver interface */
  26. struct smcd_dmb {
  27. u64 dmb_tok;
  28. u64 rgid;
  29. u32 dmb_len;
  30. u32 sba_idx;
  31. u32 vlan_valid;
  32. u32 vlan_id;
  33. void *cpu_addr;
  34. dma_addr_t dma_addr;
  35. };
  36. #define ISM_EVENT_DMB 0
  37. #define ISM_EVENT_GID 1
  38. #define ISM_EVENT_SWR 2
  39. #define ISM_RESERVED_VLANID 0x1FFF
  40. #define ISM_ERROR 0xFFFF
  41. struct smcd_event {
  42. u32 type;
  43. u32 code;
  44. u64 tok;
  45. u64 time;
  46. u64 info;
  47. };
  48. struct smcd_dev;
  49. struct smcd_ops {
  50. int (*query_remote_gid)(struct smcd_dev *dev, u64 rgid, u32 vid_valid,
  51. u32 vid);
  52. int (*register_dmb)(struct smcd_dev *dev, struct smcd_dmb *dmb);
  53. int (*unregister_dmb)(struct smcd_dev *dev, struct smcd_dmb *dmb);
  54. int (*add_vlan_id)(struct smcd_dev *dev, u64 vlan_id);
  55. int (*del_vlan_id)(struct smcd_dev *dev, u64 vlan_id);
  56. int (*set_vlan_required)(struct smcd_dev *dev);
  57. int (*reset_vlan_required)(struct smcd_dev *dev);
  58. int (*signal_event)(struct smcd_dev *dev, u64 rgid, u32 trigger_irq,
  59. u32 event_code, u64 info);
  60. int (*move_data)(struct smcd_dev *dev, u64 dmb_tok, unsigned int idx,
  61. bool sf, unsigned int offset, void *data,
  62. unsigned int size);
  63. u8* (*get_system_eid)(void);
  64. u16 (*get_chid)(struct smcd_dev *dev);
  65. };
  66. struct smcd_dev {
  67. const struct smcd_ops *ops;
  68. struct device dev;
  69. void *priv;
  70. u64 local_gid;
  71. struct list_head list;
  72. spinlock_t lock;
  73. struct smc_connection **conn;
  74. struct list_head vlan;
  75. struct workqueue_struct *event_wq;
  76. u8 pnetid[SMC_MAX_PNETID_LEN];
  77. bool pnetid_by_user;
  78. struct list_head lgr_list;
  79. spinlock_t lgr_lock;
  80. atomic_t lgr_cnt;
  81. wait_queue_head_t lgrs_deleted;
  82. u8 going_away : 1;
  83. };
  84. struct smcd_dev *smcd_alloc_dev(struct device *parent, const char *name,
  85. const struct smcd_ops *ops, int max_dmbs);
  86. int smcd_register_dev(struct smcd_dev *smcd);
  87. void smcd_unregister_dev(struct smcd_dev *smcd);
  88. void smcd_free_dev(struct smcd_dev *smcd);
  89. void smcd_handle_event(struct smcd_dev *dev, struct smcd_event *event);
  90. void smcd_handle_irq(struct smcd_dev *dev, unsigned int bit, u16 dmbemask);
  91. #endif /* _SMC_H */