summaryrefslogtreecommitdiff
path: root/libc/kernel/uapi/rdma/ocrdma-abi.h
blob: 007f0e1c6e2b1a5596aeba7fd0381f983aa94c6c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
/****************************************************************************
 ****************************************************************************
 ***
 ***   This header was automatically generated from a Linux kernel header
 ***   of the same name, to make information necessary for userspace to
 ***   call into the kernel available to libc.  It contains only constants,
 ***   structures, and macros generated from the original header, and thus,
 ***   contains no copyrightable information.
 ***
 ***   To edit the content of this header, modify the corresponding
 ***   source file (e.g. under external/kernel-headers/original/) then
 ***   run bionic/libc/kernel/tools/update_all.py
 ***
 ***   Any manual change here will be lost the next time this script will
 ***   be run. You've been warned!
 ***
 ****************************************************************************
 ****************************************************************************/
#ifndef OCRDMA_ABI_USER_H
#define OCRDMA_ABI_USER_H
#include <linux/types.h>
#define OCRDMA_ABI_VERSION 2
#define OCRDMA_BE_ROCE_ABI_VERSION 1
struct ocrdma_alloc_ucontext_resp {
  __u32 dev_id;
  __u32 wqe_size;
  __u32 max_inline_data;
  __u32 dpp_wqe_size;
  __aligned_u64 ah_tbl_page;
  __u32 ah_tbl_len;
  __u32 rqe_size;
  __u8 fw_ver[32];
  __aligned_u64 rsvd1;
  __aligned_u64 rsvd2;
};
struct ocrdma_alloc_pd_ureq {
  __u32 rsvd[2];
};
struct ocrdma_alloc_pd_uresp {
  __u32 id;
  __u32 dpp_enabled;
  __u32 dpp_page_addr_hi;
  __u32 dpp_page_addr_lo;
  __u32 rsvd[2];
};
struct ocrdma_create_cq_ureq {
  __u32 dpp_cq;
  __u32 rsvd;
};
#define MAX_CQ_PAGES 8
struct ocrdma_create_cq_uresp {
  __u32 cq_id;
  __u32 page_size;
  __u32 num_pages;
  __u32 max_hw_cqe;
  __aligned_u64 page_addr[MAX_CQ_PAGES];
  __aligned_u64 db_page_addr;
  __u32 db_page_size;
  __u32 phase_change;
  __aligned_u64 rsvd1;
  __aligned_u64 rsvd2;
};
#define MAX_QP_PAGES 8
#define MAX_UD_AV_PAGES 8
struct ocrdma_create_qp_ureq {
  __u8 enable_dpp_cq;
  __u8 rsvd;
  __u16 dpp_cq_id;
  __u32 rsvd1;
};
struct ocrdma_create_qp_uresp {
  __u16 qp_id;
  __u16 sq_dbid;
  __u16 rq_dbid;
  __u16 resv0;
  __u32 sq_page_size;
  __u32 rq_page_size;
  __u32 num_sq_pages;
  __u32 num_rq_pages;
  __aligned_u64 sq_page_addr[MAX_QP_PAGES];
  __aligned_u64 rq_page_addr[MAX_QP_PAGES];
  __aligned_u64 db_page_addr;
  __u32 db_page_size;
  __u32 dpp_credit;
  __u32 dpp_offset;
  __u32 num_wqe_allocated;
  __u32 num_rqe_allocated;
  __u32 db_sq_offset;
  __u32 db_rq_offset;
  __u32 db_shift;
  __aligned_u64 rsvd[11];
};
struct ocrdma_create_srq_uresp {
  __u16 rq_dbid;
  __u16 resv0;
  __u32 resv1;
  __u32 rq_page_size;
  __u32 num_rq_pages;
  __aligned_u64 rq_page_addr[MAX_QP_PAGES];
  __aligned_u64 db_page_addr;
  __u32 db_page_size;
  __u32 num_rqe_allocated;
  __u32 db_rq_offset;
  __u32 db_shift;
  __aligned_u64 rsvd2;
  __aligned_u64 rsvd3;
};
#endif