blob: 46865a582eb43af8493cb36da541e2391ac84e68 [file] [log] [blame]
Sudarsana Reddy Kalluru39651ab2016-05-17 06:44:26 -04001/* QLogic qed NIC Driver
Mintz, Yuvale8f1cb52017-01-01 13:57:00 +02002 * Copyright (c) 2015-2017 QLogic Corporation
Sudarsana Reddy Kalluru39651ab2016-05-17 06:44:26 -04003 *
Mintz, Yuvale8f1cb52017-01-01 13:57:00 +02004 * 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.
Sudarsana Reddy Kalluru39651ab2016-05-17 06:44:26 -040031 */
32
33#include <linux/types.h>
34#include <asm/byteorder.h>
35#include <linux/bitops.h>
Sudarsana Reddy Kallurua1d8d8a2016-06-08 06:22:11 -040036#include <linux/dcbnl.h>
Sudarsana Reddy Kalluru39651ab2016-05-17 06:44:26 -040037#include <linux/errno.h>
38#include <linux/kernel.h>
39#include <linux/slab.h>
40#include <linux/string.h>
41#include "qed.h"
42#include "qed_cxt.h"
43#include "qed_dcbx.h"
44#include "qed_hsi.h"
45#include "qed_sp.h"
Sudarsana Reddy Kalluru5fe118c2016-08-29 08:29:52 -040046#include "qed_sriov.h"
Sudarsana Reddy Kallurua1d8d8a2016-06-08 06:22:11 -040047#ifdef CONFIG_DCB
48#include <linux/qed/qed_eth_if.h>
49#endif
Sudarsana Reddy Kalluru39651ab2016-05-17 06:44:26 -040050
51#define QED_DCBX_MAX_MIB_READ_TRY (100)
52#define QED_ETH_TYPE_DEFAULT (0)
53#define QED_ETH_TYPE_ROCE (0x8915)
54#define QED_UDP_PORT_TYPE_ROCE_V2 (0x12B7)
55#define QED_ETH_TYPE_FCOE (0x8906)
56#define QED_TCP_PORT_ISCSI (0xCBC)
57
58#define QED_DCBX_INVALID_PRIORITY 0xFF
59
60/* Get Traffic Class from priority traffic class table, 4 bits represent
61 * the traffic class corresponding to the priority.
62 */
63#define QED_DCBX_PRIO2TC(prio_tc_tbl, prio) \
64 ((u32)(prio_tc_tbl >> ((7 - prio) * 4)) & 0x7)
65
66static const struct qed_dcbx_app_metadata qed_dcbx_app_update[] = {
67 {DCBX_PROTOCOL_ISCSI, "ISCSI", QED_PCI_DEFAULT},
68 {DCBX_PROTOCOL_FCOE, "FCOE", QED_PCI_DEFAULT},
69 {DCBX_PROTOCOL_ROCE, "ROCE", QED_PCI_DEFAULT},
70 {DCBX_PROTOCOL_ROCE_V2, "ROCE_V2", QED_PCI_DEFAULT},
71 {DCBX_PROTOCOL_ETH, "ETH", QED_PCI_ETH}
72};
73
74static bool qed_dcbx_app_ethtype(u32 app_info_bitmap)
75{
76 return !!(QED_MFW_GET_FIELD(app_info_bitmap, DCBX_APP_SF) ==
77 DCBX_APP_SF_ETHTYPE);
78}
79
Sudarsana Reddy Kallurufb9ea8a2016-08-08 21:57:41 -040080static bool qed_dcbx_ieee_app_ethtype(u32 app_info_bitmap)
81{
82 u8 mfw_val = QED_MFW_GET_FIELD(app_info_bitmap, DCBX_APP_SF_IEEE);
83
84 /* Old MFW */
85 if (mfw_val == DCBX_APP_SF_IEEE_RESERVED)
86 return qed_dcbx_app_ethtype(app_info_bitmap);
87
88 return !!(mfw_val == DCBX_APP_SF_IEEE_ETHTYPE);
89}
90
Sudarsana Reddy Kalluru39651ab2016-05-17 06:44:26 -040091static bool qed_dcbx_app_port(u32 app_info_bitmap)
92{
93 return !!(QED_MFW_GET_FIELD(app_info_bitmap, DCBX_APP_SF) ==
94 DCBX_APP_SF_PORT);
95}
96
Sudarsana Reddy Kalluru59bcb792016-08-08 21:57:42 -040097static bool qed_dcbx_ieee_app_port(u32 app_info_bitmap, u8 type)
Sudarsana Reddy Kalluru39651ab2016-05-17 06:44:26 -040098{
Sudarsana Reddy Kalluru59bcb792016-08-08 21:57:42 -040099 u8 mfw_val = QED_MFW_GET_FIELD(app_info_bitmap, DCBX_APP_SF_IEEE);
100
101 /* Old MFW */
102 if (mfw_val == DCBX_APP_SF_IEEE_RESERVED)
103 return qed_dcbx_app_port(app_info_bitmap);
104
105 return !!(mfw_val == type || mfw_val == DCBX_APP_SF_IEEE_TCP_UDP_PORT);
Sudarsana Reddy Kalluru39651ab2016-05-17 06:44:26 -0400106}
107
Sudarsana Reddy Kallurufb9ea8a2016-08-08 21:57:41 -0400108static bool qed_dcbx_default_tlv(u32 app_info_bitmap, u16 proto_id, bool ieee)
Sudarsana Reddy Kalluru39651ab2016-05-17 06:44:26 -0400109{
Sudarsana Reddy Kallurufb9ea8a2016-08-08 21:57:41 -0400110 bool ethtype;
111
112 if (ieee)
113 ethtype = qed_dcbx_ieee_app_ethtype(app_info_bitmap);
114 else
115 ethtype = qed_dcbx_app_ethtype(app_info_bitmap);
116
117 return !!(ethtype && (proto_id == QED_ETH_TYPE_DEFAULT));
Sudarsana Reddy Kalluru39651ab2016-05-17 06:44:26 -0400118}
119
Sudarsana Reddy Kalluru59bcb792016-08-08 21:57:42 -0400120static bool qed_dcbx_iscsi_tlv(u32 app_info_bitmap, u16 proto_id, bool ieee)
Sudarsana Reddy Kalluru39651ab2016-05-17 06:44:26 -0400121{
Sudarsana Reddy Kalluru59bcb792016-08-08 21:57:42 -0400122 bool port;
123
124 if (ieee)
125 port = qed_dcbx_ieee_app_port(app_info_bitmap,
126 DCBX_APP_SF_IEEE_TCP_PORT);
127 else
128 port = qed_dcbx_app_port(app_info_bitmap);
129
130 return !!(port && (proto_id == QED_TCP_PORT_ISCSI));
Sudarsana Reddy Kalluru39651ab2016-05-17 06:44:26 -0400131}
132
Sudarsana Reddy Kallurufb9ea8a2016-08-08 21:57:41 -0400133static bool qed_dcbx_fcoe_tlv(u32 app_info_bitmap, u16 proto_id, bool ieee)
Sudarsana Reddy Kalluru39651ab2016-05-17 06:44:26 -0400134{
Sudarsana Reddy Kallurufb9ea8a2016-08-08 21:57:41 -0400135 bool ethtype;
136
137 if (ieee)
138 ethtype = qed_dcbx_ieee_app_ethtype(app_info_bitmap);
139 else
140 ethtype = qed_dcbx_app_ethtype(app_info_bitmap);
141
142 return !!(ethtype && (proto_id == QED_ETH_TYPE_FCOE));
Sudarsana Reddy Kalluru39651ab2016-05-17 06:44:26 -0400143}
144
Sudarsana Reddy Kallurufb9ea8a2016-08-08 21:57:41 -0400145static bool qed_dcbx_roce_tlv(u32 app_info_bitmap, u16 proto_id, bool ieee)
Sudarsana Reddy Kalluru39651ab2016-05-17 06:44:26 -0400146{
Sudarsana Reddy Kallurufb9ea8a2016-08-08 21:57:41 -0400147 bool ethtype;
148
149 if (ieee)
150 ethtype = qed_dcbx_ieee_app_ethtype(app_info_bitmap);
151 else
152 ethtype = qed_dcbx_app_ethtype(app_info_bitmap);
153
154 return !!(ethtype && (proto_id == QED_ETH_TYPE_ROCE));
Sudarsana Reddy Kalluru39651ab2016-05-17 06:44:26 -0400155}
156
Sudarsana Reddy Kalluru59bcb792016-08-08 21:57:42 -0400157static bool qed_dcbx_roce_v2_tlv(u32 app_info_bitmap, u16 proto_id, bool ieee)
Sudarsana Reddy Kalluru39651ab2016-05-17 06:44:26 -0400158{
Sudarsana Reddy Kalluru59bcb792016-08-08 21:57:42 -0400159 bool port;
160
161 if (ieee)
162 port = qed_dcbx_ieee_app_port(app_info_bitmap,
163 DCBX_APP_SF_IEEE_UDP_PORT);
164 else
165 port = qed_dcbx_app_port(app_info_bitmap);
166
167 return !!(port && (proto_id == QED_UDP_PORT_TYPE_ROCE_V2));
Sudarsana Reddy Kalluru39651ab2016-05-17 06:44:26 -0400168}
169
170static void
171qed_dcbx_dp_protocol(struct qed_hwfn *p_hwfn, struct qed_dcbx_results *p_data)
172{
173 enum dcbx_protocol_type id;
174 int i;
175
176 DP_VERBOSE(p_hwfn, QED_MSG_DCB, "DCBX negotiated: %d\n",
177 p_data->dcbx_enabled);
178
179 for (i = 0; i < ARRAY_SIZE(qed_dcbx_app_update); i++) {
180 id = qed_dcbx_app_update[i].id;
181
182 DP_VERBOSE(p_hwfn, QED_MSG_DCB,
183 "%s info: update %d, enable %d, prio %d, tc %d, num_tc %d\n",
184 qed_dcbx_app_update[i].name, p_data->arr[id].update,
185 p_data->arr[id].enable, p_data->arr[id].priority,
Ariel Eliorb5a9ee72017-04-03 12:21:09 +0300186 p_data->arr[id].tc, p_hwfn->hw_info.num_active_tc);
Sudarsana Reddy Kalluru39651ab2016-05-17 06:44:26 -0400187 }
188}
189
190static void
191qed_dcbx_set_params(struct qed_dcbx_results *p_data,
192 struct qed_hw_info *p_info,
193 bool enable,
194 bool update,
195 u8 prio,
196 u8 tc,
197 enum dcbx_protocol_type type,
198 enum qed_pci_personality personality)
199{
200 /* PF update ramrod data */
201 p_data->arr[type].update = update;
202 p_data->arr[type].enable = enable;
203 p_data->arr[type].priority = prio;
204 p_data->arr[type].tc = tc;
205
206 /* QM reconf data */
Ariel Eliorb5a9ee72017-04-03 12:21:09 +0300207 if (p_info->personality == personality)
208 p_info->offload_tc = tc;
Sudarsana Reddy Kalluru39651ab2016-05-17 06:44:26 -0400209}
210
211/* Update app protocol data and hw_info fields with the TLV info */
212static void
213qed_dcbx_update_app_info(struct qed_dcbx_results *p_data,
214 struct qed_hwfn *p_hwfn,
215 bool enable,
216 bool update,
217 u8 prio, u8 tc, enum dcbx_protocol_type type)
218{
219 struct qed_hw_info *p_info = &p_hwfn->hw_info;
220 enum qed_pci_personality personality;
221 enum dcbx_protocol_type id;
222 char *name;
223 int i;
224
225 for (i = 0; i < ARRAY_SIZE(qed_dcbx_app_update); i++) {
226 id = qed_dcbx_app_update[i].id;
227
228 if (type != id)
229 continue;
230
231 personality = qed_dcbx_app_update[i].personality;
232 name = qed_dcbx_app_update[i].name;
233
234 qed_dcbx_set_params(p_data, p_info, enable, update,
235 prio, tc, type, personality);
236 }
237}
238
239static bool
240qed_dcbx_get_app_protocol_type(struct qed_hwfn *p_hwfn,
241 u32 app_prio_bitmap,
Sudarsana Reddy Kallurufb9ea8a2016-08-08 21:57:41 -0400242 u16 id, enum dcbx_protocol_type *type, bool ieee)
Sudarsana Reddy Kalluru39651ab2016-05-17 06:44:26 -0400243{
Sudarsana Reddy Kallurufb9ea8a2016-08-08 21:57:41 -0400244 if (qed_dcbx_fcoe_tlv(app_prio_bitmap, id, ieee)) {
Sudarsana Reddy Kalluru39651ab2016-05-17 06:44:26 -0400245 *type = DCBX_PROTOCOL_FCOE;
Sudarsana Reddy Kallurufb9ea8a2016-08-08 21:57:41 -0400246 } else if (qed_dcbx_roce_tlv(app_prio_bitmap, id, ieee)) {
Sudarsana Reddy Kalluru39651ab2016-05-17 06:44:26 -0400247 *type = DCBX_PROTOCOL_ROCE;
Sudarsana Reddy Kalluru59bcb792016-08-08 21:57:42 -0400248 } else if (qed_dcbx_iscsi_tlv(app_prio_bitmap, id, ieee)) {
Sudarsana Reddy Kalluru39651ab2016-05-17 06:44:26 -0400249 *type = DCBX_PROTOCOL_ISCSI;
Sudarsana Reddy Kallurufb9ea8a2016-08-08 21:57:41 -0400250 } else if (qed_dcbx_default_tlv(app_prio_bitmap, id, ieee)) {
Sudarsana Reddy Kalluru39651ab2016-05-17 06:44:26 -0400251 *type = DCBX_PROTOCOL_ETH;
Sudarsana Reddy Kalluru59bcb792016-08-08 21:57:42 -0400252 } else if (qed_dcbx_roce_v2_tlv(app_prio_bitmap, id, ieee)) {
Sudarsana Reddy Kalluru39651ab2016-05-17 06:44:26 -0400253 *type = DCBX_PROTOCOL_ROCE_V2;
254 } else {
255 *type = DCBX_MAX_PROTOCOL_TYPE;
256 DP_ERR(p_hwfn,
257 "No action required, App TLV id = 0x%x app_prio_bitmap = 0x%x\n",
258 id, app_prio_bitmap);
259 return false;
260 }
261
262 return true;
263}
264
265/* Parse app TLV's to update TC information in hw_info structure for
266 * reconfiguring QM. Get protocol specific data for PF update ramrod command.
267 */
268static int
269qed_dcbx_process_tlv(struct qed_hwfn *p_hwfn,
270 struct qed_dcbx_results *p_data,
271 struct dcbx_app_priority_entry *p_tbl,
Sudarsana Reddy Kallurufb9ea8a2016-08-08 21:57:41 -0400272 u32 pri_tc_tbl, int count, u8 dcbx_version)
Sudarsana Reddy Kalluru39651ab2016-05-17 06:44:26 -0400273{
Sudarsana Reddy Kalluru39651ab2016-05-17 06:44:26 -0400274 enum dcbx_protocol_type type;
sudarsana.kalluru@cavium.com270837b2017-04-20 22:31:16 -0700275 u8 tc, priority_map;
Sudarsana Reddy Kallurufb9ea8a2016-08-08 21:57:41 -0400276 bool enable, ieee;
Sudarsana Reddy Kalluru39651ab2016-05-17 06:44:26 -0400277 u16 protocol_id;
Dan Carpenter54b94302016-05-23 13:19:35 +0300278 int priority;
Sudarsana Reddy Kalluru39651ab2016-05-17 06:44:26 -0400279 int i;
280
281 DP_VERBOSE(p_hwfn, QED_MSG_DCB, "Num APP entries = %d\n", count);
282
Sudarsana Reddy Kallurufb9ea8a2016-08-08 21:57:41 -0400283 ieee = (dcbx_version == DCBX_CONFIG_VERSION_IEEE);
Sudarsana Reddy Kalluru39651ab2016-05-17 06:44:26 -0400284 /* Parse APP TLV */
285 for (i = 0; i < count; i++) {
286 protocol_id = QED_MFW_GET_FIELD(p_tbl[i].entry,
287 DCBX_APP_PROTOCOL_ID);
288 priority_map = QED_MFW_GET_FIELD(p_tbl[i].entry,
289 DCBX_APP_PRI_MAP);
290 priority = ffs(priority_map) - 1;
291 if (priority < 0) {
292 DP_ERR(p_hwfn, "Invalid priority\n");
293 return -EINVAL;
294 }
295
296 tc = QED_DCBX_PRIO2TC(pri_tc_tbl, priority);
297 if (qed_dcbx_get_app_protocol_type(p_hwfn, p_tbl[i].entry,
Sudarsana Reddy Kallurufb9ea8a2016-08-08 21:57:41 -0400298 protocol_id, &type, ieee)) {
Sudarsana Reddy Kalluru39651ab2016-05-17 06:44:26 -0400299 /* ETH always have the enable bit reset, as it gets
300 * vlan information per packet. For other protocols,
301 * should be set according to the dcbx_enabled
302 * indication, but we only got here if there was an
303 * app tlv for the protocol, so dcbx must be enabled.
304 */
Sudarsana Reddy Kalluruec7c7f52016-05-24 05:25:23 -0400305 enable = !(type == DCBX_PROTOCOL_ETH);
Sudarsana Reddy Kalluru39651ab2016-05-17 06:44:26 -0400306
307 qed_dcbx_update_app_info(p_data, p_hwfn, enable, true,
308 priority, tc, type);
309 }
310 }
311
312 /* If RoCE-V2 TLV is not detected, driver need to use RoCE app
313 * data for RoCE-v2 not the default app data.
314 */
315 if (!p_data->arr[DCBX_PROTOCOL_ROCE_V2].update &&
316 p_data->arr[DCBX_PROTOCOL_ROCE].update) {
317 tc = p_data->arr[DCBX_PROTOCOL_ROCE].tc;
318 priority = p_data->arr[DCBX_PROTOCOL_ROCE].priority;
319 qed_dcbx_update_app_info(p_data, p_hwfn, true, true,
320 priority, tc, DCBX_PROTOCOL_ROCE_V2);
321 }
322
323 /* Update ramrod protocol data and hw_info fields
324 * with default info when corresponding APP TLV's are not detected.
325 * The enabled field has a different logic for ethernet as only for
326 * ethernet dcb should disabled by default, as the information arrives
327 * from the OS (unless an explicit app tlv was present).
328 */
329 tc = p_data->arr[DCBX_PROTOCOL_ETH].tc;
330 priority = p_data->arr[DCBX_PROTOCOL_ETH].priority;
331 for (type = 0; type < DCBX_MAX_PROTOCOL_TYPE; type++) {
332 if (p_data->arr[type].update)
333 continue;
334
Sudarsana Reddy Kalluru6ad8c632016-06-08 06:22:10 -0400335 enable = !(type == DCBX_PROTOCOL_ETH);
Sudarsana Reddy Kalluru39651ab2016-05-17 06:44:26 -0400336 qed_dcbx_update_app_info(p_data, p_hwfn, enable, true,
337 priority, tc, type);
338 }
339
340 return 0;
341}
342
343/* Parse app TLV's to update TC information in hw_info structure for
344 * reconfiguring QM. Get protocol specific data for PF update ramrod command.
345 */
346static int qed_dcbx_process_mib_info(struct qed_hwfn *p_hwfn)
347{
348 struct dcbx_app_priority_feature *p_app;
349 struct dcbx_app_priority_entry *p_tbl;
350 struct qed_dcbx_results data = { 0 };
351 struct dcbx_ets_feature *p_ets;
352 struct qed_hw_info *p_info;
353 u32 pri_tc_tbl, flags;
Sudarsana Reddy Kallurufb9ea8a2016-08-08 21:57:41 -0400354 u8 dcbx_version;
Sudarsana Reddy Kalluru39651ab2016-05-17 06:44:26 -0400355 int num_entries;
356 int rc = 0;
357
Sudarsana Reddy Kalluru39651ab2016-05-17 06:44:26 -0400358 flags = p_hwfn->p_dcbx_info->operational.flags;
Sudarsana Reddy Kallurufb9ea8a2016-08-08 21:57:41 -0400359 dcbx_version = QED_MFW_GET_FIELD(flags, DCBX_CONFIG_VERSION);
Sudarsana Reddy Kalluru39651ab2016-05-17 06:44:26 -0400360
361 p_app = &p_hwfn->p_dcbx_info->operational.features.app;
362 p_tbl = p_app->app_pri_tbl;
363
364 p_ets = &p_hwfn->p_dcbx_info->operational.features.ets;
365 pri_tc_tbl = p_ets->pri_tc_tbl[0];
366
367 p_info = &p_hwfn->hw_info;
368 num_entries = QED_MFW_GET_FIELD(p_app->flags, DCBX_APP_NUM_ENTRIES);
369
370 rc = qed_dcbx_process_tlv(p_hwfn, &data, p_tbl, pri_tc_tbl,
Sudarsana Reddy Kallurufb9ea8a2016-08-08 21:57:41 -0400371 num_entries, dcbx_version);
Sudarsana Reddy Kalluru39651ab2016-05-17 06:44:26 -0400372 if (rc)
373 return rc;
374
Ariel Eliorb5a9ee72017-04-03 12:21:09 +0300375 p_info->num_active_tc = QED_MFW_GET_FIELD(p_ets->flags,
376 DCBX_ETS_MAX_TCS);
377 p_hwfn->qm_info.ooo_tc = QED_MFW_GET_FIELD(p_ets->flags, DCBX_OOO_TC);
Sudarsana Reddy Kalluru39651ab2016-05-17 06:44:26 -0400378 data.pf_id = p_hwfn->rel_pf_id;
Sudarsana Reddy Kallurufb9ea8a2016-08-08 21:57:41 -0400379 data.dcbx_enabled = !!dcbx_version;
Sudarsana Reddy Kalluru39651ab2016-05-17 06:44:26 -0400380
381 qed_dcbx_dp_protocol(p_hwfn, &data);
382
383 memcpy(&p_hwfn->p_dcbx_info->results, &data,
384 sizeof(struct qed_dcbx_results));
385
386 return 0;
387}
388
389static int
390qed_dcbx_copy_mib(struct qed_hwfn *p_hwfn,
391 struct qed_ptt *p_ptt,
392 struct qed_dcbx_mib_meta_data *p_data,
393 enum qed_mib_read_type type)
394{
395 u32 prefix_seq_num, suffix_seq_num;
396 int read_count = 0;
397 int rc = 0;
398
399 /* The data is considered to be valid only if both sequence numbers are
400 * the same.
401 */
402 do {
403 if (type == QED_DCBX_REMOTE_LLDP_MIB) {
404 qed_memcpy_from(p_hwfn, p_ptt, p_data->lldp_remote,
405 p_data->addr, p_data->size);
406 prefix_seq_num = p_data->lldp_remote->prefix_seq_num;
407 suffix_seq_num = p_data->lldp_remote->suffix_seq_num;
408 } else {
409 qed_memcpy_from(p_hwfn, p_ptt, p_data->mib,
410 p_data->addr, p_data->size);
411 prefix_seq_num = p_data->mib->prefix_seq_num;
412 suffix_seq_num = p_data->mib->suffix_seq_num;
413 }
414 read_count++;
415
416 DP_VERBOSE(p_hwfn,
417 QED_MSG_DCB,
418 "mib type = %d, try count = %d prefix seq num = %d suffix seq num = %d\n",
419 type, read_count, prefix_seq_num, suffix_seq_num);
420 } while ((prefix_seq_num != suffix_seq_num) &&
421 (read_count < QED_DCBX_MAX_MIB_READ_TRY));
422
423 if (read_count >= QED_DCBX_MAX_MIB_READ_TRY) {
424 DP_ERR(p_hwfn,
425 "MIB read err, mib type = %d, try count = %d prefix seq num = %d suffix seq num = %d\n",
426 type, read_count, prefix_seq_num, suffix_seq_num);
427 rc = -EIO;
428 }
429
430 return rc;
431}
432
Sudarsana Reddy Kalluru6ad8c632016-06-08 06:22:10 -0400433static void
434qed_dcbx_get_priority_info(struct qed_hwfn *p_hwfn,
435 struct qed_dcbx_app_prio *p_prio,
436 struct qed_dcbx_results *p_results)
437{
438 u8 val;
439
440 p_prio->roce = QED_DCBX_INVALID_PRIORITY;
441 p_prio->roce_v2 = QED_DCBX_INVALID_PRIORITY;
442 p_prio->iscsi = QED_DCBX_INVALID_PRIORITY;
443 p_prio->fcoe = QED_DCBX_INVALID_PRIORITY;
444
445 if (p_results->arr[DCBX_PROTOCOL_ROCE].update &&
446 p_results->arr[DCBX_PROTOCOL_ROCE].enable)
447 p_prio->roce = p_results->arr[DCBX_PROTOCOL_ROCE].priority;
448
449 if (p_results->arr[DCBX_PROTOCOL_ROCE_V2].update &&
450 p_results->arr[DCBX_PROTOCOL_ROCE_V2].enable) {
451 val = p_results->arr[DCBX_PROTOCOL_ROCE_V2].priority;
452 p_prio->roce_v2 = val;
453 }
454
455 if (p_results->arr[DCBX_PROTOCOL_ISCSI].update &&
456 p_results->arr[DCBX_PROTOCOL_ISCSI].enable)
457 p_prio->iscsi = p_results->arr[DCBX_PROTOCOL_ISCSI].priority;
458
459 if (p_results->arr[DCBX_PROTOCOL_FCOE].update &&
460 p_results->arr[DCBX_PROTOCOL_FCOE].enable)
461 p_prio->fcoe = p_results->arr[DCBX_PROTOCOL_FCOE].priority;
462
463 if (p_results->arr[DCBX_PROTOCOL_ETH].update &&
464 p_results->arr[DCBX_PROTOCOL_ETH].enable)
465 p_prio->eth = p_results->arr[DCBX_PROTOCOL_ETH].priority;
466
467 DP_VERBOSE(p_hwfn, QED_MSG_DCB,
468 "Priorities: iscsi %d, roce %d, roce v2 %d, fcoe %d, eth %d\n",
469 p_prio->iscsi, p_prio->roce, p_prio->roce_v2, p_prio->fcoe,
470 p_prio->eth);
471}
472
473static void
474qed_dcbx_get_app_data(struct qed_hwfn *p_hwfn,
475 struct dcbx_app_priority_feature *p_app,
476 struct dcbx_app_priority_entry *p_tbl,
Sudarsana Reddy Kallurufb9ea8a2016-08-08 21:57:41 -0400477 struct qed_dcbx_params *p_params, bool ieee)
Sudarsana Reddy Kalluru6ad8c632016-06-08 06:22:10 -0400478{
479 struct qed_app_entry *entry;
480 u8 pri_map;
481 int i;
482
483 p_params->app_willing = QED_MFW_GET_FIELD(p_app->flags,
484 DCBX_APP_WILLING);
485 p_params->app_valid = QED_MFW_GET_FIELD(p_app->flags, DCBX_APP_ENABLED);
486 p_params->app_error = QED_MFW_GET_FIELD(p_app->flags, DCBX_APP_ERROR);
487 p_params->num_app_entries = QED_MFW_GET_FIELD(p_app->flags,
488 DCBX_APP_NUM_ENTRIES);
489 for (i = 0; i < DCBX_MAX_APP_PROTOCOL; i++) {
490 entry = &p_params->app_entry[i];
Sudarsana Reddy Kalluru59bcb792016-08-08 21:57:42 -0400491 if (ieee) {
492 u8 sf_ieee;
493 u32 val;
494
495 sf_ieee = QED_MFW_GET_FIELD(p_tbl[i].entry,
496 DCBX_APP_SF_IEEE);
497 switch (sf_ieee) {
498 case DCBX_APP_SF_IEEE_RESERVED:
499 /* Old MFW */
500 val = QED_MFW_GET_FIELD(p_tbl[i].entry,
501 DCBX_APP_SF);
502 entry->sf_ieee = val ?
503 QED_DCBX_SF_IEEE_TCP_UDP_PORT :
504 QED_DCBX_SF_IEEE_ETHTYPE;
505 break;
506 case DCBX_APP_SF_IEEE_ETHTYPE:
507 entry->sf_ieee = QED_DCBX_SF_IEEE_ETHTYPE;
508 break;
509 case DCBX_APP_SF_IEEE_TCP_PORT:
510 entry->sf_ieee = QED_DCBX_SF_IEEE_TCP_PORT;
511 break;
512 case DCBX_APP_SF_IEEE_UDP_PORT:
513 entry->sf_ieee = QED_DCBX_SF_IEEE_UDP_PORT;
514 break;
515 case DCBX_APP_SF_IEEE_TCP_UDP_PORT:
516 entry->sf_ieee = QED_DCBX_SF_IEEE_TCP_UDP_PORT;
517 break;
518 }
519 } else {
520 entry->ethtype = !(QED_MFW_GET_FIELD(p_tbl[i].entry,
521 DCBX_APP_SF));
522 }
523
Sudarsana Reddy Kalluru6ad8c632016-06-08 06:22:10 -0400524 pri_map = QED_MFW_GET_FIELD(p_tbl[i].entry, DCBX_APP_PRI_MAP);
525 entry->prio = ffs(pri_map) - 1;
526 entry->proto_id = QED_MFW_GET_FIELD(p_tbl[i].entry,
527 DCBX_APP_PROTOCOL_ID);
528 qed_dcbx_get_app_protocol_type(p_hwfn, p_tbl[i].entry,
529 entry->proto_id,
Sudarsana Reddy Kallurufb9ea8a2016-08-08 21:57:41 -0400530 &entry->proto_type, ieee);
Sudarsana Reddy Kalluru6ad8c632016-06-08 06:22:10 -0400531 }
532
533 DP_VERBOSE(p_hwfn, QED_MSG_DCB,
534 "APP params: willing %d, valid %d error = %d\n",
535 p_params->app_willing, p_params->app_valid,
536 p_params->app_error);
537}
538
539static void
540qed_dcbx_get_pfc_data(struct qed_hwfn *p_hwfn,
541 u32 pfc, struct qed_dcbx_params *p_params)
542{
543 u8 pfc_map;
544
545 p_params->pfc.willing = QED_MFW_GET_FIELD(pfc, DCBX_PFC_WILLING);
546 p_params->pfc.max_tc = QED_MFW_GET_FIELD(pfc, DCBX_PFC_CAPS);
547 p_params->pfc.enabled = QED_MFW_GET_FIELD(pfc, DCBX_PFC_ENABLED);
548 pfc_map = QED_MFW_GET_FIELD(pfc, DCBX_PFC_PRI_EN_BITMAP);
549 p_params->pfc.prio[0] = !!(pfc_map & DCBX_PFC_PRI_EN_BITMAP_PRI_0);
550 p_params->pfc.prio[1] = !!(pfc_map & DCBX_PFC_PRI_EN_BITMAP_PRI_1);
551 p_params->pfc.prio[2] = !!(pfc_map & DCBX_PFC_PRI_EN_BITMAP_PRI_2);
552 p_params->pfc.prio[3] = !!(pfc_map & DCBX_PFC_PRI_EN_BITMAP_PRI_3);
553 p_params->pfc.prio[4] = !!(pfc_map & DCBX_PFC_PRI_EN_BITMAP_PRI_4);
554 p_params->pfc.prio[5] = !!(pfc_map & DCBX_PFC_PRI_EN_BITMAP_PRI_5);
555 p_params->pfc.prio[6] = !!(pfc_map & DCBX_PFC_PRI_EN_BITMAP_PRI_6);
556 p_params->pfc.prio[7] = !!(pfc_map & DCBX_PFC_PRI_EN_BITMAP_PRI_7);
557
558 DP_VERBOSE(p_hwfn, QED_MSG_DCB,
sudarsana.kalluru@cavium.comdfbeb852017-04-20 22:31:18 -0700559 "PFC params: willing %d, pfc_bitmap %u max_tc = %u enabled = %d\n",
560 p_params->pfc.willing, pfc_map, p_params->pfc.max_tc,
561 p_params->pfc.enabled);
Sudarsana Reddy Kalluru6ad8c632016-06-08 06:22:10 -0400562}
563
564static void
565qed_dcbx_get_ets_data(struct qed_hwfn *p_hwfn,
566 struct dcbx_ets_feature *p_ets,
567 struct qed_dcbx_params *p_params)
568{
569 u32 bw_map[2], tsa_map[2], pri_map;
570 int i;
571
572 p_params->ets_willing = QED_MFW_GET_FIELD(p_ets->flags,
573 DCBX_ETS_WILLING);
574 p_params->ets_enabled = QED_MFW_GET_FIELD(p_ets->flags,
575 DCBX_ETS_ENABLED);
576 p_params->ets_cbs = QED_MFW_GET_FIELD(p_ets->flags, DCBX_ETS_CBS);
577 p_params->max_ets_tc = QED_MFW_GET_FIELD(p_ets->flags,
578 DCBX_ETS_MAX_TCS);
579 DP_VERBOSE(p_hwfn, QED_MSG_DCB,
sudarsana.kalluru@cavium.comdfbeb852017-04-20 22:31:18 -0700580 "ETS params: willing %d, enabled = %d ets_cbs %d pri_tc_tbl_0 %x max_ets_tc %d\n",
581 p_params->ets_willing, p_params->ets_enabled,
582 p_params->ets_cbs, p_ets->pri_tc_tbl[0],
583 p_params->max_ets_tc);
Sudarsana Reddy Kalluru6ad8c632016-06-08 06:22:10 -0400584
sudarsana.kalluru@cavium.com66367da2017-04-19 03:19:52 -0700585 if (p_params->ets_enabled && !p_params->max_ets_tc) {
586 p_params->max_ets_tc = QED_MAX_PFC_PRIORITIES;
587 DP_VERBOSE(p_hwfn, QED_MSG_DCB,
588 "ETS params: max_ets_tc is forced to %d\n",
589 p_params->max_ets_tc);
590 }
591
Sudarsana Reddy Kalluru6ad8c632016-06-08 06:22:10 -0400592 /* 8 bit tsa and bw data corresponding to each of the 8 TC's are
593 * encoded in a type u32 array of size 2.
594 */
595 bw_map[0] = be32_to_cpu(p_ets->tc_bw_tbl[0]);
596 bw_map[1] = be32_to_cpu(p_ets->tc_bw_tbl[1]);
597 tsa_map[0] = be32_to_cpu(p_ets->tc_tsa_tbl[0]);
598 tsa_map[1] = be32_to_cpu(p_ets->tc_tsa_tbl[1]);
Sudarsana Reddy Kalluruc0c45a62016-08-08 21:57:40 -0400599 pri_map = p_ets->pri_tc_tbl[0];
Sudarsana Reddy Kalluru6ad8c632016-06-08 06:22:10 -0400600 for (i = 0; i < QED_MAX_PFC_PRIORITIES; i++) {
601 p_params->ets_tc_bw_tbl[i] = ((u8 *)bw_map)[i];
602 p_params->ets_tc_tsa_tbl[i] = ((u8 *)tsa_map)[i];
603 p_params->ets_pri_tc_tbl[i] = QED_DCBX_PRIO2TC(pri_map, i);
604 DP_VERBOSE(p_hwfn, QED_MSG_DCB,
605 "elem %d bw_tbl %x tsa_tbl %x\n",
606 i, p_params->ets_tc_bw_tbl[i],
607 p_params->ets_tc_tsa_tbl[i]);
608 }
609}
610
611static void
612qed_dcbx_get_common_params(struct qed_hwfn *p_hwfn,
613 struct dcbx_app_priority_feature *p_app,
614 struct dcbx_app_priority_entry *p_tbl,
615 struct dcbx_ets_feature *p_ets,
Sudarsana Reddy Kallurufb9ea8a2016-08-08 21:57:41 -0400616 u32 pfc, struct qed_dcbx_params *p_params, bool ieee)
Sudarsana Reddy Kalluru6ad8c632016-06-08 06:22:10 -0400617{
Sudarsana Reddy Kallurufb9ea8a2016-08-08 21:57:41 -0400618 qed_dcbx_get_app_data(p_hwfn, p_app, p_tbl, p_params, ieee);
Sudarsana Reddy Kalluru6ad8c632016-06-08 06:22:10 -0400619 qed_dcbx_get_ets_data(p_hwfn, p_ets, p_params);
620 qed_dcbx_get_pfc_data(p_hwfn, pfc, p_params);
621}
622
623static void
sudarsana.kalluru@cavium.com270837b2017-04-20 22:31:16 -0700624qed_dcbx_get_local_params(struct qed_hwfn *p_hwfn, struct qed_dcbx_get *params)
Sudarsana Reddy Kalluru6ad8c632016-06-08 06:22:10 -0400625{
626 struct dcbx_features *p_feat;
627
628 p_feat = &p_hwfn->p_dcbx_info->local_admin.features;
629 qed_dcbx_get_common_params(p_hwfn, &p_feat->app,
630 p_feat->app.app_pri_tbl, &p_feat->ets,
Sudarsana Reddy Kallurufb9ea8a2016-08-08 21:57:41 -0400631 p_feat->pfc, &params->local.params, false);
Sudarsana Reddy Kalluru6ad8c632016-06-08 06:22:10 -0400632 params->local.valid = true;
633}
634
635static void
sudarsana.kalluru@cavium.com270837b2017-04-20 22:31:16 -0700636qed_dcbx_get_remote_params(struct qed_hwfn *p_hwfn, struct qed_dcbx_get *params)
Sudarsana Reddy Kalluru6ad8c632016-06-08 06:22:10 -0400637{
638 struct dcbx_features *p_feat;
639
640 p_feat = &p_hwfn->p_dcbx_info->remote.features;
641 qed_dcbx_get_common_params(p_hwfn, &p_feat->app,
642 p_feat->app.app_pri_tbl, &p_feat->ets,
Sudarsana Reddy Kallurufb9ea8a2016-08-08 21:57:41 -0400643 p_feat->pfc, &params->remote.params, false);
Sudarsana Reddy Kalluru6ad8c632016-06-08 06:22:10 -0400644 params->remote.valid = true;
645}
646
647static void
648qed_dcbx_get_operational_params(struct qed_hwfn *p_hwfn,
Sudarsana Reddy Kalluru6ad8c632016-06-08 06:22:10 -0400649 struct qed_dcbx_get *params)
650{
651 struct qed_dcbx_operational_params *p_operational;
652 struct qed_dcbx_results *p_results;
653 struct dcbx_features *p_feat;
654 bool enabled, err;
655 u32 flags;
656 bool val;
657
658 flags = p_hwfn->p_dcbx_info->operational.flags;
659
660 /* If DCBx version is non zero, then negotiation
661 * was successfuly performed
662 */
663 p_operational = &params->operational;
664 enabled = !!(QED_MFW_GET_FIELD(flags, DCBX_CONFIG_VERSION) !=
665 DCBX_CONFIG_VERSION_DISABLED);
666 if (!enabled) {
667 p_operational->enabled = enabled;
668 p_operational->valid = false;
sudarsana.kalluru@cavium.comdfbeb852017-04-20 22:31:18 -0700669 DP_VERBOSE(p_hwfn, QED_MSG_DCB, "Dcbx is disabled\n");
Sudarsana Reddy Kalluru6ad8c632016-06-08 06:22:10 -0400670 return;
671 }
672
673 p_feat = &p_hwfn->p_dcbx_info->operational.features;
674 p_results = &p_hwfn->p_dcbx_info->results;
675
676 val = !!(QED_MFW_GET_FIELD(flags, DCBX_CONFIG_VERSION) ==
677 DCBX_CONFIG_VERSION_IEEE);
678 p_operational->ieee = val;
679 val = !!(QED_MFW_GET_FIELD(flags, DCBX_CONFIG_VERSION) ==
680 DCBX_CONFIG_VERSION_CEE);
681 p_operational->cee = val;
682
683 DP_VERBOSE(p_hwfn, QED_MSG_DCB, "Version support: ieee %d, cee %d\n",
684 p_operational->ieee, p_operational->cee);
685
686 qed_dcbx_get_common_params(p_hwfn, &p_feat->app,
687 p_feat->app.app_pri_tbl, &p_feat->ets,
Sudarsana Reddy Kallurufb9ea8a2016-08-08 21:57:41 -0400688 p_feat->pfc, &params->operational.params,
689 p_operational->ieee);
Sudarsana Reddy Kalluru6ad8c632016-06-08 06:22:10 -0400690 qed_dcbx_get_priority_info(p_hwfn, &p_operational->app_prio, p_results);
691 err = QED_MFW_GET_FIELD(p_feat->app.flags, DCBX_APP_ERROR);
692 p_operational->err = err;
693 p_operational->enabled = enabled;
694 p_operational->valid = true;
695}
696
697static void
698qed_dcbx_get_local_lldp_params(struct qed_hwfn *p_hwfn,
Sudarsana Reddy Kalluru6ad8c632016-06-08 06:22:10 -0400699 struct qed_dcbx_get *params)
700{
701 struct lldp_config_params_s *p_local;
702
703 p_local = &p_hwfn->p_dcbx_info->lldp_local[LLDP_NEAREST_BRIDGE];
704
705 memcpy(params->lldp_local.local_chassis_id, p_local->local_chassis_id,
706 ARRAY_SIZE(p_local->local_chassis_id));
707 memcpy(params->lldp_local.local_port_id, p_local->local_port_id,
708 ARRAY_SIZE(p_local->local_port_id));
709}
710
711static void
712qed_dcbx_get_remote_lldp_params(struct qed_hwfn *p_hwfn,
Sudarsana Reddy Kalluru6ad8c632016-06-08 06:22:10 -0400713 struct qed_dcbx_get *params)
714{
715 struct lldp_status_params_s *p_remote;
716
717 p_remote = &p_hwfn->p_dcbx_info->lldp_remote[LLDP_NEAREST_BRIDGE];
718
719 memcpy(params->lldp_remote.peer_chassis_id, p_remote->peer_chassis_id,
720 ARRAY_SIZE(p_remote->peer_chassis_id));
721 memcpy(params->lldp_remote.peer_port_id, p_remote->peer_port_id,
722 ARRAY_SIZE(p_remote->peer_port_id));
723}
724
725static int
sudarsana.kalluru@cavium.com270837b2017-04-20 22:31:16 -0700726qed_dcbx_get_params(struct qed_hwfn *p_hwfn, struct qed_dcbx_get *p_params,
Sudarsana Reddy Kalluru6ad8c632016-06-08 06:22:10 -0400727 enum qed_mib_read_type type)
728{
729 switch (type) {
730 case QED_DCBX_REMOTE_MIB:
sudarsana.kalluru@cavium.com270837b2017-04-20 22:31:16 -0700731 qed_dcbx_get_remote_params(p_hwfn, p_params);
Sudarsana Reddy Kalluru6ad8c632016-06-08 06:22:10 -0400732 break;
733 case QED_DCBX_LOCAL_MIB:
sudarsana.kalluru@cavium.com270837b2017-04-20 22:31:16 -0700734 qed_dcbx_get_local_params(p_hwfn, p_params);
Sudarsana Reddy Kalluru6ad8c632016-06-08 06:22:10 -0400735 break;
736 case QED_DCBX_OPERATIONAL_MIB:
sudarsana.kalluru@cavium.com270837b2017-04-20 22:31:16 -0700737 qed_dcbx_get_operational_params(p_hwfn, p_params);
Sudarsana Reddy Kalluru6ad8c632016-06-08 06:22:10 -0400738 break;
739 case QED_DCBX_REMOTE_LLDP_MIB:
sudarsana.kalluru@cavium.com270837b2017-04-20 22:31:16 -0700740 qed_dcbx_get_remote_lldp_params(p_hwfn, p_params);
Sudarsana Reddy Kalluru6ad8c632016-06-08 06:22:10 -0400741 break;
742 case QED_DCBX_LOCAL_LLDP_MIB:
sudarsana.kalluru@cavium.com270837b2017-04-20 22:31:16 -0700743 qed_dcbx_get_local_lldp_params(p_hwfn, p_params);
Sudarsana Reddy Kalluru6ad8c632016-06-08 06:22:10 -0400744 break;
745 default:
746 DP_ERR(p_hwfn, "MIB read err, unknown mib type %d\n", type);
747 return -EINVAL;
748 }
749
750 return 0;
751}
Sudarsana Reddy Kalluru6ad8c632016-06-08 06:22:10 -0400752
Sudarsana Reddy Kalluru39651ab2016-05-17 06:44:26 -0400753static int
754qed_dcbx_read_local_lldp_mib(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt)
755{
756 struct qed_dcbx_mib_meta_data data;
757 int rc = 0;
758
759 memset(&data, 0, sizeof(data));
760 data.addr = p_hwfn->mcp_info->port_addr + offsetof(struct public_port,
761 lldp_config_params);
762 data.lldp_local = p_hwfn->p_dcbx_info->lldp_local;
763 data.size = sizeof(struct lldp_config_params_s);
764 qed_memcpy_from(p_hwfn, p_ptt, data.lldp_local, data.addr, data.size);
765
766 return rc;
767}
768
769static int
770qed_dcbx_read_remote_lldp_mib(struct qed_hwfn *p_hwfn,
771 struct qed_ptt *p_ptt,
772 enum qed_mib_read_type type)
773{
774 struct qed_dcbx_mib_meta_data data;
775 int rc = 0;
776
777 memset(&data, 0, sizeof(data));
778 data.addr = p_hwfn->mcp_info->port_addr + offsetof(struct public_port,
779 lldp_status_params);
780 data.lldp_remote = p_hwfn->p_dcbx_info->lldp_remote;
781 data.size = sizeof(struct lldp_status_params_s);
782 rc = qed_dcbx_copy_mib(p_hwfn, p_ptt, &data, type);
783
784 return rc;
785}
786
787static int
788qed_dcbx_read_operational_mib(struct qed_hwfn *p_hwfn,
789 struct qed_ptt *p_ptt,
790 enum qed_mib_read_type type)
791{
792 struct qed_dcbx_mib_meta_data data;
793 int rc = 0;
794
795 memset(&data, 0, sizeof(data));
796 data.addr = p_hwfn->mcp_info->port_addr +
797 offsetof(struct public_port, operational_dcbx_mib);
798 data.mib = &p_hwfn->p_dcbx_info->operational;
799 data.size = sizeof(struct dcbx_mib);
800 rc = qed_dcbx_copy_mib(p_hwfn, p_ptt, &data, type);
801
802 return rc;
803}
804
805static int
806qed_dcbx_read_remote_mib(struct qed_hwfn *p_hwfn,
807 struct qed_ptt *p_ptt, enum qed_mib_read_type type)
808{
809 struct qed_dcbx_mib_meta_data data;
810 int rc = 0;
811
812 memset(&data, 0, sizeof(data));
813 data.addr = p_hwfn->mcp_info->port_addr +
814 offsetof(struct public_port, remote_dcbx_mib);
815 data.mib = &p_hwfn->p_dcbx_info->remote;
816 data.size = sizeof(struct dcbx_mib);
817 rc = qed_dcbx_copy_mib(p_hwfn, p_ptt, &data, type);
818
819 return rc;
820}
821
822static int
823qed_dcbx_read_local_mib(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt)
824{
825 struct qed_dcbx_mib_meta_data data;
826 int rc = 0;
827
828 memset(&data, 0, sizeof(data));
829 data.addr = p_hwfn->mcp_info->port_addr +
830 offsetof(struct public_port, local_admin_dcbx_mib);
831 data.local_admin = &p_hwfn->p_dcbx_info->local_admin;
832 data.size = sizeof(struct dcbx_local_params);
833 qed_memcpy_from(p_hwfn, p_ptt, data.local_admin, data.addr, data.size);
834
835 return rc;
836}
837
838static int qed_dcbx_read_mib(struct qed_hwfn *p_hwfn,
839 struct qed_ptt *p_ptt, enum qed_mib_read_type type)
840{
841 int rc = -EINVAL;
842
843 switch (type) {
844 case QED_DCBX_OPERATIONAL_MIB:
845 rc = qed_dcbx_read_operational_mib(p_hwfn, p_ptt, type);
846 break;
847 case QED_DCBX_REMOTE_MIB:
848 rc = qed_dcbx_read_remote_mib(p_hwfn, p_ptt, type);
849 break;
850 case QED_DCBX_LOCAL_MIB:
851 rc = qed_dcbx_read_local_mib(p_hwfn, p_ptt);
852 break;
853 case QED_DCBX_REMOTE_LLDP_MIB:
854 rc = qed_dcbx_read_remote_lldp_mib(p_hwfn, p_ptt, type);
855 break;
856 case QED_DCBX_LOCAL_LLDP_MIB:
857 rc = qed_dcbx_read_local_lldp_mib(p_hwfn, p_ptt);
858 break;
859 default:
860 DP_ERR(p_hwfn, "MIB read err, unknown mib type %d\n", type);
861 }
862
863 return rc;
864}
865
Arun Easi1e128c82017-02-15 06:28:22 -0800866void qed_dcbx_aen(struct qed_hwfn *hwfn, u32 mib_type)
867{
868 struct qed_common_cb_ops *op = hwfn->cdev->protocol_ops.common;
869 void *cookie = hwfn->cdev->ops_cookie;
870
871 if (cookie && op->dcbx_aen)
872 op->dcbx_aen(cookie, &hwfn->p_dcbx_info->get, mib_type);
873}
874
Sudarsana Reddy Kalluru39651ab2016-05-17 06:44:26 -0400875/* Read updated MIB.
876 * Reconfigure QM and invoke PF update ramrod command if operational MIB
877 * change is detected.
878 */
879int
880qed_dcbx_mib_update_event(struct qed_hwfn *p_hwfn,
881 struct qed_ptt *p_ptt, enum qed_mib_read_type type)
882{
883 int rc = 0;
884
885 rc = qed_dcbx_read_mib(p_hwfn, p_ptt, type);
886 if (rc)
887 return rc;
888
889 if (type == QED_DCBX_OPERATIONAL_MIB) {
890 rc = qed_dcbx_process_mib_info(p_hwfn);
891 if (!rc) {
892 /* reconfigure tcs of QM queues according
893 * to negotiation results
894 */
895 qed_qm_reconf(p_hwfn, p_ptt);
896
897 /* update storm FW with negotiation results */
898 qed_sp_pf_update(p_hwfn);
899 }
900 }
sudarsana.kalluru@cavium.com270837b2017-04-20 22:31:16 -0700901
902 qed_dcbx_get_params(p_hwfn, &p_hwfn->p_dcbx_info->get, type);
Arun Easi1e128c82017-02-15 06:28:22 -0800903 qed_dcbx_aen(p_hwfn, type);
Sudarsana Reddy Kalluru39651ab2016-05-17 06:44:26 -0400904
905 return rc;
906}
907
908int qed_dcbx_info_alloc(struct qed_hwfn *p_hwfn)
909{
Sudarsana Reddy Kalluru39651ab2016-05-17 06:44:26 -0400910 p_hwfn->p_dcbx_info = kzalloc(sizeof(*p_hwfn->p_dcbx_info), GFP_KERNEL);
Joe Perches2591c282016-09-04 14:24:03 -0700911 if (!p_hwfn->p_dcbx_info)
sudarsana.kalluru@cavium.com270837b2017-04-20 22:31:16 -0700912 return -ENOMEM;
Sudarsana Reddy Kalluru39651ab2016-05-17 06:44:26 -0400913
sudarsana.kalluru@cavium.com270837b2017-04-20 22:31:16 -0700914 return 0;
Sudarsana Reddy Kalluru39651ab2016-05-17 06:44:26 -0400915}
916
sudarsana.kalluru@cavium.com270837b2017-04-20 22:31:16 -0700917void qed_dcbx_info_free(struct qed_hwfn *p_hwfn)
Sudarsana Reddy Kalluru39651ab2016-05-17 06:44:26 -0400918{
919 kfree(p_hwfn->p_dcbx_info);
920}
921
922static void qed_dcbx_update_protocol_data(struct protocol_dcb_data *p_data,
923 struct qed_dcbx_results *p_src,
924 enum dcbx_protocol_type type)
925{
926 p_data->dcb_enable_flag = p_src->arr[type].enable;
927 p_data->dcb_priority = p_src->arr[type].priority;
928 p_data->dcb_tc = p_src->arr[type].tc;
929}
930
931/* Set pf update ramrod command params */
932void qed_dcbx_set_pf_update_params(struct qed_dcbx_results *p_src,
933 struct pf_update_ramrod_data *p_dest)
934{
935 struct protocol_dcb_data *p_dcb_data;
936 bool update_flag = false;
937
938 p_dest->pf_id = p_src->pf_id;
939
940 update_flag = p_src->arr[DCBX_PROTOCOL_FCOE].update;
941 p_dest->update_fcoe_dcb_data_flag = update_flag;
942
943 update_flag = p_src->arr[DCBX_PROTOCOL_ROCE].update;
944 p_dest->update_roce_dcb_data_flag = update_flag;
945 update_flag = p_src->arr[DCBX_PROTOCOL_ROCE_V2].update;
946 p_dest->update_roce_dcb_data_flag = update_flag;
947
948 update_flag = p_src->arr[DCBX_PROTOCOL_ISCSI].update;
949 p_dest->update_iscsi_dcb_data_flag = update_flag;
950 update_flag = p_src->arr[DCBX_PROTOCOL_ETH].update;
951 p_dest->update_eth_dcb_data_flag = update_flag;
952
953 p_dcb_data = &p_dest->fcoe_dcb_data;
954 qed_dcbx_update_protocol_data(p_dcb_data, p_src, DCBX_PROTOCOL_FCOE);
955 p_dcb_data = &p_dest->roce_dcb_data;
sudarsana.kalluru@cavium.com449ad502017-04-20 22:31:17 -0700956 qed_dcbx_update_protocol_data(p_dcb_data, p_src, DCBX_PROTOCOL_ROCE);
957 p_dcb_data = &p_dest->rroce_dcb_data;
958 qed_dcbx_update_protocol_data(p_dcb_data, p_src, DCBX_PROTOCOL_ROCE_V2);
Sudarsana Reddy Kalluru39651ab2016-05-17 06:44:26 -0400959 p_dcb_data = &p_dest->iscsi_dcb_data;
960 qed_dcbx_update_protocol_data(p_dcb_data, p_src, DCBX_PROTOCOL_ISCSI);
961 p_dcb_data = &p_dest->eth_dcb_data;
962 qed_dcbx_update_protocol_data(p_dcb_data, p_src, DCBX_PROTOCOL_ETH);
963}
Sudarsana Reddy Kalluru6ad8c632016-06-08 06:22:10 -0400964
965#ifdef CONFIG_DCB
966static int qed_dcbx_query_params(struct qed_hwfn *p_hwfn,
967 struct qed_dcbx_get *p_get,
968 enum qed_mib_read_type type)
969{
970 struct qed_ptt *p_ptt;
971 int rc;
972
Sudarsana Reddy Kalluru5fe118c2016-08-29 08:29:52 -0400973 if (IS_VF(p_hwfn->cdev))
974 return -EINVAL;
975
Sudarsana Reddy Kalluru6ad8c632016-06-08 06:22:10 -0400976 p_ptt = qed_ptt_acquire(p_hwfn);
977 if (!p_ptt)
978 return -EBUSY;
979
980 rc = qed_dcbx_read_mib(p_hwfn, p_ptt, type);
981 if (rc)
982 goto out;
983
sudarsana.kalluru@cavium.com270837b2017-04-20 22:31:16 -0700984 rc = qed_dcbx_get_params(p_hwfn, p_get, type);
Sudarsana Reddy Kalluru6ad8c632016-06-08 06:22:10 -0400985
986out:
987 qed_ptt_release(p_hwfn, p_ptt);
988 return rc;
989}
990
991static void
992qed_dcbx_set_pfc_data(struct qed_hwfn *p_hwfn,
993 u32 *pfc, struct qed_dcbx_params *p_params)
994{
995 u8 pfc_map = 0;
996 int i;
997
sudarsana.kalluru@cavium.com6cf75f12017-04-19 03:19:53 -0700998 *pfc &= ~DCBX_PFC_ERROR_MASK;
999
Sudarsana Reddy Kalluru6ad8c632016-06-08 06:22:10 -04001000 if (p_params->pfc.willing)
1001 *pfc |= DCBX_PFC_WILLING_MASK;
1002 else
1003 *pfc &= ~DCBX_PFC_WILLING_MASK;
1004
1005 if (p_params->pfc.enabled)
1006 *pfc |= DCBX_PFC_ENABLED_MASK;
1007 else
1008 *pfc &= ~DCBX_PFC_ENABLED_MASK;
1009
1010 *pfc &= ~DCBX_PFC_CAPS_MASK;
1011 *pfc |= (u32)p_params->pfc.max_tc << DCBX_PFC_CAPS_SHIFT;
1012
1013 for (i = 0; i < QED_MAX_PFC_PRIORITIES; i++)
1014 if (p_params->pfc.prio[i])
1015 pfc_map |= BIT(i);
1016
Sudarsana Reddy Kalluruc5e801d2016-08-29 08:29:54 -04001017 *pfc &= ~DCBX_PFC_PRI_EN_BITMAP_MASK;
Sudarsana Reddy Kalluru6ad8c632016-06-08 06:22:10 -04001018 *pfc |= (pfc_map << DCBX_PFC_PRI_EN_BITMAP_SHIFT);
1019
1020 DP_VERBOSE(p_hwfn, QED_MSG_DCB, "pfc = 0x%x\n", *pfc);
1021}
1022
1023static void
1024qed_dcbx_set_ets_data(struct qed_hwfn *p_hwfn,
1025 struct dcbx_ets_feature *p_ets,
1026 struct qed_dcbx_params *p_params)
1027{
1028 u8 *bw_map, *tsa_map;
1029 u32 val;
1030 int i;
1031
1032 if (p_params->ets_willing)
1033 p_ets->flags |= DCBX_ETS_WILLING_MASK;
1034 else
1035 p_ets->flags &= ~DCBX_ETS_WILLING_MASK;
1036
1037 if (p_params->ets_cbs)
1038 p_ets->flags |= DCBX_ETS_CBS_MASK;
1039 else
1040 p_ets->flags &= ~DCBX_ETS_CBS_MASK;
1041
1042 if (p_params->ets_enabled)
1043 p_ets->flags |= DCBX_ETS_ENABLED_MASK;
1044 else
1045 p_ets->flags &= ~DCBX_ETS_ENABLED_MASK;
1046
1047 p_ets->flags &= ~DCBX_ETS_MAX_TCS_MASK;
1048 p_ets->flags |= (u32)p_params->max_ets_tc << DCBX_ETS_MAX_TCS_SHIFT;
1049
1050 bw_map = (u8 *)&p_ets->tc_bw_tbl[0];
1051 tsa_map = (u8 *)&p_ets->tc_tsa_tbl[0];
1052 p_ets->pri_tc_tbl[0] = 0;
1053 for (i = 0; i < QED_MAX_PFC_PRIORITIES; i++) {
1054 bw_map[i] = p_params->ets_tc_bw_tbl[i];
1055 tsa_map[i] = p_params->ets_tc_tsa_tbl[i];
1056 /* Copy the priority value to the corresponding 4 bits in the
1057 * traffic class table.
1058 */
1059 val = (((u32)p_params->ets_pri_tc_tbl[i]) << ((7 - i) * 4));
1060 p_ets->pri_tc_tbl[0] |= val;
1061 }
Sudarsana Reddy Kalluru6ad8c632016-06-08 06:22:10 -04001062 for (i = 0; i < 2; i++) {
1063 p_ets->tc_bw_tbl[i] = cpu_to_be32(p_ets->tc_bw_tbl[i]);
1064 p_ets->tc_tsa_tbl[i] = cpu_to_be32(p_ets->tc_tsa_tbl[i]);
1065 }
1066}
1067
1068static void
1069qed_dcbx_set_app_data(struct qed_hwfn *p_hwfn,
1070 struct dcbx_app_priority_feature *p_app,
Sudarsana Reddy Kalluru59bcb792016-08-08 21:57:42 -04001071 struct qed_dcbx_params *p_params, bool ieee)
Sudarsana Reddy Kalluru6ad8c632016-06-08 06:22:10 -04001072{
1073 u32 *entry;
1074 int i;
1075
1076 if (p_params->app_willing)
1077 p_app->flags |= DCBX_APP_WILLING_MASK;
1078 else
1079 p_app->flags &= ~DCBX_APP_WILLING_MASK;
1080
1081 if (p_params->app_valid)
1082 p_app->flags |= DCBX_APP_ENABLED_MASK;
1083 else
1084 p_app->flags &= ~DCBX_APP_ENABLED_MASK;
1085
1086 p_app->flags &= ~DCBX_APP_NUM_ENTRIES_MASK;
1087 p_app->flags |= (u32)p_params->num_app_entries <<
1088 DCBX_APP_NUM_ENTRIES_SHIFT;
1089
1090 for (i = 0; i < DCBX_MAX_APP_PROTOCOL; i++) {
1091 entry = &p_app->app_pri_tbl[i].entry;
Sudarsana Reddy Kalluruc5e801d2016-08-29 08:29:54 -04001092 *entry = 0;
Sudarsana Reddy Kalluru59bcb792016-08-08 21:57:42 -04001093 if (ieee) {
Sudarsana Reddy Kalluru5ec5dfa2016-08-29 08:29:53 -04001094 *entry &= ~(DCBX_APP_SF_IEEE_MASK | DCBX_APP_SF_MASK);
Sudarsana Reddy Kalluru59bcb792016-08-08 21:57:42 -04001095 switch (p_params->app_entry[i].sf_ieee) {
1096 case QED_DCBX_SF_IEEE_ETHTYPE:
1097 *entry |= ((u32)DCBX_APP_SF_IEEE_ETHTYPE <<
1098 DCBX_APP_SF_IEEE_SHIFT);
Sudarsana Reddy Kalluru5ec5dfa2016-08-29 08:29:53 -04001099 *entry |= ((u32)DCBX_APP_SF_ETHTYPE <<
1100 DCBX_APP_SF_SHIFT);
Sudarsana Reddy Kalluru59bcb792016-08-08 21:57:42 -04001101 break;
1102 case QED_DCBX_SF_IEEE_TCP_PORT:
1103 *entry |= ((u32)DCBX_APP_SF_IEEE_TCP_PORT <<
1104 DCBX_APP_SF_IEEE_SHIFT);
Sudarsana Reddy Kalluru5ec5dfa2016-08-29 08:29:53 -04001105 *entry |= ((u32)DCBX_APP_SF_PORT <<
1106 DCBX_APP_SF_SHIFT);
Sudarsana Reddy Kalluru59bcb792016-08-08 21:57:42 -04001107 break;
1108 case QED_DCBX_SF_IEEE_UDP_PORT:
1109 *entry |= ((u32)DCBX_APP_SF_IEEE_UDP_PORT <<
1110 DCBX_APP_SF_IEEE_SHIFT);
Sudarsana Reddy Kalluru5ec5dfa2016-08-29 08:29:53 -04001111 *entry |= ((u32)DCBX_APP_SF_PORT <<
1112 DCBX_APP_SF_SHIFT);
Sudarsana Reddy Kalluru59bcb792016-08-08 21:57:42 -04001113 break;
1114 case QED_DCBX_SF_IEEE_TCP_UDP_PORT:
1115 *entry |= ((u32)DCBX_APP_SF_IEEE_TCP_UDP_PORT <<
1116 DCBX_APP_SF_IEEE_SHIFT);
Sudarsana Reddy Kalluru5ec5dfa2016-08-29 08:29:53 -04001117 *entry |= ((u32)DCBX_APP_SF_PORT <<
1118 DCBX_APP_SF_SHIFT);
Sudarsana Reddy Kalluru59bcb792016-08-08 21:57:42 -04001119 break;
1120 }
1121 } else {
1122 *entry &= ~DCBX_APP_SF_MASK;
1123 if (p_params->app_entry[i].ethtype)
1124 *entry |= ((u32)DCBX_APP_SF_ETHTYPE <<
1125 DCBX_APP_SF_SHIFT);
1126 else
1127 *entry |= ((u32)DCBX_APP_SF_PORT <<
1128 DCBX_APP_SF_SHIFT);
1129 }
1130
Sudarsana Reddy Kalluru6ad8c632016-06-08 06:22:10 -04001131 *entry &= ~DCBX_APP_PROTOCOL_ID_MASK;
1132 *entry |= ((u32)p_params->app_entry[i].proto_id <<
1133 DCBX_APP_PROTOCOL_ID_SHIFT);
1134 *entry &= ~DCBX_APP_PRI_MAP_MASK;
1135 *entry |= ((u32)(p_params->app_entry[i].prio) <<
1136 DCBX_APP_PRI_MAP_SHIFT);
1137 }
1138}
1139
1140static void
1141qed_dcbx_set_local_params(struct qed_hwfn *p_hwfn,
1142 struct dcbx_local_params *local_admin,
1143 struct qed_dcbx_set *params)
1144{
Sudarsana Reddy Kalluru59bcb792016-08-08 21:57:42 -04001145 bool ieee = false;
1146
Sudarsana Reddy Kalluru6ad8c632016-06-08 06:22:10 -04001147 local_admin->flags = 0;
1148 memcpy(&local_admin->features,
1149 &p_hwfn->p_dcbx_info->operational.features,
1150 sizeof(local_admin->features));
1151
Sudarsana Reddy Kalluru59bcb792016-08-08 21:57:42 -04001152 if (params->enabled) {
Sudarsana Reddy Kalluru6ad8c632016-06-08 06:22:10 -04001153 local_admin->config = params->ver_num;
Sudarsana Reddy Kalluru59bcb792016-08-08 21:57:42 -04001154 ieee = !!(params->ver_num & DCBX_CONFIG_VERSION_IEEE);
1155 } else {
Sudarsana Reddy Kalluru6ad8c632016-06-08 06:22:10 -04001156 local_admin->config = DCBX_CONFIG_VERSION_DISABLED;
Sudarsana Reddy Kalluru59bcb792016-08-08 21:57:42 -04001157 }
Sudarsana Reddy Kalluru6ad8c632016-06-08 06:22:10 -04001158
sudarsana.kalluru@cavium.comdfbeb852017-04-20 22:31:18 -07001159 DP_VERBOSE(p_hwfn, QED_MSG_DCB, "Dcbx version = %d\n",
1160 local_admin->config);
1161
Sudarsana Reddy Kalluru6ad8c632016-06-08 06:22:10 -04001162 if (params->override_flags & QED_DCBX_OVERRIDE_PFC_CFG)
1163 qed_dcbx_set_pfc_data(p_hwfn, &local_admin->features.pfc,
1164 &params->config.params);
1165
1166 if (params->override_flags & QED_DCBX_OVERRIDE_ETS_CFG)
1167 qed_dcbx_set_ets_data(p_hwfn, &local_admin->features.ets,
1168 &params->config.params);
1169
1170 if (params->override_flags & QED_DCBX_OVERRIDE_APP_CFG)
1171 qed_dcbx_set_app_data(p_hwfn, &local_admin->features.app,
Sudarsana Reddy Kalluru59bcb792016-08-08 21:57:42 -04001172 &params->config.params, ieee);
Sudarsana Reddy Kalluru6ad8c632016-06-08 06:22:10 -04001173}
1174
1175int qed_dcbx_config_params(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt,
1176 struct qed_dcbx_set *params, bool hw_commit)
1177{
1178 struct dcbx_local_params local_admin;
1179 struct qed_dcbx_mib_meta_data data;
1180 u32 resp = 0, param = 0;
1181 int rc = 0;
1182
1183 if (!hw_commit) {
1184 memcpy(&p_hwfn->p_dcbx_info->set, params,
1185 sizeof(struct qed_dcbx_set));
1186 return 0;
1187 }
1188
1189 /* clear set-parmas cache */
1190 memset(&p_hwfn->p_dcbx_info->set, 0, sizeof(p_hwfn->p_dcbx_info->set));
1191
1192 memset(&local_admin, 0, sizeof(local_admin));
1193 qed_dcbx_set_local_params(p_hwfn, &local_admin, params);
1194
1195 data.addr = p_hwfn->mcp_info->port_addr +
1196 offsetof(struct public_port, local_admin_dcbx_mib);
1197 data.local_admin = &local_admin;
1198 data.size = sizeof(struct dcbx_local_params);
1199 qed_memcpy_to(p_hwfn, p_ptt, data.addr, data.local_admin, data.size);
1200
1201 rc = qed_mcp_cmd(p_hwfn, p_ptt, DRV_MSG_CODE_SET_DCBX,
1202 1 << DRV_MB_PARAM_LLDP_SEND_SHIFT, &resp, &param);
1203 if (rc)
1204 DP_NOTICE(p_hwfn, "Failed to send DCBX update request\n");
1205
1206 return rc;
1207}
1208
1209int qed_dcbx_get_config_params(struct qed_hwfn *p_hwfn,
1210 struct qed_dcbx_set *params)
1211{
1212 struct qed_dcbx_get *dcbx_info;
1213 int rc;
1214
1215 if (p_hwfn->p_dcbx_info->set.config.valid) {
1216 memcpy(params, &p_hwfn->p_dcbx_info->set,
1217 sizeof(struct qed_dcbx_set));
1218 return 0;
1219 }
1220
Wu Fengguang561ed232016-09-01 14:45:12 +08001221 dcbx_info = kzalloc(sizeof(*dcbx_info), GFP_KERNEL);
Joe Perches2591c282016-09-04 14:24:03 -07001222 if (!dcbx_info)
Sudarsana Reddy Kalluru6ad8c632016-06-08 06:22:10 -04001223 return -ENOMEM;
Sudarsana Reddy Kalluru6ad8c632016-06-08 06:22:10 -04001224
Sudarsana Reddy Kalluru15c6de22016-10-21 04:43:44 -04001225 memset(dcbx_info, 0, sizeof(*dcbx_info));
Sudarsana Reddy Kalluru6ad8c632016-06-08 06:22:10 -04001226 rc = qed_dcbx_query_params(p_hwfn, dcbx_info, QED_DCBX_OPERATIONAL_MIB);
1227 if (rc) {
1228 kfree(dcbx_info);
1229 return rc;
1230 }
1231
1232 p_hwfn->p_dcbx_info->set.override_flags = 0;
1233 p_hwfn->p_dcbx_info->set.ver_num = DCBX_CONFIG_VERSION_DISABLED;
1234 if (dcbx_info->operational.cee)
1235 p_hwfn->p_dcbx_info->set.ver_num |= DCBX_CONFIG_VERSION_CEE;
1236 if (dcbx_info->operational.ieee)
1237 p_hwfn->p_dcbx_info->set.ver_num |= DCBX_CONFIG_VERSION_IEEE;
1238
1239 p_hwfn->p_dcbx_info->set.enabled = dcbx_info->operational.enabled;
1240 memcpy(&p_hwfn->p_dcbx_info->set.config.params,
1241 &dcbx_info->operational.params,
1242 sizeof(struct qed_dcbx_admin_params));
1243 p_hwfn->p_dcbx_info->set.config.valid = true;
1244
1245 memcpy(params, &p_hwfn->p_dcbx_info->set, sizeof(struct qed_dcbx_set));
1246
1247 kfree(dcbx_info);
1248
1249 return 0;
1250}
Sudarsana Reddy Kallurua1d8d8a2016-06-08 06:22:11 -04001251
1252static struct qed_dcbx_get *qed_dcbnl_get_dcbx(struct qed_hwfn *hwfn,
1253 enum qed_mib_read_type type)
1254{
1255 struct qed_dcbx_get *dcbx_info;
1256
sudarsana.kalluru@cavium.com62289ba2017-04-19 03:19:54 -07001257 dcbx_info = kmalloc(sizeof(*dcbx_info), GFP_ATOMIC);
Joe Perches2591c282016-09-04 14:24:03 -07001258 if (!dcbx_info)
Sudarsana Reddy Kallurua1d8d8a2016-06-08 06:22:11 -04001259 return NULL;
Sudarsana Reddy Kallurua1d8d8a2016-06-08 06:22:11 -04001260
Sudarsana Reddy Kalluru15c6de22016-10-21 04:43:44 -04001261 memset(dcbx_info, 0, sizeof(*dcbx_info));
Sudarsana Reddy Kallurua1d8d8a2016-06-08 06:22:11 -04001262 if (qed_dcbx_query_params(hwfn, dcbx_info, type)) {
1263 kfree(dcbx_info);
1264 return NULL;
1265 }
1266
1267 if ((type == QED_DCBX_OPERATIONAL_MIB) &&
1268 !dcbx_info->operational.enabled) {
1269 DP_INFO(hwfn, "DCBX is not enabled/operational\n");
1270 kfree(dcbx_info);
1271 return NULL;
1272 }
1273
1274 return dcbx_info;
1275}
1276
1277static u8 qed_dcbnl_getstate(struct qed_dev *cdev)
1278{
1279 struct qed_hwfn *hwfn = QED_LEADING_HWFN(cdev);
1280 struct qed_dcbx_get *dcbx_info;
1281 bool enabled;
1282
1283 dcbx_info = qed_dcbnl_get_dcbx(hwfn, QED_DCBX_OPERATIONAL_MIB);
1284 if (!dcbx_info)
1285 return 0;
1286
1287 enabled = dcbx_info->operational.enabled;
1288 DP_VERBOSE(hwfn, QED_MSG_DCB, "DCB state = %d\n", enabled);
1289 kfree(dcbx_info);
1290
1291 return enabled;
1292}
1293
1294static u8 qed_dcbnl_setstate(struct qed_dev *cdev, u8 state)
1295{
1296 struct qed_hwfn *hwfn = QED_LEADING_HWFN(cdev);
1297 struct qed_dcbx_set dcbx_set;
1298 struct qed_ptt *ptt;
1299 int rc;
1300
1301 DP_VERBOSE(hwfn, QED_MSG_DCB, "DCB state = %d\n", state);
1302
1303 memset(&dcbx_set, 0, sizeof(dcbx_set));
1304 rc = qed_dcbx_get_config_params(hwfn, &dcbx_set);
1305 if (rc)
1306 return 1;
1307
1308 dcbx_set.enabled = !!state;
1309
1310 ptt = qed_ptt_acquire(hwfn);
1311 if (!ptt)
1312 return 1;
1313
1314 rc = qed_dcbx_config_params(hwfn, ptt, &dcbx_set, 0);
1315
1316 qed_ptt_release(hwfn, ptt);
1317
1318 return rc ? 1 : 0;
1319}
1320
1321static void qed_dcbnl_getpgtccfgtx(struct qed_dev *cdev, int tc, u8 *prio_type,
1322 u8 *pgid, u8 *bw_pct, u8 *up_map)
1323{
1324 struct qed_hwfn *hwfn = QED_LEADING_HWFN(cdev);
1325 struct qed_dcbx_get *dcbx_info;
1326
1327 DP_VERBOSE(hwfn, QED_MSG_DCB, "tc = %d\n", tc);
1328 *prio_type = *pgid = *bw_pct = *up_map = 0;
1329 if (tc < 0 || tc >= QED_MAX_PFC_PRIORITIES) {
1330 DP_INFO(hwfn, "Invalid tc %d\n", tc);
1331 return;
1332 }
1333
1334 dcbx_info = qed_dcbnl_get_dcbx(hwfn, QED_DCBX_OPERATIONAL_MIB);
1335 if (!dcbx_info)
1336 return;
1337
1338 *pgid = dcbx_info->operational.params.ets_pri_tc_tbl[tc];
1339 kfree(dcbx_info);
1340}
1341
1342static void qed_dcbnl_getpgbwgcfgtx(struct qed_dev *cdev, int pgid, u8 *bw_pct)
1343{
1344 struct qed_hwfn *hwfn = QED_LEADING_HWFN(cdev);
1345 struct qed_dcbx_get *dcbx_info;
1346
1347 *bw_pct = 0;
1348 DP_VERBOSE(hwfn, QED_MSG_DCB, "pgid = %d\n", pgid);
1349 if (pgid < 0 || pgid >= QED_MAX_PFC_PRIORITIES) {
1350 DP_INFO(hwfn, "Invalid pgid %d\n", pgid);
1351 return;
1352 }
1353
1354 dcbx_info = qed_dcbnl_get_dcbx(hwfn, QED_DCBX_OPERATIONAL_MIB);
1355 if (!dcbx_info)
1356 return;
1357
1358 *bw_pct = dcbx_info->operational.params.ets_tc_bw_tbl[pgid];
1359 DP_VERBOSE(hwfn, QED_MSG_DCB, "bw_pct = %d\n", *bw_pct);
1360 kfree(dcbx_info);
1361}
1362
1363static void qed_dcbnl_getpgtccfgrx(struct qed_dev *cdev, int tc, u8 *prio,
1364 u8 *bwg_id, u8 *bw_pct, u8 *up_map)
1365{
1366 DP_INFO(QED_LEADING_HWFN(cdev), "Rx ETS is not supported\n");
1367 *prio = *bwg_id = *bw_pct = *up_map = 0;
1368}
1369
1370static void qed_dcbnl_getpgbwgcfgrx(struct qed_dev *cdev,
1371 int bwg_id, u8 *bw_pct)
1372{
1373 DP_INFO(QED_LEADING_HWFN(cdev), "Rx ETS is not supported\n");
1374 *bw_pct = 0;
1375}
1376
1377static void qed_dcbnl_getpfccfg(struct qed_dev *cdev,
1378 int priority, u8 *setting)
1379{
1380 struct qed_hwfn *hwfn = QED_LEADING_HWFN(cdev);
1381 struct qed_dcbx_get *dcbx_info;
1382
1383 DP_VERBOSE(hwfn, QED_MSG_DCB, "priority = %d\n", priority);
1384 if (priority < 0 || priority >= QED_MAX_PFC_PRIORITIES) {
1385 DP_INFO(hwfn, "Invalid priority %d\n", priority);
1386 return;
1387 }
1388
1389 dcbx_info = qed_dcbnl_get_dcbx(hwfn, QED_DCBX_OPERATIONAL_MIB);
1390 if (!dcbx_info)
1391 return;
1392
1393 *setting = dcbx_info->operational.params.pfc.prio[priority];
1394 DP_VERBOSE(hwfn, QED_MSG_DCB, "setting = %d\n", *setting);
1395 kfree(dcbx_info);
1396}
1397
1398static void qed_dcbnl_setpfccfg(struct qed_dev *cdev, int priority, u8 setting)
1399{
1400 struct qed_hwfn *hwfn = QED_LEADING_HWFN(cdev);
1401 struct qed_dcbx_set dcbx_set;
1402 struct qed_ptt *ptt;
1403 int rc;
1404
1405 DP_VERBOSE(hwfn, QED_MSG_DCB, "priority = %d setting = %d\n",
1406 priority, setting);
1407 if (priority < 0 || priority >= QED_MAX_PFC_PRIORITIES) {
1408 DP_INFO(hwfn, "Invalid priority %d\n", priority);
1409 return;
1410 }
1411
1412 memset(&dcbx_set, 0, sizeof(dcbx_set));
1413 rc = qed_dcbx_get_config_params(hwfn, &dcbx_set);
1414 if (rc)
1415 return;
1416
1417 dcbx_set.override_flags |= QED_DCBX_OVERRIDE_PFC_CFG;
1418 dcbx_set.config.params.pfc.prio[priority] = !!setting;
1419
1420 ptt = qed_ptt_acquire(hwfn);
1421 if (!ptt)
1422 return;
1423
1424 rc = qed_dcbx_config_params(hwfn, ptt, &dcbx_set, 0);
1425
1426 qed_ptt_release(hwfn, ptt);
1427}
1428
1429static u8 qed_dcbnl_getcap(struct qed_dev *cdev, int capid, u8 *cap)
1430{
1431 struct qed_hwfn *hwfn = QED_LEADING_HWFN(cdev);
1432 struct qed_dcbx_get *dcbx_info;
1433 int rc = 0;
1434
1435 DP_VERBOSE(hwfn, QED_MSG_DCB, "capid = %d\n", capid);
1436 dcbx_info = qed_dcbnl_get_dcbx(hwfn, QED_DCBX_OPERATIONAL_MIB);
1437 if (!dcbx_info)
1438 return 1;
1439
1440 switch (capid) {
1441 case DCB_CAP_ATTR_PG:
1442 case DCB_CAP_ATTR_PFC:
1443 case DCB_CAP_ATTR_UP2TC:
1444 case DCB_CAP_ATTR_GSP:
1445 *cap = true;
1446 break;
1447 case DCB_CAP_ATTR_PG_TCS:
1448 case DCB_CAP_ATTR_PFC_TCS:
1449 *cap = 0x80;
1450 break;
1451 case DCB_CAP_ATTR_DCBX:
1452 *cap = (DCB_CAP_DCBX_LLD_MANAGED | DCB_CAP_DCBX_VER_CEE |
1453 DCB_CAP_DCBX_VER_IEEE);
1454 break;
1455 default:
1456 *cap = false;
1457 rc = 1;
1458 }
1459
1460 DP_VERBOSE(hwfn, QED_MSG_DCB, "id = %d caps = %d\n", capid, *cap);
1461 kfree(dcbx_info);
1462
1463 return rc;
1464}
1465
1466static int qed_dcbnl_getnumtcs(struct qed_dev *cdev, int tcid, u8 *num)
1467{
1468 struct qed_hwfn *hwfn = QED_LEADING_HWFN(cdev);
1469 struct qed_dcbx_get *dcbx_info;
1470 int rc = 0;
1471
1472 DP_VERBOSE(hwfn, QED_MSG_DCB, "tcid = %d\n", tcid);
1473 dcbx_info = qed_dcbnl_get_dcbx(hwfn, QED_DCBX_OPERATIONAL_MIB);
1474 if (!dcbx_info)
1475 return -EINVAL;
1476
1477 switch (tcid) {
1478 case DCB_NUMTCS_ATTR_PG:
1479 *num = dcbx_info->operational.params.max_ets_tc;
1480 break;
1481 case DCB_NUMTCS_ATTR_PFC:
1482 *num = dcbx_info->operational.params.pfc.max_tc;
1483 break;
1484 default:
1485 rc = -EINVAL;
1486 }
1487
1488 kfree(dcbx_info);
1489 DP_VERBOSE(hwfn, QED_MSG_DCB, "numtcs = %d\n", *num);
1490
1491 return rc;
1492}
1493
1494static u8 qed_dcbnl_getpfcstate(struct qed_dev *cdev)
1495{
1496 struct qed_hwfn *hwfn = QED_LEADING_HWFN(cdev);
1497 struct qed_dcbx_get *dcbx_info;
1498 bool enabled;
1499
1500 dcbx_info = qed_dcbnl_get_dcbx(hwfn, QED_DCBX_OPERATIONAL_MIB);
1501 if (!dcbx_info)
1502 return 0;
1503
1504 enabled = dcbx_info->operational.params.pfc.enabled;
1505 DP_VERBOSE(hwfn, QED_MSG_DCB, "pfc state = %d\n", enabled);
1506 kfree(dcbx_info);
1507
1508 return enabled;
1509}
1510
1511static u8 qed_dcbnl_getdcbx(struct qed_dev *cdev)
1512{
1513 struct qed_hwfn *hwfn = QED_LEADING_HWFN(cdev);
1514 struct qed_dcbx_get *dcbx_info;
1515 u8 mode = 0;
1516
1517 dcbx_info = qed_dcbnl_get_dcbx(hwfn, QED_DCBX_OPERATIONAL_MIB);
1518 if (!dcbx_info)
1519 return 0;
1520
1521 if (dcbx_info->operational.enabled)
1522 mode |= DCB_CAP_DCBX_LLD_MANAGED;
1523 if (dcbx_info->operational.ieee)
1524 mode |= DCB_CAP_DCBX_VER_IEEE;
1525 if (dcbx_info->operational.cee)
1526 mode |= DCB_CAP_DCBX_VER_CEE;
1527
1528 DP_VERBOSE(hwfn, QED_MSG_DCB, "dcb mode = %d\n", mode);
1529 kfree(dcbx_info);
1530
1531 return mode;
1532}
1533
1534static void qed_dcbnl_setpgtccfgtx(struct qed_dev *cdev,
1535 int tc,
1536 u8 pri_type, u8 pgid, u8 bw_pct, u8 up_map)
1537{
1538 struct qed_hwfn *hwfn = QED_LEADING_HWFN(cdev);
1539 struct qed_dcbx_set dcbx_set;
1540 struct qed_ptt *ptt;
1541 int rc;
1542
1543 DP_VERBOSE(hwfn, QED_MSG_DCB,
1544 "tc = %d pri_type = %d pgid = %d bw_pct = %d up_map = %d\n",
1545 tc, pri_type, pgid, bw_pct, up_map);
1546
1547 if (tc < 0 || tc >= QED_MAX_PFC_PRIORITIES) {
1548 DP_INFO(hwfn, "Invalid tc %d\n", tc);
1549 return;
1550 }
1551
1552 memset(&dcbx_set, 0, sizeof(dcbx_set));
1553 rc = qed_dcbx_get_config_params(hwfn, &dcbx_set);
1554 if (rc)
1555 return;
1556
1557 dcbx_set.override_flags |= QED_DCBX_OVERRIDE_ETS_CFG;
1558 dcbx_set.config.params.ets_pri_tc_tbl[tc] = pgid;
1559
1560 ptt = qed_ptt_acquire(hwfn);
1561 if (!ptt)
1562 return;
1563
1564 rc = qed_dcbx_config_params(hwfn, ptt, &dcbx_set, 0);
1565
1566 qed_ptt_release(hwfn, ptt);
1567}
1568
1569static void qed_dcbnl_setpgtccfgrx(struct qed_dev *cdev, int prio,
1570 u8 pri_type, u8 pgid, u8 bw_pct, u8 up_map)
1571{
1572 DP_INFO(QED_LEADING_HWFN(cdev), "Rx ETS is not supported\n");
1573}
1574
1575static void qed_dcbnl_setpgbwgcfgtx(struct qed_dev *cdev, int pgid, u8 bw_pct)
1576{
1577 struct qed_hwfn *hwfn = QED_LEADING_HWFN(cdev);
1578 struct qed_dcbx_set dcbx_set;
1579 struct qed_ptt *ptt;
1580 int rc;
1581
1582 DP_VERBOSE(hwfn, QED_MSG_DCB, "pgid = %d bw_pct = %d\n", pgid, bw_pct);
1583 if (pgid < 0 || pgid >= QED_MAX_PFC_PRIORITIES) {
1584 DP_INFO(hwfn, "Invalid pgid %d\n", pgid);
1585 return;
1586 }
1587
1588 memset(&dcbx_set, 0, sizeof(dcbx_set));
1589 rc = qed_dcbx_get_config_params(hwfn, &dcbx_set);
1590 if (rc)
1591 return;
1592
1593 dcbx_set.override_flags |= QED_DCBX_OVERRIDE_ETS_CFG;
1594 dcbx_set.config.params.ets_tc_bw_tbl[pgid] = bw_pct;
1595
1596 ptt = qed_ptt_acquire(hwfn);
1597 if (!ptt)
1598 return;
1599
1600 rc = qed_dcbx_config_params(hwfn, ptt, &dcbx_set, 0);
1601
1602 qed_ptt_release(hwfn, ptt);
1603}
1604
1605static void qed_dcbnl_setpgbwgcfgrx(struct qed_dev *cdev, int pgid, u8 bw_pct)
1606{
1607 DP_INFO(QED_LEADING_HWFN(cdev), "Rx ETS is not supported\n");
1608}
1609
1610static u8 qed_dcbnl_setall(struct qed_dev *cdev)
1611{
1612 struct qed_hwfn *hwfn = QED_LEADING_HWFN(cdev);
1613 struct qed_dcbx_set dcbx_set;
1614 struct qed_ptt *ptt;
1615 int rc;
1616
1617 memset(&dcbx_set, 0, sizeof(dcbx_set));
1618 rc = qed_dcbx_get_config_params(hwfn, &dcbx_set);
1619 if (rc)
1620 return 1;
1621
1622 ptt = qed_ptt_acquire(hwfn);
1623 if (!ptt)
1624 return 1;
1625
1626 rc = qed_dcbx_config_params(hwfn, ptt, &dcbx_set, 1);
1627
1628 qed_ptt_release(hwfn, ptt);
1629
1630 return rc;
1631}
1632
1633static int qed_dcbnl_setnumtcs(struct qed_dev *cdev, int tcid, u8 num)
1634{
1635 struct qed_hwfn *hwfn = QED_LEADING_HWFN(cdev);
1636 struct qed_dcbx_set dcbx_set;
1637 struct qed_ptt *ptt;
1638 int rc;
1639
1640 DP_VERBOSE(hwfn, QED_MSG_DCB, "tcid = %d num = %d\n", tcid, num);
1641 memset(&dcbx_set, 0, sizeof(dcbx_set));
1642 rc = qed_dcbx_get_config_params(hwfn, &dcbx_set);
1643 if (rc)
1644 return 1;
1645
1646 switch (tcid) {
1647 case DCB_NUMTCS_ATTR_PG:
1648 dcbx_set.override_flags |= QED_DCBX_OVERRIDE_ETS_CFG;
1649 dcbx_set.config.params.max_ets_tc = num;
1650 break;
1651 case DCB_NUMTCS_ATTR_PFC:
1652 dcbx_set.override_flags |= QED_DCBX_OVERRIDE_PFC_CFG;
1653 dcbx_set.config.params.pfc.max_tc = num;
1654 break;
1655 default:
1656 DP_INFO(hwfn, "Invalid tcid %d\n", tcid);
1657 return -EINVAL;
1658 }
1659
1660 ptt = qed_ptt_acquire(hwfn);
1661 if (!ptt)
1662 return -EINVAL;
1663
1664 rc = qed_dcbx_config_params(hwfn, ptt, &dcbx_set, 0);
1665
1666 qed_ptt_release(hwfn, ptt);
1667
1668 return 0;
1669}
1670
1671static void qed_dcbnl_setpfcstate(struct qed_dev *cdev, u8 state)
1672{
1673 struct qed_hwfn *hwfn = QED_LEADING_HWFN(cdev);
1674 struct qed_dcbx_set dcbx_set;
1675 struct qed_ptt *ptt;
1676 int rc;
1677
1678 DP_VERBOSE(hwfn, QED_MSG_DCB, "new state = %d\n", state);
1679
1680 memset(&dcbx_set, 0, sizeof(dcbx_set));
1681 rc = qed_dcbx_get_config_params(hwfn, &dcbx_set);
1682 if (rc)
1683 return;
1684
1685 dcbx_set.override_flags |= QED_DCBX_OVERRIDE_PFC_CFG;
1686 dcbx_set.config.params.pfc.enabled = !!state;
1687
1688 ptt = qed_ptt_acquire(hwfn);
1689 if (!ptt)
1690 return;
1691
1692 rc = qed_dcbx_config_params(hwfn, ptt, &dcbx_set, 0);
1693
1694 qed_ptt_release(hwfn, ptt);
1695}
1696
1697static int qed_dcbnl_getapp(struct qed_dev *cdev, u8 idtype, u16 idval)
1698{
1699 struct qed_hwfn *hwfn = QED_LEADING_HWFN(cdev);
1700 struct qed_dcbx_get *dcbx_info;
1701 struct qed_app_entry *entry;
1702 bool ethtype;
1703 u8 prio = 0;
1704 int i;
1705
1706 dcbx_info = qed_dcbnl_get_dcbx(hwfn, QED_DCBX_OPERATIONAL_MIB);
1707 if (!dcbx_info)
1708 return -EINVAL;
1709
1710 ethtype = !!(idtype == DCB_APP_IDTYPE_ETHTYPE);
1711 for (i = 0; i < QED_DCBX_MAX_APP_PROTOCOL; i++) {
1712 entry = &dcbx_info->operational.params.app_entry[i];
1713 if ((entry->ethtype == ethtype) && (entry->proto_id == idval)) {
1714 prio = entry->prio;
1715 break;
1716 }
1717 }
1718
1719 if (i == QED_DCBX_MAX_APP_PROTOCOL) {
1720 DP_ERR(cdev, "App entry (%d, %d) not found\n", idtype, idval);
1721 kfree(dcbx_info);
1722 return -EINVAL;
1723 }
1724
1725 kfree(dcbx_info);
1726
1727 return prio;
1728}
1729
1730static int qed_dcbnl_setapp(struct qed_dev *cdev,
1731 u8 idtype, u16 idval, u8 pri_map)
1732{
1733 struct qed_hwfn *hwfn = QED_LEADING_HWFN(cdev);
1734 struct qed_dcbx_set dcbx_set;
1735 struct qed_app_entry *entry;
1736 struct qed_ptt *ptt;
1737 bool ethtype;
1738 int rc, i;
1739
1740 memset(&dcbx_set, 0, sizeof(dcbx_set));
1741 rc = qed_dcbx_get_config_params(hwfn, &dcbx_set);
1742 if (rc)
1743 return -EINVAL;
1744
1745 ethtype = !!(idtype == DCB_APP_IDTYPE_ETHTYPE);
1746 for (i = 0; i < QED_DCBX_MAX_APP_PROTOCOL; i++) {
1747 entry = &dcbx_set.config.params.app_entry[i];
1748 if ((entry->ethtype == ethtype) && (entry->proto_id == idval))
1749 break;
1750 /* First empty slot */
Sudarsana Reddy Kalluru1d7406ce2016-08-08 21:57:43 -04001751 if (!entry->proto_id) {
1752 dcbx_set.config.params.num_app_entries++;
Sudarsana Reddy Kallurua1d8d8a2016-06-08 06:22:11 -04001753 break;
Sudarsana Reddy Kalluru1d7406ce2016-08-08 21:57:43 -04001754 }
Sudarsana Reddy Kallurua1d8d8a2016-06-08 06:22:11 -04001755 }
1756
1757 if (i == QED_DCBX_MAX_APP_PROTOCOL) {
1758 DP_ERR(cdev, "App table is full\n");
1759 return -EBUSY;
1760 }
1761
1762 dcbx_set.override_flags |= QED_DCBX_OVERRIDE_APP_CFG;
1763 dcbx_set.config.params.app_entry[i].ethtype = ethtype;
1764 dcbx_set.config.params.app_entry[i].proto_id = idval;
1765 dcbx_set.config.params.app_entry[i].prio = pri_map;
1766
1767 ptt = qed_ptt_acquire(hwfn);
1768 if (!ptt)
1769 return -EBUSY;
1770
1771 rc = qed_dcbx_config_params(hwfn, ptt, &dcbx_set, 0);
1772
1773 qed_ptt_release(hwfn, ptt);
1774
1775 return rc;
1776}
1777
1778static u8 qed_dcbnl_setdcbx(struct qed_dev *cdev, u8 mode)
1779{
1780 struct qed_hwfn *hwfn = QED_LEADING_HWFN(cdev);
1781 struct qed_dcbx_set dcbx_set;
1782 struct qed_ptt *ptt;
1783 int rc;
1784
1785 DP_VERBOSE(hwfn, QED_MSG_DCB, "new mode = %x\n", mode);
1786
1787 if (!(mode & DCB_CAP_DCBX_VER_IEEE) && !(mode & DCB_CAP_DCBX_VER_CEE)) {
1788 DP_INFO(hwfn, "Allowed mode is cee, ieee or both\n");
1789 return 1;
1790 }
1791
1792 memset(&dcbx_set, 0, sizeof(dcbx_set));
1793 rc = qed_dcbx_get_config_params(hwfn, &dcbx_set);
1794 if (rc)
1795 return 1;
1796
1797 dcbx_set.ver_num = 0;
1798 if (mode & DCB_CAP_DCBX_VER_CEE) {
1799 dcbx_set.ver_num |= DCBX_CONFIG_VERSION_CEE;
1800 dcbx_set.enabled = true;
1801 }
1802
1803 if (mode & DCB_CAP_DCBX_VER_IEEE) {
1804 dcbx_set.ver_num |= DCBX_CONFIG_VERSION_IEEE;
1805 dcbx_set.enabled = true;
1806 }
1807
1808 ptt = qed_ptt_acquire(hwfn);
1809 if (!ptt)
1810 return 1;
1811
1812 rc = qed_dcbx_config_params(hwfn, ptt, &dcbx_set, 0);
1813
1814 qed_ptt_release(hwfn, ptt);
1815
1816 return 0;
1817}
1818
1819static u8 qed_dcbnl_getfeatcfg(struct qed_dev *cdev, int featid, u8 *flags)
1820{
1821 struct qed_hwfn *hwfn = QED_LEADING_HWFN(cdev);
1822 struct qed_dcbx_get *dcbx_info;
1823
1824 DP_VERBOSE(hwfn, QED_MSG_DCB, "Feature id = %d\n", featid);
1825 dcbx_info = qed_dcbnl_get_dcbx(hwfn, QED_DCBX_OPERATIONAL_MIB);
1826 if (!dcbx_info)
1827 return 1;
1828
1829 *flags = 0;
1830 switch (featid) {
1831 case DCB_FEATCFG_ATTR_PG:
1832 if (dcbx_info->operational.params.ets_enabled)
1833 *flags = DCB_FEATCFG_ENABLE;
1834 else
1835 *flags = DCB_FEATCFG_ERROR;
1836 break;
1837 case DCB_FEATCFG_ATTR_PFC:
1838 if (dcbx_info->operational.params.pfc.enabled)
1839 *flags = DCB_FEATCFG_ENABLE;
1840 else
1841 *flags = DCB_FEATCFG_ERROR;
1842 break;
1843 case DCB_FEATCFG_ATTR_APP:
1844 if (dcbx_info->operational.params.app_valid)
1845 *flags = DCB_FEATCFG_ENABLE;
1846 else
1847 *flags = DCB_FEATCFG_ERROR;
1848 break;
1849 default:
1850 DP_INFO(hwfn, "Invalid feature-ID %d\n", featid);
1851 kfree(dcbx_info);
1852 return 1;
1853 }
1854
1855 DP_VERBOSE(hwfn, QED_MSG_DCB, "flags = %d\n", *flags);
1856 kfree(dcbx_info);
1857
1858 return 0;
1859}
1860
1861static u8 qed_dcbnl_setfeatcfg(struct qed_dev *cdev, int featid, u8 flags)
1862{
1863 struct qed_hwfn *hwfn = QED_LEADING_HWFN(cdev);
1864 struct qed_dcbx_set dcbx_set;
1865 bool enabled, willing;
1866 struct qed_ptt *ptt;
1867 int rc;
1868
1869 DP_VERBOSE(hwfn, QED_MSG_DCB, "featid = %d flags = %d\n",
1870 featid, flags);
1871 memset(&dcbx_set, 0, sizeof(dcbx_set));
1872 rc = qed_dcbx_get_config_params(hwfn, &dcbx_set);
1873 if (rc)
1874 return 1;
1875
1876 enabled = !!(flags & DCB_FEATCFG_ENABLE);
1877 willing = !!(flags & DCB_FEATCFG_WILLING);
1878 switch (featid) {
1879 case DCB_FEATCFG_ATTR_PG:
1880 dcbx_set.override_flags |= QED_DCBX_OVERRIDE_ETS_CFG;
1881 dcbx_set.config.params.ets_enabled = enabled;
1882 dcbx_set.config.params.ets_willing = willing;
1883 break;
1884 case DCB_FEATCFG_ATTR_PFC:
1885 dcbx_set.override_flags |= QED_DCBX_OVERRIDE_PFC_CFG;
1886 dcbx_set.config.params.pfc.enabled = enabled;
1887 dcbx_set.config.params.pfc.willing = willing;
1888 break;
1889 case DCB_FEATCFG_ATTR_APP:
1890 dcbx_set.override_flags |= QED_DCBX_OVERRIDE_APP_CFG;
1891 dcbx_set.config.params.app_willing = willing;
1892 break;
1893 default:
1894 DP_INFO(hwfn, "Invalid feature-ID %d\n", featid);
1895 return 1;
1896 }
1897
1898 ptt = qed_ptt_acquire(hwfn);
1899 if (!ptt)
1900 return 1;
1901
1902 rc = qed_dcbx_config_params(hwfn, ptt, &dcbx_set, 0);
1903
1904 qed_ptt_release(hwfn, ptt);
1905
1906 return 0;
1907}
1908
1909static int qed_dcbnl_peer_getappinfo(struct qed_dev *cdev,
1910 struct dcb_peer_app_info *info,
1911 u16 *app_count)
1912{
1913 struct qed_hwfn *hwfn = QED_LEADING_HWFN(cdev);
1914 struct qed_dcbx_get *dcbx_info;
1915
1916 dcbx_info = qed_dcbnl_get_dcbx(hwfn, QED_DCBX_REMOTE_MIB);
1917 if (!dcbx_info)
1918 return -EINVAL;
1919
1920 info->willing = dcbx_info->remote.params.app_willing;
1921 info->error = dcbx_info->remote.params.app_error;
1922 *app_count = dcbx_info->remote.params.num_app_entries;
1923 kfree(dcbx_info);
1924
1925 return 0;
1926}
1927
1928static int qed_dcbnl_peer_getapptable(struct qed_dev *cdev,
1929 struct dcb_app *table)
1930{
1931 struct qed_hwfn *hwfn = QED_LEADING_HWFN(cdev);
1932 struct qed_dcbx_get *dcbx_info;
1933 int i;
1934
1935 dcbx_info = qed_dcbnl_get_dcbx(hwfn, QED_DCBX_REMOTE_MIB);
1936 if (!dcbx_info)
1937 return -EINVAL;
1938
1939 for (i = 0; i < dcbx_info->remote.params.num_app_entries; i++) {
1940 if (dcbx_info->remote.params.app_entry[i].ethtype)
1941 table[i].selector = DCB_APP_IDTYPE_ETHTYPE;
1942 else
1943 table[i].selector = DCB_APP_IDTYPE_PORTNUM;
1944 table[i].priority = dcbx_info->remote.params.app_entry[i].prio;
1945 table[i].protocol =
1946 dcbx_info->remote.params.app_entry[i].proto_id;
1947 }
1948
1949 kfree(dcbx_info);
1950
1951 return 0;
1952}
1953
1954static int qed_dcbnl_cee_peer_getpfc(struct qed_dev *cdev, struct cee_pfc *pfc)
1955{
1956 struct qed_hwfn *hwfn = QED_LEADING_HWFN(cdev);
1957 struct qed_dcbx_get *dcbx_info;
1958 int i;
1959
1960 dcbx_info = qed_dcbnl_get_dcbx(hwfn, QED_DCBX_REMOTE_MIB);
1961 if (!dcbx_info)
1962 return -EINVAL;
1963
1964 for (i = 0; i < QED_MAX_PFC_PRIORITIES; i++)
1965 if (dcbx_info->remote.params.pfc.prio[i])
1966 pfc->pfc_en |= BIT(i);
1967
1968 pfc->tcs_supported = dcbx_info->remote.params.pfc.max_tc;
1969 DP_VERBOSE(hwfn, QED_MSG_DCB, "pfc state = %d tcs_supported = %d\n",
1970 pfc->pfc_en, pfc->tcs_supported);
1971 kfree(dcbx_info);
1972
1973 return 0;
1974}
1975
1976static int qed_dcbnl_cee_peer_getpg(struct qed_dev *cdev, struct cee_pg *pg)
1977{
1978 struct qed_hwfn *hwfn = QED_LEADING_HWFN(cdev);
1979 struct qed_dcbx_get *dcbx_info;
1980 int i;
1981
1982 dcbx_info = qed_dcbnl_get_dcbx(hwfn, QED_DCBX_REMOTE_MIB);
1983 if (!dcbx_info)
1984 return -EINVAL;
1985
1986 pg->willing = dcbx_info->remote.params.ets_willing;
1987 for (i = 0; i < QED_MAX_PFC_PRIORITIES; i++) {
1988 pg->pg_bw[i] = dcbx_info->remote.params.ets_tc_bw_tbl[i];
1989 pg->prio_pg[i] = dcbx_info->remote.params.ets_pri_tc_tbl[i];
1990 }
1991
1992 DP_VERBOSE(hwfn, QED_MSG_DCB, "willing = %d", pg->willing);
1993 kfree(dcbx_info);
1994
1995 return 0;
1996}
1997
1998static int qed_dcbnl_get_ieee_pfc(struct qed_dev *cdev,
1999 struct ieee_pfc *pfc, bool remote)
2000{
2001 struct qed_hwfn *hwfn = QED_LEADING_HWFN(cdev);
2002 struct qed_dcbx_params *params;
2003 struct qed_dcbx_get *dcbx_info;
2004 int rc, i;
2005
2006 dcbx_info = qed_dcbnl_get_dcbx(hwfn, QED_DCBX_OPERATIONAL_MIB);
2007 if (!dcbx_info)
2008 return -EINVAL;
2009
2010 if (!dcbx_info->operational.ieee) {
2011 DP_INFO(hwfn, "DCBX is not enabled/operational in IEEE mode\n");
Wei Yongjun02ee9b12016-08-11 23:29:54 +00002012 kfree(dcbx_info);
Sudarsana Reddy Kallurua1d8d8a2016-06-08 06:22:11 -04002013 return -EINVAL;
2014 }
2015
2016 if (remote) {
2017 memset(dcbx_info, 0, sizeof(*dcbx_info));
2018 rc = qed_dcbx_query_params(hwfn, dcbx_info,
2019 QED_DCBX_REMOTE_MIB);
2020 if (rc) {
2021 kfree(dcbx_info);
2022 return -EINVAL;
2023 }
2024
2025 params = &dcbx_info->remote.params;
2026 } else {
2027 params = &dcbx_info->operational.params;
2028 }
2029
2030 pfc->pfc_cap = params->pfc.max_tc;
2031 pfc->pfc_en = 0;
2032 for (i = 0; i < QED_MAX_PFC_PRIORITIES; i++)
2033 if (params->pfc.prio[i])
2034 pfc->pfc_en |= BIT(i);
2035
2036 kfree(dcbx_info);
2037
2038 return 0;
2039}
2040
2041static int qed_dcbnl_ieee_getpfc(struct qed_dev *cdev, struct ieee_pfc *pfc)
2042{
2043 return qed_dcbnl_get_ieee_pfc(cdev, pfc, false);
2044}
2045
2046static int qed_dcbnl_ieee_setpfc(struct qed_dev *cdev, struct ieee_pfc *pfc)
2047{
2048 struct qed_hwfn *hwfn = QED_LEADING_HWFN(cdev);
2049 struct qed_dcbx_get *dcbx_info;
2050 struct qed_dcbx_set dcbx_set;
2051 struct qed_ptt *ptt;
2052 int rc, i;
2053
2054 dcbx_info = qed_dcbnl_get_dcbx(hwfn, QED_DCBX_OPERATIONAL_MIB);
2055 if (!dcbx_info)
2056 return -EINVAL;
2057
2058 if (!dcbx_info->operational.ieee) {
2059 DP_INFO(hwfn, "DCBX is not enabled/operational in IEEE mode\n");
2060 kfree(dcbx_info);
2061 return -EINVAL;
2062 }
2063
2064 kfree(dcbx_info);
2065
2066 memset(&dcbx_set, 0, sizeof(dcbx_set));
2067 rc = qed_dcbx_get_config_params(hwfn, &dcbx_set);
2068 if (rc)
2069 return -EINVAL;
2070
2071 dcbx_set.override_flags |= QED_DCBX_OVERRIDE_PFC_CFG;
2072 for (i = 0; i < QED_MAX_PFC_PRIORITIES; i++)
2073 dcbx_set.config.params.pfc.prio[i] = !!(pfc->pfc_en & BIT(i));
2074
sudarsana.kalluru@cavium.comc0c5dbe2017-04-19 03:19:55 -07002075 dcbx_set.config.params.pfc.max_tc = pfc->pfc_cap;
2076
Sudarsana Reddy Kallurua1d8d8a2016-06-08 06:22:11 -04002077 ptt = qed_ptt_acquire(hwfn);
2078 if (!ptt)
2079 return -EINVAL;
2080
2081 rc = qed_dcbx_config_params(hwfn, ptt, &dcbx_set, 0);
2082
2083 qed_ptt_release(hwfn, ptt);
2084
2085 return rc;
2086}
2087
2088static int qed_dcbnl_get_ieee_ets(struct qed_dev *cdev,
2089 struct ieee_ets *ets, bool remote)
2090{
2091 struct qed_hwfn *hwfn = QED_LEADING_HWFN(cdev);
2092 struct qed_dcbx_get *dcbx_info;
2093 struct qed_dcbx_params *params;
2094 int rc;
2095
2096 dcbx_info = qed_dcbnl_get_dcbx(hwfn, QED_DCBX_OPERATIONAL_MIB);
2097 if (!dcbx_info)
2098 return -EINVAL;
2099
2100 if (!dcbx_info->operational.ieee) {
2101 DP_INFO(hwfn, "DCBX is not enabled/operational in IEEE mode\n");
2102 kfree(dcbx_info);
2103 return -EINVAL;
2104 }
2105
2106 if (remote) {
2107 memset(dcbx_info, 0, sizeof(*dcbx_info));
2108 rc = qed_dcbx_query_params(hwfn, dcbx_info,
2109 QED_DCBX_REMOTE_MIB);
2110 if (rc) {
2111 kfree(dcbx_info);
2112 return -EINVAL;
2113 }
2114
2115 params = &dcbx_info->remote.params;
2116 } else {
2117 params = &dcbx_info->operational.params;
2118 }
2119
2120 ets->ets_cap = params->max_ets_tc;
2121 ets->willing = params->ets_willing;
2122 ets->cbs = params->ets_cbs;
2123 memcpy(ets->tc_tx_bw, params->ets_tc_bw_tbl, sizeof(ets->tc_tx_bw));
2124 memcpy(ets->tc_tsa, params->ets_tc_tsa_tbl, sizeof(ets->tc_tsa));
2125 memcpy(ets->prio_tc, params->ets_pri_tc_tbl, sizeof(ets->prio_tc));
2126 kfree(dcbx_info);
2127
2128 return 0;
2129}
2130
2131static int qed_dcbnl_ieee_getets(struct qed_dev *cdev, struct ieee_ets *ets)
2132{
2133 return qed_dcbnl_get_ieee_ets(cdev, ets, false);
2134}
2135
2136static int qed_dcbnl_ieee_setets(struct qed_dev *cdev, struct ieee_ets *ets)
2137{
2138 struct qed_hwfn *hwfn = QED_LEADING_HWFN(cdev);
2139 struct qed_dcbx_get *dcbx_info;
2140 struct qed_dcbx_set dcbx_set;
2141 struct qed_ptt *ptt;
2142 int rc;
2143
2144 dcbx_info = qed_dcbnl_get_dcbx(hwfn, QED_DCBX_OPERATIONAL_MIB);
2145 if (!dcbx_info)
2146 return -EINVAL;
2147
2148 if (!dcbx_info->operational.ieee) {
2149 DP_INFO(hwfn, "DCBX is not enabled/operational in IEEE mode\n");
2150 kfree(dcbx_info);
2151 return -EINVAL;
2152 }
2153
2154 kfree(dcbx_info);
2155
2156 memset(&dcbx_set, 0, sizeof(dcbx_set));
2157 rc = qed_dcbx_get_config_params(hwfn, &dcbx_set);
2158 if (rc)
2159 return -EINVAL;
2160
2161 dcbx_set.override_flags |= QED_DCBX_OVERRIDE_ETS_CFG;
2162 dcbx_set.config.params.max_ets_tc = ets->ets_cap;
2163 dcbx_set.config.params.ets_willing = ets->willing;
2164 dcbx_set.config.params.ets_cbs = ets->cbs;
2165 memcpy(dcbx_set.config.params.ets_tc_bw_tbl, ets->tc_tx_bw,
2166 sizeof(ets->tc_tx_bw));
2167 memcpy(dcbx_set.config.params.ets_tc_tsa_tbl, ets->tc_tsa,
2168 sizeof(ets->tc_tsa));
2169 memcpy(dcbx_set.config.params.ets_pri_tc_tbl, ets->prio_tc,
2170 sizeof(ets->prio_tc));
2171
2172 ptt = qed_ptt_acquire(hwfn);
2173 if (!ptt)
2174 return -EINVAL;
2175
2176 rc = qed_dcbx_config_params(hwfn, ptt, &dcbx_set, 0);
2177
2178 qed_ptt_release(hwfn, ptt);
2179
2180 return rc;
2181}
2182
Baoyou Xieba569472016-09-09 09:21:15 +08002183static int
2184qed_dcbnl_ieee_peer_getets(struct qed_dev *cdev, struct ieee_ets *ets)
Sudarsana Reddy Kallurua1d8d8a2016-06-08 06:22:11 -04002185{
2186 return qed_dcbnl_get_ieee_ets(cdev, ets, true);
2187}
2188
Baoyou Xieba569472016-09-09 09:21:15 +08002189static int
2190qed_dcbnl_ieee_peer_getpfc(struct qed_dev *cdev, struct ieee_pfc *pfc)
Sudarsana Reddy Kallurua1d8d8a2016-06-08 06:22:11 -04002191{
2192 return qed_dcbnl_get_ieee_pfc(cdev, pfc, true);
2193}
2194
Baoyou Xieba569472016-09-09 09:21:15 +08002195static int qed_dcbnl_ieee_getapp(struct qed_dev *cdev, struct dcb_app *app)
Sudarsana Reddy Kallurua1d8d8a2016-06-08 06:22:11 -04002196{
2197 struct qed_hwfn *hwfn = QED_LEADING_HWFN(cdev);
2198 struct qed_dcbx_get *dcbx_info;
2199 struct qed_app_entry *entry;
2200 bool ethtype;
2201 u8 prio = 0;
2202 int i;
2203
2204 dcbx_info = qed_dcbnl_get_dcbx(hwfn, QED_DCBX_OPERATIONAL_MIB);
2205 if (!dcbx_info)
2206 return -EINVAL;
2207
2208 if (!dcbx_info->operational.ieee) {
2209 DP_INFO(hwfn, "DCBX is not enabled/operational in IEEE mode\n");
2210 kfree(dcbx_info);
2211 return -EINVAL;
2212 }
2213
2214 /* ieee defines the selector field value for ethertype to be 1 */
2215 ethtype = !!((app->selector - 1) == DCB_APP_IDTYPE_ETHTYPE);
2216 for (i = 0; i < QED_DCBX_MAX_APP_PROTOCOL; i++) {
2217 entry = &dcbx_info->operational.params.app_entry[i];
2218 if ((entry->ethtype == ethtype) &&
2219 (entry->proto_id == app->protocol)) {
2220 prio = entry->prio;
2221 break;
2222 }
2223 }
2224
2225 if (i == QED_DCBX_MAX_APP_PROTOCOL) {
2226 DP_ERR(cdev, "App entry (%d, %d) not found\n", app->selector,
2227 app->protocol);
2228 kfree(dcbx_info);
2229 return -EINVAL;
2230 }
2231
2232 app->priority = ffs(prio) - 1;
2233
2234 kfree(dcbx_info);
2235
2236 return 0;
2237}
2238
Baoyou Xieba569472016-09-09 09:21:15 +08002239static int qed_dcbnl_ieee_setapp(struct qed_dev *cdev, struct dcb_app *app)
Sudarsana Reddy Kallurua1d8d8a2016-06-08 06:22:11 -04002240{
2241 struct qed_hwfn *hwfn = QED_LEADING_HWFN(cdev);
2242 struct qed_dcbx_get *dcbx_info;
2243 struct qed_dcbx_set dcbx_set;
2244 struct qed_app_entry *entry;
2245 struct qed_ptt *ptt;
2246 bool ethtype;
2247 int rc, i;
2248
2249 if (app->priority < 0 || app->priority >= QED_MAX_PFC_PRIORITIES) {
2250 DP_INFO(hwfn, "Invalid priority %d\n", app->priority);
2251 return -EINVAL;
2252 }
2253
2254 dcbx_info = qed_dcbnl_get_dcbx(hwfn, QED_DCBX_OPERATIONAL_MIB);
2255 if (!dcbx_info)
2256 return -EINVAL;
2257
2258 if (!dcbx_info->operational.ieee) {
2259 DP_INFO(hwfn, "DCBX is not enabled/operational in IEEE mode\n");
2260 kfree(dcbx_info);
2261 return -EINVAL;
2262 }
2263
2264 kfree(dcbx_info);
2265
2266 memset(&dcbx_set, 0, sizeof(dcbx_set));
2267 rc = qed_dcbx_get_config_params(hwfn, &dcbx_set);
2268 if (rc)
2269 return -EINVAL;
2270
2271 /* ieee defines the selector field value for ethertype to be 1 */
2272 ethtype = !!((app->selector - 1) == DCB_APP_IDTYPE_ETHTYPE);
2273 for (i = 0; i < QED_DCBX_MAX_APP_PROTOCOL; i++) {
2274 entry = &dcbx_set.config.params.app_entry[i];
2275 if ((entry->ethtype == ethtype) &&
2276 (entry->proto_id == app->protocol))
2277 break;
2278 /* First empty slot */
Sudarsana Reddy Kalluru1d7406ce2016-08-08 21:57:43 -04002279 if (!entry->proto_id) {
2280 dcbx_set.config.params.num_app_entries++;
Sudarsana Reddy Kallurua1d8d8a2016-06-08 06:22:11 -04002281 break;
Sudarsana Reddy Kalluru1d7406ce2016-08-08 21:57:43 -04002282 }
Sudarsana Reddy Kallurua1d8d8a2016-06-08 06:22:11 -04002283 }
2284
2285 if (i == QED_DCBX_MAX_APP_PROTOCOL) {
2286 DP_ERR(cdev, "App table is full\n");
2287 return -EBUSY;
2288 }
2289
2290 dcbx_set.override_flags |= QED_DCBX_OVERRIDE_APP_CFG;
2291 dcbx_set.config.params.app_entry[i].ethtype = ethtype;
2292 dcbx_set.config.params.app_entry[i].proto_id = app->protocol;
2293 dcbx_set.config.params.app_entry[i].prio = BIT(app->priority);
2294
2295 ptt = qed_ptt_acquire(hwfn);
2296 if (!ptt)
2297 return -EBUSY;
2298
2299 rc = qed_dcbx_config_params(hwfn, ptt, &dcbx_set, 0);
2300
2301 qed_ptt_release(hwfn, ptt);
2302
2303 return rc;
2304}
2305
2306const struct qed_eth_dcbnl_ops qed_dcbnl_ops_pass = {
2307 .getstate = qed_dcbnl_getstate,
2308 .setstate = qed_dcbnl_setstate,
2309 .getpgtccfgtx = qed_dcbnl_getpgtccfgtx,
2310 .getpgbwgcfgtx = qed_dcbnl_getpgbwgcfgtx,
2311 .getpgtccfgrx = qed_dcbnl_getpgtccfgrx,
2312 .getpgbwgcfgrx = qed_dcbnl_getpgbwgcfgrx,
2313 .getpfccfg = qed_dcbnl_getpfccfg,
2314 .setpfccfg = qed_dcbnl_setpfccfg,
2315 .getcap = qed_dcbnl_getcap,
2316 .getnumtcs = qed_dcbnl_getnumtcs,
2317 .getpfcstate = qed_dcbnl_getpfcstate,
2318 .getdcbx = qed_dcbnl_getdcbx,
2319 .setpgtccfgtx = qed_dcbnl_setpgtccfgtx,
2320 .setpgtccfgrx = qed_dcbnl_setpgtccfgrx,
2321 .setpgbwgcfgtx = qed_dcbnl_setpgbwgcfgtx,
2322 .setpgbwgcfgrx = qed_dcbnl_setpgbwgcfgrx,
2323 .setall = qed_dcbnl_setall,
2324 .setnumtcs = qed_dcbnl_setnumtcs,
2325 .setpfcstate = qed_dcbnl_setpfcstate,
2326 .setapp = qed_dcbnl_setapp,
2327 .setdcbx = qed_dcbnl_setdcbx,
2328 .setfeatcfg = qed_dcbnl_setfeatcfg,
2329 .getfeatcfg = qed_dcbnl_getfeatcfg,
2330 .getapp = qed_dcbnl_getapp,
2331 .peer_getappinfo = qed_dcbnl_peer_getappinfo,
2332 .peer_getapptable = qed_dcbnl_peer_getapptable,
2333 .cee_peer_getpfc = qed_dcbnl_cee_peer_getpfc,
2334 .cee_peer_getpg = qed_dcbnl_cee_peer_getpg,
2335 .ieee_getpfc = qed_dcbnl_ieee_getpfc,
2336 .ieee_setpfc = qed_dcbnl_ieee_setpfc,
2337 .ieee_getets = qed_dcbnl_ieee_getets,
2338 .ieee_setets = qed_dcbnl_ieee_setets,
2339 .ieee_peer_getpfc = qed_dcbnl_ieee_peer_getpfc,
2340 .ieee_peer_getets = qed_dcbnl_ieee_peer_getets,
2341 .ieee_getapp = qed_dcbnl_ieee_getapp,
2342 .ieee_setapp = qed_dcbnl_ieee_setapp,
2343};
2344
Sudarsana Reddy Kalluru6ad8c632016-06-08 06:22:10 -04002345#endif