1*4882a593Smuzhiyun #ifndef DEF_RDMAVT_H
2*4882a593Smuzhiyun #define DEF_RDMAVT_H
3*4882a593Smuzhiyun
4*4882a593Smuzhiyun /*
5*4882a593Smuzhiyun * Copyright(c) 2016 Intel Corporation.
6*4882a593Smuzhiyun *
7*4882a593Smuzhiyun * This file is provided under a dual BSD/GPLv2 license. When using or
8*4882a593Smuzhiyun * redistributing this file, you may do so under either license.
9*4882a593Smuzhiyun *
10*4882a593Smuzhiyun * GPL LICENSE SUMMARY
11*4882a593Smuzhiyun *
12*4882a593Smuzhiyun * This program is free software; you can redistribute it and/or modify
13*4882a593Smuzhiyun * it under the terms of version 2 of the GNU General Public License as
14*4882a593Smuzhiyun * published by the Free Software Foundation.
15*4882a593Smuzhiyun *
16*4882a593Smuzhiyun * This program is distributed in the hope that it will be useful, but
17*4882a593Smuzhiyun * WITHOUT ANY WARRANTY; without even the implied warranty of
18*4882a593Smuzhiyun * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19*4882a593Smuzhiyun * General Public License for more details.
20*4882a593Smuzhiyun *
21*4882a593Smuzhiyun * BSD LICENSE
22*4882a593Smuzhiyun *
23*4882a593Smuzhiyun * Redistribution and use in source and binary forms, with or without
24*4882a593Smuzhiyun * modification, are permitted provided that the following conditions
25*4882a593Smuzhiyun * are met:
26*4882a593Smuzhiyun *
27*4882a593Smuzhiyun * - Redistributions of source code must retain the above copyright
28*4882a593Smuzhiyun * notice, this list of conditions and the following disclaimer.
29*4882a593Smuzhiyun * - Redistributions in binary form must reproduce the above copyright
30*4882a593Smuzhiyun * notice, this list of conditions and the following disclaimer in
31*4882a593Smuzhiyun * the documentation and/or other materials provided with the
32*4882a593Smuzhiyun * distribution.
33*4882a593Smuzhiyun * - Neither the name of Intel Corporation nor the names of its
34*4882a593Smuzhiyun * contributors may be used to endorse or promote products derived
35*4882a593Smuzhiyun * from this software without specific prior written permission.
36*4882a593Smuzhiyun *
37*4882a593Smuzhiyun * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
38*4882a593Smuzhiyun * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
39*4882a593Smuzhiyun * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
40*4882a593Smuzhiyun * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
41*4882a593Smuzhiyun * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
42*4882a593Smuzhiyun * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
43*4882a593Smuzhiyun * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
44*4882a593Smuzhiyun * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
45*4882a593Smuzhiyun * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
46*4882a593Smuzhiyun * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
47*4882a593Smuzhiyun * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
48*4882a593Smuzhiyun *
49*4882a593Smuzhiyun */
50*4882a593Smuzhiyun
51*4882a593Smuzhiyun #include <rdma/rdma_vt.h>
52*4882a593Smuzhiyun #include <linux/pci.h>
53*4882a593Smuzhiyun #include "pd.h"
54*4882a593Smuzhiyun #include "qp.h"
55*4882a593Smuzhiyun #include "ah.h"
56*4882a593Smuzhiyun #include "mr.h"
57*4882a593Smuzhiyun #include "srq.h"
58*4882a593Smuzhiyun #include "mcast.h"
59*4882a593Smuzhiyun #include "mmap.h"
60*4882a593Smuzhiyun #include "cq.h"
61*4882a593Smuzhiyun #include "mad.h"
62*4882a593Smuzhiyun
63*4882a593Smuzhiyun #define rvt_pr_info(rdi, fmt, ...) \
64*4882a593Smuzhiyun __rvt_pr_info(rdi->driver_f.get_pci_dev(rdi), \
65*4882a593Smuzhiyun rvt_get_ibdev_name(rdi), \
66*4882a593Smuzhiyun fmt, \
67*4882a593Smuzhiyun ##__VA_ARGS__)
68*4882a593Smuzhiyun
69*4882a593Smuzhiyun #define rvt_pr_warn(rdi, fmt, ...) \
70*4882a593Smuzhiyun __rvt_pr_warn(rdi->driver_f.get_pci_dev(rdi), \
71*4882a593Smuzhiyun rvt_get_ibdev_name(rdi), \
72*4882a593Smuzhiyun fmt, \
73*4882a593Smuzhiyun ##__VA_ARGS__)
74*4882a593Smuzhiyun
75*4882a593Smuzhiyun #define rvt_pr_err(rdi, fmt, ...) \
76*4882a593Smuzhiyun __rvt_pr_err(rdi->driver_f.get_pci_dev(rdi), \
77*4882a593Smuzhiyun rvt_get_ibdev_name(rdi), \
78*4882a593Smuzhiyun fmt, \
79*4882a593Smuzhiyun ##__VA_ARGS__)
80*4882a593Smuzhiyun
81*4882a593Smuzhiyun #define rvt_pr_err_ratelimited(rdi, fmt, ...) \
82*4882a593Smuzhiyun __rvt_pr_err_ratelimited((rdi)->driver_f.get_pci_dev(rdi), \
83*4882a593Smuzhiyun rvt_get_ibdev_name(rdi), \
84*4882a593Smuzhiyun fmt, \
85*4882a593Smuzhiyun ##__VA_ARGS__)
86*4882a593Smuzhiyun
87*4882a593Smuzhiyun #define __rvt_pr_info(pdev, name, fmt, ...) \
88*4882a593Smuzhiyun dev_info(&pdev->dev, "%s: " fmt, name, ##__VA_ARGS__)
89*4882a593Smuzhiyun
90*4882a593Smuzhiyun #define __rvt_pr_warn(pdev, name, fmt, ...) \
91*4882a593Smuzhiyun dev_warn(&pdev->dev, "%s: " fmt, name, ##__VA_ARGS__)
92*4882a593Smuzhiyun
93*4882a593Smuzhiyun #define __rvt_pr_err(pdev, name, fmt, ...) \
94*4882a593Smuzhiyun dev_err(&pdev->dev, "%s: " fmt, name, ##__VA_ARGS__)
95*4882a593Smuzhiyun
96*4882a593Smuzhiyun #define __rvt_pr_err_ratelimited(pdev, name, fmt, ...) \
97*4882a593Smuzhiyun dev_err_ratelimited(&(pdev)->dev, "%s: " fmt, name, ##__VA_ARGS__)
98*4882a593Smuzhiyun
ibport_num_to_idx(struct ib_device * ibdev,u8 port_num)99*4882a593Smuzhiyun static inline int ibport_num_to_idx(struct ib_device *ibdev, u8 port_num)
100*4882a593Smuzhiyun {
101*4882a593Smuzhiyun struct rvt_dev_info *rdi = ib_to_rvt(ibdev);
102*4882a593Smuzhiyun int port_index;
103*4882a593Smuzhiyun
104*4882a593Smuzhiyun port_index = port_num - 1; /* IB ports start at 1 our arrays at 0 */
105*4882a593Smuzhiyun if ((port_index < 0) || (port_index >= rdi->dparms.nports))
106*4882a593Smuzhiyun return -EINVAL;
107*4882a593Smuzhiyun
108*4882a593Smuzhiyun return port_index;
109*4882a593Smuzhiyun }
110*4882a593Smuzhiyun
111*4882a593Smuzhiyun #endif /* DEF_RDMAVT_H */
112