25ae21c8d2e0fcc94f5d998e88ee877e9237bda0
[dpdk.git] / drivers / net / qede / base / ecore_dcbx.c
1 /*
2  * Copyright (c) 2016 QLogic Corporation.
3  * All rights reserved.
4  * www.qlogic.com
5  *
6  * See LICENSE.qede_pmd for copyright and licensing details.
7  */
8
9 #include "bcm_osal.h"
10 #include "ecore.h"
11 #include "ecore_sp_commands.h"
12 #include "ecore_dcbx.h"
13 #include "ecore_cxt.h"
14 #include "ecore_gtt_reg_addr.h"
15 #include "ecore_iro.h"
16 #include "ecore_iov_api.h"
17
18 #define ECORE_DCBX_MAX_MIB_READ_TRY     (100)
19 #define ECORE_ETH_TYPE_DEFAULT          (0)
20
21 #define ECORE_DCBX_INVALID_PRIORITY     0xFF
22
23 /* Get Traffic Class from priority traffic class table, 4 bits represent
24  * the traffic class corresponding to the priority.
25  */
26 #define ECORE_DCBX_PRIO2TC(prio_tc_tbl, prio) \
27                 ((u32)(prio_tc_tbl >> ((7 - prio) * 4)) & 0x7)
28
29 static bool ecore_dcbx_app_ethtype(u32 app_info_bitmap)
30 {
31         return !!(GET_MFW_FIELD(app_info_bitmap, DCBX_APP_SF) ==
32                   DCBX_APP_SF_ETHTYPE);
33 }
34
35 static bool ecore_dcbx_ieee_app_ethtype(u32 app_info_bitmap)
36 {
37         u8 mfw_val = GET_MFW_FIELD(app_info_bitmap, DCBX_APP_SF_IEEE);
38
39         /* Old MFW */
40         if (mfw_val == DCBX_APP_SF_IEEE_RESERVED)
41                 return ecore_dcbx_app_ethtype(app_info_bitmap);
42
43         return !!(mfw_val == DCBX_APP_SF_IEEE_ETHTYPE);
44 }
45
46 static bool ecore_dcbx_app_port(u32 app_info_bitmap)
47 {
48         return !!(GET_MFW_FIELD(app_info_bitmap, DCBX_APP_SF) ==
49                   DCBX_APP_SF_PORT);
50 }
51
52 static bool ecore_dcbx_ieee_app_port(u32 app_info_bitmap, u8 type)
53 {
54         u8 mfw_val = GET_MFW_FIELD(app_info_bitmap, DCBX_APP_SF_IEEE);
55
56         /* Old MFW */
57         if (mfw_val == DCBX_APP_SF_IEEE_RESERVED)
58                 return ecore_dcbx_app_port(app_info_bitmap);
59
60         return !!(mfw_val == type || mfw_val == DCBX_APP_SF_IEEE_TCP_UDP_PORT);
61 }
62
63 static bool ecore_dcbx_default_tlv(u32 app_info_bitmap, u16 proto_id, bool ieee)
64 {
65         bool ethtype;
66
67         if (ieee)
68                 ethtype = ecore_dcbx_ieee_app_ethtype(app_info_bitmap);
69         else
70                 ethtype = ecore_dcbx_app_ethtype(app_info_bitmap);
71
72         return !!(ethtype && (proto_id == ECORE_ETH_TYPE_DEFAULT));
73 }
74
75 static bool ecore_dcbx_iwarp_tlv(struct ecore_hwfn *p_hwfn, u32 app_info_bitmap,
76                                  u16 proto_id, bool ieee)
77 {
78         bool port;
79
80         if (!p_hwfn->p_dcbx_info->iwarp_port)
81                 return false;
82
83         if (ieee)
84                 port = ecore_dcbx_ieee_app_port(app_info_bitmap,
85                                                 DCBX_APP_SF_IEEE_TCP_PORT);
86         else
87                 port = ecore_dcbx_app_port(app_info_bitmap);
88
89         return !!(port && (proto_id == p_hwfn->p_dcbx_info->iwarp_port));
90 }
91
92 static void
93 ecore_dcbx_dp_protocol(struct ecore_hwfn *p_hwfn,
94                        struct ecore_dcbx_results *p_data)
95 {
96         enum dcbx_protocol_type id;
97         int i;
98
99         DP_VERBOSE(p_hwfn, ECORE_MSG_DCB, "DCBX negotiated: %d\n",
100                    p_data->dcbx_enabled);
101
102         for (i = 0; i < OSAL_ARRAY_SIZE(ecore_dcbx_app_update); i++) {
103                 id = ecore_dcbx_app_update[i].id;
104
105                 DP_VERBOSE(p_hwfn, ECORE_MSG_DCB,
106                            "%s info: update %d, enable %d, prio %d, tc %d,"
107                            " num_active_tc %d dscp_enable = %d dscp_val = %d\n",
108                            ecore_dcbx_app_update[i].name,
109                            p_data->arr[id].update,
110                            p_data->arr[id].enable, p_data->arr[id].priority,
111                            p_data->arr[id].tc, p_hwfn->hw_info.num_active_tc,
112                            p_data->arr[id].dscp_enable,
113                            p_data->arr[id].dscp_val);
114         }
115 }
116
117 static void
118 ecore_dcbx_set_params(struct ecore_dcbx_results *p_data,
119                       struct ecore_hwfn *p_hwfn,
120                       bool enable, u8 prio, u8 tc,
121                       enum dcbx_protocol_type type,
122                       enum ecore_pci_personality personality)
123 {
124         struct ecore_dcbx_dscp_params *dscp = &p_hwfn->p_dcbx_info->get.dscp;
125
126         /* PF update ramrod data */
127         p_data->arr[type].enable = enable;
128         p_data->arr[type].priority = prio;
129         p_data->arr[type].tc = tc;
130         p_data->arr[type].dscp_enable = dscp->enabled;
131         if (p_data->arr[type].dscp_enable) {
132                 u8 i;
133
134                 for (i = 0; i < ECORE_DCBX_DSCP_SIZE; i++)
135                         if (prio == dscp->dscp_pri_map[i]) {
136                                 p_data->arr[type].dscp_val = i;
137                                 break;
138                         }
139         }
140
141         if (enable && p_data->arr[type].dscp_enable)
142                 p_data->arr[type].update = UPDATE_DCB_DSCP;
143         else if (enable)
144                 p_data->arr[type].update = UPDATE_DCB;
145         else
146                 p_data->arr[type].update = DONT_UPDATE_DCB_DSCP;
147
148         /* QM reconf data */
149         if (p_hwfn->hw_info.personality == personality)
150                 p_hwfn->hw_info.offload_tc = tc;
151 }
152
153 /* Update app protocol data and hw_info fields with the TLV info */
154 static void
155 ecore_dcbx_update_app_info(struct ecore_dcbx_results *p_data,
156                            struct ecore_hwfn *p_hwfn,
157                            bool enable, u8 prio, u8 tc,
158                            enum dcbx_protocol_type type)
159 {
160         enum ecore_pci_personality personality;
161         enum dcbx_protocol_type id;
162         const char *name;       /* @DPDK */
163         int i;
164
165         for (i = 0; i < OSAL_ARRAY_SIZE(ecore_dcbx_app_update); i++) {
166                 id = ecore_dcbx_app_update[i].id;
167
168                 if (type != id)
169                         continue;
170
171                 personality = ecore_dcbx_app_update[i].personality;
172                 name = ecore_dcbx_app_update[i].name;
173
174                 ecore_dcbx_set_params(p_data, p_hwfn, enable,
175                                       prio, tc, type, personality);
176         }
177 }
178
179 static enum _ecore_status_t
180 ecore_dcbx_get_app_priority(u8 pri_bitmap, u8 *priority)
181 {
182         u32 pri_mask, pri = ECORE_MAX_PFC_PRIORITIES;
183         u32 index = ECORE_MAX_PFC_PRIORITIES - 1;
184         enum _ecore_status_t rc = ECORE_SUCCESS;
185
186         /* Bitmap 1 corresponds to priority 0, return priority 0 */
187         if (pri_bitmap == 1) {
188                 *priority = 0;
189                 return rc;
190         }
191
192         /* Choose the highest priority */
193         while ((pri == ECORE_MAX_PFC_PRIORITIES) && index) {
194                 pri_mask = 1 << index;
195                 if (pri_bitmap & pri_mask)
196                         pri = index;
197                 index--;
198         }
199
200         if (pri < ECORE_MAX_PFC_PRIORITIES)
201                 *priority = (u8)pri;
202         else
203                 rc = ECORE_INVAL;
204
205         return rc;
206 }
207
208 static bool
209 ecore_dcbx_get_app_protocol_type(struct ecore_hwfn *p_hwfn,
210                                  u32 app_prio_bitmap, u16 id,
211                                  enum dcbx_protocol_type *type, bool ieee)
212 {
213         if (ecore_dcbx_default_tlv(app_prio_bitmap, id, ieee)) {
214                 *type = DCBX_PROTOCOL_ETH;
215         } else {
216                 *type = DCBX_MAX_PROTOCOL_TYPE;
217                 DP_ERR(p_hwfn,
218                        "No action required, App TLV id = 0x%x"
219                        " app_prio_bitmap = 0x%x\n",
220                        id, app_prio_bitmap);
221                 return false;
222         }
223
224         return true;
225 }
226
227 /*  Parse app TLV's to update TC information in hw_info structure for
228  * reconfiguring QM. Get protocol specific data for PF update ramrod command.
229  */
230 static enum _ecore_status_t
231 ecore_dcbx_process_tlv(struct ecore_hwfn *p_hwfn,
232                        struct ecore_dcbx_results *p_data,
233                        struct dcbx_app_priority_entry *p_tbl, u32 pri_tc_tbl,
234                        int count, u8 dcbx_version)
235 {
236         enum dcbx_protocol_type type;
237         u8 tc, priority_map;
238         bool enable, ieee;
239         u16 protocol_id;
240         u8 priority;
241         enum _ecore_status_t rc = ECORE_SUCCESS;
242         int i;
243
244         DP_VERBOSE(p_hwfn, ECORE_MSG_DCB,
245                    "Num APP entries = %d pri_tc_tbl = 0x%x dcbx_version = %u\n",
246                    count, pri_tc_tbl, dcbx_version);
247
248         ieee = (dcbx_version == DCBX_CONFIG_VERSION_IEEE);
249         /* Parse APP TLV */
250         for (i = 0; i < count; i++) {
251                 protocol_id = GET_MFW_FIELD(p_tbl[i].entry,
252                                             DCBX_APP_PROTOCOL_ID);
253                 priority_map = GET_MFW_FIELD(p_tbl[i].entry, DCBX_APP_PRI_MAP);
254                 DP_VERBOSE(p_hwfn, ECORE_MSG_DCB, "Id = 0x%x pri_map = %u\n",
255                            protocol_id, priority_map);
256                 rc = ecore_dcbx_get_app_priority(priority_map, &priority);
257                 if (rc == ECORE_INVAL) {
258                         DP_ERR(p_hwfn, "Invalid priority\n");
259                         return ECORE_INVAL;
260                 }
261
262                 tc = ECORE_DCBX_PRIO2TC(pri_tc_tbl, priority);
263                 if (ecore_dcbx_get_app_protocol_type(p_hwfn, p_tbl[i].entry,
264                                                      protocol_id, &type,
265                                                      ieee)) {
266                         /* ETH always have the enable bit reset, as it gets
267                          * vlan information per packet. For other protocols,
268                          * should be set according to the dcbx_enabled
269                          * indication, but we only got here if there was an
270                          * app tlv for the protocol, so dcbx must be enabled.
271                          */
272                         enable = !(type == DCBX_PROTOCOL_ETH);
273
274                         ecore_dcbx_update_app_info(p_data, p_hwfn, enable,
275                                                    priority, tc, type);
276                 }
277         }
278         /* Update ramrod protocol data and hw_info fields
279          * with default info when corresponding APP TLV's are not detected.
280          * The enabled field has a different logic for ethernet as only for
281          * ethernet dcb should disabled by default, as the information arrives
282          * from the OS (unless an explicit app tlv was present).
283          */
284         tc = p_data->arr[DCBX_PROTOCOL_ETH].tc;
285         priority = p_data->arr[DCBX_PROTOCOL_ETH].priority;
286         for (type = 0; type < DCBX_MAX_PROTOCOL_TYPE; type++) {
287                 if (p_data->arr[type].update)
288                         continue;
289
290                 enable = (type == DCBX_PROTOCOL_ETH) ? false : !!dcbx_version;
291                 ecore_dcbx_update_app_info(p_data, p_hwfn, enable,
292                                            priority, tc, type);
293         }
294
295         return ECORE_SUCCESS;
296 }
297
298 /* Parse app TLV's to update TC information in hw_info structure for
299  * reconfiguring QM. Get protocol specific data for PF update ramrod command.
300  */
301 static enum _ecore_status_t
302 ecore_dcbx_process_mib_info(struct ecore_hwfn *p_hwfn)
303 {
304         struct dcbx_app_priority_feature *p_app;
305         enum _ecore_status_t rc = ECORE_SUCCESS;
306         struct ecore_dcbx_results data = { 0 };
307         struct dcbx_app_priority_entry *p_tbl;
308         struct dcbx_ets_feature *p_ets;
309         struct ecore_hw_info *p_info;
310         u32 pri_tc_tbl, flags;
311         u8 dcbx_version;
312         int num_entries;
313
314         flags = p_hwfn->p_dcbx_info->operational.flags;
315         dcbx_version = GET_MFW_FIELD(flags, DCBX_CONFIG_VERSION);
316
317         p_app = &p_hwfn->p_dcbx_info->operational.features.app;
318         p_tbl = p_app->app_pri_tbl;
319
320         p_ets = &p_hwfn->p_dcbx_info->operational.features.ets;
321         pri_tc_tbl = p_ets->pri_tc_tbl[0];
322
323         p_info = &p_hwfn->hw_info;
324         num_entries = GET_MFW_FIELD(p_app->flags, DCBX_APP_NUM_ENTRIES);
325
326         rc = ecore_dcbx_process_tlv(p_hwfn, &data, p_tbl, pri_tc_tbl,
327                                     num_entries, dcbx_version);
328         if (rc != ECORE_SUCCESS)
329                 return rc;
330
331         p_info->num_active_tc = GET_MFW_FIELD(p_ets->flags, DCBX_ETS_MAX_TCS);
332         p_hwfn->qm_info.ooo_tc = GET_MFW_FIELD(p_ets->flags, DCBX_OOO_TC);
333         data.pf_id = p_hwfn->rel_pf_id;
334         data.dcbx_enabled = !!dcbx_version;
335
336         ecore_dcbx_dp_protocol(p_hwfn, &data);
337
338         OSAL_MEMCPY(&p_hwfn->p_dcbx_info->results, &data,
339                     sizeof(struct ecore_dcbx_results));
340
341         return ECORE_SUCCESS;
342 }
343
344 static enum _ecore_status_t
345 ecore_dcbx_copy_mib(struct ecore_hwfn *p_hwfn,
346                     struct ecore_ptt *p_ptt,
347                     struct ecore_dcbx_mib_meta_data *p_data,
348                     enum ecore_mib_read_type type)
349 {
350         enum _ecore_status_t rc = ECORE_SUCCESS;
351         u32 prefix_seq_num, suffix_seq_num;
352         int read_count = 0;
353
354         /* The data is considered to be valid only if both sequence numbers are
355          * the same.
356          */
357         do {
358                 if (type == ECORE_DCBX_REMOTE_LLDP_MIB) {
359                         ecore_memcpy_from(p_hwfn, p_ptt, p_data->lldp_remote,
360                                           p_data->addr, p_data->size);
361                         prefix_seq_num = p_data->lldp_remote->prefix_seq_num;
362                         suffix_seq_num = p_data->lldp_remote->suffix_seq_num;
363                 } else {
364                         ecore_memcpy_from(p_hwfn, p_ptt, p_data->mib,
365                                           p_data->addr, p_data->size);
366                         prefix_seq_num = p_data->mib->prefix_seq_num;
367                         suffix_seq_num = p_data->mib->suffix_seq_num;
368                 }
369                 read_count++;
370
371                 DP_VERBOSE(p_hwfn, ECORE_MSG_DCB,
372                            "mib type = %d, try count = %d prefix seq num  ="
373                            " %d suffix seq num = %d\n",
374                            type, read_count, prefix_seq_num, suffix_seq_num);
375         } while ((prefix_seq_num != suffix_seq_num) &&
376                  (read_count < ECORE_DCBX_MAX_MIB_READ_TRY));
377
378         if (read_count >= ECORE_DCBX_MAX_MIB_READ_TRY) {
379                 DP_ERR(p_hwfn,
380                        "MIB read err, mib type = %d, try count ="
381                        " %d prefix seq num = %d suffix seq num = %d\n",
382                        type, read_count, prefix_seq_num, suffix_seq_num);
383                 rc = ECORE_IO;
384         }
385
386         return rc;
387 }
388
389 static void
390 ecore_dcbx_get_priority_info(struct ecore_hwfn *p_hwfn,
391                              struct ecore_dcbx_app_prio *p_prio,
392                              struct ecore_dcbx_results *p_results)
393 {
394         u8 val;
395
396         if (p_results->arr[DCBX_PROTOCOL_ETH].update &&
397             p_results->arr[DCBX_PROTOCOL_ETH].enable)
398                 p_prio->eth = p_results->arr[DCBX_PROTOCOL_ETH].priority;
399
400         DP_VERBOSE(p_hwfn, ECORE_MSG_DCB,
401                    "Priorities: eth %d\n",
402                    p_prio->eth);
403 }
404
405 static void
406 ecore_dcbx_get_app_data(struct ecore_hwfn *p_hwfn,
407                         struct dcbx_app_priority_feature *p_app,
408                         struct dcbx_app_priority_entry *p_tbl,
409                         struct ecore_dcbx_params *p_params, bool ieee)
410 {
411         struct ecore_app_entry *entry;
412         u8 pri_map;
413         int i;
414
415         p_params->app_willing = GET_MFW_FIELD(p_app->flags, DCBX_APP_WILLING);
416         p_params->app_valid = GET_MFW_FIELD(p_app->flags, DCBX_APP_ENABLED);
417         p_params->app_error = GET_MFW_FIELD(p_app->flags, DCBX_APP_ERROR);
418         p_params->num_app_entries = GET_MFW_FIELD(p_app->flags,
419                                                   DCBX_APP_NUM_ENTRIES);
420         for (i = 0; i < DCBX_MAX_APP_PROTOCOL; i++) {
421                 entry = &p_params->app_entry[i];
422                 if (ieee) {
423                         u8 sf_ieee;
424                         u32 val;
425
426                         sf_ieee = GET_MFW_FIELD(p_tbl[i].entry,
427                                                 DCBX_APP_SF_IEEE);
428                         switch (sf_ieee) {
429                         case DCBX_APP_SF_IEEE_RESERVED:
430                                 /* Old MFW */
431                                 val = GET_MFW_FIELD(p_tbl[i].entry,
432                                                     DCBX_APP_SF);
433                                 entry->sf_ieee = val ?
434                                         ECORE_DCBX_SF_IEEE_TCP_UDP_PORT :
435                                         ECORE_DCBX_SF_IEEE_ETHTYPE;
436                                 break;
437                         case DCBX_APP_SF_IEEE_ETHTYPE:
438                                 entry->sf_ieee = ECORE_DCBX_SF_IEEE_ETHTYPE;
439                                 break;
440                         case DCBX_APP_SF_IEEE_TCP_PORT:
441                                 entry->sf_ieee = ECORE_DCBX_SF_IEEE_TCP_PORT;
442                                 break;
443                         case DCBX_APP_SF_IEEE_UDP_PORT:
444                                 entry->sf_ieee = ECORE_DCBX_SF_IEEE_UDP_PORT;
445                                 break;
446                         case DCBX_APP_SF_IEEE_TCP_UDP_PORT:
447                                 entry->sf_ieee =
448                                                 ECORE_DCBX_SF_IEEE_TCP_UDP_PORT;
449                                 break;
450                         }
451                 } else {
452                         entry->ethtype = !(GET_MFW_FIELD(p_tbl[i].entry,
453                                                          DCBX_APP_SF));
454                 }
455
456                 pri_map = GET_MFW_FIELD(p_tbl[i].entry, DCBX_APP_PRI_MAP);
457                 ecore_dcbx_get_app_priority(pri_map, &entry->prio);
458                 entry->proto_id = GET_MFW_FIELD(p_tbl[i].entry,
459                                                 DCBX_APP_PROTOCOL_ID);
460                 ecore_dcbx_get_app_protocol_type(p_hwfn, p_tbl[i].entry,
461                                                  entry->proto_id,
462                                                  &entry->proto_type, ieee);
463         }
464
465         DP_VERBOSE(p_hwfn, ECORE_MSG_DCB,
466                    "APP params: willing %d, valid %d error = %d\n",
467                    p_params->app_willing, p_params->app_valid,
468                    p_params->app_error);
469 }
470
471 static void
472 ecore_dcbx_get_pfc_data(struct ecore_hwfn *p_hwfn,
473                         u32 pfc, struct ecore_dcbx_params *p_params)
474 {
475         u8 pfc_map;
476
477         p_params->pfc.willing = GET_MFW_FIELD(pfc, DCBX_PFC_WILLING);
478         p_params->pfc.max_tc = GET_MFW_FIELD(pfc, DCBX_PFC_CAPS);
479         p_params->pfc.enabled = GET_MFW_FIELD(pfc, DCBX_PFC_ENABLED);
480         pfc_map = GET_MFW_FIELD(pfc, DCBX_PFC_PRI_EN_BITMAP);
481         p_params->pfc.prio[0] = !!(pfc_map & DCBX_PFC_PRI_EN_BITMAP_PRI_0);
482         p_params->pfc.prio[1] = !!(pfc_map & DCBX_PFC_PRI_EN_BITMAP_PRI_1);
483         p_params->pfc.prio[2] = !!(pfc_map & DCBX_PFC_PRI_EN_BITMAP_PRI_2);
484         p_params->pfc.prio[3] = !!(pfc_map & DCBX_PFC_PRI_EN_BITMAP_PRI_3);
485         p_params->pfc.prio[4] = !!(pfc_map & DCBX_PFC_PRI_EN_BITMAP_PRI_4);
486         p_params->pfc.prio[5] = !!(pfc_map & DCBX_PFC_PRI_EN_BITMAP_PRI_5);
487         p_params->pfc.prio[6] = !!(pfc_map & DCBX_PFC_PRI_EN_BITMAP_PRI_6);
488         p_params->pfc.prio[7] = !!(pfc_map & DCBX_PFC_PRI_EN_BITMAP_PRI_7);
489
490         DP_VERBOSE(p_hwfn, ECORE_MSG_DCB,
491                    "PFC params: willing %d, pfc_bitmap %u max_tc = %u enabled = %d\n",
492                    p_params->pfc.willing, pfc_map, p_params->pfc.max_tc,
493                    p_params->pfc.enabled);
494 }
495
496 static void
497 ecore_dcbx_get_ets_data(struct ecore_hwfn *p_hwfn,
498                         struct dcbx_ets_feature *p_ets,
499                         struct ecore_dcbx_params *p_params)
500 {
501         u32 bw_map[2], tsa_map[2], pri_map;
502         int i;
503
504         p_params->ets_willing = GET_MFW_FIELD(p_ets->flags, DCBX_ETS_WILLING);
505         p_params->ets_enabled = GET_MFW_FIELD(p_ets->flags, DCBX_ETS_ENABLED);
506         p_params->ets_cbs = GET_MFW_FIELD(p_ets->flags, DCBX_ETS_CBS);
507         p_params->max_ets_tc = GET_MFW_FIELD(p_ets->flags, DCBX_ETS_MAX_TCS);
508         DP_VERBOSE(p_hwfn, ECORE_MSG_DCB,
509                    "ETS params: willing %d, enabled = %d ets_cbs %d pri_tc_tbl_0 %x max_ets_tc %d\n",
510                    p_params->ets_willing, p_params->ets_enabled,
511                    p_params->ets_cbs, p_ets->pri_tc_tbl[0],
512                    p_params->max_ets_tc);
513
514         /* 8 bit tsa and bw data corresponding to each of the 8 TC's are
515          * encoded in a type u32 array of size 2.
516          */
517         bw_map[0] = OSAL_BE32_TO_CPU(p_ets->tc_bw_tbl[0]);
518         bw_map[1] = OSAL_BE32_TO_CPU(p_ets->tc_bw_tbl[1]);
519         tsa_map[0] = OSAL_BE32_TO_CPU(p_ets->tc_tsa_tbl[0]);
520         tsa_map[1] = OSAL_BE32_TO_CPU(p_ets->tc_tsa_tbl[1]);
521         pri_map = p_ets->pri_tc_tbl[0];
522         for (i = 0; i < ECORE_MAX_PFC_PRIORITIES; i++) {
523                 p_params->ets_tc_bw_tbl[i] = ((u8 *)bw_map)[i];
524                 p_params->ets_tc_tsa_tbl[i] = ((u8 *)tsa_map)[i];
525                 p_params->ets_pri_tc_tbl[i] = ECORE_DCBX_PRIO2TC(pri_map, i);
526                 DP_VERBOSE(p_hwfn, ECORE_MSG_DCB,
527                            "elem %d  bw_tbl %x tsa_tbl %x\n",
528                            i, p_params->ets_tc_bw_tbl[i],
529                            p_params->ets_tc_tsa_tbl[i]);
530         }
531 }
532
533 static void
534 ecore_dcbx_get_common_params(struct ecore_hwfn *p_hwfn,
535                              struct dcbx_app_priority_feature *p_app,
536                              struct dcbx_app_priority_entry *p_tbl,
537                              struct dcbx_ets_feature *p_ets,
538                              u32 pfc, struct ecore_dcbx_params *p_params,
539                              bool ieee)
540 {
541         ecore_dcbx_get_app_data(p_hwfn, p_app, p_tbl, p_params, ieee);
542         ecore_dcbx_get_ets_data(p_hwfn, p_ets, p_params);
543         ecore_dcbx_get_pfc_data(p_hwfn, pfc, p_params);
544 }
545
546 static void
547 ecore_dcbx_get_local_params(struct ecore_hwfn *p_hwfn,
548                             struct ecore_dcbx_get *params)
549 {
550         struct dcbx_features *p_feat;
551
552         p_feat = &p_hwfn->p_dcbx_info->local_admin.features;
553         ecore_dcbx_get_common_params(p_hwfn, &p_feat->app,
554                                      p_feat->app.app_pri_tbl, &p_feat->ets,
555                                      p_feat->pfc, &params->local.params, false);
556         params->local.valid = true;
557 }
558
559 static void
560 ecore_dcbx_get_remote_params(struct ecore_hwfn *p_hwfn,
561                              struct ecore_dcbx_get *params)
562 {
563         struct dcbx_features *p_feat;
564
565         p_feat = &p_hwfn->p_dcbx_info->remote.features;
566         ecore_dcbx_get_common_params(p_hwfn, &p_feat->app,
567                                      p_feat->app.app_pri_tbl, &p_feat->ets,
568                                      p_feat->pfc, &params->remote.params,
569                                      false);
570         params->remote.valid = true;
571 }
572
573 static enum _ecore_status_t
574 ecore_dcbx_get_operational_params(struct ecore_hwfn *p_hwfn,
575                                   struct ecore_dcbx_get *params)
576 {
577         struct ecore_dcbx_operational_params *p_operational;
578         struct ecore_dcbx_results *p_results;
579         struct dcbx_features *p_feat;
580         bool enabled, err;
581         u32 flags;
582         bool val;
583
584         flags = p_hwfn->p_dcbx_info->operational.flags;
585
586         /* If DCBx version is non zero, then negotiation
587          * was successfuly performed
588          */
589         p_operational = &params->operational;
590         enabled = !!(GET_MFW_FIELD(flags, DCBX_CONFIG_VERSION) !=
591                      DCBX_CONFIG_VERSION_DISABLED);
592         if (!enabled) {
593                 p_operational->enabled = enabled;
594                 p_operational->valid = false;
595                 DP_VERBOSE(p_hwfn, ECORE_MSG_DCB, "Dcbx is disabled\n");
596                 return ECORE_INVAL;
597         }
598
599         p_feat = &p_hwfn->p_dcbx_info->operational.features;
600         p_results = &p_hwfn->p_dcbx_info->results;
601
602         val = !!(GET_MFW_FIELD(flags, DCBX_CONFIG_VERSION) ==
603                  DCBX_CONFIG_VERSION_IEEE);
604         p_operational->ieee = val;
605
606         val = !!(GET_MFW_FIELD(flags, DCBX_CONFIG_VERSION) ==
607                  DCBX_CONFIG_VERSION_CEE);
608         p_operational->cee = val;
609
610         val = !!(GET_MFW_FIELD(flags, DCBX_CONFIG_VERSION) ==
611                  DCBX_CONFIG_VERSION_STATIC);
612         p_operational->local = val;
613
614         DP_VERBOSE(p_hwfn, ECORE_MSG_DCB,
615                    "Version support: ieee %d, cee %d, static %d\n",
616                    p_operational->ieee, p_operational->cee,
617                    p_operational->local);
618
619         ecore_dcbx_get_common_params(p_hwfn, &p_feat->app,
620                                      p_feat->app.app_pri_tbl, &p_feat->ets,
621                                      p_feat->pfc, &params->operational.params,
622                                      p_operational->ieee);
623         ecore_dcbx_get_priority_info(p_hwfn, &p_operational->app_prio,
624                                      p_results);
625         err = GET_MFW_FIELD(p_feat->app.flags, DCBX_APP_ERROR);
626         p_operational->err = err;
627         p_operational->enabled = enabled;
628         p_operational->valid = true;
629
630         return ECORE_SUCCESS;
631 }
632
633 static void  ecore_dcbx_get_dscp_params(struct ecore_hwfn *p_hwfn,
634                                         struct ecore_dcbx_get *params)
635 {
636         struct ecore_dcbx_dscp_params *p_dscp;
637         struct dcb_dscp_map *p_dscp_map;
638         int i, j, entry;
639         u32 pri_map;
640
641         p_dscp = &params->dscp;
642         p_dscp_map = &p_hwfn->p_dcbx_info->dscp_map;
643         p_dscp->enabled = GET_MFW_FIELD(p_dscp_map->flags, DCB_DSCP_ENABLE);
644
645         /* MFW encodes 64 dscp entries into 8 element array of u32 entries,
646          * where each entry holds the 4bit priority map for 8 dscp entries.
647          */
648         for (i = 0, entry = 0; i < ECORE_DCBX_DSCP_SIZE / 8; i++) {
649                 pri_map = OSAL_BE32_TO_CPU(p_dscp_map->dscp_pri_map[i]);
650                 DP_VERBOSE(p_hwfn, ECORE_MSG_DCB, "elem %d pri_map 0x%x\n",
651                            entry, pri_map);
652                 for (j = 0; j < ECORE_DCBX_DSCP_SIZE / 8; j++, entry++)
653                         p_dscp->dscp_pri_map[entry] = (u32)(pri_map >>
654                                                            (j * 4)) & 0xf;
655         }
656 }
657
658 static void ecore_dcbx_get_local_lldp_params(struct ecore_hwfn *p_hwfn,
659                                              struct ecore_dcbx_get *params)
660 {
661         struct lldp_config_params_s *p_local;
662
663         p_local = &p_hwfn->p_dcbx_info->lldp_local[LLDP_NEAREST_BRIDGE];
664
665         OSAL_MEMCPY(params->lldp_local.local_chassis_id,
666                     p_local->local_chassis_id,
667                     OSAL_ARRAY_SIZE(p_local->local_chassis_id));
668         OSAL_MEMCPY(params->lldp_local.local_port_id, p_local->local_port_id,
669                     OSAL_ARRAY_SIZE(p_local->local_port_id));
670 }
671
672 static void ecore_dcbx_get_remote_lldp_params(struct ecore_hwfn *p_hwfn,
673                                               struct ecore_dcbx_get *params)
674 {
675         struct lldp_status_params_s *p_remote;
676
677         p_remote = &p_hwfn->p_dcbx_info->lldp_remote[LLDP_NEAREST_BRIDGE];
678
679         OSAL_MEMCPY(params->lldp_remote.peer_chassis_id,
680                     p_remote->peer_chassis_id,
681                     OSAL_ARRAY_SIZE(p_remote->peer_chassis_id));
682         OSAL_MEMCPY(params->lldp_remote.peer_port_id, p_remote->peer_port_id,
683                     OSAL_ARRAY_SIZE(p_remote->peer_port_id));
684 }
685
686 static enum _ecore_status_t
687 ecore_dcbx_get_params(struct ecore_hwfn *p_hwfn,
688                       struct ecore_dcbx_get *p_params,
689                       enum ecore_mib_read_type type)
690 {
691         switch (type) {
692         case ECORE_DCBX_REMOTE_MIB:
693                 ecore_dcbx_get_remote_params(p_hwfn, p_params);
694                 break;
695         case ECORE_DCBX_LOCAL_MIB:
696                 ecore_dcbx_get_local_params(p_hwfn, p_params);
697                 break;
698         case ECORE_DCBX_OPERATIONAL_MIB:
699                 ecore_dcbx_get_operational_params(p_hwfn, p_params);
700                 break;
701         case ECORE_DCBX_REMOTE_LLDP_MIB:
702                 ecore_dcbx_get_remote_lldp_params(p_hwfn, p_params);
703                 break;
704         case ECORE_DCBX_LOCAL_LLDP_MIB:
705                 ecore_dcbx_get_local_lldp_params(p_hwfn, p_params);
706                 break;
707         default:
708                 DP_ERR(p_hwfn, "MIB read err, unknown mib type %d\n", type);
709                 return ECORE_INVAL;
710         }
711
712         return ECORE_SUCCESS;
713 }
714
715 static enum _ecore_status_t
716 ecore_dcbx_read_local_lldp_mib(struct ecore_hwfn *p_hwfn,
717                                struct ecore_ptt *p_ptt)
718 {
719         struct ecore_dcbx_mib_meta_data data;
720         enum _ecore_status_t rc = ECORE_SUCCESS;
721
722         OSAL_MEM_ZERO(&data, sizeof(data));
723         data.addr = p_hwfn->mcp_info->port_addr + offsetof(struct public_port,
724                                                            lldp_config_params);
725         data.lldp_local = p_hwfn->p_dcbx_info->lldp_local;
726         data.size = sizeof(struct lldp_config_params_s);
727         ecore_memcpy_from(p_hwfn, p_ptt, data.lldp_local, data.addr, data.size);
728
729         return rc;
730 }
731
732 static enum _ecore_status_t
733 ecore_dcbx_read_remote_lldp_mib(struct ecore_hwfn *p_hwfn,
734                                 struct ecore_ptt *p_ptt,
735                                 enum ecore_mib_read_type type)
736 {
737         struct ecore_dcbx_mib_meta_data data;
738         enum _ecore_status_t rc = ECORE_SUCCESS;
739
740         OSAL_MEM_ZERO(&data, sizeof(data));
741         data.addr = p_hwfn->mcp_info->port_addr + offsetof(struct public_port,
742                                                            lldp_status_params);
743         data.lldp_remote = p_hwfn->p_dcbx_info->lldp_remote;
744         data.size = sizeof(struct lldp_status_params_s);
745         rc = ecore_dcbx_copy_mib(p_hwfn, p_ptt, &data, type);
746
747         return rc;
748 }
749
750 static enum _ecore_status_t
751 ecore_dcbx_read_operational_mib(struct ecore_hwfn *p_hwfn,
752                                 struct ecore_ptt *p_ptt,
753                                 enum ecore_mib_read_type type)
754 {
755         struct ecore_dcbx_mib_meta_data data;
756         enum _ecore_status_t rc = ECORE_SUCCESS;
757
758         OSAL_MEM_ZERO(&data, sizeof(data));
759         data.addr = p_hwfn->mcp_info->port_addr +
760             offsetof(struct public_port, operational_dcbx_mib);
761         data.mib = &p_hwfn->p_dcbx_info->operational;
762         data.size = sizeof(struct dcbx_mib);
763         rc = ecore_dcbx_copy_mib(p_hwfn, p_ptt, &data, type);
764
765         return rc;
766 }
767
768 static enum _ecore_status_t
769 ecore_dcbx_read_remote_mib(struct ecore_hwfn *p_hwfn,
770                            struct ecore_ptt *p_ptt,
771                            enum ecore_mib_read_type type)
772 {
773         struct ecore_dcbx_mib_meta_data data;
774         enum _ecore_status_t rc = ECORE_SUCCESS;
775
776         OSAL_MEM_ZERO(&data, sizeof(data));
777         data.addr = p_hwfn->mcp_info->port_addr +
778             offsetof(struct public_port, remote_dcbx_mib);
779         data.mib = &p_hwfn->p_dcbx_info->remote;
780         data.size = sizeof(struct dcbx_mib);
781         rc = ecore_dcbx_copy_mib(p_hwfn, p_ptt, &data, type);
782
783         return rc;
784 }
785
786 static enum _ecore_status_t
787 ecore_dcbx_read_local_mib(struct ecore_hwfn *p_hwfn, struct ecore_ptt *p_ptt)
788 {
789         struct ecore_dcbx_mib_meta_data data;
790         enum _ecore_status_t rc = ECORE_SUCCESS;
791
792         OSAL_MEM_ZERO(&data, sizeof(data));
793         data.addr = p_hwfn->mcp_info->port_addr +
794             offsetof(struct public_port, local_admin_dcbx_mib);
795         data.local_admin = &p_hwfn->p_dcbx_info->local_admin;
796         data.size = sizeof(struct dcbx_local_params);
797         ecore_memcpy_from(p_hwfn, p_ptt, data.local_admin,
798                           data.addr, data.size);
799
800         return rc;
801 }
802
803 static void
804 ecore_dcbx_read_dscp_mib(struct ecore_hwfn *p_hwfn, struct ecore_ptt *p_ptt)
805 {
806         struct ecore_dcbx_mib_meta_data data;
807
808         data.addr = p_hwfn->mcp_info->port_addr +
809                         offsetof(struct public_port, dcb_dscp_map);
810         data.dscp_map = &p_hwfn->p_dcbx_info->dscp_map;
811         data.size = sizeof(struct dcb_dscp_map);
812         ecore_memcpy_from(p_hwfn, p_ptt, data.dscp_map, data.addr, data.size);
813 }
814
815 static enum _ecore_status_t ecore_dcbx_read_mib(struct ecore_hwfn *p_hwfn,
816                                                 struct ecore_ptt *p_ptt,
817                                                 enum ecore_mib_read_type type)
818 {
819         enum _ecore_status_t rc = ECORE_INVAL;
820
821         switch (type) {
822         case ECORE_DCBX_OPERATIONAL_MIB:
823                 ecore_dcbx_read_dscp_mib(p_hwfn, p_ptt);
824                 rc = ecore_dcbx_read_operational_mib(p_hwfn, p_ptt, type);
825                 break;
826         case ECORE_DCBX_REMOTE_MIB:
827                 rc = ecore_dcbx_read_remote_mib(p_hwfn, p_ptt, type);
828                 break;
829         case ECORE_DCBX_LOCAL_MIB:
830                 rc = ecore_dcbx_read_local_mib(p_hwfn, p_ptt);
831                 break;
832         case ECORE_DCBX_REMOTE_LLDP_MIB:
833                 rc = ecore_dcbx_read_remote_lldp_mib(p_hwfn, p_ptt, type);
834                 break;
835         case ECORE_DCBX_LOCAL_LLDP_MIB:
836                 rc = ecore_dcbx_read_local_lldp_mib(p_hwfn, p_ptt);
837                 break;
838         default:
839                 DP_ERR(p_hwfn, "MIB read err, unknown mib type %d\n", type);
840         }
841
842         return rc;
843 }
844
845 /*
846  * Read updated MIB.
847  * Reconfigure QM and invoke PF update ramrod command if operational MIB
848  * change is detected.
849  */
850 enum _ecore_status_t
851 ecore_dcbx_mib_update_event(struct ecore_hwfn *p_hwfn, struct ecore_ptt *p_ptt,
852                             enum ecore_mib_read_type type)
853 {
854         enum _ecore_status_t rc = ECORE_SUCCESS;
855
856         rc = ecore_dcbx_read_mib(p_hwfn, p_ptt, type);
857         if (rc)
858                 return rc;
859
860         if (type == ECORE_DCBX_OPERATIONAL_MIB) {
861                 ecore_dcbx_get_dscp_params(p_hwfn, &p_hwfn->p_dcbx_info->get);
862
863                 rc = ecore_dcbx_process_mib_info(p_hwfn);
864                 if (!rc) {
865                         bool enabled;
866
867                         /* reconfigure tcs of QM queues according
868                          * to negotiation results
869                          */
870                         ecore_qm_reconf(p_hwfn, p_ptt);
871
872                         /* update storm FW with negotiation results */
873                         ecore_sp_pf_update_dcbx(p_hwfn);
874
875                         /* set eagle enigne 1 flow control workaround
876                          * according to negotiation results
877                          */
878                         enabled = p_hwfn->p_dcbx_info->results.dcbx_enabled;
879                 }
880         }
881
882         ecore_dcbx_get_params(p_hwfn, &p_hwfn->p_dcbx_info->get, type);
883
884         /* Update the DSCP to TC mapping bit if required */
885         if ((type == ECORE_DCBX_OPERATIONAL_MIB) &&
886             p_hwfn->p_dcbx_info->dscp_nig_update) {
887                 ecore_wr(p_hwfn, p_ptt, NIG_REG_DSCP_TO_TC_MAP_ENABLE, 0x1);
888                 p_hwfn->p_dcbx_info->dscp_nig_update = false;
889         }
890
891         OSAL_DCBX_AEN(p_hwfn, type);
892
893         return rc;
894 }
895
896 enum _ecore_status_t ecore_dcbx_info_alloc(struct ecore_hwfn *p_hwfn)
897 {
898         p_hwfn->p_dcbx_info = OSAL_ZALLOC(p_hwfn->p_dev, GFP_KERNEL,
899                                           sizeof(*p_hwfn->p_dcbx_info));
900         if (!p_hwfn->p_dcbx_info) {
901                 DP_NOTICE(p_hwfn, true,
902                           "Failed to allocate `struct ecore_dcbx_info'");
903                 return ECORE_NOMEM;
904         }
905
906         p_hwfn->p_dcbx_info->iwarp_port =
907                 p_hwfn->pf_params.rdma_pf_params.iwarp_port;
908
909         return ECORE_SUCCESS;
910 }
911
912 void ecore_dcbx_info_free(struct ecore_hwfn *p_hwfn,
913                           struct ecore_dcbx_info *p_dcbx_info)
914 {
915         OSAL_FREE(p_hwfn->p_dev, p_hwfn->p_dcbx_info);
916 }
917
918 static void ecore_dcbx_update_protocol_data(struct protocol_dcb_data *p_data,
919                                             struct ecore_dcbx_results *p_src,
920                                             enum dcbx_protocol_type type)
921 {
922         p_data->dcb_enable_flag = p_src->arr[type].enable;
923         p_data->dcb_priority = p_src->arr[type].priority;
924         p_data->dcb_tc = p_src->arr[type].tc;
925         p_data->dscp_enable_flag = p_src->arr[type].dscp_enable;
926         p_data->dscp_val = p_src->arr[type].dscp_val;
927 }
928
929 /* Set pf update ramrod command params */
930 void ecore_dcbx_set_pf_update_params(struct ecore_dcbx_results *p_src,
931                                      struct pf_update_ramrod_data *p_dest)
932 {
933         struct protocol_dcb_data *p_dcb_data;
934         u8 update_flag;
935
936         p_dest->pf_id = p_src->pf_id;
937
938         update_flag = p_src->arr[DCBX_PROTOCOL_ETH].update;
939         p_dest->update_eth_dcb_data_mode = update_flag;
940         update_flag = p_src->arr[DCBX_PROTOCOL_IWARP].update;
941         p_dest->update_iwarp_dcb_data_mode = update_flag;
942
943         p_dcb_data = &p_dest->eth_dcb_data;
944         ecore_dcbx_update_protocol_data(p_dcb_data, p_src, DCBX_PROTOCOL_ETH);
945         p_dcb_data = &p_dest->iwarp_dcb_data;
946         ecore_dcbx_update_protocol_data(p_dcb_data, p_src, DCBX_PROTOCOL_IWARP);
947 }
948
949 enum _ecore_status_t ecore_dcbx_query_params(struct ecore_hwfn *p_hwfn,
950                                              struct ecore_dcbx_get *p_get,
951                                              enum ecore_mib_read_type type)
952 {
953         struct ecore_ptt *p_ptt;
954         enum _ecore_status_t rc;
955
956         if (IS_VF(p_hwfn->p_dev))
957                 return ECORE_INVAL;
958
959         p_ptt = ecore_ptt_acquire(p_hwfn);
960         if (!p_ptt) {
961                 rc = ECORE_TIMEOUT;
962                 DP_ERR(p_hwfn, "rc = %d\n", rc);
963                 return rc;
964         }
965
966         rc = ecore_dcbx_read_mib(p_hwfn, p_ptt, type);
967         if (rc != ECORE_SUCCESS)
968                 goto out;
969
970         rc = ecore_dcbx_get_params(p_hwfn, p_get, type);
971
972 out:
973         ecore_ptt_release(p_hwfn, p_ptt);
974         return rc;
975 }
976
977 static void
978 ecore_dcbx_set_pfc_data(struct ecore_hwfn *p_hwfn,
979                         u32 *pfc, struct ecore_dcbx_params *p_params)
980 {
981         u8 pfc_map = 0;
982         int i;
983
984         if (p_params->pfc.willing)
985                 *pfc |= DCBX_PFC_WILLING_MASK;
986         else
987                 *pfc &= ~DCBX_PFC_WILLING_MASK;
988
989         if (p_params->pfc.enabled)
990                 *pfc |= DCBX_PFC_ENABLED_MASK;
991         else
992                 *pfc &= ~DCBX_PFC_ENABLED_MASK;
993
994         *pfc &= ~DCBX_PFC_CAPS_MASK;
995         *pfc |= (u32)p_params->pfc.max_tc << DCBX_PFC_CAPS_OFFSET;
996
997         for (i = 0; i < ECORE_MAX_PFC_PRIORITIES; i++)
998                 if (p_params->pfc.prio[i])
999                         pfc_map |= (1 << i);
1000         *pfc &= ~DCBX_PFC_PRI_EN_BITMAP_MASK;
1001         *pfc |= (pfc_map << DCBX_PFC_PRI_EN_BITMAP_OFFSET);
1002
1003         DP_VERBOSE(p_hwfn, ECORE_MSG_DCB, "pfc = 0x%x\n", *pfc);
1004 }
1005
1006 static void
1007 ecore_dcbx_set_ets_data(struct ecore_hwfn *p_hwfn,
1008                         struct dcbx_ets_feature *p_ets,
1009                         struct ecore_dcbx_params *p_params)
1010 {
1011         u8 *bw_map, *tsa_map;
1012         u32 val;
1013         int i;
1014
1015         if (p_params->ets_willing)
1016                 p_ets->flags |= DCBX_ETS_WILLING_MASK;
1017         else
1018                 p_ets->flags &= ~DCBX_ETS_WILLING_MASK;
1019
1020         if (p_params->ets_cbs)
1021                 p_ets->flags |= DCBX_ETS_CBS_MASK;
1022         else
1023                 p_ets->flags &= ~DCBX_ETS_CBS_MASK;
1024
1025         if (p_params->ets_enabled)
1026                 p_ets->flags |= DCBX_ETS_ENABLED_MASK;
1027         else
1028                 p_ets->flags &= ~DCBX_ETS_ENABLED_MASK;
1029
1030         p_ets->flags &= ~DCBX_ETS_MAX_TCS_MASK;
1031         p_ets->flags |= (u32)p_params->max_ets_tc << DCBX_ETS_MAX_TCS_OFFSET;
1032
1033         bw_map = (u8 *)&p_ets->tc_bw_tbl[0];
1034         tsa_map = (u8 *)&p_ets->tc_tsa_tbl[0];
1035         p_ets->pri_tc_tbl[0] = 0;
1036         for (i = 0; i < ECORE_MAX_PFC_PRIORITIES; i++) {
1037                 bw_map[i] = p_params->ets_tc_bw_tbl[i];
1038                 tsa_map[i] = p_params->ets_tc_tsa_tbl[i];
1039                 /* Copy the priority value to the corresponding 4 bits in the
1040                  * traffic class table.
1041                  */
1042                 val = (((u32)p_params->ets_pri_tc_tbl[i]) << ((7 - i) * 4));
1043                 p_ets->pri_tc_tbl[0] |= val;
1044         }
1045         for (i = 0; i < 2; i++) {
1046                 p_ets->tc_bw_tbl[i] = OSAL_CPU_TO_BE32(p_ets->tc_bw_tbl[i]);
1047                 p_ets->tc_tsa_tbl[i] = OSAL_CPU_TO_BE32(p_ets->tc_tsa_tbl[i]);
1048         }
1049
1050         DP_VERBOSE(p_hwfn, ECORE_MSG_DCB,
1051                    "flags = 0x%x pri_tc = 0x%x tc_bwl[] = {0x%x, 0x%x} tc_tsa = {0x%x, 0x%x}\n",
1052                    p_ets->flags, p_ets->pri_tc_tbl[0], p_ets->tc_bw_tbl[0],
1053                    p_ets->tc_bw_tbl[1], p_ets->tc_tsa_tbl[0],
1054                    p_ets->tc_tsa_tbl[1]);
1055 }
1056
1057 static void
1058 ecore_dcbx_set_app_data(struct ecore_hwfn *p_hwfn,
1059                         struct dcbx_app_priority_feature *p_app,
1060                         struct ecore_dcbx_params *p_params, bool ieee)
1061 {
1062         u32 *entry;
1063         int i;
1064
1065         if (p_params->app_willing)
1066                 p_app->flags |= DCBX_APP_WILLING_MASK;
1067         else
1068                 p_app->flags &= ~DCBX_APP_WILLING_MASK;
1069
1070         if (p_params->app_valid)
1071                 p_app->flags |= DCBX_APP_ENABLED_MASK;
1072         else
1073                 p_app->flags &= ~DCBX_APP_ENABLED_MASK;
1074
1075         p_app->flags &= ~DCBX_APP_NUM_ENTRIES_MASK;
1076         p_app->flags |= (u32)p_params->num_app_entries <<
1077                         DCBX_APP_NUM_ENTRIES_OFFSET;
1078
1079         for (i = 0; i < DCBX_MAX_APP_PROTOCOL; i++) {
1080                 entry = &p_app->app_pri_tbl[i].entry;
1081                 *entry = 0;
1082                 if (ieee) {
1083                         *entry &= ~(DCBX_APP_SF_IEEE_MASK | DCBX_APP_SF_MASK);
1084                         switch (p_params->app_entry[i].sf_ieee) {
1085                         case ECORE_DCBX_SF_IEEE_ETHTYPE:
1086                                 *entry  |= ((u32)DCBX_APP_SF_IEEE_ETHTYPE <<
1087                                             DCBX_APP_SF_IEEE_OFFSET);
1088                                 *entry  |= ((u32)DCBX_APP_SF_ETHTYPE <<
1089                                             DCBX_APP_SF_OFFSET);
1090                                 break;
1091                         case ECORE_DCBX_SF_IEEE_TCP_PORT:
1092                                 *entry  |= ((u32)DCBX_APP_SF_IEEE_TCP_PORT <<
1093                                             DCBX_APP_SF_IEEE_OFFSET);
1094                                 *entry  |= ((u32)DCBX_APP_SF_PORT <<
1095                                             DCBX_APP_SF_OFFSET);
1096                                 break;
1097                         case ECORE_DCBX_SF_IEEE_UDP_PORT:
1098                                 *entry  |= ((u32)DCBX_APP_SF_IEEE_UDP_PORT <<
1099                                             DCBX_APP_SF_IEEE_OFFSET);
1100                                 *entry  |= ((u32)DCBX_APP_SF_PORT <<
1101                                             DCBX_APP_SF_OFFSET);
1102                                 break;
1103                         case ECORE_DCBX_SF_IEEE_TCP_UDP_PORT:
1104                                 *entry  |= (u32)DCBX_APP_SF_IEEE_TCP_UDP_PORT <<
1105                                             DCBX_APP_SF_IEEE_OFFSET;
1106                                 *entry  |= ((u32)DCBX_APP_SF_PORT <<
1107                                             DCBX_APP_SF_OFFSET);
1108                                 break;
1109                         }
1110                 } else {
1111                         *entry &= ~DCBX_APP_SF_MASK;
1112                         if (p_params->app_entry[i].ethtype)
1113                                 *entry  |= ((u32)DCBX_APP_SF_ETHTYPE <<
1114                                             DCBX_APP_SF_OFFSET);
1115                         else
1116                                 *entry  |= ((u32)DCBX_APP_SF_PORT <<
1117                                             DCBX_APP_SF_OFFSET);
1118                 }
1119                 *entry &= ~DCBX_APP_PROTOCOL_ID_MASK;
1120                 *entry |= ((u32)p_params->app_entry[i].proto_id <<
1121                            DCBX_APP_PROTOCOL_ID_OFFSET);
1122                 *entry &= ~DCBX_APP_PRI_MAP_MASK;
1123                 *entry |= ((u32)(p_params->app_entry[i].prio) <<
1124                            DCBX_APP_PRI_MAP_OFFSET);
1125         }
1126
1127         DP_VERBOSE(p_hwfn, ECORE_MSG_DCB, "flags = 0x%x\n", p_app->flags);
1128 }
1129
1130 static enum _ecore_status_t
1131 ecore_dcbx_set_local_params(struct ecore_hwfn *p_hwfn,
1132                             struct dcbx_local_params *local_admin,
1133                             struct ecore_dcbx_set *params)
1134 {
1135         bool ieee = false;
1136
1137         local_admin->flags = 0;
1138         OSAL_MEMCPY(&local_admin->features,
1139                     &p_hwfn->p_dcbx_info->operational.features,
1140                     sizeof(local_admin->features));
1141
1142         if (params->enabled) {
1143                 local_admin->config = params->ver_num;
1144                 ieee = !!(params->ver_num & DCBX_CONFIG_VERSION_IEEE);
1145         } else {
1146                 local_admin->config = DCBX_CONFIG_VERSION_DISABLED;
1147         }
1148
1149         if (params->override_flags & ECORE_DCBX_OVERRIDE_PFC_CFG)
1150                 ecore_dcbx_set_pfc_data(p_hwfn, &local_admin->features.pfc,
1151                                         &params->config.params);
1152
1153         if (params->override_flags & ECORE_DCBX_OVERRIDE_ETS_CFG)
1154                 ecore_dcbx_set_ets_data(p_hwfn, &local_admin->features.ets,
1155                                         &params->config.params);
1156
1157         if (params->override_flags & ECORE_DCBX_OVERRIDE_APP_CFG)
1158                 ecore_dcbx_set_app_data(p_hwfn, &local_admin->features.app,
1159                                         &params->config.params, ieee);
1160
1161         return ECORE_SUCCESS;
1162 }
1163
1164 static enum _ecore_status_t
1165 ecore_dcbx_set_dscp_params(struct ecore_hwfn *p_hwfn,
1166                            struct dcb_dscp_map *p_dscp_map,
1167                            struct ecore_dcbx_set *p_params)
1168 {
1169         int entry, i, j;
1170         u32 val;
1171
1172         OSAL_MEMCPY(p_dscp_map, &p_hwfn->p_dcbx_info->dscp_map,
1173                     sizeof(*p_dscp_map));
1174
1175         p_dscp_map->flags &= ~DCB_DSCP_ENABLE_MASK;
1176         if (p_params->dscp.enabled)
1177                 p_dscp_map->flags |= DCB_DSCP_ENABLE_MASK;
1178
1179         for (i = 0, entry = 0; i < 8; i++) {
1180                 val = 0;
1181                 for (j = 0; j < 8; j++, entry++)
1182                         val |= (((u32)p_params->dscp.dscp_pri_map[entry]) <<
1183                                 (j * 4));
1184
1185                 p_dscp_map->dscp_pri_map[i] = OSAL_CPU_TO_BE32(val);
1186         }
1187
1188         p_hwfn->p_dcbx_info->dscp_nig_update = true;
1189
1190         DP_VERBOSE(p_hwfn, ECORE_MSG_DCB, "flags = 0x%x\n", p_dscp_map->flags);
1191
1192         return ECORE_SUCCESS;
1193 }
1194
1195 enum _ecore_status_t ecore_dcbx_config_params(struct ecore_hwfn *p_hwfn,
1196                                               struct ecore_ptt *p_ptt,
1197                                               struct ecore_dcbx_set *params,
1198                                               bool hw_commit)
1199 {
1200         struct dcbx_local_params local_admin;
1201         struct ecore_dcbx_mib_meta_data data;
1202         struct dcb_dscp_map dscp_map;
1203         u32 resp = 0, param = 0;
1204         enum _ecore_status_t rc = ECORE_SUCCESS;
1205
1206         if (!hw_commit) {
1207                 OSAL_MEMCPY(&p_hwfn->p_dcbx_info->set, params,
1208                             sizeof(p_hwfn->p_dcbx_info->set));
1209                 return ECORE_SUCCESS;
1210         }
1211
1212         /* clear set-parmas cache */
1213         OSAL_MEMSET(&p_hwfn->p_dcbx_info->set, 0,
1214                     sizeof(struct ecore_dcbx_set));
1215
1216         OSAL_MEMSET(&local_admin, 0, sizeof(local_admin));
1217         ecore_dcbx_set_local_params(p_hwfn, &local_admin, params);
1218
1219         data.addr = p_hwfn->mcp_info->port_addr +
1220                         offsetof(struct public_port, local_admin_dcbx_mib);
1221         data.local_admin = &local_admin;
1222         data.size = sizeof(struct dcbx_local_params);
1223         ecore_memcpy_to(p_hwfn, p_ptt, data.addr, data.local_admin, data.size);
1224
1225         if (params->override_flags & ECORE_DCBX_OVERRIDE_DSCP_CFG) {
1226                 OSAL_MEMSET(&dscp_map, 0, sizeof(dscp_map));
1227                 ecore_dcbx_set_dscp_params(p_hwfn, &dscp_map, params);
1228
1229                 data.addr = p_hwfn->mcp_info->port_addr +
1230                                 offsetof(struct public_port, dcb_dscp_map);
1231                 data.dscp_map = &dscp_map;
1232                 data.size = sizeof(struct dcb_dscp_map);
1233                 ecore_memcpy_to(p_hwfn, p_ptt, data.addr, data.dscp_map,
1234                                 data.size);
1235         }
1236
1237         rc = ecore_mcp_cmd(p_hwfn, p_ptt, DRV_MSG_CODE_SET_DCBX,
1238                            1 << DRV_MB_PARAM_LLDP_SEND_OFFSET, &resp, &param);
1239         if (rc != ECORE_SUCCESS)
1240                 DP_NOTICE(p_hwfn, false,
1241                           "Failed to send DCBX update request\n");
1242
1243         return rc;
1244 }
1245
1246 enum _ecore_status_t ecore_dcbx_get_config_params(struct ecore_hwfn *p_hwfn,
1247                                                   struct ecore_dcbx_set *params)
1248 {
1249         struct ecore_dcbx_get *dcbx_info;
1250         int rc;
1251
1252         if (p_hwfn->p_dcbx_info->set.config.valid) {
1253                 OSAL_MEMCPY(params, &p_hwfn->p_dcbx_info->set,
1254                             sizeof(struct ecore_dcbx_set));
1255                 return ECORE_SUCCESS;
1256         }
1257
1258         dcbx_info = OSAL_ALLOC(p_hwfn->p_dev, GFP_KERNEL,
1259                                sizeof(*dcbx_info));
1260         if (!dcbx_info) {
1261                 DP_ERR(p_hwfn, "Failed to allocate struct ecore_dcbx_info\n");
1262                 return ECORE_NOMEM;
1263         }
1264
1265         OSAL_MEMSET(dcbx_info, 0, sizeof(*dcbx_info));
1266         rc = ecore_dcbx_query_params(p_hwfn, dcbx_info,
1267                                      ECORE_DCBX_OPERATIONAL_MIB);
1268         if (rc) {
1269                 OSAL_FREE(p_hwfn->p_dev, dcbx_info);
1270                 return rc;
1271         }
1272         p_hwfn->p_dcbx_info->set.override_flags = 0;
1273
1274         p_hwfn->p_dcbx_info->set.ver_num = DCBX_CONFIG_VERSION_DISABLED;
1275         if (dcbx_info->operational.cee)
1276                 p_hwfn->p_dcbx_info->set.ver_num |= DCBX_CONFIG_VERSION_CEE;
1277         if (dcbx_info->operational.ieee)
1278                 p_hwfn->p_dcbx_info->set.ver_num |= DCBX_CONFIG_VERSION_IEEE;
1279         if (dcbx_info->operational.local)
1280                 p_hwfn->p_dcbx_info->set.ver_num |= DCBX_CONFIG_VERSION_STATIC;
1281
1282         p_hwfn->p_dcbx_info->set.enabled = dcbx_info->operational.enabled;
1283         OSAL_MEMCPY(&p_hwfn->p_dcbx_info->set.config.params,
1284                     &dcbx_info->operational.params,
1285                     sizeof(struct ecore_dcbx_admin_params));
1286         p_hwfn->p_dcbx_info->set.config.valid = true;
1287
1288         OSAL_MEMCPY(params, &p_hwfn->p_dcbx_info->set,
1289                     sizeof(struct ecore_dcbx_set));
1290
1291         OSAL_FREE(p_hwfn->p_dev, dcbx_info);
1292
1293         return ECORE_SUCCESS;
1294 }