GNU Linux-libre 4.19.264-gnu1
[releases.git] / drivers / net / ethernet / mellanox / mlx5 / core / en / port.c
1 /*
2  * Copyright (c) 2018, 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 "port.h"
34
35 /* speed in units of 1Mb */
36 static const u32 mlx5e_link_speed[MLX5E_LINK_MODES_NUMBER] = {
37         [MLX5E_1000BASE_CX_SGMII] = 1000,
38         [MLX5E_1000BASE_KX]       = 1000,
39         [MLX5E_10GBASE_CX4]       = 10000,
40         [MLX5E_10GBASE_KX4]       = 10000,
41         [MLX5E_10GBASE_KR]        = 10000,
42         [MLX5E_20GBASE_KR2]       = 20000,
43         [MLX5E_40GBASE_CR4]       = 40000,
44         [MLX5E_40GBASE_KR4]       = 40000,
45         [MLX5E_56GBASE_R4]        = 56000,
46         [MLX5E_10GBASE_CR]        = 10000,
47         [MLX5E_10GBASE_SR]        = 10000,
48         [MLX5E_10GBASE_ER]        = 10000,
49         [MLX5E_40GBASE_SR4]       = 40000,
50         [MLX5E_40GBASE_LR4]       = 40000,
51         [MLX5E_50GBASE_SR2]       = 50000,
52         [MLX5E_100GBASE_CR4]      = 100000,
53         [MLX5E_100GBASE_SR4]      = 100000,
54         [MLX5E_100GBASE_KR4]      = 100000,
55         [MLX5E_100GBASE_LR4]      = 100000,
56         [MLX5E_100BASE_TX]        = 100,
57         [MLX5E_1000BASE_T]        = 1000,
58         [MLX5E_10GBASE_T]         = 10000,
59         [MLX5E_25GBASE_CR]        = 25000,
60         [MLX5E_25GBASE_KR]        = 25000,
61         [MLX5E_25GBASE_SR]        = 25000,
62         [MLX5E_50GBASE_CR2]       = 50000,
63         [MLX5E_50GBASE_KR2]       = 50000,
64 };
65
66 u32 mlx5e_port_ptys2speed(u32 eth_proto_oper)
67 {
68         unsigned long temp = eth_proto_oper;
69         u32 speed = 0;
70         int i;
71
72         i = find_first_bit(&temp, MLX5E_LINK_MODES_NUMBER);
73         if (i < MLX5E_LINK_MODES_NUMBER)
74                 speed = mlx5e_link_speed[i];
75
76         return speed;
77 }
78
79 int mlx5e_port_linkspeed(struct mlx5_core_dev *mdev, u32 *speed)
80 {
81         u32 out[MLX5_ST_SZ_DW(ptys_reg)] = {};
82         u32 eth_proto_oper;
83         int err;
84
85         err = mlx5_query_port_ptys(mdev, out, sizeof(out), MLX5_PTYS_EN, 1);
86         if (err)
87                 return err;
88
89         eth_proto_oper = MLX5_GET(ptys_reg, out, eth_proto_oper);
90         *speed = mlx5e_port_ptys2speed(eth_proto_oper);
91         if (!(*speed))
92                 err = -EINVAL;
93
94         return err;
95 }
96
97 int mlx5e_port_max_linkspeed(struct mlx5_core_dev *mdev, u32 *speed)
98 {
99         u32 max_speed = 0;
100         u32 proto_cap;
101         int err;
102         int i;
103
104         err = mlx5_query_port_proto_cap(mdev, &proto_cap, MLX5_PTYS_EN);
105         if (err)
106                 return err;
107
108         for (i = 0; i < MLX5E_LINK_MODES_NUMBER; ++i)
109                 if (proto_cap & MLX5E_PROT_MASK(i))
110                         max_speed = max(max_speed, mlx5e_link_speed[i]);
111
112         *speed = max_speed;
113         return 0;
114 }
115
116 u32 mlx5e_port_speed2linkmodes(u32 speed)
117 {
118         u32 link_modes = 0;
119         int i;
120
121         for (i = 0; i < MLX5E_LINK_MODES_NUMBER; ++i) {
122                 if (mlx5e_link_speed[i] == speed)
123                         link_modes |= MLX5E_PROT_MASK(i);
124         }
125
126         return link_modes;
127 }
128
129 int mlx5e_port_query_pbmc(struct mlx5_core_dev *mdev, void *out)
130 {
131         int sz = MLX5_ST_SZ_BYTES(pbmc_reg);
132         void *in;
133         int err;
134
135         in = kzalloc(sz, GFP_KERNEL);
136         if (!in)
137                 return -ENOMEM;
138
139         MLX5_SET(pbmc_reg, in, local_port, 1);
140         err = mlx5_core_access_reg(mdev, in, sz, out, sz, MLX5_REG_PBMC, 0, 0);
141
142         kfree(in);
143         return err;
144 }
145
146 int mlx5e_port_set_pbmc(struct mlx5_core_dev *mdev, void *in)
147 {
148         int sz = MLX5_ST_SZ_BYTES(pbmc_reg);
149         void *out;
150         int err;
151
152         out = kzalloc(sz, GFP_KERNEL);
153         if (!out)
154                 return -ENOMEM;
155
156         MLX5_SET(pbmc_reg, in, local_port, 1);
157         err = mlx5_core_access_reg(mdev, in, sz, out, sz, MLX5_REG_PBMC, 0, 1);
158
159         kfree(out);
160         return err;
161 }
162
163 /* buffer[i]: buffer that priority i mapped to */
164 int mlx5e_port_query_priority2buffer(struct mlx5_core_dev *mdev, u8 *buffer)
165 {
166         int sz = MLX5_ST_SZ_BYTES(pptb_reg);
167         u32 prio_x_buff;
168         void *out;
169         void *in;
170         int prio;
171         int err;
172
173         in = kzalloc(sz, GFP_KERNEL);
174         out = kzalloc(sz, GFP_KERNEL);
175         if (!in || !out) {
176                 err = -ENOMEM;
177                 goto out;
178         }
179
180         MLX5_SET(pptb_reg, in, local_port, 1);
181         err = mlx5_core_access_reg(mdev, in, sz, out, sz, MLX5_REG_PPTB, 0, 0);
182         if (err)
183                 goto out;
184
185         prio_x_buff = MLX5_GET(pptb_reg, out, prio_x_buff);
186         for (prio = 0; prio < 8; prio++) {
187                 buffer[prio] = (u8)(prio_x_buff >> (4 * prio)) & 0xF;
188                 mlx5_core_dbg(mdev, "prio %d, buffer %d\n", prio, buffer[prio]);
189         }
190 out:
191         kfree(in);
192         kfree(out);
193         return err;
194 }
195
196 int mlx5e_port_set_priority2buffer(struct mlx5_core_dev *mdev, u8 *buffer)
197 {
198         int sz = MLX5_ST_SZ_BYTES(pptb_reg);
199         u32 prio_x_buff;
200         void *out;
201         void *in;
202         int prio;
203         int err;
204
205         in = kzalloc(sz, GFP_KERNEL);
206         out = kzalloc(sz, GFP_KERNEL);
207         if (!in || !out) {
208                 err = -ENOMEM;
209                 goto out;
210         }
211
212         /* First query the pptb register */
213         MLX5_SET(pptb_reg, in, local_port, 1);
214         err = mlx5_core_access_reg(mdev, in, sz, out, sz, MLX5_REG_PPTB, 0, 0);
215         if (err)
216                 goto out;
217
218         memcpy(in, out, sz);
219         MLX5_SET(pptb_reg, in, local_port, 1);
220
221         /* Update the pm and prio_x_buff */
222         MLX5_SET(pptb_reg, in, pm, 0xFF);
223
224         prio_x_buff = 0;
225         for (prio = 0; prio < 8; prio++)
226                 prio_x_buff |= (buffer[prio] << (4 * prio));
227         MLX5_SET(pptb_reg, in, prio_x_buff, prio_x_buff);
228
229         err = mlx5_core_access_reg(mdev, in, sz, out, sz, MLX5_REG_PPTB, 0, 1);
230
231 out:
232         kfree(in);
233         kfree(out);
234         return err;
235 }