net/mlx5_core: New device capabilities handling
[linux-2.6-block.git] / drivers / net / ethernet / mellanox / mlx5 / core / fw.c
1 /*
2  * Copyright (c) 2013-2015, Mellanox Technologies. 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/mlx5/driver.h>
34 #include <linux/mlx5/cmd.h>
35 #include <linux/module.h>
36 #include "mlx5_core.h"
37
38 int mlx5_cmd_query_adapter(struct mlx5_core_dev *dev)
39 {
40         struct mlx5_cmd_query_adapter_mbox_out *out;
41         struct mlx5_cmd_query_adapter_mbox_in in;
42         int err;
43
44         out = kzalloc(sizeof(*out), GFP_KERNEL);
45         if (!out)
46                 return -ENOMEM;
47
48         memset(&in, 0, sizeof(in));
49         in.hdr.opcode = cpu_to_be16(MLX5_CMD_OP_QUERY_ADAPTER);
50         err = mlx5_cmd_exec(dev, &in, sizeof(in), out, sizeof(*out));
51         if (err)
52                 goto out_out;
53
54         if (out->hdr.status) {
55                 err = mlx5_cmd_status_to_err(&out->hdr);
56                 goto out_out;
57         }
58
59         memcpy(dev->board_id, out->vsd_psid, sizeof(out->vsd_psid));
60
61 out_out:
62         kfree(out);
63
64         return err;
65 }
66
67 int mlx5_query_hca_caps(struct mlx5_core_dev *dev)
68 {
69         int err;
70
71         err = mlx5_core_get_caps(dev, MLX5_CAP_GENERAL, HCA_CAP_OPMOD_GET_CUR);
72         if (err)
73                 return err;
74
75         err = mlx5_core_get_caps(dev, MLX5_CAP_GENERAL, HCA_CAP_OPMOD_GET_MAX);
76         if (err)
77                 return err;
78
79         if (MLX5_CAP_GEN(dev, eth_net_offloads)) {
80                 err = mlx5_core_get_caps(dev, MLX5_CAP_ETHERNET_OFFLOADS,
81                                          HCA_CAP_OPMOD_GET_CUR);
82                 if (err)
83                         return err;
84                 err = mlx5_core_get_caps(dev, MLX5_CAP_ETHERNET_OFFLOADS,
85                                          HCA_CAP_OPMOD_GET_MAX);
86                 if (err)
87                         return err;
88         }
89
90         if (MLX5_CAP_GEN(dev, pg)) {
91                 err = mlx5_core_get_caps(dev, MLX5_CAP_ODP,
92                                          HCA_CAP_OPMOD_GET_CUR);
93                 if (err)
94                         return err;
95                 err = mlx5_core_get_caps(dev, MLX5_CAP_ODP,
96                                          HCA_CAP_OPMOD_GET_MAX);
97                 if (err)
98                         return err;
99         }
100
101         if (MLX5_CAP_GEN(dev, atomic)) {
102                 err = mlx5_core_get_caps(dev, MLX5_CAP_ATOMIC,
103                                          HCA_CAP_OPMOD_GET_CUR);
104                 if (err)
105                         return err;
106                 err = mlx5_core_get_caps(dev, MLX5_CAP_ATOMIC,
107                                          HCA_CAP_OPMOD_GET_MAX);
108                 if (err)
109                         return err;
110         }
111
112         if (MLX5_CAP_GEN(dev, roce)) {
113                 err = mlx5_core_get_caps(dev, MLX5_CAP_ROCE,
114                                          HCA_CAP_OPMOD_GET_CUR);
115                 if (err)
116                         return err;
117                 err = mlx5_core_get_caps(dev, MLX5_CAP_ROCE,
118                                          HCA_CAP_OPMOD_GET_MAX);
119                 if (err)
120                         return err;
121         }
122
123         if (MLX5_CAP_GEN(dev, nic_flow_table)) {
124                 err = mlx5_core_get_caps(dev, MLX5_CAP_FLOW_TABLE,
125                                          HCA_CAP_OPMOD_GET_CUR);
126                 if (err)
127                         return err;
128                 err = mlx5_core_get_caps(dev, MLX5_CAP_FLOW_TABLE,
129                                          HCA_CAP_OPMOD_GET_MAX);
130                 if (err)
131                         return err;
132         }
133         return 0;
134 }
135
136 int mlx5_cmd_init_hca(struct mlx5_core_dev *dev)
137 {
138         struct mlx5_cmd_init_hca_mbox_in in;
139         struct mlx5_cmd_init_hca_mbox_out out;
140         int err;
141
142         memset(&in, 0, sizeof(in));
143         memset(&out, 0, sizeof(out));
144         in.hdr.opcode = cpu_to_be16(MLX5_CMD_OP_INIT_HCA);
145         err = mlx5_cmd_exec(dev, &in, sizeof(in), &out, sizeof(out));
146         if (err)
147                 return err;
148
149         if (out.hdr.status)
150                 err = mlx5_cmd_status_to_err(&out.hdr);
151
152         return err;
153 }
154
155 int mlx5_cmd_teardown_hca(struct mlx5_core_dev *dev)
156 {
157         struct mlx5_cmd_teardown_hca_mbox_in in;
158         struct mlx5_cmd_teardown_hca_mbox_out out;
159         int err;
160
161         memset(&in, 0, sizeof(in));
162         memset(&out, 0, sizeof(out));
163         in.hdr.opcode = cpu_to_be16(MLX5_CMD_OP_TEARDOWN_HCA);
164         err = mlx5_cmd_exec(dev, &in, sizeof(in), &out, sizeof(out));
165         if (err)
166                 return err;
167
168         if (out.hdr.status)
169                 err = mlx5_cmd_status_to_err(&out.hdr);
170
171         return err;
172 }