blob: e2a62c091b80aea09ef101dc7757f5b24bf926b9 [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[] = {
sudarsana.kalluru@cavium.comc8fcd132017-04-24 20:59:10 -070067 {DCBX_PROTOCOL_ISCSI, "ISCSI", QED_PCI_ISCSI},
68 {DCBX_PROTOCOL_FCOE, "FCOE", QED_PCI_FCOE},
69 {DCBX_PROTOCOL_ROCE, "ROCE", QED_PCI_ETH_ROCE},
70 {DCBX_PROTOCOL_ROCE_V2, "ROCE_V2", QED_PCI_ETH_ROCE},
71 {DCBX_PROTOCOL_ETH, "ETH", QED_PCI_ETH},
Sudarsana Reddy Kalluru39651ab2016-05-17 06:44:26 -040072};
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,
Sudarsana Reddy Kalluru39651ab2016-05-17 06:44:26 -0400194 u8 prio,
195 u8 tc,
196 enum dcbx_protocol_type type,
197 enum qed_pci_personality personality)
198{
199 /* PF update ramrod data */
Sudarsana Reddy Kalluru39651ab2016-05-17 06:44:26 -0400200 p_data->arr[type].enable = enable;
201 p_data->arr[type].priority = prio;
202 p_data->arr[type].tc = tc;
Sudarsana Reddy Kallurudfc268f2017-05-29 09:53:06 +0300203 if (enable)
204 p_data->arr[type].update = UPDATE_DCB;
205 else
206 p_data->arr[type].update = DONT_UPDATE_DCB_DSCP;
Sudarsana Reddy Kalluru39651ab2016-05-17 06:44:26 -0400207
208 /* QM reconf data */
Ariel Eliorb5a9ee72017-04-03 12:21:09 +0300209 if (p_info->personality == personality)
210 p_info->offload_tc = tc;
Sudarsana Reddy Kalluru39651ab2016-05-17 06:44:26 -0400211}
212
213/* Update app protocol data and hw_info fields with the TLV info */
214static void
215qed_dcbx_update_app_info(struct qed_dcbx_results *p_data,
216 struct qed_hwfn *p_hwfn,
217 bool enable,
Sudarsana Reddy Kalluru39651ab2016-05-17 06:44:26 -0400218 u8 prio, u8 tc, enum dcbx_protocol_type type)
219{
220 struct qed_hw_info *p_info = &p_hwfn->hw_info;
221 enum qed_pci_personality personality;
222 enum dcbx_protocol_type id;
223 char *name;
224 int i;
225
226 for (i = 0; i < ARRAY_SIZE(qed_dcbx_app_update); i++) {
227 id = qed_dcbx_app_update[i].id;
228
229 if (type != id)
230 continue;
231
232 personality = qed_dcbx_app_update[i].personality;
233 name = qed_dcbx_app_update[i].name;
234
Sudarsana Reddy Kallurudfc268f2017-05-29 09:53:06 +0300235 qed_dcbx_set_params(p_data, p_info, enable,
Sudarsana Reddy Kalluru39651ab2016-05-17 06:44:26 -0400236 prio, tc, type, personality);
237 }
238}
239
240static bool
241qed_dcbx_get_app_protocol_type(struct qed_hwfn *p_hwfn,
242 u32 app_prio_bitmap,
Sudarsana Reddy Kallurufb9ea8a2016-08-08 21:57:41 -0400243 u16 id, enum dcbx_protocol_type *type, bool ieee)
Sudarsana Reddy Kalluru39651ab2016-05-17 06:44:26 -0400244{
Sudarsana Reddy Kallurufb9ea8a2016-08-08 21:57:41 -0400245 if (qed_dcbx_fcoe_tlv(app_prio_bitmap, id, ieee)) {
Sudarsana Reddy Kalluru39651ab2016-05-17 06:44:26 -0400246 *type = DCBX_PROTOCOL_FCOE;
Sudarsana Reddy Kallurufb9ea8a2016-08-08 21:57:41 -0400247 } else if (qed_dcbx_roce_tlv(app_prio_bitmap, id, ieee)) {
Sudarsana Reddy Kalluru39651ab2016-05-17 06:44:26 -0400248 *type = DCBX_PROTOCOL_ROCE;
Sudarsana Reddy Kalluru59bcb792016-08-08 21:57:42 -0400249 } else if (qed_dcbx_iscsi_tlv(app_prio_bitmap, id, ieee)) {
Sudarsana Reddy Kalluru39651ab2016-05-17 06:44:26 -0400250 *type = DCBX_PROTOCOL_ISCSI;
Sudarsana Reddy Kallurufb9ea8a2016-08-08 21:57:41 -0400251 } else if (qed_dcbx_default_tlv(app_prio_bitmap, id, ieee)) {
Sudarsana Reddy Kalluru39651ab2016-05-17 06:44:26 -0400252 *type = DCBX_PROTOCOL_ETH;
Sudarsana Reddy Kalluru59bcb792016-08-08 21:57:42 -0400253 } else if (qed_dcbx_roce_v2_tlv(app_prio_bitmap, id, ieee)) {
Sudarsana Reddy Kalluru39651ab2016-05-17 06:44:26 -0400254 *type = DCBX_PROTOCOL_ROCE_V2;
255 } else {
256 *type = DCBX_MAX_PROTOCOL_TYPE;
257 DP_ERR(p_hwfn,
258 "No action required, App TLV id = 0x%x app_prio_bitmap = 0x%x\n",
259 id, app_prio_bitmap);
260 return false;
261 }
262
263 return true;
264}
265
266/* Parse app TLV's to update TC information in hw_info structure for
267 * reconfiguring QM. Get protocol specific data for PF update ramrod command.
268 */
269static int
270qed_dcbx_process_tlv(struct qed_hwfn *p_hwfn,
271 struct qed_dcbx_results *p_data,
272 struct dcbx_app_priority_entry *p_tbl,
Sudarsana Reddy Kallurufb9ea8a2016-08-08 21:57:41 -0400273 u32 pri_tc_tbl, int count, u8 dcbx_version)
Sudarsana Reddy Kalluru39651ab2016-05-17 06:44:26 -0400274{
Sudarsana Reddy Kalluru39651ab2016-05-17 06:44:26 -0400275 enum dcbx_protocol_type type;
sudarsana.kalluru@cavium.com270837b2017-04-20 22:31:16 -0700276 u8 tc, priority_map;
Sudarsana Reddy Kallurufb9ea8a2016-08-08 21:57:41 -0400277 bool enable, ieee;
Sudarsana Reddy Kalluru39651ab2016-05-17 06:44:26 -0400278 u16 protocol_id;
Dan Carpenter54b94302016-05-23 13:19:35 +0300279 int priority;
Sudarsana Reddy Kalluru39651ab2016-05-17 06:44:26 -0400280 int i;
281
282 DP_VERBOSE(p_hwfn, QED_MSG_DCB, "Num APP entries = %d\n", count);
283
Sudarsana Reddy Kallurufb9ea8a2016-08-08 21:57:41 -0400284 ieee = (dcbx_version == DCBX_CONFIG_VERSION_IEEE);
Sudarsana Reddy Kalluru39651ab2016-05-17 06:44:26 -0400285 /* Parse APP TLV */
286 for (i = 0; i < count; i++) {
287 protocol_id = QED_MFW_GET_FIELD(p_tbl[i].entry,
288 DCBX_APP_PROTOCOL_ID);
289 priority_map = QED_MFW_GET_FIELD(p_tbl[i].entry,
290 DCBX_APP_PRI_MAP);
291 priority = ffs(priority_map) - 1;
292 if (priority < 0) {
293 DP_ERR(p_hwfn, "Invalid priority\n");
294 return -EINVAL;
295 }
296
297 tc = QED_DCBX_PRIO2TC(pri_tc_tbl, priority);
298 if (qed_dcbx_get_app_protocol_type(p_hwfn, p_tbl[i].entry,
Sudarsana Reddy Kallurufb9ea8a2016-08-08 21:57:41 -0400299 protocol_id, &type, ieee)) {
Sudarsana Reddy Kalluru39651ab2016-05-17 06:44:26 -0400300 /* ETH always have the enable bit reset, as it gets
301 * vlan information per packet. For other protocols,
302 * should be set according to the dcbx_enabled
303 * indication, but we only got here if there was an
304 * app tlv for the protocol, so dcbx must be enabled.
305 */
Sudarsana Reddy Kalluruec7c7f52016-05-24 05:25:23 -0400306 enable = !(type == DCBX_PROTOCOL_ETH);
Sudarsana Reddy Kalluru39651ab2016-05-17 06:44:26 -0400307
Sudarsana Reddy Kallurudfc268f2017-05-29 09:53:06 +0300308 qed_dcbx_update_app_info(p_data, p_hwfn, enable,
Sudarsana Reddy Kalluru39651ab2016-05-17 06:44:26 -0400309 priority, tc, type);
310 }
311 }
312
Sudarsana Reddy Kalluru39651ab2016-05-17 06:44:26 -0400313 /* Update ramrod protocol data and hw_info fields
314 * with default info when corresponding APP TLV's are not detected.
315 * The enabled field has a different logic for ethernet as only for
316 * ethernet dcb should disabled by default, as the information arrives
317 * from the OS (unless an explicit app tlv was present).
318 */
319 tc = p_data->arr[DCBX_PROTOCOL_ETH].tc;
320 priority = p_data->arr[DCBX_PROTOCOL_ETH].priority;
321 for (type = 0; type < DCBX_MAX_PROTOCOL_TYPE; type++) {
322 if (p_data->arr[type].update)
323 continue;
324
Sudarsana Reddy Kallurudfc268f2017-05-29 09:53:06 +0300325 enable = (type == DCBX_PROTOCOL_ETH) ? false : !!dcbx_version;
326 qed_dcbx_update_app_info(p_data, p_hwfn, enable,
Sudarsana Reddy Kalluru39651ab2016-05-17 06:44:26 -0400327 priority, tc, type);
328 }
329
330 return 0;
331}
332
333/* Parse app TLV's to update TC information in hw_info structure for
334 * reconfiguring QM. Get protocol specific data for PF update ramrod command.
335 */
336static int qed_dcbx_process_mib_info(struct qed_hwfn *p_hwfn)
337{
338 struct dcbx_app_priority_feature *p_app;
339 struct dcbx_app_priority_entry *p_tbl;
340 struct qed_dcbx_results data = { 0 };
341 struct dcbx_ets_feature *p_ets;
342 struct qed_hw_info *p_info;
343 u32 pri_tc_tbl, flags;
Sudarsana Reddy Kallurufb9ea8a2016-08-08 21:57:41 -0400344 u8 dcbx_version;
Sudarsana Reddy Kalluru39651ab2016-05-17 06:44:26 -0400345 int num_entries;
346 int rc = 0;
347
Sudarsana Reddy Kalluru39651ab2016-05-17 06:44:26 -0400348 flags = p_hwfn->p_dcbx_info->operational.flags;
Sudarsana Reddy Kallurufb9ea8a2016-08-08 21:57:41 -0400349 dcbx_version = QED_MFW_GET_FIELD(flags, DCBX_CONFIG_VERSION);
Sudarsana Reddy Kalluru39651ab2016-05-17 06:44:26 -0400350
351 p_app = &p_hwfn->p_dcbx_info->operational.features.app;
352 p_tbl = p_app->app_pri_tbl;
353
354 p_ets = &p_hwfn->p_dcbx_info->operational.features.ets;
355 pri_tc_tbl = p_ets->pri_tc_tbl[0];
356
357 p_info = &p_hwfn->hw_info;
358 num_entries = QED_MFW_GET_FIELD(p_app->flags, DCBX_APP_NUM_ENTRIES);
359
360 rc = qed_dcbx_process_tlv(p_hwfn, &data, p_tbl, pri_tc_tbl,
Sudarsana Reddy Kallurufb9ea8a2016-08-08 21:57:41 -0400361 num_entries, dcbx_version);
Sudarsana Reddy Kalluru39651ab2016-05-17 06:44:26 -0400362 if (rc)
363 return rc;
364
Ariel Eliorb5a9ee72017-04-03 12:21:09 +0300365 p_info->num_active_tc = QED_MFW_GET_FIELD(p_ets->flags,
366 DCBX_ETS_MAX_TCS);
367 p_hwfn->qm_info.ooo_tc = QED_MFW_GET_FIELD(p_ets->flags, DCBX_OOO_TC);
Sudarsana Reddy Kalluru39651ab2016-05-17 06:44:26 -0400368 data.pf_id = p_hwfn->rel_pf_id;
Sudarsana Reddy Kallurufb9ea8a2016-08-08 21:57:41 -0400369 data.dcbx_enabled = !!dcbx_version;
Sudarsana Reddy Kalluru39651ab2016-05-17 06:44:26 -0400370
371 qed_dcbx_dp_protocol(p_hwfn, &data);
372
373 memcpy(&p_hwfn->p_dcbx_info->results, &data,
374 sizeof(struct qed_dcbx_results));
375
376 return 0;
377}
378
379static int
380qed_dcbx_copy_mib(struct qed_hwfn *p_hwfn,
381 struct qed_ptt *p_ptt,
382 struct qed_dcbx_mib_meta_data *p_data,
383 enum qed_mib_read_type type)
384{
385 u32 prefix_seq_num, suffix_seq_num;
386 int read_count = 0;
387 int rc = 0;
388
389 /* The data is considered to be valid only if both sequence numbers are
390 * the same.
391 */
392 do {
393 if (type == QED_DCBX_REMOTE_LLDP_MIB) {
394 qed_memcpy_from(p_hwfn, p_ptt, p_data->lldp_remote,
395 p_data->addr, p_data->size);
396 prefix_seq_num = p_data->lldp_remote->prefix_seq_num;
397 suffix_seq_num = p_data->lldp_remote->suffix_seq_num;
398 } else {
399 qed_memcpy_from(p_hwfn, p_ptt, p_data->mib,
400 p_data->addr, p_data->size);
401 prefix_seq_num = p_data->mib->prefix_seq_num;
402 suffix_seq_num = p_data->mib->suffix_seq_num;
403 }
404 read_count++;
405
406 DP_VERBOSE(p_hwfn,
407 QED_MSG_DCB,
408 "mib type = %d, try count = %d prefix seq num = %d suffix seq num = %d\n",
409 type, read_count, prefix_seq_num, suffix_seq_num);
410 } while ((prefix_seq_num != suffix_seq_num) &&
411 (read_count < QED_DCBX_MAX_MIB_READ_TRY));
412
413 if (read_count >= QED_DCBX_MAX_MIB_READ_TRY) {
414 DP_ERR(p_hwfn,
415 "MIB read err, mib type = %d, try count = %d prefix seq num = %d suffix seq num = %d\n",
416 type, read_count, prefix_seq_num, suffix_seq_num);
417 rc = -EIO;
418 }
419
420 return rc;
421}
422
Sudarsana Reddy Kalluru6ad8c632016-06-08 06:22:10 -0400423static void
424qed_dcbx_get_priority_info(struct qed_hwfn *p_hwfn,
425 struct qed_dcbx_app_prio *p_prio,
426 struct qed_dcbx_results *p_results)
427{
428 u8 val;
429
430 p_prio->roce = QED_DCBX_INVALID_PRIORITY;
431 p_prio->roce_v2 = QED_DCBX_INVALID_PRIORITY;
432 p_prio->iscsi = QED_DCBX_INVALID_PRIORITY;
433 p_prio->fcoe = QED_DCBX_INVALID_PRIORITY;
434
435 if (p_results->arr[DCBX_PROTOCOL_ROCE].update &&
436 p_results->arr[DCBX_PROTOCOL_ROCE].enable)
437 p_prio->roce = p_results->arr[DCBX_PROTOCOL_ROCE].priority;
438
439 if (p_results->arr[DCBX_PROTOCOL_ROCE_V2].update &&
440 p_results->arr[DCBX_PROTOCOL_ROCE_V2].enable) {
441 val = p_results->arr[DCBX_PROTOCOL_ROCE_V2].priority;
442 p_prio->roce_v2 = val;
443 }
444
445 if (p_results->arr[DCBX_PROTOCOL_ISCSI].update &&
446 p_results->arr[DCBX_PROTOCOL_ISCSI].enable)
447 p_prio->iscsi = p_results->arr[DCBX_PROTOCOL_ISCSI].priority;
448
449 if (p_results->arr[DCBX_PROTOCOL_FCOE].update &&
450 p_results->arr[DCBX_PROTOCOL_FCOE].enable)
451 p_prio->fcoe = p_results->arr[DCBX_PROTOCOL_FCOE].priority;
452
453 if (p_results->arr[DCBX_PROTOCOL_ETH].update &&
454 p_results->arr[DCBX_PROTOCOL_ETH].enable)
455 p_prio->eth = p_results->arr[DCBX_PROTOCOL_ETH].priority;
456
457 DP_VERBOSE(p_hwfn, QED_MSG_DCB,
458 "Priorities: iscsi %d, roce %d, roce v2 %d, fcoe %d, eth %d\n",
459 p_prio->iscsi, p_prio->roce, p_prio->roce_v2, p_prio->fcoe,
460 p_prio->eth);
461}
462
463static void
464qed_dcbx_get_app_data(struct qed_hwfn *p_hwfn,
465 struct dcbx_app_priority_feature *p_app,
466 struct dcbx_app_priority_entry *p_tbl,
Sudarsana Reddy Kallurufb9ea8a2016-08-08 21:57:41 -0400467 struct qed_dcbx_params *p_params, bool ieee)
Sudarsana Reddy Kalluru6ad8c632016-06-08 06:22:10 -0400468{
469 struct qed_app_entry *entry;
470 u8 pri_map;
471 int i;
472
473 p_params->app_willing = QED_MFW_GET_FIELD(p_app->flags,
474 DCBX_APP_WILLING);
475 p_params->app_valid = QED_MFW_GET_FIELD(p_app->flags, DCBX_APP_ENABLED);
476 p_params->app_error = QED_MFW_GET_FIELD(p_app->flags, DCBX_APP_ERROR);
477 p_params->num_app_entries = QED_MFW_GET_FIELD(p_app->flags,
478 DCBX_APP_NUM_ENTRIES);
479 for (i = 0; i < DCBX_MAX_APP_PROTOCOL; i++) {
480 entry = &p_params->app_entry[i];
Sudarsana Reddy Kalluru59bcb792016-08-08 21:57:42 -0400481 if (ieee) {
482 u8 sf_ieee;
483 u32 val;
484
485 sf_ieee = QED_MFW_GET_FIELD(p_tbl[i].entry,
486 DCBX_APP_SF_IEEE);
487 switch (sf_ieee) {
488 case DCBX_APP_SF_IEEE_RESERVED:
489 /* Old MFW */
490 val = QED_MFW_GET_FIELD(p_tbl[i].entry,
491 DCBX_APP_SF);
492 entry->sf_ieee = val ?
493 QED_DCBX_SF_IEEE_TCP_UDP_PORT :
494 QED_DCBX_SF_IEEE_ETHTYPE;
495 break;
496 case DCBX_APP_SF_IEEE_ETHTYPE:
497 entry->sf_ieee = QED_DCBX_SF_IEEE_ETHTYPE;
498 break;
499 case DCBX_APP_SF_IEEE_TCP_PORT:
500 entry->sf_ieee = QED_DCBX_SF_IEEE_TCP_PORT;
501 break;
502 case DCBX_APP_SF_IEEE_UDP_PORT:
503 entry->sf_ieee = QED_DCBX_SF_IEEE_UDP_PORT;
504 break;
505 case DCBX_APP_SF_IEEE_TCP_UDP_PORT:
506 entry->sf_ieee = QED_DCBX_SF_IEEE_TCP_UDP_PORT;
507 break;
508 }
509 } else {
510 entry->ethtype = !(QED_MFW_GET_FIELD(p_tbl[i].entry,
511 DCBX_APP_SF));
512 }
513
Sudarsana Reddy Kalluru6ad8c632016-06-08 06:22:10 -0400514 pri_map = QED_MFW_GET_FIELD(p_tbl[i].entry, DCBX_APP_PRI_MAP);
515 entry->prio = ffs(pri_map) - 1;
516 entry->proto_id = QED_MFW_GET_FIELD(p_tbl[i].entry,
517 DCBX_APP_PROTOCOL_ID);
518 qed_dcbx_get_app_protocol_type(p_hwfn, p_tbl[i].entry,
519 entry->proto_id,
Sudarsana Reddy Kallurufb9ea8a2016-08-08 21:57:41 -0400520 &entry->proto_type, ieee);
Sudarsana Reddy Kalluru6ad8c632016-06-08 06:22:10 -0400521 }
522
523 DP_VERBOSE(p_hwfn, QED_MSG_DCB,
524 "APP params: willing %d, valid %d error = %d\n",
525 p_params->app_willing, p_params->app_valid,
526 p_params->app_error);
527}
528
529static void
530qed_dcbx_get_pfc_data(struct qed_hwfn *p_hwfn,
531 u32 pfc, struct qed_dcbx_params *p_params)
532{
533 u8 pfc_map;
534
535 p_params->pfc.willing = QED_MFW_GET_FIELD(pfc, DCBX_PFC_WILLING);
536 p_params->pfc.max_tc = QED_MFW_GET_FIELD(pfc, DCBX_PFC_CAPS);
537 p_params->pfc.enabled = QED_MFW_GET_FIELD(pfc, DCBX_PFC_ENABLED);
538 pfc_map = QED_MFW_GET_FIELD(pfc, DCBX_PFC_PRI_EN_BITMAP);
539 p_params->pfc.prio[0] = !!(pfc_map & DCBX_PFC_PRI_EN_BITMAP_PRI_0);
540 p_params->pfc.prio[1] = !!(pfc_map & DCBX_PFC_PRI_EN_BITMAP_PRI_1);
541 p_params->pfc.prio[2] = !!(pfc_map & DCBX_PFC_PRI_EN_BITMAP_PRI_2);
542 p_params->pfc.prio[3] = !!(pfc_map & DCBX_PFC_PRI_EN_BITMAP_PRI_3);
543 p_params->pfc.prio[4] = !!(pfc_map & DCBX_PFC_PRI_EN_BITMAP_PRI_4);
544 p_params->pfc.prio[5] = !!(pfc_map & DCBX_PFC_PRI_EN_BITMAP_PRI_5);
545 p_params->pfc.prio[6] = !!(pfc_map & DCBX_PFC_PRI_EN_BITMAP_PRI_6);
546 p_params->pfc.prio[7] = !!(pfc_map & DCBX_PFC_PRI_EN_BITMAP_PRI_7);
547
548 DP_VERBOSE(p_hwfn, QED_MSG_DCB,
sudarsana.kalluru@cavium.comdfbeb852017-04-20 22:31:18 -0700549 "PFC params: willing %d, pfc_bitmap %u max_tc = %u enabled = %d\n",
550 p_params->pfc.willing, pfc_map, p_params->pfc.max_tc,
551 p_params->pfc.enabled);
Sudarsana Reddy Kalluru6ad8c632016-06-08 06:22:10 -0400552}
553
554static void
555qed_dcbx_get_ets_data(struct qed_hwfn *p_hwfn,
556 struct dcbx_ets_feature *p_ets,
557 struct qed_dcbx_params *p_params)
558{
559 u32 bw_map[2], tsa_map[2], pri_map;
560 int i;
561
562 p_params->ets_willing = QED_MFW_GET_FIELD(p_ets->flags,
563 DCBX_ETS_WILLING);
564 p_params->ets_enabled = QED_MFW_GET_FIELD(p_ets->flags,
565 DCBX_ETS_ENABLED);
566 p_params->ets_cbs = QED_MFW_GET_FIELD(p_ets->flags, DCBX_ETS_CBS);
567 p_params->max_ets_tc = QED_MFW_GET_FIELD(p_ets->flags,
568 DCBX_ETS_MAX_TCS);
569 DP_VERBOSE(p_hwfn, QED_MSG_DCB,
sudarsana.kalluru@cavium.comdfbeb852017-04-20 22:31:18 -0700570 "ETS params: willing %d, enabled = %d ets_cbs %d pri_tc_tbl_0 %x max_ets_tc %d\n",
571 p_params->ets_willing, p_params->ets_enabled,
572 p_params->ets_cbs, p_ets->pri_tc_tbl[0],
573 p_params->max_ets_tc);
Sudarsana Reddy Kalluru6ad8c632016-06-08 06:22:10 -0400574
sudarsana.kalluru@cavium.com66367da2017-04-19 03:19:52 -0700575 if (p_params->ets_enabled && !p_params->max_ets_tc) {
576 p_params->max_ets_tc = QED_MAX_PFC_PRIORITIES;
577 DP_VERBOSE(p_hwfn, QED_MSG_DCB,
578 "ETS params: max_ets_tc is forced to %d\n",
579 p_params->max_ets_tc);
580 }
581
Sudarsana Reddy Kalluru6ad8c632016-06-08 06:22:10 -0400582 /* 8 bit tsa and bw data corresponding to each of the 8 TC's are
583 * encoded in a type u32 array of size 2.
584 */
585 bw_map[0] = be32_to_cpu(p_ets->tc_bw_tbl[0]);
586 bw_map[1] = be32_to_cpu(p_ets->tc_bw_tbl[1]);
587 tsa_map[0] = be32_to_cpu(p_ets->tc_tsa_tbl[0]);
588 tsa_map[1] = be32_to_cpu(p_ets->tc_tsa_tbl[1]);
Sudarsana Reddy Kalluruc0c45a62016-08-08 21:57:40 -0400589 pri_map = p_ets->pri_tc_tbl[0];
Sudarsana Reddy Kalluru6ad8c632016-06-08 06:22:10 -0400590 for (i = 0; i < QED_MAX_PFC_PRIORITIES; i++) {
591 p_params->ets_tc_bw_tbl[i] = ((u8 *)bw_map)[i];
592 p_params->ets_tc_tsa_tbl[i] = ((u8 *)tsa_map)[i];
593 p_params->ets_pri_tc_tbl[i] = QED_DCBX_PRIO2TC(pri_map, i);
594 DP_VERBOSE(p_hwfn, QED_MSG_DCB,
595 "elem %d bw_tbl %x tsa_tbl %x\n",
596 i, p_params->ets_tc_bw_tbl[i],
597 p_params->ets_tc_tsa_tbl[i]);
598 }
599}
600
601static void
602qed_dcbx_get_common_params(struct qed_hwfn *p_hwfn,
603 struct dcbx_app_priority_feature *p_app,
604 struct dcbx_app_priority_entry *p_tbl,
605 struct dcbx_ets_feature *p_ets,
Sudarsana Reddy Kallurufb9ea8a2016-08-08 21:57:41 -0400606 u32 pfc, struct qed_dcbx_params *p_params, bool ieee)
Sudarsana Reddy Kalluru6ad8c632016-06-08 06:22:10 -0400607{
Sudarsana Reddy Kallurufb9ea8a2016-08-08 21:57:41 -0400608 qed_dcbx_get_app_data(p_hwfn, p_app, p_tbl, p_params, ieee);
Sudarsana Reddy Kalluru6ad8c632016-06-08 06:22:10 -0400609 qed_dcbx_get_ets_data(p_hwfn, p_ets, p_params);
610 qed_dcbx_get_pfc_data(p_hwfn, pfc, p_params);
611}
612
613static void
sudarsana.kalluru@cavium.com270837b2017-04-20 22:31:16 -0700614qed_dcbx_get_local_params(struct qed_hwfn *p_hwfn, struct qed_dcbx_get *params)
Sudarsana Reddy Kalluru6ad8c632016-06-08 06:22:10 -0400615{
616 struct dcbx_features *p_feat;
617
618 p_feat = &p_hwfn->p_dcbx_info->local_admin.features;
619 qed_dcbx_get_common_params(p_hwfn, &p_feat->app,
620 p_feat->app.app_pri_tbl, &p_feat->ets,
Sudarsana Reddy Kallurufb9ea8a2016-08-08 21:57:41 -0400621 p_feat->pfc, &params->local.params, false);
Sudarsana Reddy Kalluru6ad8c632016-06-08 06:22:10 -0400622 params->local.valid = true;
623}
624
625static void
sudarsana.kalluru@cavium.com270837b2017-04-20 22:31:16 -0700626qed_dcbx_get_remote_params(struct qed_hwfn *p_hwfn, struct qed_dcbx_get *params)
Sudarsana Reddy Kalluru6ad8c632016-06-08 06:22:10 -0400627{
628 struct dcbx_features *p_feat;
629
630 p_feat = &p_hwfn->p_dcbx_info->remote.features;
631 qed_dcbx_get_common_params(p_hwfn, &p_feat->app,
632 p_feat->app.app_pri_tbl, &p_feat->ets,
Sudarsana Reddy Kallurufb9ea8a2016-08-08 21:57:41 -0400633 p_feat->pfc, &params->remote.params, false);
Sudarsana Reddy Kalluru6ad8c632016-06-08 06:22:10 -0400634 params->remote.valid = true;
635}
636
637static void
638qed_dcbx_get_operational_params(struct qed_hwfn *p_hwfn,
Sudarsana Reddy Kalluru6ad8c632016-06-08 06:22:10 -0400639 struct qed_dcbx_get *params)
640{
641 struct qed_dcbx_operational_params *p_operational;
642 struct qed_dcbx_results *p_results;
643 struct dcbx_features *p_feat;
644 bool enabled, err;
645 u32 flags;
646 bool val;
647
648 flags = p_hwfn->p_dcbx_info->operational.flags;
649
650 /* If DCBx version is non zero, then negotiation
651 * was successfuly performed
652 */
653 p_operational = &params->operational;
654 enabled = !!(QED_MFW_GET_FIELD(flags, DCBX_CONFIG_VERSION) !=
655 DCBX_CONFIG_VERSION_DISABLED);
656 if (!enabled) {
657 p_operational->enabled = enabled;
658 p_operational->valid = false;
sudarsana.kalluru@cavium.comdfbeb852017-04-20 22:31:18 -0700659 DP_VERBOSE(p_hwfn, QED_MSG_DCB, "Dcbx is disabled\n");
Sudarsana Reddy Kalluru6ad8c632016-06-08 06:22:10 -0400660 return;
661 }
662
663 p_feat = &p_hwfn->p_dcbx_info->operational.features;
664 p_results = &p_hwfn->p_dcbx_info->results;
665
666 val = !!(QED_MFW_GET_FIELD(flags, DCBX_CONFIG_VERSION) ==
667 DCBX_CONFIG_VERSION_IEEE);
668 p_operational->ieee = val;
669 val = !!(QED_MFW_GET_FIELD(flags, DCBX_CONFIG_VERSION) ==
670 DCBX_CONFIG_VERSION_CEE);
671 p_operational->cee = val;
672
sudarsana.kalluru@cavium.com49632b582017-04-20 22:31:20 -0700673 val = !!(QED_MFW_GET_FIELD(flags, DCBX_CONFIG_VERSION) ==
674 DCBX_CONFIG_VERSION_STATIC);
675 p_operational->local = val;
676
677 DP_VERBOSE(p_hwfn, QED_MSG_DCB,
678 "Version support: ieee %d, cee %d, static %d\n",
679 p_operational->ieee, p_operational->cee,
680 p_operational->local);
Sudarsana Reddy Kalluru6ad8c632016-06-08 06:22:10 -0400681
682 qed_dcbx_get_common_params(p_hwfn, &p_feat->app,
683 p_feat->app.app_pri_tbl, &p_feat->ets,
Sudarsana Reddy Kallurufb9ea8a2016-08-08 21:57:41 -0400684 p_feat->pfc, &params->operational.params,
685 p_operational->ieee);
Sudarsana Reddy Kalluru6ad8c632016-06-08 06:22:10 -0400686 qed_dcbx_get_priority_info(p_hwfn, &p_operational->app_prio, p_results);
687 err = QED_MFW_GET_FIELD(p_feat->app.flags, DCBX_APP_ERROR);
688 p_operational->err = err;
689 p_operational->enabled = enabled;
690 p_operational->valid = true;
691}
692
693static void
694qed_dcbx_get_local_lldp_params(struct qed_hwfn *p_hwfn,
Sudarsana Reddy Kalluru6ad8c632016-06-08 06:22:10 -0400695 struct qed_dcbx_get *params)
696{
697 struct lldp_config_params_s *p_local;
698
699 p_local = &p_hwfn->p_dcbx_info->lldp_local[LLDP_NEAREST_BRIDGE];
700
701 memcpy(params->lldp_local.local_chassis_id, p_local->local_chassis_id,
702 ARRAY_SIZE(p_local->local_chassis_id));
703 memcpy(params->lldp_local.local_port_id, p_local->local_port_id,
704 ARRAY_SIZE(p_local->local_port_id));
705}
706
707static void
708qed_dcbx_get_remote_lldp_params(struct qed_hwfn *p_hwfn,
Sudarsana Reddy Kalluru6ad8c632016-06-08 06:22:10 -0400709 struct qed_dcbx_get *params)
710{
711 struct lldp_status_params_s *p_remote;
712
713 p_remote = &p_hwfn->p_dcbx_info->lldp_remote[LLDP_NEAREST_BRIDGE];
714
715 memcpy(params->lldp_remote.peer_chassis_id, p_remote->peer_chassis_id,
716 ARRAY_SIZE(p_remote->peer_chassis_id));
717 memcpy(params->lldp_remote.peer_port_id, p_remote->peer_port_id,
718 ARRAY_SIZE(p_remote->peer_port_id));
719}
720
721static int
sudarsana.kalluru@cavium.com270837b2017-04-20 22:31:16 -0700722qed_dcbx_get_params(struct qed_hwfn *p_hwfn, struct qed_dcbx_get *p_params,
Sudarsana Reddy Kalluru6ad8c632016-06-08 06:22:10 -0400723 enum qed_mib_read_type type)
724{
725 switch (type) {
726 case QED_DCBX_REMOTE_MIB:
sudarsana.kalluru@cavium.com270837b2017-04-20 22:31:16 -0700727 qed_dcbx_get_remote_params(p_hwfn, p_params);
Sudarsana Reddy Kalluru6ad8c632016-06-08 06:22:10 -0400728 break;
729 case QED_DCBX_LOCAL_MIB:
sudarsana.kalluru@cavium.com270837b2017-04-20 22:31:16 -0700730 qed_dcbx_get_local_params(p_hwfn, p_params);
Sudarsana Reddy Kalluru6ad8c632016-06-08 06:22:10 -0400731 break;
732 case QED_DCBX_OPERATIONAL_MIB:
sudarsana.kalluru@cavium.com270837b2017-04-20 22:31:16 -0700733 qed_dcbx_get_operational_params(p_hwfn, p_params);
Sudarsana Reddy Kalluru6ad8c632016-06-08 06:22:10 -0400734 break;
735 case QED_DCBX_REMOTE_LLDP_MIB:
sudarsana.kalluru@cavium.com270837b2017-04-20 22:31:16 -0700736 qed_dcbx_get_remote_lldp_params(p_hwfn, p_params);
Sudarsana Reddy Kalluru6ad8c632016-06-08 06:22:10 -0400737 break;
738 case QED_DCBX_LOCAL_LLDP_MIB:
sudarsana.kalluru@cavium.com270837b2017-04-20 22:31:16 -0700739 qed_dcbx_get_local_lldp_params(p_hwfn, p_params);
Sudarsana Reddy Kalluru6ad8c632016-06-08 06:22:10 -0400740 break;
741 default:
742 DP_ERR(p_hwfn, "MIB read err, unknown mib type %d\n", type);
743 return -EINVAL;
744 }
745
746 return 0;
747}
Sudarsana Reddy Kalluru6ad8c632016-06-08 06:22:10 -0400748
Sudarsana Reddy Kalluru39651ab2016-05-17 06:44:26 -0400749static int
750qed_dcbx_read_local_lldp_mib(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt)
751{
752 struct qed_dcbx_mib_meta_data data;
753 int rc = 0;
754
755 memset(&data, 0, sizeof(data));
756 data.addr = p_hwfn->mcp_info->port_addr + offsetof(struct public_port,
757 lldp_config_params);
758 data.lldp_local = p_hwfn->p_dcbx_info->lldp_local;
759 data.size = sizeof(struct lldp_config_params_s);
760 qed_memcpy_from(p_hwfn, p_ptt, data.lldp_local, data.addr, data.size);
761
762 return rc;
763}
764
765static int
766qed_dcbx_read_remote_lldp_mib(struct qed_hwfn *p_hwfn,
767 struct qed_ptt *p_ptt,
768 enum qed_mib_read_type type)
769{
770 struct qed_dcbx_mib_meta_data data;
771 int rc = 0;
772
773 memset(&data, 0, sizeof(data));
774 data.addr = p_hwfn->mcp_info->port_addr + offsetof(struct public_port,
775 lldp_status_params);
776 data.lldp_remote = p_hwfn->p_dcbx_info->lldp_remote;
777 data.size = sizeof(struct lldp_status_params_s);
778 rc = qed_dcbx_copy_mib(p_hwfn, p_ptt, &data, type);
779
780 return rc;
781}
782
783static int
784qed_dcbx_read_operational_mib(struct qed_hwfn *p_hwfn,
785 struct qed_ptt *p_ptt,
786 enum qed_mib_read_type type)
787{
788 struct qed_dcbx_mib_meta_data data;
789 int rc = 0;
790
791 memset(&data, 0, sizeof(data));
792 data.addr = p_hwfn->mcp_info->port_addr +
793 offsetof(struct public_port, operational_dcbx_mib);
794 data.mib = &p_hwfn->p_dcbx_info->operational;
795 data.size = sizeof(struct dcbx_mib);
796 rc = qed_dcbx_copy_mib(p_hwfn, p_ptt, &data, type);
797
798 return rc;
799}
800
801static int
802qed_dcbx_read_remote_mib(struct qed_hwfn *p_hwfn,
803 struct qed_ptt *p_ptt, enum qed_mib_read_type type)
804{
805 struct qed_dcbx_mib_meta_data data;
806 int rc = 0;
807
808 memset(&data, 0, sizeof(data));
809 data.addr = p_hwfn->mcp_info->port_addr +
810 offsetof(struct public_port, remote_dcbx_mib);
811 data.mib = &p_hwfn->p_dcbx_info->remote;
812 data.size = sizeof(struct dcbx_mib);
813 rc = qed_dcbx_copy_mib(p_hwfn, p_ptt, &data, type);
814
815 return rc;
816}
817
818static int
819qed_dcbx_read_local_mib(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt)
820{
821 struct qed_dcbx_mib_meta_data data;
822 int rc = 0;
823
824 memset(&data, 0, sizeof(data));
825 data.addr = p_hwfn->mcp_info->port_addr +
826 offsetof(struct public_port, local_admin_dcbx_mib);
827 data.local_admin = &p_hwfn->p_dcbx_info->local_admin;
828 data.size = sizeof(struct dcbx_local_params);
829 qed_memcpy_from(p_hwfn, p_ptt, data.local_admin, data.addr, data.size);
830
831 return rc;
832}
833
834static int qed_dcbx_read_mib(struct qed_hwfn *p_hwfn,
835 struct qed_ptt *p_ptt, enum qed_mib_read_type type)
836{
837 int rc = -EINVAL;
838
839 switch (type) {
840 case QED_DCBX_OPERATIONAL_MIB:
841 rc = qed_dcbx_read_operational_mib(p_hwfn, p_ptt, type);
842 break;
843 case QED_DCBX_REMOTE_MIB:
844 rc = qed_dcbx_read_remote_mib(p_hwfn, p_ptt, type);
845 break;
846 case QED_DCBX_LOCAL_MIB:
847 rc = qed_dcbx_read_local_mib(p_hwfn, p_ptt);
848 break;
849 case QED_DCBX_REMOTE_LLDP_MIB:
850 rc = qed_dcbx_read_remote_lldp_mib(p_hwfn, p_ptt, type);
851 break;
852 case QED_DCBX_LOCAL_LLDP_MIB:
853 rc = qed_dcbx_read_local_lldp_mib(p_hwfn, p_ptt);
854 break;
855 default:
856 DP_ERR(p_hwfn, "MIB read err, unknown mib type %d\n", type);
857 }
858
859 return rc;
860}
861
Arun Easi1e128c82017-02-15 06:28:22 -0800862void qed_dcbx_aen(struct qed_hwfn *hwfn, u32 mib_type)
863{
864 struct qed_common_cb_ops *op = hwfn->cdev->protocol_ops.common;
865 void *cookie = hwfn->cdev->ops_cookie;
866
867 if (cookie && op->dcbx_aen)
868 op->dcbx_aen(cookie, &hwfn->p_dcbx_info->get, mib_type);
869}
870
Sudarsana Reddy Kalluru39651ab2016-05-17 06:44:26 -0400871/* Read updated MIB.
872 * Reconfigure QM and invoke PF update ramrod command if operational MIB
873 * change is detected.
874 */
875int
876qed_dcbx_mib_update_event(struct qed_hwfn *p_hwfn,
877 struct qed_ptt *p_ptt, enum qed_mib_read_type type)
878{
879 int rc = 0;
880
881 rc = qed_dcbx_read_mib(p_hwfn, p_ptt, type);
882 if (rc)
883 return rc;
884
885 if (type == QED_DCBX_OPERATIONAL_MIB) {
886 rc = qed_dcbx_process_mib_info(p_hwfn);
887 if (!rc) {
888 /* reconfigure tcs of QM queues according
889 * to negotiation results
890 */
891 qed_qm_reconf(p_hwfn, p_ptt);
892
893 /* update storm FW with negotiation results */
894 qed_sp_pf_update(p_hwfn);
895 }
896 }
sudarsana.kalluru@cavium.com270837b2017-04-20 22:31:16 -0700897
898 qed_dcbx_get_params(p_hwfn, &p_hwfn->p_dcbx_info->get, type);
Arun Easi1e128c82017-02-15 06:28:22 -0800899 qed_dcbx_aen(p_hwfn, type);
Sudarsana Reddy Kalluru39651ab2016-05-17 06:44:26 -0400900
901 return rc;
902}
903
904int qed_dcbx_info_alloc(struct qed_hwfn *p_hwfn)
905{
Sudarsana Reddy Kalluru39651ab2016-05-17 06:44:26 -0400906 p_hwfn->p_dcbx_info = kzalloc(sizeof(*p_hwfn->p_dcbx_info), GFP_KERNEL);
Joe Perches2591c282016-09-04 14:24:03 -0700907 if (!p_hwfn->p_dcbx_info)
sudarsana.kalluru@cavium.com270837b2017-04-20 22:31:16 -0700908 return -ENOMEM;
Sudarsana Reddy Kalluru39651ab2016-05-17 06:44:26 -0400909
sudarsana.kalluru@cavium.com270837b2017-04-20 22:31:16 -0700910 return 0;
Sudarsana Reddy Kalluru39651ab2016-05-17 06:44:26 -0400911}
912
sudarsana.kalluru@cavium.com270837b2017-04-20 22:31:16 -0700913void qed_dcbx_info_free(struct qed_hwfn *p_hwfn)
Sudarsana Reddy Kalluru39651ab2016-05-17 06:44:26 -0400914{
915 kfree(p_hwfn->p_dcbx_info);
Tomer Tayar3587cb82017-05-21 12:10:56 +0300916 p_hwfn->p_dcbx_info = NULL;
Sudarsana Reddy Kalluru39651ab2016-05-17 06:44:26 -0400917}
918
919static void qed_dcbx_update_protocol_data(struct protocol_dcb_data *p_data,
920 struct qed_dcbx_results *p_src,
921 enum dcbx_protocol_type type)
922{
923 p_data->dcb_enable_flag = p_src->arr[type].enable;
924 p_data->dcb_priority = p_src->arr[type].priority;
925 p_data->dcb_tc = p_src->arr[type].tc;
926}
927
928/* Set pf update ramrod command params */
929void qed_dcbx_set_pf_update_params(struct qed_dcbx_results *p_src,
930 struct pf_update_ramrod_data *p_dest)
931{
932 struct protocol_dcb_data *p_dcb_data;
933 bool update_flag = false;
934
935 p_dest->pf_id = p_src->pf_id;
936
937 update_flag = p_src->arr[DCBX_PROTOCOL_FCOE].update;
Mintz, Yuval7b6859f2017-05-18 19:41:04 +0300938 p_dest->update_fcoe_dcb_data_mode = update_flag;
Sudarsana Reddy Kalluru39651ab2016-05-17 06:44:26 -0400939
940 update_flag = p_src->arr[DCBX_PROTOCOL_ROCE].update;
Mintz, Yuval7b6859f2017-05-18 19:41:04 +0300941 p_dest->update_roce_dcb_data_mode = update_flag;
942
Sudarsana Reddy Kalluru39651ab2016-05-17 06:44:26 -0400943 update_flag = p_src->arr[DCBX_PROTOCOL_ROCE_V2].update;
Mintz, Yuval7b6859f2017-05-18 19:41:04 +0300944 p_dest->update_rroce_dcb_data_mode = update_flag;
Sudarsana Reddy Kalluru39651ab2016-05-17 06:44:26 -0400945
946 update_flag = p_src->arr[DCBX_PROTOCOL_ISCSI].update;
Mintz, Yuval7b6859f2017-05-18 19:41:04 +0300947 p_dest->update_iscsi_dcb_data_mode = update_flag;
Sudarsana Reddy Kalluru39651ab2016-05-17 06:44:26 -0400948 update_flag = p_src->arr[DCBX_PROTOCOL_ETH].update;
Mintz, Yuval7b6859f2017-05-18 19:41:04 +0300949 p_dest->update_eth_dcb_data_mode = update_flag;
Sudarsana Reddy Kalluru39651ab2016-05-17 06:44:26 -0400950
951 p_dcb_data = &p_dest->fcoe_dcb_data;
952 qed_dcbx_update_protocol_data(p_dcb_data, p_src, DCBX_PROTOCOL_FCOE);
953 p_dcb_data = &p_dest->roce_dcb_data;
sudarsana.kalluru@cavium.com449ad502017-04-20 22:31:17 -0700954 qed_dcbx_update_protocol_data(p_dcb_data, p_src, DCBX_PROTOCOL_ROCE);
955 p_dcb_data = &p_dest->rroce_dcb_data;
956 qed_dcbx_update_protocol_data(p_dcb_data, p_src, DCBX_PROTOCOL_ROCE_V2);
Sudarsana Reddy Kalluru39651ab2016-05-17 06:44:26 -0400957 p_dcb_data = &p_dest->iscsi_dcb_data;
958 qed_dcbx_update_protocol_data(p_dcb_data, p_src, DCBX_PROTOCOL_ISCSI);
959 p_dcb_data = &p_dest->eth_dcb_data;
960 qed_dcbx_update_protocol_data(p_dcb_data, p_src, DCBX_PROTOCOL_ETH);
961}
Sudarsana Reddy Kalluru6ad8c632016-06-08 06:22:10 -0400962
963#ifdef CONFIG_DCB
964static int qed_dcbx_query_params(struct qed_hwfn *p_hwfn,
965 struct qed_dcbx_get *p_get,
966 enum qed_mib_read_type type)
967{
968 struct qed_ptt *p_ptt;
969 int rc;
970
Sudarsana Reddy Kalluru5fe118c2016-08-29 08:29:52 -0400971 if (IS_VF(p_hwfn->cdev))
972 return -EINVAL;
973
Sudarsana Reddy Kalluru6ad8c632016-06-08 06:22:10 -0400974 p_ptt = qed_ptt_acquire(p_hwfn);
975 if (!p_ptt)
976 return -EBUSY;
977
978 rc = qed_dcbx_read_mib(p_hwfn, p_ptt, type);
979 if (rc)
980 goto out;
981
sudarsana.kalluru@cavium.com270837b2017-04-20 22:31:16 -0700982 rc = qed_dcbx_get_params(p_hwfn, p_get, type);
Sudarsana Reddy Kalluru6ad8c632016-06-08 06:22:10 -0400983
984out:
985 qed_ptt_release(p_hwfn, p_ptt);
986 return rc;
987}
988
989static void
990qed_dcbx_set_pfc_data(struct qed_hwfn *p_hwfn,
991 u32 *pfc, struct qed_dcbx_params *p_params)
992{
993 u8 pfc_map = 0;
994 int i;
995
sudarsana.kalluru@cavium.com6cf75f12017-04-19 03:19:53 -0700996 *pfc &= ~DCBX_PFC_ERROR_MASK;
997
Sudarsana Reddy Kalluru6ad8c632016-06-08 06:22:10 -0400998 if (p_params->pfc.willing)
999 *pfc |= DCBX_PFC_WILLING_MASK;
1000 else
1001 *pfc &= ~DCBX_PFC_WILLING_MASK;
1002
1003 if (p_params->pfc.enabled)
1004 *pfc |= DCBX_PFC_ENABLED_MASK;
1005 else
1006 *pfc &= ~DCBX_PFC_ENABLED_MASK;
1007
1008 *pfc &= ~DCBX_PFC_CAPS_MASK;
1009 *pfc |= (u32)p_params->pfc.max_tc << DCBX_PFC_CAPS_SHIFT;
1010
1011 for (i = 0; i < QED_MAX_PFC_PRIORITIES; i++)
1012 if (p_params->pfc.prio[i])
1013 pfc_map |= BIT(i);
1014
Sudarsana Reddy Kalluruc5e801d2016-08-29 08:29:54 -04001015 *pfc &= ~DCBX_PFC_PRI_EN_BITMAP_MASK;
Sudarsana Reddy Kalluru6ad8c632016-06-08 06:22:10 -04001016 *pfc |= (pfc_map << DCBX_PFC_PRI_EN_BITMAP_SHIFT);
1017
1018 DP_VERBOSE(p_hwfn, QED_MSG_DCB, "pfc = 0x%x\n", *pfc);
1019}
1020
1021static void
1022qed_dcbx_set_ets_data(struct qed_hwfn *p_hwfn,
1023 struct dcbx_ets_feature *p_ets,
1024 struct qed_dcbx_params *p_params)
1025{
1026 u8 *bw_map, *tsa_map;
1027 u32 val;
1028 int i;
1029
1030 if (p_params->ets_willing)
1031 p_ets->flags |= DCBX_ETS_WILLING_MASK;
1032 else
1033 p_ets->flags &= ~DCBX_ETS_WILLING_MASK;
1034
1035 if (p_params->ets_cbs)
1036 p_ets->flags |= DCBX_ETS_CBS_MASK;
1037 else
1038 p_ets->flags &= ~DCBX_ETS_CBS_MASK;
1039
1040 if (p_params->ets_enabled)
1041 p_ets->flags |= DCBX_ETS_ENABLED_MASK;
1042 else
1043 p_ets->flags &= ~DCBX_ETS_ENABLED_MASK;
1044
1045 p_ets->flags &= ~DCBX_ETS_MAX_TCS_MASK;
1046 p_ets->flags |= (u32)p_params->max_ets_tc << DCBX_ETS_MAX_TCS_SHIFT;
1047
1048 bw_map = (u8 *)&p_ets->tc_bw_tbl[0];
1049 tsa_map = (u8 *)&p_ets->tc_tsa_tbl[0];
1050 p_ets->pri_tc_tbl[0] = 0;
1051 for (i = 0; i < QED_MAX_PFC_PRIORITIES; i++) {
1052 bw_map[i] = p_params->ets_tc_bw_tbl[i];
1053 tsa_map[i] = p_params->ets_tc_tsa_tbl[i];
1054 /* Copy the priority value to the corresponding 4 bits in the
1055 * traffic class table.
1056 */
1057 val = (((u32)p_params->ets_pri_tc_tbl[i]) << ((7 - i) * 4));
1058 p_ets->pri_tc_tbl[0] |= val;
1059 }
Sudarsana Reddy Kalluru6ad8c632016-06-08 06:22:10 -04001060 for (i = 0; i < 2; i++) {
1061 p_ets->tc_bw_tbl[i] = cpu_to_be32(p_ets->tc_bw_tbl[i]);
1062 p_ets->tc_tsa_tbl[i] = cpu_to_be32(p_ets->tc_tsa_tbl[i]);
1063 }
1064}
1065
1066static void
1067qed_dcbx_set_app_data(struct qed_hwfn *p_hwfn,
1068 struct dcbx_app_priority_feature *p_app,
Sudarsana Reddy Kalluru59bcb792016-08-08 21:57:42 -04001069 struct qed_dcbx_params *p_params, bool ieee)
Sudarsana Reddy Kalluru6ad8c632016-06-08 06:22:10 -04001070{
1071 u32 *entry;
1072 int i;
1073
1074 if (p_params->app_willing)
1075 p_app->flags |= DCBX_APP_WILLING_MASK;
1076 else
1077 p_app->flags &= ~DCBX_APP_WILLING_MASK;
1078
1079 if (p_params->app_valid)
1080 p_app->flags |= DCBX_APP_ENABLED_MASK;
1081 else
1082 p_app->flags &= ~DCBX_APP_ENABLED_MASK;
1083
1084 p_app->flags &= ~DCBX_APP_NUM_ENTRIES_MASK;
1085 p_app->flags |= (u32)p_params->num_app_entries <<
1086 DCBX_APP_NUM_ENTRIES_SHIFT;
1087
1088 for (i = 0; i < DCBX_MAX_APP_PROTOCOL; i++) {
1089 entry = &p_app->app_pri_tbl[i].entry;
Sudarsana Reddy Kalluruc5e801d2016-08-29 08:29:54 -04001090 *entry = 0;
Sudarsana Reddy Kalluru59bcb792016-08-08 21:57:42 -04001091 if (ieee) {
Sudarsana Reddy Kalluru5ec5dfa2016-08-29 08:29:53 -04001092 *entry &= ~(DCBX_APP_SF_IEEE_MASK | DCBX_APP_SF_MASK);
Sudarsana Reddy Kalluru59bcb792016-08-08 21:57:42 -04001093 switch (p_params->app_entry[i].sf_ieee) {
1094 case QED_DCBX_SF_IEEE_ETHTYPE:
1095 *entry |= ((u32)DCBX_APP_SF_IEEE_ETHTYPE <<
1096 DCBX_APP_SF_IEEE_SHIFT);
Sudarsana Reddy Kalluru5ec5dfa2016-08-29 08:29:53 -04001097 *entry |= ((u32)DCBX_APP_SF_ETHTYPE <<
1098 DCBX_APP_SF_SHIFT);
Sudarsana Reddy Kalluru59bcb792016-08-08 21:57:42 -04001099 break;
1100 case QED_DCBX_SF_IEEE_TCP_PORT:
1101 *entry |= ((u32)DCBX_APP_SF_IEEE_TCP_PORT <<
1102 DCBX_APP_SF_IEEE_SHIFT);
Sudarsana Reddy Kalluru5ec5dfa2016-08-29 08:29:53 -04001103 *entry |= ((u32)DCBX_APP_SF_PORT <<
1104 DCBX_APP_SF_SHIFT);
Sudarsana Reddy Kalluru59bcb792016-08-08 21:57:42 -04001105 break;
1106 case QED_DCBX_SF_IEEE_UDP_PORT:
1107 *entry |= ((u32)DCBX_APP_SF_IEEE_UDP_PORT <<
1108 DCBX_APP_SF_IEEE_SHIFT);
Sudarsana Reddy Kalluru5ec5dfa2016-08-29 08:29:53 -04001109 *entry |= ((u32)DCBX_APP_SF_PORT <<
1110 DCBX_APP_SF_SHIFT);
Sudarsana Reddy Kalluru59bcb792016-08-08 21:57:42 -04001111 break;
1112 case QED_DCBX_SF_IEEE_TCP_UDP_PORT:
1113 *entry |= ((u32)DCBX_APP_SF_IEEE_TCP_UDP_PORT <<
1114 DCBX_APP_SF_IEEE_SHIFT);
Sudarsana Reddy Kalluru5ec5dfa2016-08-29 08:29:53 -04001115 *entry |= ((u32)DCBX_APP_SF_PORT <<
1116 DCBX_APP_SF_SHIFT);
Sudarsana Reddy Kalluru59bcb792016-08-08 21:57:42 -04001117 break;
1118 }
1119 } else {
1120 *entry &= ~DCBX_APP_SF_MASK;
1121 if (p_params->app_entry[i].ethtype)
1122 *entry |= ((u32)DCBX_APP_SF_ETHTYPE <<
1123 DCBX_APP_SF_SHIFT);
1124 else
1125 *entry |= ((u32)DCBX_APP_SF_PORT <<
1126 DCBX_APP_SF_SHIFT);
1127 }
1128
Sudarsana Reddy Kalluru6ad8c632016-06-08 06:22:10 -04001129 *entry &= ~DCBX_APP_PROTOCOL_ID_MASK;
1130 *entry |= ((u32)p_params->app_entry[i].proto_id <<
1131 DCBX_APP_PROTOCOL_ID_SHIFT);
1132 *entry &= ~DCBX_APP_PRI_MAP_MASK;
1133 *entry |= ((u32)(p_params->app_entry[i].prio) <<
1134 DCBX_APP_PRI_MAP_SHIFT);
1135 }
1136}
1137
1138static void
1139qed_dcbx_set_local_params(struct qed_hwfn *p_hwfn,
1140 struct dcbx_local_params *local_admin,
1141 struct qed_dcbx_set *params)
1142{
Sudarsana Reddy Kalluru59bcb792016-08-08 21:57:42 -04001143 bool ieee = false;
1144
Sudarsana Reddy Kalluru6ad8c632016-06-08 06:22:10 -04001145 local_admin->flags = 0;
1146 memcpy(&local_admin->features,
1147 &p_hwfn->p_dcbx_info->operational.features,
1148 sizeof(local_admin->features));
1149
Sudarsana Reddy Kalluru59bcb792016-08-08 21:57:42 -04001150 if (params->enabled) {
Sudarsana Reddy Kalluru6ad8c632016-06-08 06:22:10 -04001151 local_admin->config = params->ver_num;
Sudarsana Reddy Kalluru59bcb792016-08-08 21:57:42 -04001152 ieee = !!(params->ver_num & DCBX_CONFIG_VERSION_IEEE);
1153 } else {
Sudarsana Reddy Kalluru6ad8c632016-06-08 06:22:10 -04001154 local_admin->config = DCBX_CONFIG_VERSION_DISABLED;
Sudarsana Reddy Kalluru59bcb792016-08-08 21:57:42 -04001155 }
Sudarsana Reddy Kalluru6ad8c632016-06-08 06:22:10 -04001156
sudarsana.kalluru@cavium.comdfbeb852017-04-20 22:31:18 -07001157 DP_VERBOSE(p_hwfn, QED_MSG_DCB, "Dcbx version = %d\n",
1158 local_admin->config);
1159
Sudarsana Reddy Kalluru6ad8c632016-06-08 06:22:10 -04001160 if (params->override_flags & QED_DCBX_OVERRIDE_PFC_CFG)
1161 qed_dcbx_set_pfc_data(p_hwfn, &local_admin->features.pfc,
1162 &params->config.params);
1163
1164 if (params->override_flags & QED_DCBX_OVERRIDE_ETS_CFG)
1165 qed_dcbx_set_ets_data(p_hwfn, &local_admin->features.ets,
1166 &params->config.params);
1167
1168 if (params->override_flags & QED_DCBX_OVERRIDE_APP_CFG)
1169 qed_dcbx_set_app_data(p_hwfn, &local_admin->features.app,
Sudarsana Reddy Kalluru59bcb792016-08-08 21:57:42 -04001170 &params->config.params, ieee);
Sudarsana Reddy Kalluru6ad8c632016-06-08 06:22:10 -04001171}
1172
1173int qed_dcbx_config_params(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt,
1174 struct qed_dcbx_set *params, bool hw_commit)
1175{
1176 struct dcbx_local_params local_admin;
1177 struct qed_dcbx_mib_meta_data data;
1178 u32 resp = 0, param = 0;
1179 int rc = 0;
1180
1181 if (!hw_commit) {
1182 memcpy(&p_hwfn->p_dcbx_info->set, params,
1183 sizeof(struct qed_dcbx_set));
1184 return 0;
1185 }
1186
1187 /* clear set-parmas cache */
1188 memset(&p_hwfn->p_dcbx_info->set, 0, sizeof(p_hwfn->p_dcbx_info->set));
1189
1190 memset(&local_admin, 0, sizeof(local_admin));
1191 qed_dcbx_set_local_params(p_hwfn, &local_admin, params);
1192
1193 data.addr = p_hwfn->mcp_info->port_addr +
1194 offsetof(struct public_port, local_admin_dcbx_mib);
1195 data.local_admin = &local_admin;
1196 data.size = sizeof(struct dcbx_local_params);
1197 qed_memcpy_to(p_hwfn, p_ptt, data.addr, data.local_admin, data.size);
1198
1199 rc = qed_mcp_cmd(p_hwfn, p_ptt, DRV_MSG_CODE_SET_DCBX,
1200 1 << DRV_MB_PARAM_LLDP_SEND_SHIFT, &resp, &param);
1201 if (rc)
1202 DP_NOTICE(p_hwfn, "Failed to send DCBX update request\n");
1203
1204 return rc;
1205}
1206
1207int qed_dcbx_get_config_params(struct qed_hwfn *p_hwfn,
1208 struct qed_dcbx_set *params)
1209{
1210 struct qed_dcbx_get *dcbx_info;
1211 int rc;
1212
1213 if (p_hwfn->p_dcbx_info->set.config.valid) {
1214 memcpy(params, &p_hwfn->p_dcbx_info->set,
1215 sizeof(struct qed_dcbx_set));
1216 return 0;
1217 }
1218
Wu Fengguang561ed232016-09-01 14:45:12 +08001219 dcbx_info = kzalloc(sizeof(*dcbx_info), GFP_KERNEL);
Joe Perches2591c282016-09-04 14:24:03 -07001220 if (!dcbx_info)
Sudarsana Reddy Kalluru6ad8c632016-06-08 06:22:10 -04001221 return -ENOMEM;
Sudarsana Reddy Kalluru6ad8c632016-06-08 06:22:10 -04001222
Sudarsana Reddy Kalluru15c6de22016-10-21 04:43:44 -04001223 memset(dcbx_info, 0, sizeof(*dcbx_info));
Sudarsana Reddy Kalluru6ad8c632016-06-08 06:22:10 -04001224 rc = qed_dcbx_query_params(p_hwfn, dcbx_info, QED_DCBX_OPERATIONAL_MIB);
1225 if (rc) {
1226 kfree(dcbx_info);
1227 return rc;
1228 }
1229
1230 p_hwfn->p_dcbx_info->set.override_flags = 0;
1231 p_hwfn->p_dcbx_info->set.ver_num = DCBX_CONFIG_VERSION_DISABLED;
1232 if (dcbx_info->operational.cee)
1233 p_hwfn->p_dcbx_info->set.ver_num |= DCBX_CONFIG_VERSION_CEE;
1234 if (dcbx_info->operational.ieee)
1235 p_hwfn->p_dcbx_info->set.ver_num |= DCBX_CONFIG_VERSION_IEEE;
sudarsana.kalluru@cavium.com49632b582017-04-20 22:31:20 -07001236 if (dcbx_info->operational.local)
1237 p_hwfn->p_dcbx_info->set.ver_num |= DCBX_CONFIG_VERSION_STATIC;
Sudarsana Reddy Kalluru6ad8c632016-06-08 06:22:10 -04001238
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 |
Sudarsana Reddy Kalluru05930d12017-05-29 09:53:05 +03001453 DCB_CAP_DCBX_VER_IEEE | DCB_CAP_DCBX_STATIC);
Sudarsana Reddy Kallurua1d8d8a2016-06-08 06:22:11 -04001454 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;
Sudarsana Reddy Kalluru05930d12017-05-29 09:53:05 +03001527 if (dcbx_info->operational.local)
1528 mode |= DCB_CAP_DCBX_STATIC;
Sudarsana Reddy Kallurua1d8d8a2016-06-08 06:22:11 -04001529
1530 DP_VERBOSE(hwfn, QED_MSG_DCB, "dcb mode = %d\n", mode);
1531 kfree(dcbx_info);
1532
1533 return mode;
1534}
1535
1536static void qed_dcbnl_setpgtccfgtx(struct qed_dev *cdev,
1537 int tc,
1538 u8 pri_type, u8 pgid, u8 bw_pct, u8 up_map)
1539{
1540 struct qed_hwfn *hwfn = QED_LEADING_HWFN(cdev);
1541 struct qed_dcbx_set dcbx_set;
1542 struct qed_ptt *ptt;
1543 int rc;
1544
1545 DP_VERBOSE(hwfn, QED_MSG_DCB,
1546 "tc = %d pri_type = %d pgid = %d bw_pct = %d up_map = %d\n",
1547 tc, pri_type, pgid, bw_pct, up_map);
1548
1549 if (tc < 0 || tc >= QED_MAX_PFC_PRIORITIES) {
1550 DP_INFO(hwfn, "Invalid tc %d\n", tc);
1551 return;
1552 }
1553
1554 memset(&dcbx_set, 0, sizeof(dcbx_set));
1555 rc = qed_dcbx_get_config_params(hwfn, &dcbx_set);
1556 if (rc)
1557 return;
1558
1559 dcbx_set.override_flags |= QED_DCBX_OVERRIDE_ETS_CFG;
1560 dcbx_set.config.params.ets_pri_tc_tbl[tc] = pgid;
1561
1562 ptt = qed_ptt_acquire(hwfn);
1563 if (!ptt)
1564 return;
1565
1566 rc = qed_dcbx_config_params(hwfn, ptt, &dcbx_set, 0);
1567
1568 qed_ptt_release(hwfn, ptt);
1569}
1570
1571static void qed_dcbnl_setpgtccfgrx(struct qed_dev *cdev, int prio,
1572 u8 pri_type, u8 pgid, u8 bw_pct, u8 up_map)
1573{
1574 DP_INFO(QED_LEADING_HWFN(cdev), "Rx ETS is not supported\n");
1575}
1576
1577static void qed_dcbnl_setpgbwgcfgtx(struct qed_dev *cdev, int pgid, u8 bw_pct)
1578{
1579 struct qed_hwfn *hwfn = QED_LEADING_HWFN(cdev);
1580 struct qed_dcbx_set dcbx_set;
1581 struct qed_ptt *ptt;
1582 int rc;
1583
1584 DP_VERBOSE(hwfn, QED_MSG_DCB, "pgid = %d bw_pct = %d\n", pgid, bw_pct);
1585 if (pgid < 0 || pgid >= QED_MAX_PFC_PRIORITIES) {
1586 DP_INFO(hwfn, "Invalid pgid %d\n", pgid);
1587 return;
1588 }
1589
1590 memset(&dcbx_set, 0, sizeof(dcbx_set));
1591 rc = qed_dcbx_get_config_params(hwfn, &dcbx_set);
1592 if (rc)
1593 return;
1594
1595 dcbx_set.override_flags |= QED_DCBX_OVERRIDE_ETS_CFG;
1596 dcbx_set.config.params.ets_tc_bw_tbl[pgid] = bw_pct;
1597
1598 ptt = qed_ptt_acquire(hwfn);
1599 if (!ptt)
1600 return;
1601
1602 rc = qed_dcbx_config_params(hwfn, ptt, &dcbx_set, 0);
1603
1604 qed_ptt_release(hwfn, ptt);
1605}
1606
1607static void qed_dcbnl_setpgbwgcfgrx(struct qed_dev *cdev, int pgid, u8 bw_pct)
1608{
1609 DP_INFO(QED_LEADING_HWFN(cdev), "Rx ETS is not supported\n");
1610}
1611
1612static u8 qed_dcbnl_setall(struct qed_dev *cdev)
1613{
1614 struct qed_hwfn *hwfn = QED_LEADING_HWFN(cdev);
1615 struct qed_dcbx_set dcbx_set;
1616 struct qed_ptt *ptt;
1617 int rc;
1618
1619 memset(&dcbx_set, 0, sizeof(dcbx_set));
1620 rc = qed_dcbx_get_config_params(hwfn, &dcbx_set);
1621 if (rc)
1622 return 1;
1623
1624 ptt = qed_ptt_acquire(hwfn);
1625 if (!ptt)
1626 return 1;
1627
1628 rc = qed_dcbx_config_params(hwfn, ptt, &dcbx_set, 1);
1629
1630 qed_ptt_release(hwfn, ptt);
1631
1632 return rc;
1633}
1634
1635static int qed_dcbnl_setnumtcs(struct qed_dev *cdev, int tcid, u8 num)
1636{
1637 struct qed_hwfn *hwfn = QED_LEADING_HWFN(cdev);
1638 struct qed_dcbx_set dcbx_set;
1639 struct qed_ptt *ptt;
1640 int rc;
1641
1642 DP_VERBOSE(hwfn, QED_MSG_DCB, "tcid = %d num = %d\n", tcid, num);
1643 memset(&dcbx_set, 0, sizeof(dcbx_set));
1644 rc = qed_dcbx_get_config_params(hwfn, &dcbx_set);
1645 if (rc)
1646 return 1;
1647
1648 switch (tcid) {
1649 case DCB_NUMTCS_ATTR_PG:
1650 dcbx_set.override_flags |= QED_DCBX_OVERRIDE_ETS_CFG;
1651 dcbx_set.config.params.max_ets_tc = num;
1652 break;
1653 case DCB_NUMTCS_ATTR_PFC:
1654 dcbx_set.override_flags |= QED_DCBX_OVERRIDE_PFC_CFG;
1655 dcbx_set.config.params.pfc.max_tc = num;
1656 break;
1657 default:
1658 DP_INFO(hwfn, "Invalid tcid %d\n", tcid);
1659 return -EINVAL;
1660 }
1661
1662 ptt = qed_ptt_acquire(hwfn);
1663 if (!ptt)
1664 return -EINVAL;
1665
1666 rc = qed_dcbx_config_params(hwfn, ptt, &dcbx_set, 0);
1667
1668 qed_ptt_release(hwfn, ptt);
1669
1670 return 0;
1671}
1672
1673static void qed_dcbnl_setpfcstate(struct qed_dev *cdev, u8 state)
1674{
1675 struct qed_hwfn *hwfn = QED_LEADING_HWFN(cdev);
1676 struct qed_dcbx_set dcbx_set;
1677 struct qed_ptt *ptt;
1678 int rc;
1679
1680 DP_VERBOSE(hwfn, QED_MSG_DCB, "new state = %d\n", state);
1681
1682 memset(&dcbx_set, 0, sizeof(dcbx_set));
1683 rc = qed_dcbx_get_config_params(hwfn, &dcbx_set);
1684 if (rc)
1685 return;
1686
1687 dcbx_set.override_flags |= QED_DCBX_OVERRIDE_PFC_CFG;
1688 dcbx_set.config.params.pfc.enabled = !!state;
1689
1690 ptt = qed_ptt_acquire(hwfn);
1691 if (!ptt)
1692 return;
1693
1694 rc = qed_dcbx_config_params(hwfn, ptt, &dcbx_set, 0);
1695
1696 qed_ptt_release(hwfn, ptt);
1697}
1698
1699static int qed_dcbnl_getapp(struct qed_dev *cdev, u8 idtype, u16 idval)
1700{
1701 struct qed_hwfn *hwfn = QED_LEADING_HWFN(cdev);
1702 struct qed_dcbx_get *dcbx_info;
1703 struct qed_app_entry *entry;
1704 bool ethtype;
1705 u8 prio = 0;
1706 int i;
1707
1708 dcbx_info = qed_dcbnl_get_dcbx(hwfn, QED_DCBX_OPERATIONAL_MIB);
1709 if (!dcbx_info)
1710 return -EINVAL;
1711
1712 ethtype = !!(idtype == DCB_APP_IDTYPE_ETHTYPE);
1713 for (i = 0; i < QED_DCBX_MAX_APP_PROTOCOL; i++) {
1714 entry = &dcbx_info->operational.params.app_entry[i];
1715 if ((entry->ethtype == ethtype) && (entry->proto_id == idval)) {
1716 prio = entry->prio;
1717 break;
1718 }
1719 }
1720
1721 if (i == QED_DCBX_MAX_APP_PROTOCOL) {
1722 DP_ERR(cdev, "App entry (%d, %d) not found\n", idtype, idval);
1723 kfree(dcbx_info);
1724 return -EINVAL;
1725 }
1726
1727 kfree(dcbx_info);
1728
1729 return prio;
1730}
1731
1732static int qed_dcbnl_setapp(struct qed_dev *cdev,
1733 u8 idtype, u16 idval, u8 pri_map)
1734{
1735 struct qed_hwfn *hwfn = QED_LEADING_HWFN(cdev);
1736 struct qed_dcbx_set dcbx_set;
1737 struct qed_app_entry *entry;
1738 struct qed_ptt *ptt;
1739 bool ethtype;
1740 int rc, i;
1741
1742 memset(&dcbx_set, 0, sizeof(dcbx_set));
1743 rc = qed_dcbx_get_config_params(hwfn, &dcbx_set);
1744 if (rc)
1745 return -EINVAL;
1746
1747 ethtype = !!(idtype == DCB_APP_IDTYPE_ETHTYPE);
1748 for (i = 0; i < QED_DCBX_MAX_APP_PROTOCOL; i++) {
1749 entry = &dcbx_set.config.params.app_entry[i];
1750 if ((entry->ethtype == ethtype) && (entry->proto_id == idval))
1751 break;
1752 /* First empty slot */
Sudarsana Reddy Kalluru1d7406ce2016-08-08 21:57:43 -04001753 if (!entry->proto_id) {
1754 dcbx_set.config.params.num_app_entries++;
Sudarsana Reddy Kallurua1d8d8a2016-06-08 06:22:11 -04001755 break;
Sudarsana Reddy Kalluru1d7406ce2016-08-08 21:57:43 -04001756 }
Sudarsana Reddy Kallurua1d8d8a2016-06-08 06:22:11 -04001757 }
1758
1759 if (i == QED_DCBX_MAX_APP_PROTOCOL) {
1760 DP_ERR(cdev, "App table is full\n");
1761 return -EBUSY;
1762 }
1763
1764 dcbx_set.override_flags |= QED_DCBX_OVERRIDE_APP_CFG;
1765 dcbx_set.config.params.app_entry[i].ethtype = ethtype;
1766 dcbx_set.config.params.app_entry[i].proto_id = idval;
1767 dcbx_set.config.params.app_entry[i].prio = pri_map;
1768
1769 ptt = qed_ptt_acquire(hwfn);
1770 if (!ptt)
1771 return -EBUSY;
1772
1773 rc = qed_dcbx_config_params(hwfn, ptt, &dcbx_set, 0);
1774
1775 qed_ptt_release(hwfn, ptt);
1776
1777 return rc;
1778}
1779
1780static u8 qed_dcbnl_setdcbx(struct qed_dev *cdev, u8 mode)
1781{
1782 struct qed_hwfn *hwfn = QED_LEADING_HWFN(cdev);
1783 struct qed_dcbx_set dcbx_set;
1784 struct qed_ptt *ptt;
1785 int rc;
1786
1787 DP_VERBOSE(hwfn, QED_MSG_DCB, "new mode = %x\n", mode);
1788
sudarsana.kalluru@cavium.com49632b582017-04-20 22:31:20 -07001789 if (!(mode & DCB_CAP_DCBX_VER_IEEE) &&
1790 !(mode & DCB_CAP_DCBX_VER_CEE) && !(mode & DCB_CAP_DCBX_STATIC)) {
1791 DP_INFO(hwfn, "Allowed modes are cee, ieee or static\n");
Sudarsana Reddy Kallurua1d8d8a2016-06-08 06:22:11 -04001792 return 1;
1793 }
1794
1795 memset(&dcbx_set, 0, sizeof(dcbx_set));
1796 rc = qed_dcbx_get_config_params(hwfn, &dcbx_set);
1797 if (rc)
1798 return 1;
1799
1800 dcbx_set.ver_num = 0;
1801 if (mode & DCB_CAP_DCBX_VER_CEE) {
1802 dcbx_set.ver_num |= DCBX_CONFIG_VERSION_CEE;
1803 dcbx_set.enabled = true;
1804 }
1805
1806 if (mode & DCB_CAP_DCBX_VER_IEEE) {
1807 dcbx_set.ver_num |= DCBX_CONFIG_VERSION_IEEE;
1808 dcbx_set.enabled = true;
1809 }
1810
sudarsana.kalluru@cavium.com49632b582017-04-20 22:31:20 -07001811 if (mode & DCB_CAP_DCBX_STATIC) {
1812 dcbx_set.ver_num |= DCBX_CONFIG_VERSION_STATIC;
1813 dcbx_set.enabled = true;
1814 }
1815
Sudarsana Reddy Kallurua1d8d8a2016-06-08 06:22:11 -04001816 ptt = qed_ptt_acquire(hwfn);
1817 if (!ptt)
1818 return 1;
1819
1820 rc = qed_dcbx_config_params(hwfn, ptt, &dcbx_set, 0);
1821
1822 qed_ptt_release(hwfn, ptt);
1823
sudarsana.kalluru@cavium.com49632b582017-04-20 22:31:20 -07001824 return rc;
Sudarsana Reddy Kallurua1d8d8a2016-06-08 06:22:11 -04001825}
1826
1827static u8 qed_dcbnl_getfeatcfg(struct qed_dev *cdev, int featid, u8 *flags)
1828{
1829 struct qed_hwfn *hwfn = QED_LEADING_HWFN(cdev);
1830 struct qed_dcbx_get *dcbx_info;
1831
1832 DP_VERBOSE(hwfn, QED_MSG_DCB, "Feature id = %d\n", featid);
1833 dcbx_info = qed_dcbnl_get_dcbx(hwfn, QED_DCBX_OPERATIONAL_MIB);
1834 if (!dcbx_info)
1835 return 1;
1836
1837 *flags = 0;
1838 switch (featid) {
1839 case DCB_FEATCFG_ATTR_PG:
1840 if (dcbx_info->operational.params.ets_enabled)
1841 *flags = DCB_FEATCFG_ENABLE;
1842 else
1843 *flags = DCB_FEATCFG_ERROR;
1844 break;
1845 case DCB_FEATCFG_ATTR_PFC:
1846 if (dcbx_info->operational.params.pfc.enabled)
1847 *flags = DCB_FEATCFG_ENABLE;
1848 else
1849 *flags = DCB_FEATCFG_ERROR;
1850 break;
1851 case DCB_FEATCFG_ATTR_APP:
1852 if (dcbx_info->operational.params.app_valid)
1853 *flags = DCB_FEATCFG_ENABLE;
1854 else
1855 *flags = DCB_FEATCFG_ERROR;
1856 break;
1857 default:
1858 DP_INFO(hwfn, "Invalid feature-ID %d\n", featid);
1859 kfree(dcbx_info);
1860 return 1;
1861 }
1862
1863 DP_VERBOSE(hwfn, QED_MSG_DCB, "flags = %d\n", *flags);
1864 kfree(dcbx_info);
1865
1866 return 0;
1867}
1868
1869static u8 qed_dcbnl_setfeatcfg(struct qed_dev *cdev, int featid, u8 flags)
1870{
1871 struct qed_hwfn *hwfn = QED_LEADING_HWFN(cdev);
1872 struct qed_dcbx_set dcbx_set;
1873 bool enabled, willing;
1874 struct qed_ptt *ptt;
1875 int rc;
1876
1877 DP_VERBOSE(hwfn, QED_MSG_DCB, "featid = %d flags = %d\n",
1878 featid, flags);
1879 memset(&dcbx_set, 0, sizeof(dcbx_set));
1880 rc = qed_dcbx_get_config_params(hwfn, &dcbx_set);
1881 if (rc)
1882 return 1;
1883
1884 enabled = !!(flags & DCB_FEATCFG_ENABLE);
1885 willing = !!(flags & DCB_FEATCFG_WILLING);
1886 switch (featid) {
1887 case DCB_FEATCFG_ATTR_PG:
1888 dcbx_set.override_flags |= QED_DCBX_OVERRIDE_ETS_CFG;
1889 dcbx_set.config.params.ets_enabled = enabled;
1890 dcbx_set.config.params.ets_willing = willing;
1891 break;
1892 case DCB_FEATCFG_ATTR_PFC:
1893 dcbx_set.override_flags |= QED_DCBX_OVERRIDE_PFC_CFG;
1894 dcbx_set.config.params.pfc.enabled = enabled;
1895 dcbx_set.config.params.pfc.willing = willing;
1896 break;
1897 case DCB_FEATCFG_ATTR_APP:
1898 dcbx_set.override_flags |= QED_DCBX_OVERRIDE_APP_CFG;
1899 dcbx_set.config.params.app_willing = willing;
1900 break;
1901 default:
1902 DP_INFO(hwfn, "Invalid feature-ID %d\n", featid);
1903 return 1;
1904 }
1905
1906 ptt = qed_ptt_acquire(hwfn);
1907 if (!ptt)
1908 return 1;
1909
1910 rc = qed_dcbx_config_params(hwfn, ptt, &dcbx_set, 0);
1911
1912 qed_ptt_release(hwfn, ptt);
1913
1914 return 0;
1915}
1916
1917static int qed_dcbnl_peer_getappinfo(struct qed_dev *cdev,
1918 struct dcb_peer_app_info *info,
1919 u16 *app_count)
1920{
1921 struct qed_hwfn *hwfn = QED_LEADING_HWFN(cdev);
1922 struct qed_dcbx_get *dcbx_info;
1923
1924 dcbx_info = qed_dcbnl_get_dcbx(hwfn, QED_DCBX_REMOTE_MIB);
1925 if (!dcbx_info)
1926 return -EINVAL;
1927
1928 info->willing = dcbx_info->remote.params.app_willing;
1929 info->error = dcbx_info->remote.params.app_error;
1930 *app_count = dcbx_info->remote.params.num_app_entries;
1931 kfree(dcbx_info);
1932
1933 return 0;
1934}
1935
1936static int qed_dcbnl_peer_getapptable(struct qed_dev *cdev,
1937 struct dcb_app *table)
1938{
1939 struct qed_hwfn *hwfn = QED_LEADING_HWFN(cdev);
1940 struct qed_dcbx_get *dcbx_info;
1941 int i;
1942
1943 dcbx_info = qed_dcbnl_get_dcbx(hwfn, QED_DCBX_REMOTE_MIB);
1944 if (!dcbx_info)
1945 return -EINVAL;
1946
1947 for (i = 0; i < dcbx_info->remote.params.num_app_entries; i++) {
1948 if (dcbx_info->remote.params.app_entry[i].ethtype)
1949 table[i].selector = DCB_APP_IDTYPE_ETHTYPE;
1950 else
1951 table[i].selector = DCB_APP_IDTYPE_PORTNUM;
1952 table[i].priority = dcbx_info->remote.params.app_entry[i].prio;
1953 table[i].protocol =
1954 dcbx_info->remote.params.app_entry[i].proto_id;
1955 }
1956
1957 kfree(dcbx_info);
1958
1959 return 0;
1960}
1961
1962static int qed_dcbnl_cee_peer_getpfc(struct qed_dev *cdev, struct cee_pfc *pfc)
1963{
1964 struct qed_hwfn *hwfn = QED_LEADING_HWFN(cdev);
1965 struct qed_dcbx_get *dcbx_info;
1966 int i;
1967
1968 dcbx_info = qed_dcbnl_get_dcbx(hwfn, QED_DCBX_REMOTE_MIB);
1969 if (!dcbx_info)
1970 return -EINVAL;
1971
1972 for (i = 0; i < QED_MAX_PFC_PRIORITIES; i++)
1973 if (dcbx_info->remote.params.pfc.prio[i])
1974 pfc->pfc_en |= BIT(i);
1975
1976 pfc->tcs_supported = dcbx_info->remote.params.pfc.max_tc;
1977 DP_VERBOSE(hwfn, QED_MSG_DCB, "pfc state = %d tcs_supported = %d\n",
1978 pfc->pfc_en, pfc->tcs_supported);
1979 kfree(dcbx_info);
1980
1981 return 0;
1982}
1983
1984static int qed_dcbnl_cee_peer_getpg(struct qed_dev *cdev, struct cee_pg *pg)
1985{
1986 struct qed_hwfn *hwfn = QED_LEADING_HWFN(cdev);
1987 struct qed_dcbx_get *dcbx_info;
1988 int i;
1989
1990 dcbx_info = qed_dcbnl_get_dcbx(hwfn, QED_DCBX_REMOTE_MIB);
1991 if (!dcbx_info)
1992 return -EINVAL;
1993
1994 pg->willing = dcbx_info->remote.params.ets_willing;
1995 for (i = 0; i < QED_MAX_PFC_PRIORITIES; i++) {
1996 pg->pg_bw[i] = dcbx_info->remote.params.ets_tc_bw_tbl[i];
1997 pg->prio_pg[i] = dcbx_info->remote.params.ets_pri_tc_tbl[i];
1998 }
1999
2000 DP_VERBOSE(hwfn, QED_MSG_DCB, "willing = %d", pg->willing);
2001 kfree(dcbx_info);
2002
2003 return 0;
2004}
2005
2006static int qed_dcbnl_get_ieee_pfc(struct qed_dev *cdev,
2007 struct ieee_pfc *pfc, bool remote)
2008{
2009 struct qed_hwfn *hwfn = QED_LEADING_HWFN(cdev);
2010 struct qed_dcbx_params *params;
2011 struct qed_dcbx_get *dcbx_info;
2012 int rc, i;
2013
2014 dcbx_info = qed_dcbnl_get_dcbx(hwfn, QED_DCBX_OPERATIONAL_MIB);
2015 if (!dcbx_info)
2016 return -EINVAL;
2017
2018 if (!dcbx_info->operational.ieee) {
2019 DP_INFO(hwfn, "DCBX is not enabled/operational in IEEE mode\n");
Wei Yongjun02ee9b12016-08-11 23:29:54 +00002020 kfree(dcbx_info);
Sudarsana Reddy Kallurua1d8d8a2016-06-08 06:22:11 -04002021 return -EINVAL;
2022 }
2023
2024 if (remote) {
2025 memset(dcbx_info, 0, sizeof(*dcbx_info));
2026 rc = qed_dcbx_query_params(hwfn, dcbx_info,
2027 QED_DCBX_REMOTE_MIB);
2028 if (rc) {
2029 kfree(dcbx_info);
2030 return -EINVAL;
2031 }
2032
2033 params = &dcbx_info->remote.params;
2034 } else {
2035 params = &dcbx_info->operational.params;
2036 }
2037
2038 pfc->pfc_cap = params->pfc.max_tc;
2039 pfc->pfc_en = 0;
2040 for (i = 0; i < QED_MAX_PFC_PRIORITIES; i++)
2041 if (params->pfc.prio[i])
2042 pfc->pfc_en |= BIT(i);
2043
2044 kfree(dcbx_info);
2045
2046 return 0;
2047}
2048
2049static int qed_dcbnl_ieee_getpfc(struct qed_dev *cdev, struct ieee_pfc *pfc)
2050{
2051 return qed_dcbnl_get_ieee_pfc(cdev, pfc, false);
2052}
2053
2054static int qed_dcbnl_ieee_setpfc(struct qed_dev *cdev, struct ieee_pfc *pfc)
2055{
2056 struct qed_hwfn *hwfn = QED_LEADING_HWFN(cdev);
2057 struct qed_dcbx_get *dcbx_info;
2058 struct qed_dcbx_set dcbx_set;
2059 struct qed_ptt *ptt;
2060 int rc, i;
2061
2062 dcbx_info = qed_dcbnl_get_dcbx(hwfn, QED_DCBX_OPERATIONAL_MIB);
2063 if (!dcbx_info)
2064 return -EINVAL;
2065
2066 if (!dcbx_info->operational.ieee) {
2067 DP_INFO(hwfn, "DCBX is not enabled/operational in IEEE mode\n");
2068 kfree(dcbx_info);
2069 return -EINVAL;
2070 }
2071
2072 kfree(dcbx_info);
2073
2074 memset(&dcbx_set, 0, sizeof(dcbx_set));
2075 rc = qed_dcbx_get_config_params(hwfn, &dcbx_set);
2076 if (rc)
2077 return -EINVAL;
2078
2079 dcbx_set.override_flags |= QED_DCBX_OVERRIDE_PFC_CFG;
2080 for (i = 0; i < QED_MAX_PFC_PRIORITIES; i++)
2081 dcbx_set.config.params.pfc.prio[i] = !!(pfc->pfc_en & BIT(i));
2082
sudarsana.kalluru@cavium.comc0c5dbe2017-04-19 03:19:55 -07002083 dcbx_set.config.params.pfc.max_tc = pfc->pfc_cap;
2084
Sudarsana Reddy Kallurua1d8d8a2016-06-08 06:22:11 -04002085 ptt = qed_ptt_acquire(hwfn);
2086 if (!ptt)
2087 return -EINVAL;
2088
2089 rc = qed_dcbx_config_params(hwfn, ptt, &dcbx_set, 0);
2090
2091 qed_ptt_release(hwfn, ptt);
2092
2093 return rc;
2094}
2095
2096static int qed_dcbnl_get_ieee_ets(struct qed_dev *cdev,
2097 struct ieee_ets *ets, bool remote)
2098{
2099 struct qed_hwfn *hwfn = QED_LEADING_HWFN(cdev);
2100 struct qed_dcbx_get *dcbx_info;
2101 struct qed_dcbx_params *params;
2102 int rc;
2103
2104 dcbx_info = qed_dcbnl_get_dcbx(hwfn, QED_DCBX_OPERATIONAL_MIB);
2105 if (!dcbx_info)
2106 return -EINVAL;
2107
2108 if (!dcbx_info->operational.ieee) {
2109 DP_INFO(hwfn, "DCBX is not enabled/operational in IEEE mode\n");
2110 kfree(dcbx_info);
2111 return -EINVAL;
2112 }
2113
2114 if (remote) {
2115 memset(dcbx_info, 0, sizeof(*dcbx_info));
2116 rc = qed_dcbx_query_params(hwfn, dcbx_info,
2117 QED_DCBX_REMOTE_MIB);
2118 if (rc) {
2119 kfree(dcbx_info);
2120 return -EINVAL;
2121 }
2122
2123 params = &dcbx_info->remote.params;
2124 } else {
2125 params = &dcbx_info->operational.params;
2126 }
2127
2128 ets->ets_cap = params->max_ets_tc;
2129 ets->willing = params->ets_willing;
2130 ets->cbs = params->ets_cbs;
2131 memcpy(ets->tc_tx_bw, params->ets_tc_bw_tbl, sizeof(ets->tc_tx_bw));
2132 memcpy(ets->tc_tsa, params->ets_tc_tsa_tbl, sizeof(ets->tc_tsa));
2133 memcpy(ets->prio_tc, params->ets_pri_tc_tbl, sizeof(ets->prio_tc));
2134 kfree(dcbx_info);
2135
2136 return 0;
2137}
2138
2139static int qed_dcbnl_ieee_getets(struct qed_dev *cdev, struct ieee_ets *ets)
2140{
2141 return qed_dcbnl_get_ieee_ets(cdev, ets, false);
2142}
2143
2144static int qed_dcbnl_ieee_setets(struct qed_dev *cdev, struct ieee_ets *ets)
2145{
2146 struct qed_hwfn *hwfn = QED_LEADING_HWFN(cdev);
2147 struct qed_dcbx_get *dcbx_info;
2148 struct qed_dcbx_set dcbx_set;
2149 struct qed_ptt *ptt;
2150 int rc;
2151
2152 dcbx_info = qed_dcbnl_get_dcbx(hwfn, QED_DCBX_OPERATIONAL_MIB);
2153 if (!dcbx_info)
2154 return -EINVAL;
2155
2156 if (!dcbx_info->operational.ieee) {
2157 DP_INFO(hwfn, "DCBX is not enabled/operational in IEEE mode\n");
2158 kfree(dcbx_info);
2159 return -EINVAL;
2160 }
2161
2162 kfree(dcbx_info);
2163
2164 memset(&dcbx_set, 0, sizeof(dcbx_set));
2165 rc = qed_dcbx_get_config_params(hwfn, &dcbx_set);
2166 if (rc)
2167 return -EINVAL;
2168
2169 dcbx_set.override_flags |= QED_DCBX_OVERRIDE_ETS_CFG;
2170 dcbx_set.config.params.max_ets_tc = ets->ets_cap;
2171 dcbx_set.config.params.ets_willing = ets->willing;
2172 dcbx_set.config.params.ets_cbs = ets->cbs;
2173 memcpy(dcbx_set.config.params.ets_tc_bw_tbl, ets->tc_tx_bw,
2174 sizeof(ets->tc_tx_bw));
2175 memcpy(dcbx_set.config.params.ets_tc_tsa_tbl, ets->tc_tsa,
2176 sizeof(ets->tc_tsa));
2177 memcpy(dcbx_set.config.params.ets_pri_tc_tbl, ets->prio_tc,
2178 sizeof(ets->prio_tc));
2179
2180 ptt = qed_ptt_acquire(hwfn);
2181 if (!ptt)
2182 return -EINVAL;
2183
2184 rc = qed_dcbx_config_params(hwfn, ptt, &dcbx_set, 0);
2185
2186 qed_ptt_release(hwfn, ptt);
2187
2188 return rc;
2189}
2190
Baoyou Xieba569472016-09-09 09:21:15 +08002191static int
2192qed_dcbnl_ieee_peer_getets(struct qed_dev *cdev, struct ieee_ets *ets)
Sudarsana Reddy Kallurua1d8d8a2016-06-08 06:22:11 -04002193{
2194 return qed_dcbnl_get_ieee_ets(cdev, ets, true);
2195}
2196
Baoyou Xieba569472016-09-09 09:21:15 +08002197static int
2198qed_dcbnl_ieee_peer_getpfc(struct qed_dev *cdev, struct ieee_pfc *pfc)
Sudarsana Reddy Kallurua1d8d8a2016-06-08 06:22:11 -04002199{
2200 return qed_dcbnl_get_ieee_pfc(cdev, pfc, true);
2201}
2202
sudarsana.kalluru@cavium.com05a79f92017-04-20 22:31:19 -07002203static int qed_get_sf_ieee_value(u8 selector, u8 *sf_ieee)
2204{
2205 switch (selector) {
2206 case IEEE_8021QAZ_APP_SEL_ETHERTYPE:
2207 *sf_ieee = QED_DCBX_SF_IEEE_ETHTYPE;
2208 break;
2209 case IEEE_8021QAZ_APP_SEL_STREAM:
2210 *sf_ieee = QED_DCBX_SF_IEEE_TCP_PORT;
2211 break;
2212 case IEEE_8021QAZ_APP_SEL_DGRAM:
2213 *sf_ieee = QED_DCBX_SF_IEEE_UDP_PORT;
2214 break;
2215 case IEEE_8021QAZ_APP_SEL_ANY:
2216 *sf_ieee = QED_DCBX_SF_IEEE_TCP_UDP_PORT;
2217 break;
2218 default:
2219 return -EINVAL;
2220 }
2221
2222 return 0;
2223}
2224
Baoyou Xieba569472016-09-09 09:21:15 +08002225static int qed_dcbnl_ieee_getapp(struct qed_dev *cdev, struct dcb_app *app)
Sudarsana Reddy Kallurua1d8d8a2016-06-08 06:22:11 -04002226{
2227 struct qed_hwfn *hwfn = QED_LEADING_HWFN(cdev);
2228 struct qed_dcbx_get *dcbx_info;
2229 struct qed_app_entry *entry;
Sudarsana Reddy Kallurua1d8d8a2016-06-08 06:22:11 -04002230 u8 prio = 0;
sudarsana.kalluru@cavium.com05a79f92017-04-20 22:31:19 -07002231 u8 sf_ieee;
Sudarsana Reddy Kallurua1d8d8a2016-06-08 06:22:11 -04002232 int i;
2233
sudarsana.kalluru@cavium.com05a79f92017-04-20 22:31:19 -07002234 DP_VERBOSE(hwfn, QED_MSG_DCB, "selector = %d protocol = %d\n",
2235 app->selector, app->protocol);
2236
2237 if (qed_get_sf_ieee_value(app->selector, &sf_ieee)) {
2238 DP_INFO(cdev, "Invalid selector field value %d\n",
2239 app->selector);
2240 return -EINVAL;
2241 }
2242
Sudarsana Reddy Kallurua1d8d8a2016-06-08 06:22:11 -04002243 dcbx_info = qed_dcbnl_get_dcbx(hwfn, QED_DCBX_OPERATIONAL_MIB);
2244 if (!dcbx_info)
2245 return -EINVAL;
2246
2247 if (!dcbx_info->operational.ieee) {
2248 DP_INFO(hwfn, "DCBX is not enabled/operational in IEEE mode\n");
2249 kfree(dcbx_info);
2250 return -EINVAL;
2251 }
2252
Sudarsana Reddy Kallurua1d8d8a2016-06-08 06:22:11 -04002253 for (i = 0; i < QED_DCBX_MAX_APP_PROTOCOL; i++) {
2254 entry = &dcbx_info->operational.params.app_entry[i];
sudarsana.kalluru@cavium.com05a79f92017-04-20 22:31:19 -07002255 if ((entry->sf_ieee == sf_ieee) &&
Sudarsana Reddy Kallurua1d8d8a2016-06-08 06:22:11 -04002256 (entry->proto_id == app->protocol)) {
2257 prio = entry->prio;
2258 break;
2259 }
2260 }
2261
2262 if (i == QED_DCBX_MAX_APP_PROTOCOL) {
2263 DP_ERR(cdev, "App entry (%d, %d) not found\n", app->selector,
2264 app->protocol);
2265 kfree(dcbx_info);
2266 return -EINVAL;
2267 }
2268
2269 app->priority = ffs(prio) - 1;
2270
2271 kfree(dcbx_info);
2272
2273 return 0;
2274}
2275
Baoyou Xieba569472016-09-09 09:21:15 +08002276static int qed_dcbnl_ieee_setapp(struct qed_dev *cdev, struct dcb_app *app)
Sudarsana Reddy Kallurua1d8d8a2016-06-08 06:22:11 -04002277{
2278 struct qed_hwfn *hwfn = QED_LEADING_HWFN(cdev);
2279 struct qed_dcbx_get *dcbx_info;
2280 struct qed_dcbx_set dcbx_set;
2281 struct qed_app_entry *entry;
2282 struct qed_ptt *ptt;
sudarsana.kalluru@cavium.com05a79f92017-04-20 22:31:19 -07002283 u8 sf_ieee;
Sudarsana Reddy Kallurua1d8d8a2016-06-08 06:22:11 -04002284 int rc, i;
2285
sudarsana.kalluru@cavium.com05a79f92017-04-20 22:31:19 -07002286 DP_VERBOSE(hwfn, QED_MSG_DCB, "selector = %d protocol = %d pri = %d\n",
2287 app->selector, app->protocol, app->priority);
Sudarsana Reddy Kallurua1d8d8a2016-06-08 06:22:11 -04002288 if (app->priority < 0 || app->priority >= QED_MAX_PFC_PRIORITIES) {
2289 DP_INFO(hwfn, "Invalid priority %d\n", app->priority);
2290 return -EINVAL;
2291 }
2292
sudarsana.kalluru@cavium.com05a79f92017-04-20 22:31:19 -07002293 if (qed_get_sf_ieee_value(app->selector, &sf_ieee)) {
2294 DP_INFO(cdev, "Invalid selector field value %d\n",
2295 app->selector);
2296 return -EINVAL;
2297 }
2298
Sudarsana Reddy Kallurua1d8d8a2016-06-08 06:22:11 -04002299 dcbx_info = qed_dcbnl_get_dcbx(hwfn, QED_DCBX_OPERATIONAL_MIB);
2300 if (!dcbx_info)
2301 return -EINVAL;
2302
2303 if (!dcbx_info->operational.ieee) {
2304 DP_INFO(hwfn, "DCBX is not enabled/operational in IEEE mode\n");
2305 kfree(dcbx_info);
2306 return -EINVAL;
2307 }
2308
2309 kfree(dcbx_info);
2310
2311 memset(&dcbx_set, 0, sizeof(dcbx_set));
2312 rc = qed_dcbx_get_config_params(hwfn, &dcbx_set);
2313 if (rc)
2314 return -EINVAL;
2315
Sudarsana Reddy Kallurua1d8d8a2016-06-08 06:22:11 -04002316 for (i = 0; i < QED_DCBX_MAX_APP_PROTOCOL; i++) {
2317 entry = &dcbx_set.config.params.app_entry[i];
sudarsana.kalluru@cavium.com05a79f92017-04-20 22:31:19 -07002318 if ((entry->sf_ieee == sf_ieee) &&
Sudarsana Reddy Kallurua1d8d8a2016-06-08 06:22:11 -04002319 (entry->proto_id == app->protocol))
2320 break;
2321 /* First empty slot */
Sudarsana Reddy Kalluru1d7406ce2016-08-08 21:57:43 -04002322 if (!entry->proto_id) {
2323 dcbx_set.config.params.num_app_entries++;
Sudarsana Reddy Kallurua1d8d8a2016-06-08 06:22:11 -04002324 break;
Sudarsana Reddy Kalluru1d7406ce2016-08-08 21:57:43 -04002325 }
Sudarsana Reddy Kallurua1d8d8a2016-06-08 06:22:11 -04002326 }
2327
2328 if (i == QED_DCBX_MAX_APP_PROTOCOL) {
2329 DP_ERR(cdev, "App table is full\n");
2330 return -EBUSY;
2331 }
2332
2333 dcbx_set.override_flags |= QED_DCBX_OVERRIDE_APP_CFG;
sudarsana.kalluru@cavium.com05a79f92017-04-20 22:31:19 -07002334 dcbx_set.config.params.app_entry[i].sf_ieee = sf_ieee;
Sudarsana Reddy Kallurua1d8d8a2016-06-08 06:22:11 -04002335 dcbx_set.config.params.app_entry[i].proto_id = app->protocol;
2336 dcbx_set.config.params.app_entry[i].prio = BIT(app->priority);
2337
2338 ptt = qed_ptt_acquire(hwfn);
2339 if (!ptt)
2340 return -EBUSY;
2341
2342 rc = qed_dcbx_config_params(hwfn, ptt, &dcbx_set, 0);
2343
2344 qed_ptt_release(hwfn, ptt);
2345
2346 return rc;
2347}
2348
2349const struct qed_eth_dcbnl_ops qed_dcbnl_ops_pass = {
2350 .getstate = qed_dcbnl_getstate,
2351 .setstate = qed_dcbnl_setstate,
2352 .getpgtccfgtx = qed_dcbnl_getpgtccfgtx,
2353 .getpgbwgcfgtx = qed_dcbnl_getpgbwgcfgtx,
2354 .getpgtccfgrx = qed_dcbnl_getpgtccfgrx,
2355 .getpgbwgcfgrx = qed_dcbnl_getpgbwgcfgrx,
2356 .getpfccfg = qed_dcbnl_getpfccfg,
2357 .setpfccfg = qed_dcbnl_setpfccfg,
2358 .getcap = qed_dcbnl_getcap,
2359 .getnumtcs = qed_dcbnl_getnumtcs,
2360 .getpfcstate = qed_dcbnl_getpfcstate,
2361 .getdcbx = qed_dcbnl_getdcbx,
2362 .setpgtccfgtx = qed_dcbnl_setpgtccfgtx,
2363 .setpgtccfgrx = qed_dcbnl_setpgtccfgrx,
2364 .setpgbwgcfgtx = qed_dcbnl_setpgbwgcfgtx,
2365 .setpgbwgcfgrx = qed_dcbnl_setpgbwgcfgrx,
2366 .setall = qed_dcbnl_setall,
2367 .setnumtcs = qed_dcbnl_setnumtcs,
2368 .setpfcstate = qed_dcbnl_setpfcstate,
2369 .setapp = qed_dcbnl_setapp,
2370 .setdcbx = qed_dcbnl_setdcbx,
2371 .setfeatcfg = qed_dcbnl_setfeatcfg,
2372 .getfeatcfg = qed_dcbnl_getfeatcfg,
2373 .getapp = qed_dcbnl_getapp,
2374 .peer_getappinfo = qed_dcbnl_peer_getappinfo,
2375 .peer_getapptable = qed_dcbnl_peer_getapptable,
2376 .cee_peer_getpfc = qed_dcbnl_cee_peer_getpfc,
2377 .cee_peer_getpg = qed_dcbnl_cee_peer_getpg,
2378 .ieee_getpfc = qed_dcbnl_ieee_getpfc,
2379 .ieee_setpfc = qed_dcbnl_ieee_setpfc,
2380 .ieee_getets = qed_dcbnl_ieee_getets,
2381 .ieee_setets = qed_dcbnl_ieee_setets,
2382 .ieee_peer_getpfc = qed_dcbnl_ieee_peer_getpfc,
2383 .ieee_peer_getets = qed_dcbnl_ieee_peer_getets,
2384 .ieee_getapp = qed_dcbnl_ieee_getapp,
2385 .ieee_setapp = qed_dcbnl_ieee_setapp,
2386};
2387
Sudarsana Reddy Kalluru6ad8c632016-06-08 06:22:10 -04002388#endif