1 /* SPDX-License-Identifier: ((GPL-2.0 WITH Linux-syscall-note) OR BSD-2-Clause) */
2 /* This file is part of the Emulex RoCE Device Driver for
3 * RoCE (RDMA over Converged Ethernet) adapters.
4 * Copyright (C) 2012-2015 Emulex. All rights reserved.
5 * EMULEX and SLI are trademarks of Emulex.
8 * This software is available to you under a choice of one of two licenses.
9 * You may choose to be licensed under the terms of the GNU General Public
10 * License (GPL) Version 2, available from the file COPYING in the main
11 * directory of this source tree, or the BSD license below:
13 * Redistribution and use in source and binary forms, with or without
14 * modification, are permitted provided that the following conditions
17 * - Redistributions of source code must retain the above copyright notice,
18 * this list of conditions and the following disclaimer.
20 * - Redistributions in binary form must reproduce the above copyright
21 * notice, this list of conditions and the following disclaimer in
22 * the documentation and/or other materials provided with the distribution.
24 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
25 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,THE
26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
28 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
29 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
30 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
31 * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
32 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
33 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
34 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36 * Contact Information:
37 * linux-drivers@emulex.com
41 * Costa Mesa, CA 92626
44 #ifndef OCRDMA_ABI_USER_H
45 #define OCRDMA_ABI_USER_H
47 #include <linux/types.h>
49 #define OCRDMA_ABI_VERSION 2
50 #define OCRDMA_BE_ROCE_ABI_VERSION 1
51 /* user kernel communication data structures. */
53 struct ocrdma_alloc_ucontext_resp
{
56 __u32 max_inline_data
;
62 /* for future use/new features in progress */
67 struct ocrdma_alloc_pd_ureq
{
71 struct ocrdma_alloc_pd_uresp
{
74 __u32 dpp_page_addr_hi
;
75 __u32 dpp_page_addr_lo
;
79 struct ocrdma_create_cq_ureq
{
84 #define MAX_CQ_PAGES 8
85 struct ocrdma_create_cq_uresp
{
90 __u64 page_addr
[MAX_CQ_PAGES
];
94 /* for future use/new features in progress */
99 #define MAX_QP_PAGES 8
100 #define MAX_UD_AV_PAGES 8
102 struct ocrdma_create_qp_ureq
{
106 __u32 rsvd1
; /* pad */
109 struct ocrdma_create_qp_uresp
{
113 __u16 resv0
; /* pad */
118 __u64 sq_page_addr
[MAX_QP_PAGES
];
119 __u64 rq_page_addr
[MAX_QP_PAGES
];
124 __u32 num_wqe_allocated
;
125 __u32 num_rqe_allocated
;
132 struct ocrdma_create_srq_uresp
{
134 __u16 resv0
; /* pad */
140 __u64 rq_page_addr
[MAX_QP_PAGES
];
144 __u32 num_rqe_allocated
;
152 #endif /* OCRDMA_ABI_USER_H */