Merge tag 'hwmon-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/groeck...
[linux-drm-fsl-dcu.git] / drivers / net / ethernet / mellanox / mlx5 / core / mr.c
1 /*
2  * Copyright (c) 2013, Mellanox Technologies inc.  All rights reserved.
3  *
4  * This software is available to you under a choice of one of two
5  * licenses.  You may choose to be licensed under the terms of the GNU
6  * General Public License (GPL) Version 2, available from the file
7  * COPYING in the main directory of this source tree, or the
8  * OpenIB.org BSD license below:
9  *
10  *     Redistribution and use in source and binary forms, with or
11  *     without modification, are permitted provided that the following
12  *     conditions are met:
13  *
14  *      - Redistributions of source code must retain the above
15  *        copyright notice, this list of conditions and the following
16  *        disclaimer.
17  *
18  *      - Redistributions in binary form must reproduce the above
19  *        copyright notice, this list of conditions and the following
20  *        disclaimer in the documentation and/or other materials
21  *        provided with the distribution.
22  *
23  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
24  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
25  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
26  * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
27  * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
28  * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
29  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
30  * SOFTWARE.
31  */
32
33 #include <linux/kernel.h>
34 #include <linux/module.h>
35 #include <linux/mlx5/driver.h>
36 #include <linux/mlx5/cmd.h>
37 #include "mlx5_core.h"
38
39 int mlx5_core_create_mkey(struct mlx5_core_dev *dev, struct mlx5_core_mr *mr,
40                           struct mlx5_create_mkey_mbox_in *in, int inlen,
41                           mlx5_cmd_cbk_t callback, void *context,
42                           struct mlx5_create_mkey_mbox_out *out)
43 {
44         struct mlx5_create_mkey_mbox_out lout;
45         int err;
46         u8 key;
47
48         memset(&lout, 0, sizeof(lout));
49         spin_lock_irq(&dev->priv.mkey_lock);
50         key = dev->priv.mkey_key++;
51         spin_unlock_irq(&dev->priv.mkey_lock);
52         in->seg.qpn_mkey7_0 |= cpu_to_be32(key);
53         in->hdr.opcode = cpu_to_be16(MLX5_CMD_OP_CREATE_MKEY);
54         if (callback) {
55                 err = mlx5_cmd_exec_cb(dev, in, inlen, out, sizeof(*out),
56                                        callback, context);
57                 return err;
58         } else {
59                 err = mlx5_cmd_exec(dev, in, inlen, &lout, sizeof(lout));
60         }
61
62         if (err) {
63                 mlx5_core_dbg(dev, "cmd exec faile %d\n", err);
64                 return err;
65         }
66
67         if (lout.hdr.status) {
68                 mlx5_core_dbg(dev, "status %d\n", lout.hdr.status);
69                 return mlx5_cmd_status_to_err(&lout.hdr);
70         }
71
72         mr->key = mlx5_idx_to_mkey(be32_to_cpu(lout.mkey) & 0xffffff) | key;
73         mlx5_core_dbg(dev, "out 0x%x, key 0x%x, mkey 0x%x\n",
74                       be32_to_cpu(lout.mkey), key, mr->key);
75
76         return err;
77 }
78 EXPORT_SYMBOL(mlx5_core_create_mkey);
79
80 int mlx5_core_destroy_mkey(struct mlx5_core_dev *dev, struct mlx5_core_mr *mr)
81 {
82         struct mlx5_destroy_mkey_mbox_in in;
83         struct mlx5_destroy_mkey_mbox_out out;
84         int err;
85
86         memset(&in, 0, sizeof(in));
87         memset(&out, 0, sizeof(out));
88
89         in.hdr.opcode = cpu_to_be16(MLX5_CMD_OP_DESTROY_MKEY);
90         in.mkey = cpu_to_be32(mlx5_mkey_to_idx(mr->key));
91         err = mlx5_cmd_exec(dev, &in, sizeof(in), &out, sizeof(out));
92         if (err)
93                 return err;
94
95         if (out.hdr.status)
96                 return mlx5_cmd_status_to_err(&out.hdr);
97
98         return err;
99 }
100 EXPORT_SYMBOL(mlx5_core_destroy_mkey);
101
102 int mlx5_core_query_mkey(struct mlx5_core_dev *dev, struct mlx5_core_mr *mr,
103                          struct mlx5_query_mkey_mbox_out *out, int outlen)
104 {
105         struct mlx5_destroy_mkey_mbox_in in;
106         int err;
107
108         memset(&in, 0, sizeof(in));
109         memset(out, 0, outlen);
110
111         in.hdr.opcode = cpu_to_be16(MLX5_CMD_OP_QUERY_MKEY);
112         in.mkey = cpu_to_be32(mlx5_mkey_to_idx(mr->key));
113         err = mlx5_cmd_exec(dev, &in, sizeof(in), out, outlen);
114         if (err)
115                 return err;
116
117         if (out->hdr.status)
118                 return mlx5_cmd_status_to_err(&out->hdr);
119
120         return err;
121 }
122 EXPORT_SYMBOL(mlx5_core_query_mkey);
123
124 int mlx5_core_dump_fill_mkey(struct mlx5_core_dev *dev, struct mlx5_core_mr *mr,
125                              u32 *mkey)
126 {
127         struct mlx5_query_special_ctxs_mbox_in in;
128         struct mlx5_query_special_ctxs_mbox_out out;
129         int err;
130
131         memset(&in, 0, sizeof(in));
132         memset(&out, 0, sizeof(out));
133
134         in.hdr.opcode = cpu_to_be16(MLX5_CMD_OP_QUERY_SPECIAL_CONTEXTS);
135         err = mlx5_cmd_exec(dev, &in, sizeof(in), &out, sizeof(out));
136         if (err)
137                 return err;
138
139         if (out.hdr.status)
140                 return mlx5_cmd_status_to_err(&out.hdr);
141
142         *mkey = be32_to_cpu(out.dump_fill_mkey);
143
144         return err;
145 }
146 EXPORT_SYMBOL(mlx5_core_dump_fill_mkey);