Deleted Added
full compact
ecore_dev.c (318300) ecore_dev.c (320164)
1/*
2 * Copyright (c) 2017-2018 Cavium, Inc.
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 *
9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * 2. Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 *
15 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
16 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
19 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
20 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
21 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
22 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
23 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
24 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
25 * POSSIBILITY OF SUCH DAMAGE.
26 */
27
28/*
29 * File : ecore_dev.c
30 */
31#include <sys/cdefs.h>
1/*
2 * Copyright (c) 2017-2018 Cavium, Inc.
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 *
9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * 2. Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 *
15 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
16 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
19 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
20 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
21 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
22 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
23 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
24 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
25 * POSSIBILITY OF SUCH DAMAGE.
26 */
27
28/*
29 * File : ecore_dev.c
30 */
31#include <sys/cdefs.h>
32__FBSDID("$FreeBSD: stable/11/sys/dev/qlnx/qlnxe/ecore_dev.c 318300 2017-05-15 17:45:05Z davidcs $");
32__FBSDID("$FreeBSD: stable/11/sys/dev/qlnx/qlnxe/ecore_dev.c 320164 2017-06-20 19:16:06Z davidcs $");
33
33
34
35#include "bcm_osal.h"
36#include "reg_addr.h"
37#include "ecore_gtt_reg_addr.h"
38#include "ecore.h"
39#include "ecore_chain.h"
40#include "ecore_status.h"
41#include "ecore_hw.h"
42#include "ecore_rt_defs.h"
43#include "ecore_init_ops.h"
44#include "ecore_int.h"
45#include "ecore_cxt.h"
46#include "ecore_spq.h"
47#include "ecore_init_fw_funcs.h"
48#include "ecore_sp_commands.h"
49#include "ecore_dev_api.h"
50#include "ecore_sriov.h"
51#include "ecore_vf.h"
52#include "ecore_ll2.h"
53#include "ecore_fcoe.h"
54#include "ecore_iscsi.h"
55#include "ecore_ooo.h"
56#include "ecore_mcp.h"
57#include "ecore_hw_defs.h"
58#include "mcp_public.h"
59#include "ecore_roce.h"
60#include "ecore_iro.h"
61#include "nvm_cfg.h"
62#include "ecore_dev_api.h"
63#include "ecore_dcbx.h"
64#include "pcics_reg_driver.h"
65#include "ecore_l2.h"
66
67/* TODO - there's a bug in DCBx re-configuration flows in MF, as the QM
68 * registers involved are not split and thus configuration is a race where
69 * some of the PFs configuration might be lost.
70 * Eventually, this needs to move into a MFW-covered HW-lock as arbitration
71 * mechanism as this doesn't cover some cases [E.g., PDA or scenarios where
72 * there's more than a single compiled ecore component in system].
73 */
74static osal_spinlock_t qm_lock;
75static bool qm_lock_init = false;
76
34#include "bcm_osal.h"
35#include "reg_addr.h"
36#include "ecore_gtt_reg_addr.h"
37#include "ecore.h"
38#include "ecore_chain.h"
39#include "ecore_status.h"
40#include "ecore_hw.h"
41#include "ecore_rt_defs.h"
42#include "ecore_init_ops.h"
43#include "ecore_int.h"
44#include "ecore_cxt.h"
45#include "ecore_spq.h"
46#include "ecore_init_fw_funcs.h"
47#include "ecore_sp_commands.h"
48#include "ecore_dev_api.h"
49#include "ecore_sriov.h"
50#include "ecore_vf.h"
51#include "ecore_ll2.h"
52#include "ecore_fcoe.h"
53#include "ecore_iscsi.h"
54#include "ecore_ooo.h"
55#include "ecore_mcp.h"
56#include "ecore_hw_defs.h"
57#include "mcp_public.h"
58#include "ecore_roce.h"
59#include "ecore_iro.h"
60#include "nvm_cfg.h"
61#include "ecore_dev_api.h"
62#include "ecore_dcbx.h"
63#include "pcics_reg_driver.h"
64#include "ecore_l2.h"
65
66/* TODO - there's a bug in DCBx re-configuration flows in MF, as the QM
67 * registers involved are not split and thus configuration is a race where
68 * some of the PFs configuration might be lost.
69 * Eventually, this needs to move into a MFW-covered HW-lock as arbitration
70 * mechanism as this doesn't cover some cases [E.g., PDA or scenarios where
71 * there's more than a single compiled ecore component in system].
72 */
73static osal_spinlock_t qm_lock;
74static bool qm_lock_init = false;
75
76/******************** Doorbell Recovery *******************/
77/* The doorbell recovery mechanism consists of a list of entries which represent
78 * doorbelling entities (l2 queues, roce sq/rq/cqs, the slowpath spq, etc). Each
79 * entity needs to register with the mechanism and provide the parameters
80 * describing it's doorbell, including a location where last used doorbell data
81 * can be found. The doorbell execute function will traverse the list and
82 * doorbell all of the registered entries.
83 */
84struct ecore_db_recovery_entry {
85 osal_list_entry_t list_entry;
86 void OSAL_IOMEM *db_addr;
87 void *db_data;
88 enum ecore_db_rec_width db_width;
89 enum ecore_db_rec_space db_space;
90 u8 hwfn_idx;
91};
92
93/* display a single doorbell recovery entry */
94static void ecore_db_recovery_dp_entry(struct ecore_hwfn *p_hwfn,
95 struct ecore_db_recovery_entry *db_entry,
96 char *action)
97{
98 DP_VERBOSE(p_hwfn, ECORE_MSG_SPQ, "(%s: db_entry %p, addr %p, data %p, width %s, %s space, hwfn %d)\n",
99 action, db_entry, db_entry->db_addr, db_entry->db_data,
100 db_entry->db_width == DB_REC_WIDTH_32B ? "32b" : "64b",
101 db_entry->db_space == DB_REC_USER ? "user" : "kernel",
102 db_entry->hwfn_idx);
103}
104
105/* doorbell address sanity (address within doorbell bar range) */
106static bool ecore_db_rec_sanity(struct ecore_dev *p_dev, void OSAL_IOMEM *db_addr)
107{
108 if (db_addr < p_dev->doorbells || db_addr >
109 (void OSAL_IOMEM *)((uint8_t *)p_dev->doorbells + p_dev->db_size)) {
110 OSAL_WARN(true,
111 "Illegal doorbell address: %p. Legal range for doorbell addresses is [%p..%p]\n",
112 db_addr, p_dev->doorbells,
113 (void *)((uint8_t *)p_dev->doorbells + p_dev->db_size));
114 return false;
115 } else {
116 return true;
117 }
118}
119
120/* find hwfn according to the doorbell address */
121static struct ecore_hwfn *ecore_db_rec_find_hwfn(struct ecore_dev *p_dev,
122 void OSAL_IOMEM *db_addr)
123{
124 struct ecore_hwfn *p_hwfn;
125
126 /* in CMT doorbell bar is split down the middle between engine 0 and enigne 1 */
127 if (p_dev->num_hwfns > 1)
128 p_hwfn = db_addr < p_dev->hwfns[1].doorbells ?
129 &p_dev->hwfns[0] : &p_dev->hwfns[1];
130 else
131 p_hwfn = ECORE_LEADING_HWFN(p_dev);
132
133 return p_hwfn;
134}
135
136/* add a new entry to the doorbell recovery mechanism */
137enum _ecore_status_t ecore_db_recovery_add(struct ecore_dev *p_dev,
138 void OSAL_IOMEM *db_addr,
139 void *db_data,
140 enum ecore_db_rec_width db_width,
141 enum ecore_db_rec_space db_space)
142{
143 struct ecore_db_recovery_entry *db_entry;
144 struct ecore_hwfn *p_hwfn;
145
146 /* shortcircuit VFs, for now */
147 if (IS_VF(p_dev)) {
148 DP_VERBOSE(p_dev, ECORE_MSG_IOV, "db recovery - skipping VF doorbell\n");
149 return ECORE_SUCCESS;
150 }
151
152 /* sanitize doorbell address */
153 if (!ecore_db_rec_sanity(p_dev, db_addr))
154 return ECORE_INVAL;
155
156 /* obtain hwfn from doorbell address */
157 p_hwfn = ecore_db_rec_find_hwfn(p_dev, db_addr);
158
159 /* create entry */
160 db_entry = OSAL_ZALLOC(p_hwfn->p_dev, GFP_KERNEL, sizeof(*db_entry));
161 if (!db_entry) {
162 DP_NOTICE(p_dev, false, "Failed to allocate a db recovery entry\n");
163 return ECORE_NOMEM;
164 }
165
166 /* populate entry */
167 db_entry->db_addr = db_addr;
168 db_entry->db_data = db_data;
169 db_entry->db_width = db_width;
170 db_entry->db_space = db_space;
171 db_entry->hwfn_idx = p_hwfn->my_id;
172
173 /* display */
174 ecore_db_recovery_dp_entry(p_hwfn, db_entry, "Adding");
175
176 /* protect the list */
177 OSAL_SPIN_LOCK(&p_hwfn->db_recovery_info.lock);
178 OSAL_LIST_PUSH_TAIL(&db_entry->list_entry,
179 &p_hwfn->db_recovery_info.list);
180 OSAL_SPIN_UNLOCK(&p_hwfn->db_recovery_info.lock);
181
182 return ECORE_SUCCESS;
183}
184
185/* remove an entry from the doorbell recovery mechanism */
186enum _ecore_status_t ecore_db_recovery_del(struct ecore_dev *p_dev,
187 void OSAL_IOMEM *db_addr,
188 void *db_data)
189{
190 struct ecore_db_recovery_entry *db_entry = OSAL_NULL;
191 enum _ecore_status_t rc = ECORE_INVAL;
192 struct ecore_hwfn *p_hwfn;
193
194 /* shortcircuit VFs, for now */
195 if (IS_VF(p_dev)) {
196 DP_VERBOSE(p_dev, ECORE_MSG_IOV, "db recovery - skipping VF doorbell\n");
197 return ECORE_SUCCESS;
198 }
199
200 /* sanitize doorbell address */
201 if (!ecore_db_rec_sanity(p_dev, db_addr))
202 return ECORE_INVAL;
203
204 /* obtain hwfn from doorbell address */
205 p_hwfn = ecore_db_rec_find_hwfn(p_dev, db_addr);
206
207 /* protect the list */
208 OSAL_SPIN_LOCK(&p_hwfn->db_recovery_info.lock);
209 OSAL_LIST_FOR_EACH_ENTRY(db_entry,
210 &p_hwfn->db_recovery_info.list,
211 list_entry,
212 struct ecore_db_recovery_entry) {
213
214 /* search according to db_data addr since db_addr is not unique (roce) */
215 if (db_entry->db_data == db_data) {
216 ecore_db_recovery_dp_entry(p_hwfn, db_entry, "Deleting");
217 OSAL_LIST_REMOVE_ENTRY(&db_entry->list_entry,
218 &p_hwfn->db_recovery_info.list);
219 rc = ECORE_SUCCESS;
220 break;
221 }
222 }
223
224 OSAL_SPIN_UNLOCK(&p_hwfn->db_recovery_info.lock);
225
226 if (rc == ECORE_INVAL) {
227 OSAL_WARN(true, "Failed to find element in list. Key (db_data addr) was %p. db_addr was %p\n",
228 db_data, db_addr);
229 } else {
230 OSAL_FREE(p_dev, db_entry);
231 }
232
233 return rc;
234}
235
236/* initialize the doorbell recovery mechanism */
237static void ecore_db_recovery_setup(struct ecore_hwfn *p_hwfn)
238{
239 DP_VERBOSE(p_hwfn, ECORE_MSG_SPQ, "Setting up db recovery\n");
240 OSAL_LIST_INIT(&p_hwfn->db_recovery_info.list);
241#ifdef CONFIG_ECORE_LOCK_ALLOC
242 OSAL_SPIN_LOCK_ALLOC(p_hwfn, &p_hwfn->db_recovery_info.lock);
243#endif
244 OSAL_SPIN_LOCK_INIT(&p_hwfn->db_recovery_info.lock);
245 p_hwfn->db_recovery_info.db_recovery_counter = 0;
246}
247
248/* destroy the doorbell recovery mechanism */
249static void ecore_db_recovery_teardown(struct ecore_hwfn *p_hwfn)
250{
251 struct ecore_db_recovery_entry *db_entry = OSAL_NULL;
252
253 DP_VERBOSE(p_hwfn, ECORE_MSG_SPQ, "Tearing down db recovery\n");
254 if (!OSAL_LIST_IS_EMPTY(&p_hwfn->db_recovery_info.list)) {
255 DP_VERBOSE(p_hwfn, false, "Doorbell Recovery teardown found the doorbell recovery list was not empty (Expected in disorderly driver unload (e.g. recovery) otherwise this probably means some flow forgot to db_recovery_del). Prepare to purge doorbell recovery list...\n");
256 while (!OSAL_LIST_IS_EMPTY(&p_hwfn->db_recovery_info.list)) {
257 db_entry = OSAL_LIST_FIRST_ENTRY(&p_hwfn->db_recovery_info.list,
258 struct ecore_db_recovery_entry,
259 list_entry);
260 ecore_db_recovery_dp_entry(p_hwfn, db_entry, "Purging");
261 OSAL_LIST_REMOVE_ENTRY(&db_entry->list_entry,
262 &p_hwfn->db_recovery_info.list);
263 OSAL_FREE(p_hwfn->p_dev, db_entry);
264 }
265 }
266#ifdef CONFIG_ECORE_LOCK_ALLOC
267 OSAL_SPIN_LOCK_DEALLOC(&p_hwfn->db_recovery_info.lock);
268#endif
269 p_hwfn->db_recovery_info.db_recovery_counter = 0;
270}
271
272/* print the content of the doorbell recovery mechanism */
273void ecore_db_recovery_dp(struct ecore_hwfn *p_hwfn)
274{
275 struct ecore_db_recovery_entry *db_entry = OSAL_NULL;
276
277 DP_NOTICE(p_hwfn, false,
278 "Dispalying doorbell recovery database. Counter was %d\n",
279 p_hwfn->db_recovery_info.db_recovery_counter);
280
281 /* protect the list */
282 OSAL_SPIN_LOCK(&p_hwfn->db_recovery_info.lock);
283 OSAL_LIST_FOR_EACH_ENTRY(db_entry,
284 &p_hwfn->db_recovery_info.list,
285 list_entry,
286 struct ecore_db_recovery_entry) {
287 ecore_db_recovery_dp_entry(p_hwfn, db_entry, "Printing");
288 }
289
290 OSAL_SPIN_UNLOCK(&p_hwfn->db_recovery_info.lock);
291}
292
293/* ring the doorbell of a single doorbell recovery entry */
294static void ecore_db_recovery_ring(struct ecore_hwfn *p_hwfn,
295 struct ecore_db_recovery_entry *db_entry,
296 enum ecore_db_rec_exec db_exec)
297{
298 /* Print according to width */
299 if (db_entry->db_width == DB_REC_WIDTH_32B)
300 DP_VERBOSE(p_hwfn, ECORE_MSG_SPQ, "%s doorbell address %p data %x\n",
301 db_exec == DB_REC_DRY_RUN ? "would have rung" : "ringing",
302 db_entry->db_addr, *(u32 *)db_entry->db_data);
303 else
304 DP_VERBOSE(p_hwfn, ECORE_MSG_SPQ, "%s doorbell address %p data %llx\n",
305 db_exec == DB_REC_DRY_RUN ? "would have rung" : "ringing",
306 db_entry->db_addr, (unsigned long long)*(u64 *)(db_entry->db_data));
307
308 /* Sanity */
309 if (!ecore_db_rec_sanity(p_hwfn->p_dev, db_entry->db_addr))
310 return;
311
312 /* Flush the write combined buffer. Since there are multiple doorbelling
313 * entities using the same address, if we don't flush, a transaction
314 * could be lost.
315 */
316 OSAL_WMB(p_hwfn->p_dev);
317
318 /* Ring the doorbell */
319 if (db_exec == DB_REC_REAL_DEAL) {
320 if (db_entry->db_width == DB_REC_WIDTH_32B)
321 DIRECT_REG_WR(p_hwfn, db_entry->db_addr, *(u32 *)(db_entry->db_data));
322 else
323 DIRECT_REG_WR64(p_hwfn, db_entry->db_addr, *(u64 *)(db_entry->db_data));
324 }
325
326 /* Flush the write combined buffer. Next doorbell may come from a
327 * different entity to the same address...
328 */
329 OSAL_WMB(p_hwfn->p_dev);
330}
331
332/* traverse the doorbell recovery entry list and ring all the doorbells */
333void ecore_db_recovery_execute(struct ecore_hwfn *p_hwfn,
334 enum ecore_db_rec_exec db_exec)
335{
336 struct ecore_db_recovery_entry *db_entry = OSAL_NULL;
337
338 DP_NOTICE(p_hwfn, false, "Executing doorbell recovery. Counter was %d\n",
339 p_hwfn->db_recovery_info.db_recovery_counter);
340
341 /* protect the list */
342 OSAL_SPIN_LOCK(&p_hwfn->db_recovery_info.lock);
343 OSAL_LIST_FOR_EACH_ENTRY(db_entry,
344 &p_hwfn->db_recovery_info.list,
345 list_entry,
346 struct ecore_db_recovery_entry)
347 ecore_db_recovery_ring(p_hwfn, db_entry, db_exec);
348 OSAL_SPIN_UNLOCK(&p_hwfn->db_recovery_info.lock);
349
350 /* track amount of times recovery was executed */
351 p_hwfn->db_recovery_info.db_recovery_counter++;
352}
353/******************** Doorbell Recovery end ****************/
354
77/* Configurable */
78#define ECORE_MIN_DPIS (4) /* The minimal number of DPIs required to
79 * load the driver. The number was
80 * arbitrarily set.
81 */
82
83/* Derived */
355/* Configurable */
356#define ECORE_MIN_DPIS (4) /* The minimal number of DPIs required to
357 * load the driver. The number was
358 * arbitrarily set.
359 */
360
361/* Derived */
84#define ECORE_MIN_PWM_REGION ((ECORE_WID_SIZE) * (ECORE_MIN_DPIS))
362#define ECORE_MIN_PWM_REGION (ECORE_WID_SIZE * ECORE_MIN_DPIS)
85
86enum BAR_ID {
87 BAR_ID_0, /* used for GRC */
88 BAR_ID_1 /* Used for doorbells */
89};
90
363
364enum BAR_ID {
365 BAR_ID_0, /* used for GRC */
366 BAR_ID_1 /* Used for doorbells */
367};
368
91static u32 ecore_hw_bar_size(struct ecore_hwfn *p_hwfn, enum BAR_ID bar_id)
369static u32 ecore_hw_bar_size(struct ecore_hwfn *p_hwfn,
370 struct ecore_ptt *p_ptt,
371 enum BAR_ID bar_id)
92{
93 u32 bar_reg = (bar_id == BAR_ID_0 ?
94 PGLUE_B_REG_PF_BAR0_SIZE : PGLUE_B_REG_PF_BAR1_SIZE);
95 u32 val;
96
97 if (IS_VF(p_hwfn->p_dev)) {
98 /* TODO - assume each VF hwfn has 64Kb for Bar0; Bar1 can be
99 * read from actual register, but we're currently not using
100 * it for actual doorbelling.
101 */
102 return 1 << 17;
103 }
104
372{
373 u32 bar_reg = (bar_id == BAR_ID_0 ?
374 PGLUE_B_REG_PF_BAR0_SIZE : PGLUE_B_REG_PF_BAR1_SIZE);
375 u32 val;
376
377 if (IS_VF(p_hwfn->p_dev)) {
378 /* TODO - assume each VF hwfn has 64Kb for Bar0; Bar1 can be
379 * read from actual register, but we're currently not using
380 * it for actual doorbelling.
381 */
382 return 1 << 17;
383 }
384
105 val = ecore_rd(p_hwfn, p_hwfn->p_main_ptt, bar_reg);
385 val = ecore_rd(p_hwfn, p_ptt, bar_reg);
106 if (val)
107 return 1 << (val + 15);
108
109 /* The above registers were updated in the past only in CMT mode. Since
110 * they were found to be useful MFW started updating them from 8.7.7.0.
111 * In older MFW versions they are set to 0 which means disabled.
112 */
113 if (p_hwfn->p_dev->num_hwfns > 1) {
386 if (val)
387 return 1 << (val + 15);
388
389 /* The above registers were updated in the past only in CMT mode. Since
390 * they were found to be useful MFW started updating them from 8.7.7.0.
391 * In older MFW versions they are set to 0 which means disabled.
392 */
393 if (p_hwfn->p_dev->num_hwfns > 1) {
114 DP_NOTICE(p_hwfn, false,
115 "BAR size not configured. Assuming BAR size of 256kB for GRC and 512kB for DB\n");
394 DP_INFO(p_hwfn,
395 "BAR size not configured. Assuming BAR size of 256kB for GRC and 512kB for DB\n");
116 return BAR_ID_0 ? 256 * 1024 : 512 * 1024;
117 } else {
396 return BAR_ID_0 ? 256 * 1024 : 512 * 1024;
397 } else {
118 DP_NOTICE(p_hwfn, false,
119 "BAR size not configured. Assuming BAR size of 512kB for GRC and 512kB for DB\n");
398 DP_INFO(p_hwfn,
399 "BAR size not configured. Assuming BAR size of 512kB for GRC and 512kB for DB\n");
120 return 512 * 1024;
121 }
122}
123
124void ecore_init_dp(struct ecore_dev *p_dev,
125 u32 dp_module,
126 u8 dp_level,
127 void *dp_ctx)
128{
129 u32 i;
130
131 p_dev->dp_level = dp_level;
132 p_dev->dp_module = dp_module;
133 p_dev->dp_ctx = dp_ctx;
134 for (i = 0; i < MAX_HWFNS_PER_DEVICE; i++) {
135 struct ecore_hwfn *p_hwfn = &p_dev->hwfns[i];
136
137 p_hwfn->dp_level = dp_level;
138 p_hwfn->dp_module = dp_module;
139 p_hwfn->dp_ctx = dp_ctx;
140 }
141}
142
143void ecore_init_struct(struct ecore_dev *p_dev)
144{
145 u8 i;
146
147 for (i = 0; i < MAX_HWFNS_PER_DEVICE; i++) {
148 struct ecore_hwfn *p_hwfn = &p_dev->hwfns[i];
149
150 p_hwfn->p_dev = p_dev;
151 p_hwfn->my_id = i;
152 p_hwfn->b_active = false;
153
400 return 512 * 1024;
401 }
402}
403
404void ecore_init_dp(struct ecore_dev *p_dev,
405 u32 dp_module,
406 u8 dp_level,
407 void *dp_ctx)
408{
409 u32 i;
410
411 p_dev->dp_level = dp_level;
412 p_dev->dp_module = dp_module;
413 p_dev->dp_ctx = dp_ctx;
414 for (i = 0; i < MAX_HWFNS_PER_DEVICE; i++) {
415 struct ecore_hwfn *p_hwfn = &p_dev->hwfns[i];
416
417 p_hwfn->dp_level = dp_level;
418 p_hwfn->dp_module = dp_module;
419 p_hwfn->dp_ctx = dp_ctx;
420 }
421}
422
423void ecore_init_struct(struct ecore_dev *p_dev)
424{
425 u8 i;
426
427 for (i = 0; i < MAX_HWFNS_PER_DEVICE; i++) {
428 struct ecore_hwfn *p_hwfn = &p_dev->hwfns[i];
429
430 p_hwfn->p_dev = p_dev;
431 p_hwfn->my_id = i;
432 p_hwfn->b_active = false;
433
434#ifdef CONFIG_ECORE_LOCK_ALLOC
154 OSAL_MUTEX_ALLOC(p_hwfn, &p_hwfn->dmae_info.mutex);
435 OSAL_MUTEX_ALLOC(p_hwfn, &p_hwfn->dmae_info.mutex);
436#endif
155 OSAL_MUTEX_INIT(&p_hwfn->dmae_info.mutex);
156 }
157
158 /* hwfn 0 is always active */
159 p_dev->hwfns[0].b_active = true;
160
161 /* set the default cache alignment to 128 (may be overridden later) */
162 p_dev->cache_shift = 7;
163}
164
165static void ecore_qm_info_free(struct ecore_hwfn *p_hwfn)
166{
167 struct ecore_qm_info *qm_info = &p_hwfn->qm_info;
168
169 OSAL_FREE(p_hwfn->p_dev, qm_info->qm_pq_params);
170 qm_info->qm_pq_params = OSAL_NULL;
171 OSAL_FREE(p_hwfn->p_dev, qm_info->qm_vport_params);
172 qm_info->qm_vport_params = OSAL_NULL;
173 OSAL_FREE(p_hwfn->p_dev, qm_info->qm_port_params);
174 qm_info->qm_port_params = OSAL_NULL;
175 OSAL_FREE(p_hwfn->p_dev, qm_info->wfq_data);
176 qm_info->wfq_data = OSAL_NULL;
177}
178
179void ecore_resc_free(struct ecore_dev *p_dev)
180{
181 int i;
182
183 if (IS_VF(p_dev)) {
184 for_each_hwfn(p_dev, i)
185 ecore_l2_free(&p_dev->hwfns[i]);
186 return;
187 }
188
189 OSAL_FREE(p_dev, p_dev->fw_data);
190 p_dev->fw_data = OSAL_NULL;
191
192 OSAL_FREE(p_dev, p_dev->reset_stats);
193 p_dev->reset_stats = OSAL_NULL;
194
195 for_each_hwfn(p_dev, i) {
196 struct ecore_hwfn *p_hwfn = &p_dev->hwfns[i];
197
198 ecore_cxt_mngr_free(p_hwfn);
199 ecore_qm_info_free(p_hwfn);
200 ecore_spq_free(p_hwfn);
201 ecore_eq_free(p_hwfn);
202 ecore_consq_free(p_hwfn);
203 ecore_int_free(p_hwfn);
204#ifdef CONFIG_ECORE_LL2
205 ecore_ll2_free(p_hwfn);
206#endif
207#ifdef CONFIG_ECORE_FCOE
208 if (p_hwfn->hw_info.personality == ECORE_PCI_FCOE)
209 ecore_fcoe_free(p_hwfn);
210#endif
211#ifdef CONFIG_ECORE_ISCSI
212 if (p_hwfn->hw_info.personality == ECORE_PCI_ISCSI) {
213 ecore_iscsi_free(p_hwfn);
214 ecore_ooo_free(p_hwfn);
215 }
216#endif
217 ecore_iov_free(p_hwfn);
218 ecore_l2_free(p_hwfn);
219 ecore_dmae_info_free(p_hwfn);
220 ecore_dcbx_info_free(p_hwfn);
221 /* @@@TBD Flush work-queue ?*/
437 OSAL_MUTEX_INIT(&p_hwfn->dmae_info.mutex);
438 }
439
440 /* hwfn 0 is always active */
441 p_dev->hwfns[0].b_active = true;
442
443 /* set the default cache alignment to 128 (may be overridden later) */
444 p_dev->cache_shift = 7;
445}
446
447static void ecore_qm_info_free(struct ecore_hwfn *p_hwfn)
448{
449 struct ecore_qm_info *qm_info = &p_hwfn->qm_info;
450
451 OSAL_FREE(p_hwfn->p_dev, qm_info->qm_pq_params);
452 qm_info->qm_pq_params = OSAL_NULL;
453 OSAL_FREE(p_hwfn->p_dev, qm_info->qm_vport_params);
454 qm_info->qm_vport_params = OSAL_NULL;
455 OSAL_FREE(p_hwfn->p_dev, qm_info->qm_port_params);
456 qm_info->qm_port_params = OSAL_NULL;
457 OSAL_FREE(p_hwfn->p_dev, qm_info->wfq_data);
458 qm_info->wfq_data = OSAL_NULL;
459}
460
461void ecore_resc_free(struct ecore_dev *p_dev)
462{
463 int i;
464
465 if (IS_VF(p_dev)) {
466 for_each_hwfn(p_dev, i)
467 ecore_l2_free(&p_dev->hwfns[i]);
468 return;
469 }
470
471 OSAL_FREE(p_dev, p_dev->fw_data);
472 p_dev->fw_data = OSAL_NULL;
473
474 OSAL_FREE(p_dev, p_dev->reset_stats);
475 p_dev->reset_stats = OSAL_NULL;
476
477 for_each_hwfn(p_dev, i) {
478 struct ecore_hwfn *p_hwfn = &p_dev->hwfns[i];
479
480 ecore_cxt_mngr_free(p_hwfn);
481 ecore_qm_info_free(p_hwfn);
482 ecore_spq_free(p_hwfn);
483 ecore_eq_free(p_hwfn);
484 ecore_consq_free(p_hwfn);
485 ecore_int_free(p_hwfn);
486#ifdef CONFIG_ECORE_LL2
487 ecore_ll2_free(p_hwfn);
488#endif
489#ifdef CONFIG_ECORE_FCOE
490 if (p_hwfn->hw_info.personality == ECORE_PCI_FCOE)
491 ecore_fcoe_free(p_hwfn);
492#endif
493#ifdef CONFIG_ECORE_ISCSI
494 if (p_hwfn->hw_info.personality == ECORE_PCI_ISCSI) {
495 ecore_iscsi_free(p_hwfn);
496 ecore_ooo_free(p_hwfn);
497 }
498#endif
499 ecore_iov_free(p_hwfn);
500 ecore_l2_free(p_hwfn);
501 ecore_dmae_info_free(p_hwfn);
502 ecore_dcbx_info_free(p_hwfn);
503 /* @@@TBD Flush work-queue ?*/
504
505 /* destroy doorbell recovery mechanism */
506 ecore_db_recovery_teardown(p_hwfn);
222 }
223}
224
225/******************** QM initialization *******************/
507 }
508}
509
510/******************** QM initialization *******************/
226
227/* bitmaps for indicating active traffic classes. Special case for Arrowhead 4 port */
228#define ACTIVE_TCS_BMAP 0x9f /* 0..3 actualy used, 4 serves OOO, 7 serves high priority stuff (e.g. DCQCN) */
229#define ACTIVE_TCS_BMAP_4PORT_K2 0xf /* 0..3 actually used, OOO and high priority stuff all use 3 */
230
231/* determines the physical queue flags for a given PF. */
232static u32 ecore_get_pq_flags(struct ecore_hwfn *p_hwfn)
233{
234 u32 flags;
235
236 /* common flags */
237 flags = PQ_FLAGS_LB;
238
239 /* feature flags */
240 if (IS_ECORE_SRIOV(p_hwfn->p_dev))
241 flags |= PQ_FLAGS_VFS;
242 if (IS_ECORE_DCQCN(p_hwfn))
243 flags |= PQ_FLAGS_RLS;
244
245 /* protocol flags */
246 switch (p_hwfn->hw_info.personality) {
247 case ECORE_PCI_ETH:
248 flags |= PQ_FLAGS_MCOS;
249 break;
250 case ECORE_PCI_FCOE:
251 flags |= PQ_FLAGS_OFLD;
252 break;
253 case ECORE_PCI_ISCSI:
254 flags |= PQ_FLAGS_ACK | PQ_FLAGS_OOO | PQ_FLAGS_OFLD;
255 break;
256 case ECORE_PCI_ETH_ROCE:
257 flags |= PQ_FLAGS_MCOS | PQ_FLAGS_OFLD | PQ_FLAGS_LLT;
258 break;
259 case ECORE_PCI_ETH_IWARP:
260 flags |= PQ_FLAGS_MCOS | PQ_FLAGS_ACK | PQ_FLAGS_OOO | PQ_FLAGS_OFLD;
261 break;
262 default:
263 DP_ERR(p_hwfn, "unknown personality %d\n", p_hwfn->hw_info.personality);
264 return 0;
265 }
266
267 return flags;
268}
269
270
271/* Getters for resource amounts necessary for qm initialization */
272u8 ecore_init_qm_get_num_tcs(struct ecore_hwfn *p_hwfn)
273{
274 return p_hwfn->hw_info.num_hw_tc;
275}
276
277u16 ecore_init_qm_get_num_vfs(struct ecore_hwfn *p_hwfn)
278{
279 return IS_ECORE_SRIOV(p_hwfn->p_dev) ? p_hwfn->p_dev->p_iov_info->total_vfs : 0;
280}
281
282#define NUM_DEFAULT_RLS 1
283
284u16 ecore_init_qm_get_num_pf_rls(struct ecore_hwfn *p_hwfn)
285{
286 u16 num_pf_rls, num_vfs = ecore_init_qm_get_num_vfs(p_hwfn);
287
288 /* num RLs can't exceed resource amount of rls or vports or the dcqcn qps */
289 num_pf_rls = (u16)OSAL_MIN_T(u32, RESC_NUM(p_hwfn, ECORE_RL),
290 (u16)OSAL_MIN_T(u32, RESC_NUM(p_hwfn, ECORE_VPORT),
291 ROCE_DCQCN_RP_MAX_QPS));
292
293 /* make sure after we reserve the default and VF rls we'll have something left */
294 if (num_pf_rls < num_vfs + NUM_DEFAULT_RLS) {
295 if (IS_ECORE_DCQCN(p_hwfn))
296 DP_NOTICE(p_hwfn, false, "no rate limiters left for PF rate limiting [num_pf_rls %d num_vfs %d]\n", num_pf_rls, num_vfs);
297 return 0;
298 }
299
300 /* subtract rls necessary for VFs and one default one for the PF */
301 num_pf_rls -= num_vfs + NUM_DEFAULT_RLS;
302
303 return num_pf_rls;
304}
305
306u16 ecore_init_qm_get_num_vports(struct ecore_hwfn *p_hwfn)
307{
308 u32 pq_flags = ecore_get_pq_flags(p_hwfn);
309
310 /* all pqs share the same vport (hence the 1 below), except for vfs and pf_rl pqs */
311 return (!!(PQ_FLAGS_RLS & pq_flags)) * ecore_init_qm_get_num_pf_rls(p_hwfn) +
312 (!!(PQ_FLAGS_VFS & pq_flags)) * ecore_init_qm_get_num_vfs(p_hwfn) + 1;
313}
314
315/* calc amount of PQs according to the requested flags */
316u16 ecore_init_qm_get_num_pqs(struct ecore_hwfn *p_hwfn)
317{
318 u32 pq_flags = ecore_get_pq_flags(p_hwfn);
319
320 return (!!(PQ_FLAGS_RLS & pq_flags)) * ecore_init_qm_get_num_pf_rls(p_hwfn) +
321 (!!(PQ_FLAGS_MCOS & pq_flags)) * ecore_init_qm_get_num_tcs(p_hwfn) +
322 (!!(PQ_FLAGS_LB & pq_flags)) +
323 (!!(PQ_FLAGS_OOO & pq_flags)) +
324 (!!(PQ_FLAGS_ACK & pq_flags)) +
325 (!!(PQ_FLAGS_OFLD & pq_flags)) +
326 (!!(PQ_FLAGS_LLT & pq_flags)) +
327 (!!(PQ_FLAGS_VFS & pq_flags)) * ecore_init_qm_get_num_vfs(p_hwfn);
328}
329
330/* initialize the top level QM params */
331static void ecore_init_qm_params(struct ecore_hwfn *p_hwfn)
332{
333 struct ecore_qm_info *qm_info = &p_hwfn->qm_info;
334 bool four_port;
335
336 /* pq and vport bases for this PF */
337 qm_info->start_pq = (u16)RESC_START(p_hwfn, ECORE_PQ);
338 qm_info->start_vport = (u8)RESC_START(p_hwfn, ECORE_VPORT);
339
340 /* rate limiting and weighted fair queueing are always enabled */
341 qm_info->vport_rl_en = 1;
342 qm_info->vport_wfq_en = 1;
343
344 /* TC config is different for AH 4 port */
511/* bitmaps for indicating active traffic classes. Special case for Arrowhead 4 port */
512#define ACTIVE_TCS_BMAP 0x9f /* 0..3 actualy used, 4 serves OOO, 7 serves high priority stuff (e.g. DCQCN) */
513#define ACTIVE_TCS_BMAP_4PORT_K2 0xf /* 0..3 actually used, OOO and high priority stuff all use 3 */
514
515/* determines the physical queue flags for a given PF. */
516static u32 ecore_get_pq_flags(struct ecore_hwfn *p_hwfn)
517{
518 u32 flags;
519
520 /* common flags */
521 flags = PQ_FLAGS_LB;
522
523 /* feature flags */
524 if (IS_ECORE_SRIOV(p_hwfn->p_dev))
525 flags |= PQ_FLAGS_VFS;
526 if (IS_ECORE_DCQCN(p_hwfn))
527 flags |= PQ_FLAGS_RLS;
528
529 /* protocol flags */
530 switch (p_hwfn->hw_info.personality) {
531 case ECORE_PCI_ETH:
532 flags |= PQ_FLAGS_MCOS;
533 break;
534 case ECORE_PCI_FCOE:
535 flags |= PQ_FLAGS_OFLD;
536 break;
537 case ECORE_PCI_ISCSI:
538 flags |= PQ_FLAGS_ACK | PQ_FLAGS_OOO | PQ_FLAGS_OFLD;
539 break;
540 case ECORE_PCI_ETH_ROCE:
541 flags |= PQ_FLAGS_MCOS | PQ_FLAGS_OFLD | PQ_FLAGS_LLT;
542 break;
543 case ECORE_PCI_ETH_IWARP:
544 flags |= PQ_FLAGS_MCOS | PQ_FLAGS_ACK | PQ_FLAGS_OOO | PQ_FLAGS_OFLD;
545 break;
546 default:
547 DP_ERR(p_hwfn, "unknown personality %d\n", p_hwfn->hw_info.personality);
548 return 0;
549 }
550
551 return flags;
552}
553
554
555/* Getters for resource amounts necessary for qm initialization */
556u8 ecore_init_qm_get_num_tcs(struct ecore_hwfn *p_hwfn)
557{
558 return p_hwfn->hw_info.num_hw_tc;
559}
560
561u16 ecore_init_qm_get_num_vfs(struct ecore_hwfn *p_hwfn)
562{
563 return IS_ECORE_SRIOV(p_hwfn->p_dev) ? p_hwfn->p_dev->p_iov_info->total_vfs : 0;
564}
565
566#define NUM_DEFAULT_RLS 1
567
568u16 ecore_init_qm_get_num_pf_rls(struct ecore_hwfn *p_hwfn)
569{
570 u16 num_pf_rls, num_vfs = ecore_init_qm_get_num_vfs(p_hwfn);
571
572 /* num RLs can't exceed resource amount of rls or vports or the dcqcn qps */
573 num_pf_rls = (u16)OSAL_MIN_T(u32, RESC_NUM(p_hwfn, ECORE_RL),
574 (u16)OSAL_MIN_T(u32, RESC_NUM(p_hwfn, ECORE_VPORT),
575 ROCE_DCQCN_RP_MAX_QPS));
576
577 /* make sure after we reserve the default and VF rls we'll have something left */
578 if (num_pf_rls < num_vfs + NUM_DEFAULT_RLS) {
579 if (IS_ECORE_DCQCN(p_hwfn))
580 DP_NOTICE(p_hwfn, false, "no rate limiters left for PF rate limiting [num_pf_rls %d num_vfs %d]\n", num_pf_rls, num_vfs);
581 return 0;
582 }
583
584 /* subtract rls necessary for VFs and one default one for the PF */
585 num_pf_rls -= num_vfs + NUM_DEFAULT_RLS;
586
587 return num_pf_rls;
588}
589
590u16 ecore_init_qm_get_num_vports(struct ecore_hwfn *p_hwfn)
591{
592 u32 pq_flags = ecore_get_pq_flags(p_hwfn);
593
594 /* all pqs share the same vport (hence the 1 below), except for vfs and pf_rl pqs */
595 return (!!(PQ_FLAGS_RLS & pq_flags)) * ecore_init_qm_get_num_pf_rls(p_hwfn) +
596 (!!(PQ_FLAGS_VFS & pq_flags)) * ecore_init_qm_get_num_vfs(p_hwfn) + 1;
597}
598
599/* calc amount of PQs according to the requested flags */
600u16 ecore_init_qm_get_num_pqs(struct ecore_hwfn *p_hwfn)
601{
602 u32 pq_flags = ecore_get_pq_flags(p_hwfn);
603
604 return (!!(PQ_FLAGS_RLS & pq_flags)) * ecore_init_qm_get_num_pf_rls(p_hwfn) +
605 (!!(PQ_FLAGS_MCOS & pq_flags)) * ecore_init_qm_get_num_tcs(p_hwfn) +
606 (!!(PQ_FLAGS_LB & pq_flags)) +
607 (!!(PQ_FLAGS_OOO & pq_flags)) +
608 (!!(PQ_FLAGS_ACK & pq_flags)) +
609 (!!(PQ_FLAGS_OFLD & pq_flags)) +
610 (!!(PQ_FLAGS_LLT & pq_flags)) +
611 (!!(PQ_FLAGS_VFS & pq_flags)) * ecore_init_qm_get_num_vfs(p_hwfn);
612}
613
614/* initialize the top level QM params */
615static void ecore_init_qm_params(struct ecore_hwfn *p_hwfn)
616{
617 struct ecore_qm_info *qm_info = &p_hwfn->qm_info;
618 bool four_port;
619
620 /* pq and vport bases for this PF */
621 qm_info->start_pq = (u16)RESC_START(p_hwfn, ECORE_PQ);
622 qm_info->start_vport = (u8)RESC_START(p_hwfn, ECORE_VPORT);
623
624 /* rate limiting and weighted fair queueing are always enabled */
625 qm_info->vport_rl_en = 1;
626 qm_info->vport_wfq_en = 1;
627
628 /* TC config is different for AH 4 port */
345 four_port = p_hwfn->p_dev->num_ports_in_engines == MAX_NUM_PORTS_K2;
629 four_port = p_hwfn->p_dev->num_ports_in_engine == MAX_NUM_PORTS_K2;
346
347 /* in AH 4 port we have fewer TCs per port */
348 qm_info->max_phys_tcs_per_port = four_port ? NUM_PHYS_TCS_4PORT_K2 : NUM_OF_PHYS_TCS;
349
350 /* unless MFW indicated otherwise, ooo_tc should be 3 for AH 4 port and 4 otherwise */
351 if (!qm_info->ooo_tc)
352 qm_info->ooo_tc = four_port ? DCBX_TCP_OOO_K2_4PORT_TC : DCBX_TCP_OOO_TC;
353}
354
355/* initialize qm vport params */
356static void ecore_init_qm_vport_params(struct ecore_hwfn *p_hwfn)
357{
358 struct ecore_qm_info *qm_info = &p_hwfn->qm_info;
359 u8 i;
360
361 /* all vports participate in weighted fair queueing */
362 for (i = 0; i < ecore_init_qm_get_num_vports(p_hwfn); i++)
363 qm_info->qm_vport_params[i].vport_wfq = 1;
364}
365
366/* initialize qm port params */
367static void ecore_init_qm_port_params(struct ecore_hwfn *p_hwfn)
368{
369 /* Initialize qm port parameters */
630
631 /* in AH 4 port we have fewer TCs per port */
632 qm_info->max_phys_tcs_per_port = four_port ? NUM_PHYS_TCS_4PORT_K2 : NUM_OF_PHYS_TCS;
633
634 /* unless MFW indicated otherwise, ooo_tc should be 3 for AH 4 port and 4 otherwise */
635 if (!qm_info->ooo_tc)
636 qm_info->ooo_tc = four_port ? DCBX_TCP_OOO_K2_4PORT_TC : DCBX_TCP_OOO_TC;
637}
638
639/* initialize qm vport params */
640static void ecore_init_qm_vport_params(struct ecore_hwfn *p_hwfn)
641{
642 struct ecore_qm_info *qm_info = &p_hwfn->qm_info;
643 u8 i;
644
645 /* all vports participate in weighted fair queueing */
646 for (i = 0; i < ecore_init_qm_get_num_vports(p_hwfn); i++)
647 qm_info->qm_vport_params[i].vport_wfq = 1;
648}
649
650/* initialize qm port params */
651static void ecore_init_qm_port_params(struct ecore_hwfn *p_hwfn)
652{
653 /* Initialize qm port parameters */
370 u8 i, active_phys_tcs, num_ports = p_hwfn->p_dev->num_ports_in_engines;
654 u8 i, active_phys_tcs, num_ports = p_hwfn->p_dev->num_ports_in_engine;
371
372 /* indicate how ooo and high pri traffic is dealt with */
373 active_phys_tcs = num_ports == MAX_NUM_PORTS_K2 ?
374 ACTIVE_TCS_BMAP_4PORT_K2 : ACTIVE_TCS_BMAP;
375
376 for (i = 0; i < num_ports; i++) {
377 struct init_qm_port_params *p_qm_port =
378 &p_hwfn->qm_info.qm_port_params[i];
379
380 p_qm_port->active = 1;
381 p_qm_port->active_phys_tcs = active_phys_tcs;
655
656 /* indicate how ooo and high pri traffic is dealt with */
657 active_phys_tcs = num_ports == MAX_NUM_PORTS_K2 ?
658 ACTIVE_TCS_BMAP_4PORT_K2 : ACTIVE_TCS_BMAP;
659
660 for (i = 0; i < num_ports; i++) {
661 struct init_qm_port_params *p_qm_port =
662 &p_hwfn->qm_info.qm_port_params[i];
663
664 p_qm_port->active = 1;
665 p_qm_port->active_phys_tcs = active_phys_tcs;
382 p_qm_port->num_pbf_cmd_lines = PBF_MAX_CMD_LINES / num_ports;
666 p_qm_port->num_pbf_cmd_lines = PBF_MAX_CMD_LINES_E4 / num_ports;
383 p_qm_port->num_btb_blocks = BTB_MAX_BLOCKS / num_ports;
384 }
385}
386
387/* Reset the params which must be reset for qm init. QM init may be called as
388 * a result of flows other than driver load (e.g. dcbx renegotiation). Other
389 * params may be affected by the init but would simply recalculate to the same
390 * values. The allocations made for QM init, ports, vports, pqs and vfqs are not
391 * affected as these amounts stay the same.
392 */
393static void ecore_init_qm_reset_params(struct ecore_hwfn *p_hwfn)
394{
395 struct ecore_qm_info *qm_info = &p_hwfn->qm_info;
396
397 qm_info->num_pqs = 0;
398 qm_info->num_vports = 0;
399 qm_info->num_pf_rls = 0;
400 qm_info->num_vf_pqs = 0;
401 qm_info->first_vf_pq = 0;
402 qm_info->first_mcos_pq = 0;
403 qm_info->first_rl_pq = 0;
404}
405
406static void ecore_init_qm_advance_vport(struct ecore_hwfn *p_hwfn)
407{
408 struct ecore_qm_info *qm_info = &p_hwfn->qm_info;
409
410 qm_info->num_vports++;
411
412 if (qm_info->num_vports > ecore_init_qm_get_num_vports(p_hwfn))
413 DP_ERR(p_hwfn, "vport overflow! qm_info->num_vports %d, qm_init_get_num_vports() %d\n", qm_info->num_vports, ecore_init_qm_get_num_vports(p_hwfn));
414}
415
416/* initialize a single pq and manage qm_info resources accounting.
417 * The pq_init_flags param determines whether the PQ is rate limited (for VF or PF)
418 * and whether a new vport is allocated to the pq or not (i.e. vport will be shared)
419 */
420
421/* flags for pq init */
422#define PQ_INIT_SHARE_VPORT (1 << 0)
423#define PQ_INIT_PF_RL (1 << 1)
424#define PQ_INIT_VF_RL (1 << 2)
425
426/* defines for pq init */
427#define PQ_INIT_DEFAULT_WRR_GROUP 1
428#define PQ_INIT_DEFAULT_TC 0
429#define PQ_INIT_OFLD_TC (p_hwfn->hw_info.offload_tc)
430
431static void ecore_init_qm_pq(struct ecore_hwfn *p_hwfn,
432 struct ecore_qm_info *qm_info,
433 u8 tc, u32 pq_init_flags)
434{
435 u16 pq_idx = qm_info->num_pqs, max_pq = ecore_init_qm_get_num_pqs(p_hwfn);
436
437 if (pq_idx > max_pq)
438 DP_ERR(p_hwfn, "pq overflow! pq %d, max pq %d\n", pq_idx, max_pq);
439
440 /* init pq params */
441 qm_info->qm_pq_params[pq_idx].vport_id = qm_info->start_vport + qm_info->num_vports;
442 qm_info->qm_pq_params[pq_idx].tc_id = tc;
443 qm_info->qm_pq_params[pq_idx].wrr_group = PQ_INIT_DEFAULT_WRR_GROUP;
444 qm_info->qm_pq_params[pq_idx].rl_valid =
445 (pq_init_flags & PQ_INIT_PF_RL || pq_init_flags & PQ_INIT_VF_RL);
446
447 /* qm params accounting */
448 qm_info->num_pqs++;
449 if (!(pq_init_flags & PQ_INIT_SHARE_VPORT))
450 qm_info->num_vports++;
451
452 if (pq_init_flags & PQ_INIT_PF_RL)
453 qm_info->num_pf_rls++;
454
455 if (qm_info->num_vports > ecore_init_qm_get_num_vports(p_hwfn))
456 DP_ERR(p_hwfn, "vport overflow! qm_info->num_vports %d, qm_init_get_num_vports() %d\n", qm_info->num_vports, ecore_init_qm_get_num_vports(p_hwfn));
457
458 if (qm_info->num_pf_rls > ecore_init_qm_get_num_pf_rls(p_hwfn))
459 DP_ERR(p_hwfn, "rl overflow! qm_info->num_pf_rls %d, qm_init_get_num_pf_rls() %d\n", qm_info->num_pf_rls, ecore_init_qm_get_num_pf_rls(p_hwfn));
460}
461
462/* get pq index according to PQ_FLAGS */
463static u16 *ecore_init_qm_get_idx_from_flags(struct ecore_hwfn *p_hwfn,
464 u32 pq_flags)
465{
466 struct ecore_qm_info *qm_info = &p_hwfn->qm_info;
467
468 /* Can't have multiple flags set here */
469 if (OSAL_BITMAP_WEIGHT((unsigned long *)&pq_flags, sizeof(pq_flags)) > 1)
470 goto err;
471
472 switch (pq_flags) {
473 case PQ_FLAGS_RLS:
474 return &qm_info->first_rl_pq;
475 case PQ_FLAGS_MCOS:
476 return &qm_info->first_mcos_pq;
477 case PQ_FLAGS_LB:
478 return &qm_info->pure_lb_pq;
479 case PQ_FLAGS_OOO:
480 return &qm_info->ooo_pq;
481 case PQ_FLAGS_ACK:
482 return &qm_info->pure_ack_pq;
483 case PQ_FLAGS_OFLD:
484 return &qm_info->offload_pq;
485 case PQ_FLAGS_LLT:
486 return &qm_info->low_latency_pq;
487 case PQ_FLAGS_VFS:
488 return &qm_info->first_vf_pq;
489 default:
490 goto err;
491 }
492
493err:
494 DP_ERR(p_hwfn, "BAD pq flags %d\n", pq_flags);
495 return OSAL_NULL;
496}
497
498/* save pq index in qm info */
499static void ecore_init_qm_set_idx(struct ecore_hwfn *p_hwfn,
500 u32 pq_flags, u16 pq_val)
501{
502 u16 *base_pq_idx = ecore_init_qm_get_idx_from_flags(p_hwfn, pq_flags);
503
504 *base_pq_idx = p_hwfn->qm_info.start_pq + pq_val;
505}
506
507/* get tx pq index, with the PQ TX base already set (ready for context init) */
508u16 ecore_get_cm_pq_idx(struct ecore_hwfn *p_hwfn, u32 pq_flags)
509{
510 u16 *base_pq_idx = ecore_init_qm_get_idx_from_flags(p_hwfn, pq_flags);
511
512 return *base_pq_idx + CM_TX_PQ_BASE;
513}
514
515u16 ecore_get_cm_pq_idx_mcos(struct ecore_hwfn *p_hwfn, u8 tc)
516{
517 u8 max_tc = ecore_init_qm_get_num_tcs(p_hwfn);
518
519 if (tc > max_tc)
520 DP_ERR(p_hwfn, "tc %d must be smaller than %d\n", tc, max_tc);
521
522 return ecore_get_cm_pq_idx(p_hwfn, PQ_FLAGS_MCOS) + tc;
523}
524
525u16 ecore_get_cm_pq_idx_vf(struct ecore_hwfn *p_hwfn, u16 vf)
526{
527 u16 max_vf = ecore_init_qm_get_num_vfs(p_hwfn);
528
529 if (vf > max_vf)
530 DP_ERR(p_hwfn, "vf %d must be smaller than %d\n", vf, max_vf);
531
532 return ecore_get_cm_pq_idx(p_hwfn, PQ_FLAGS_VFS) + vf;
533}
534
535u16 ecore_get_cm_pq_idx_rl(struct ecore_hwfn *p_hwfn, u8 rl)
536{
537 u16 max_rl = ecore_init_qm_get_num_pf_rls(p_hwfn);
538
539 if (rl > max_rl)
540 DP_ERR(p_hwfn, "rl %d must be smaller than %d\n", rl, max_rl);
541
542 return ecore_get_cm_pq_idx(p_hwfn, PQ_FLAGS_RLS) + rl;
543}
544
545/* Functions for creating specific types of pqs */
546static void ecore_init_qm_lb_pq(struct ecore_hwfn *p_hwfn)
547{
548 struct ecore_qm_info *qm_info = &p_hwfn->qm_info;
549
550 if (!(ecore_get_pq_flags(p_hwfn) & PQ_FLAGS_LB))
551 return;
552
553 ecore_init_qm_set_idx(p_hwfn, PQ_FLAGS_LB, qm_info->num_pqs);
554 ecore_init_qm_pq(p_hwfn, qm_info, PURE_LB_TC, PQ_INIT_SHARE_VPORT);
555}
556
557static void ecore_init_qm_ooo_pq(struct ecore_hwfn *p_hwfn)
558{
559 struct ecore_qm_info *qm_info = &p_hwfn->qm_info;
560
561 if (!(ecore_get_pq_flags(p_hwfn) & PQ_FLAGS_OOO))
562 return;
563
564 ecore_init_qm_set_idx(p_hwfn, PQ_FLAGS_OOO, qm_info->num_pqs);
565 ecore_init_qm_pq(p_hwfn, qm_info, qm_info->ooo_tc, PQ_INIT_SHARE_VPORT);
566}
567
568static void ecore_init_qm_pure_ack_pq(struct ecore_hwfn *p_hwfn)
569{
570 struct ecore_qm_info *qm_info = &p_hwfn->qm_info;
571
572 if (!(ecore_get_pq_flags(p_hwfn) & PQ_FLAGS_ACK))
573 return;
574
575 ecore_init_qm_set_idx(p_hwfn, PQ_FLAGS_ACK, qm_info->num_pqs);
576 ecore_init_qm_pq(p_hwfn, qm_info, PQ_INIT_OFLD_TC, PQ_INIT_SHARE_VPORT);
577}
578
579static void ecore_init_qm_offload_pq(struct ecore_hwfn *p_hwfn)
580{
581 struct ecore_qm_info *qm_info = &p_hwfn->qm_info;
582
583 if (!(ecore_get_pq_flags(p_hwfn) & PQ_FLAGS_OFLD))
584 return;
585
586 ecore_init_qm_set_idx(p_hwfn, PQ_FLAGS_OFLD, qm_info->num_pqs);
587 ecore_init_qm_pq(p_hwfn, qm_info, PQ_INIT_OFLD_TC, PQ_INIT_SHARE_VPORT);
588}
589
590static void ecore_init_qm_low_latency_pq(struct ecore_hwfn *p_hwfn)
591{
592 struct ecore_qm_info *qm_info = &p_hwfn->qm_info;
593
594 if (!(ecore_get_pq_flags(p_hwfn) & PQ_FLAGS_LLT))
595 return;
596
597 ecore_init_qm_set_idx(p_hwfn, PQ_FLAGS_LLT, qm_info->num_pqs);
598 ecore_init_qm_pq(p_hwfn, qm_info, PQ_INIT_OFLD_TC, PQ_INIT_SHARE_VPORT);
599}
600
601static void ecore_init_qm_mcos_pqs(struct ecore_hwfn *p_hwfn)
602{
603 struct ecore_qm_info *qm_info = &p_hwfn->qm_info;
604 u8 tc_idx;
605
606 if (!(ecore_get_pq_flags(p_hwfn) & PQ_FLAGS_MCOS))
607 return;
608
609 ecore_init_qm_set_idx(p_hwfn, PQ_FLAGS_MCOS, qm_info->num_pqs);
610 for (tc_idx = 0; tc_idx < ecore_init_qm_get_num_tcs(p_hwfn); tc_idx++)
611 ecore_init_qm_pq(p_hwfn, qm_info, tc_idx, PQ_INIT_SHARE_VPORT);
612}
613
614static void ecore_init_qm_vf_pqs(struct ecore_hwfn *p_hwfn)
615{
616 struct ecore_qm_info *qm_info = &p_hwfn->qm_info;
617 u16 vf_idx, num_vfs = ecore_init_qm_get_num_vfs(p_hwfn);
618
619 if (!(ecore_get_pq_flags(p_hwfn) & PQ_FLAGS_VFS))
620 return;
621
622 ecore_init_qm_set_idx(p_hwfn, PQ_FLAGS_VFS, qm_info->num_pqs);
623 qm_info->num_vf_pqs = num_vfs;
624 for (vf_idx = 0; vf_idx < num_vfs; vf_idx++)
625 ecore_init_qm_pq(p_hwfn, qm_info, PQ_INIT_DEFAULT_TC, PQ_INIT_VF_RL);
626}
627
628static void ecore_init_qm_rl_pqs(struct ecore_hwfn *p_hwfn)
629{
630 u16 pf_rls_idx, num_pf_rls = ecore_init_qm_get_num_pf_rls(p_hwfn);
631 struct ecore_qm_info *qm_info = &p_hwfn->qm_info;
632
633 if (!(ecore_get_pq_flags(p_hwfn) & PQ_FLAGS_RLS))
634 return;
635
636 ecore_init_qm_set_idx(p_hwfn, PQ_FLAGS_RLS, qm_info->num_pqs);
637 for (pf_rls_idx = 0; pf_rls_idx < num_pf_rls; pf_rls_idx++)
638 ecore_init_qm_pq(p_hwfn, qm_info, PQ_INIT_OFLD_TC, PQ_INIT_PF_RL);
639}
640
641static void ecore_init_qm_pq_params(struct ecore_hwfn *p_hwfn)
642{
643 /* rate limited pqs, must come first (FW assumption) */
644 ecore_init_qm_rl_pqs(p_hwfn);
645
646 /* pqs for multi cos */
647 ecore_init_qm_mcos_pqs(p_hwfn);
648
649 /* pure loopback pq */
650 ecore_init_qm_lb_pq(p_hwfn);
651
652 /* out of order pq */
653 ecore_init_qm_ooo_pq(p_hwfn);
654
655 /* pure ack pq */
656 ecore_init_qm_pure_ack_pq(p_hwfn);
657
658 /* pq for offloaded protocol */
659 ecore_init_qm_offload_pq(p_hwfn);
660
661 /* low latency pq */
662 ecore_init_qm_low_latency_pq(p_hwfn);
663
664 /* done sharing vports */
665 ecore_init_qm_advance_vport(p_hwfn);
666
667 /* pqs for vfs */
668 ecore_init_qm_vf_pqs(p_hwfn);
669}
670
671/* compare values of getters against resources amounts */
672static enum _ecore_status_t ecore_init_qm_sanity(struct ecore_hwfn *p_hwfn)
673{
674 if (ecore_init_qm_get_num_vports(p_hwfn) > RESC_NUM(p_hwfn, ECORE_VPORT)) {
675 DP_ERR(p_hwfn, "requested amount of vports exceeds resource\n");
676 return ECORE_INVAL;
677 }
678
679 if (ecore_init_qm_get_num_pqs(p_hwfn) > RESC_NUM(p_hwfn, ECORE_PQ)) {
680 DP_ERR(p_hwfn, "requested amount of pqs exceeds resource\n");
681 return ECORE_INVAL;
682 }
683
684 return ECORE_SUCCESS;
685}
686
687/*
688 * Function for verbose printing of the qm initialization results
689 */
690static void ecore_dp_init_qm_params(struct ecore_hwfn *p_hwfn)
691{
692 struct ecore_qm_info *qm_info = &p_hwfn->qm_info;
693 struct init_qm_vport_params *vport;
694 struct init_qm_port_params *port;
695 struct init_qm_pq_params *pq;
696 int i, tc;
697
698 /* top level params */
699 DP_VERBOSE(p_hwfn, ECORE_MSG_HW, "qm init top level params: start_pq %d, start_vport %d, pure_lb_pq %d, offload_pq %d, pure_ack_pq %d\n",
700 qm_info->start_pq, qm_info->start_vport, qm_info->pure_lb_pq, qm_info->offload_pq, qm_info->pure_ack_pq);
701 DP_VERBOSE(p_hwfn, ECORE_MSG_HW, "ooo_pq %d, first_vf_pq %d, num_pqs %d, num_vf_pqs %d, num_vports %d, max_phys_tcs_per_port %d\n",
702 qm_info->ooo_pq, qm_info->first_vf_pq, qm_info->num_pqs, qm_info->num_vf_pqs, qm_info->num_vports, qm_info->max_phys_tcs_per_port);
703 DP_VERBOSE(p_hwfn, ECORE_MSG_HW, "pf_rl_en %d, pf_wfq_en %d, vport_rl_en %d, vport_wfq_en %d, pf_wfq %d, pf_rl %d, num_pf_rls %d, pq_flags %x\n",
704 qm_info->pf_rl_en, qm_info->pf_wfq_en, qm_info->vport_rl_en, qm_info->vport_wfq_en, qm_info->pf_wfq, qm_info->pf_rl, qm_info->num_pf_rls, ecore_get_pq_flags(p_hwfn));
705
706 /* port table */
667 p_qm_port->num_btb_blocks = BTB_MAX_BLOCKS / num_ports;
668 }
669}
670
671/* Reset the params which must be reset for qm init. QM init may be called as
672 * a result of flows other than driver load (e.g. dcbx renegotiation). Other
673 * params may be affected by the init but would simply recalculate to the same
674 * values. The allocations made for QM init, ports, vports, pqs and vfqs are not
675 * affected as these amounts stay the same.
676 */
677static void ecore_init_qm_reset_params(struct ecore_hwfn *p_hwfn)
678{
679 struct ecore_qm_info *qm_info = &p_hwfn->qm_info;
680
681 qm_info->num_pqs = 0;
682 qm_info->num_vports = 0;
683 qm_info->num_pf_rls = 0;
684 qm_info->num_vf_pqs = 0;
685 qm_info->first_vf_pq = 0;
686 qm_info->first_mcos_pq = 0;
687 qm_info->first_rl_pq = 0;
688}
689
690static void ecore_init_qm_advance_vport(struct ecore_hwfn *p_hwfn)
691{
692 struct ecore_qm_info *qm_info = &p_hwfn->qm_info;
693
694 qm_info->num_vports++;
695
696 if (qm_info->num_vports > ecore_init_qm_get_num_vports(p_hwfn))
697 DP_ERR(p_hwfn, "vport overflow! qm_info->num_vports %d, qm_init_get_num_vports() %d\n", qm_info->num_vports, ecore_init_qm_get_num_vports(p_hwfn));
698}
699
700/* initialize a single pq and manage qm_info resources accounting.
701 * The pq_init_flags param determines whether the PQ is rate limited (for VF or PF)
702 * and whether a new vport is allocated to the pq or not (i.e. vport will be shared)
703 */
704
705/* flags for pq init */
706#define PQ_INIT_SHARE_VPORT (1 << 0)
707#define PQ_INIT_PF_RL (1 << 1)
708#define PQ_INIT_VF_RL (1 << 2)
709
710/* defines for pq init */
711#define PQ_INIT_DEFAULT_WRR_GROUP 1
712#define PQ_INIT_DEFAULT_TC 0
713#define PQ_INIT_OFLD_TC (p_hwfn->hw_info.offload_tc)
714
715static void ecore_init_qm_pq(struct ecore_hwfn *p_hwfn,
716 struct ecore_qm_info *qm_info,
717 u8 tc, u32 pq_init_flags)
718{
719 u16 pq_idx = qm_info->num_pqs, max_pq = ecore_init_qm_get_num_pqs(p_hwfn);
720
721 if (pq_idx > max_pq)
722 DP_ERR(p_hwfn, "pq overflow! pq %d, max pq %d\n", pq_idx, max_pq);
723
724 /* init pq params */
725 qm_info->qm_pq_params[pq_idx].vport_id = qm_info->start_vport + qm_info->num_vports;
726 qm_info->qm_pq_params[pq_idx].tc_id = tc;
727 qm_info->qm_pq_params[pq_idx].wrr_group = PQ_INIT_DEFAULT_WRR_GROUP;
728 qm_info->qm_pq_params[pq_idx].rl_valid =
729 (pq_init_flags & PQ_INIT_PF_RL || pq_init_flags & PQ_INIT_VF_RL);
730
731 /* qm params accounting */
732 qm_info->num_pqs++;
733 if (!(pq_init_flags & PQ_INIT_SHARE_VPORT))
734 qm_info->num_vports++;
735
736 if (pq_init_flags & PQ_INIT_PF_RL)
737 qm_info->num_pf_rls++;
738
739 if (qm_info->num_vports > ecore_init_qm_get_num_vports(p_hwfn))
740 DP_ERR(p_hwfn, "vport overflow! qm_info->num_vports %d, qm_init_get_num_vports() %d\n", qm_info->num_vports, ecore_init_qm_get_num_vports(p_hwfn));
741
742 if (qm_info->num_pf_rls > ecore_init_qm_get_num_pf_rls(p_hwfn))
743 DP_ERR(p_hwfn, "rl overflow! qm_info->num_pf_rls %d, qm_init_get_num_pf_rls() %d\n", qm_info->num_pf_rls, ecore_init_qm_get_num_pf_rls(p_hwfn));
744}
745
746/* get pq index according to PQ_FLAGS */
747static u16 *ecore_init_qm_get_idx_from_flags(struct ecore_hwfn *p_hwfn,
748 u32 pq_flags)
749{
750 struct ecore_qm_info *qm_info = &p_hwfn->qm_info;
751
752 /* Can't have multiple flags set here */
753 if (OSAL_BITMAP_WEIGHT((unsigned long *)&pq_flags, sizeof(pq_flags)) > 1)
754 goto err;
755
756 switch (pq_flags) {
757 case PQ_FLAGS_RLS:
758 return &qm_info->first_rl_pq;
759 case PQ_FLAGS_MCOS:
760 return &qm_info->first_mcos_pq;
761 case PQ_FLAGS_LB:
762 return &qm_info->pure_lb_pq;
763 case PQ_FLAGS_OOO:
764 return &qm_info->ooo_pq;
765 case PQ_FLAGS_ACK:
766 return &qm_info->pure_ack_pq;
767 case PQ_FLAGS_OFLD:
768 return &qm_info->offload_pq;
769 case PQ_FLAGS_LLT:
770 return &qm_info->low_latency_pq;
771 case PQ_FLAGS_VFS:
772 return &qm_info->first_vf_pq;
773 default:
774 goto err;
775 }
776
777err:
778 DP_ERR(p_hwfn, "BAD pq flags %d\n", pq_flags);
779 return OSAL_NULL;
780}
781
782/* save pq index in qm info */
783static void ecore_init_qm_set_idx(struct ecore_hwfn *p_hwfn,
784 u32 pq_flags, u16 pq_val)
785{
786 u16 *base_pq_idx = ecore_init_qm_get_idx_from_flags(p_hwfn, pq_flags);
787
788 *base_pq_idx = p_hwfn->qm_info.start_pq + pq_val;
789}
790
791/* get tx pq index, with the PQ TX base already set (ready for context init) */
792u16 ecore_get_cm_pq_idx(struct ecore_hwfn *p_hwfn, u32 pq_flags)
793{
794 u16 *base_pq_idx = ecore_init_qm_get_idx_from_flags(p_hwfn, pq_flags);
795
796 return *base_pq_idx + CM_TX_PQ_BASE;
797}
798
799u16 ecore_get_cm_pq_idx_mcos(struct ecore_hwfn *p_hwfn, u8 tc)
800{
801 u8 max_tc = ecore_init_qm_get_num_tcs(p_hwfn);
802
803 if (tc > max_tc)
804 DP_ERR(p_hwfn, "tc %d must be smaller than %d\n", tc, max_tc);
805
806 return ecore_get_cm_pq_idx(p_hwfn, PQ_FLAGS_MCOS) + tc;
807}
808
809u16 ecore_get_cm_pq_idx_vf(struct ecore_hwfn *p_hwfn, u16 vf)
810{
811 u16 max_vf = ecore_init_qm_get_num_vfs(p_hwfn);
812
813 if (vf > max_vf)
814 DP_ERR(p_hwfn, "vf %d must be smaller than %d\n", vf, max_vf);
815
816 return ecore_get_cm_pq_idx(p_hwfn, PQ_FLAGS_VFS) + vf;
817}
818
819u16 ecore_get_cm_pq_idx_rl(struct ecore_hwfn *p_hwfn, u8 rl)
820{
821 u16 max_rl = ecore_init_qm_get_num_pf_rls(p_hwfn);
822
823 if (rl > max_rl)
824 DP_ERR(p_hwfn, "rl %d must be smaller than %d\n", rl, max_rl);
825
826 return ecore_get_cm_pq_idx(p_hwfn, PQ_FLAGS_RLS) + rl;
827}
828
829/* Functions for creating specific types of pqs */
830static void ecore_init_qm_lb_pq(struct ecore_hwfn *p_hwfn)
831{
832 struct ecore_qm_info *qm_info = &p_hwfn->qm_info;
833
834 if (!(ecore_get_pq_flags(p_hwfn) & PQ_FLAGS_LB))
835 return;
836
837 ecore_init_qm_set_idx(p_hwfn, PQ_FLAGS_LB, qm_info->num_pqs);
838 ecore_init_qm_pq(p_hwfn, qm_info, PURE_LB_TC, PQ_INIT_SHARE_VPORT);
839}
840
841static void ecore_init_qm_ooo_pq(struct ecore_hwfn *p_hwfn)
842{
843 struct ecore_qm_info *qm_info = &p_hwfn->qm_info;
844
845 if (!(ecore_get_pq_flags(p_hwfn) & PQ_FLAGS_OOO))
846 return;
847
848 ecore_init_qm_set_idx(p_hwfn, PQ_FLAGS_OOO, qm_info->num_pqs);
849 ecore_init_qm_pq(p_hwfn, qm_info, qm_info->ooo_tc, PQ_INIT_SHARE_VPORT);
850}
851
852static void ecore_init_qm_pure_ack_pq(struct ecore_hwfn *p_hwfn)
853{
854 struct ecore_qm_info *qm_info = &p_hwfn->qm_info;
855
856 if (!(ecore_get_pq_flags(p_hwfn) & PQ_FLAGS_ACK))
857 return;
858
859 ecore_init_qm_set_idx(p_hwfn, PQ_FLAGS_ACK, qm_info->num_pqs);
860 ecore_init_qm_pq(p_hwfn, qm_info, PQ_INIT_OFLD_TC, PQ_INIT_SHARE_VPORT);
861}
862
863static void ecore_init_qm_offload_pq(struct ecore_hwfn *p_hwfn)
864{
865 struct ecore_qm_info *qm_info = &p_hwfn->qm_info;
866
867 if (!(ecore_get_pq_flags(p_hwfn) & PQ_FLAGS_OFLD))
868 return;
869
870 ecore_init_qm_set_idx(p_hwfn, PQ_FLAGS_OFLD, qm_info->num_pqs);
871 ecore_init_qm_pq(p_hwfn, qm_info, PQ_INIT_OFLD_TC, PQ_INIT_SHARE_VPORT);
872}
873
874static void ecore_init_qm_low_latency_pq(struct ecore_hwfn *p_hwfn)
875{
876 struct ecore_qm_info *qm_info = &p_hwfn->qm_info;
877
878 if (!(ecore_get_pq_flags(p_hwfn) & PQ_FLAGS_LLT))
879 return;
880
881 ecore_init_qm_set_idx(p_hwfn, PQ_FLAGS_LLT, qm_info->num_pqs);
882 ecore_init_qm_pq(p_hwfn, qm_info, PQ_INIT_OFLD_TC, PQ_INIT_SHARE_VPORT);
883}
884
885static void ecore_init_qm_mcos_pqs(struct ecore_hwfn *p_hwfn)
886{
887 struct ecore_qm_info *qm_info = &p_hwfn->qm_info;
888 u8 tc_idx;
889
890 if (!(ecore_get_pq_flags(p_hwfn) & PQ_FLAGS_MCOS))
891 return;
892
893 ecore_init_qm_set_idx(p_hwfn, PQ_FLAGS_MCOS, qm_info->num_pqs);
894 for (tc_idx = 0; tc_idx < ecore_init_qm_get_num_tcs(p_hwfn); tc_idx++)
895 ecore_init_qm_pq(p_hwfn, qm_info, tc_idx, PQ_INIT_SHARE_VPORT);
896}
897
898static void ecore_init_qm_vf_pqs(struct ecore_hwfn *p_hwfn)
899{
900 struct ecore_qm_info *qm_info = &p_hwfn->qm_info;
901 u16 vf_idx, num_vfs = ecore_init_qm_get_num_vfs(p_hwfn);
902
903 if (!(ecore_get_pq_flags(p_hwfn) & PQ_FLAGS_VFS))
904 return;
905
906 ecore_init_qm_set_idx(p_hwfn, PQ_FLAGS_VFS, qm_info->num_pqs);
907 qm_info->num_vf_pqs = num_vfs;
908 for (vf_idx = 0; vf_idx < num_vfs; vf_idx++)
909 ecore_init_qm_pq(p_hwfn, qm_info, PQ_INIT_DEFAULT_TC, PQ_INIT_VF_RL);
910}
911
912static void ecore_init_qm_rl_pqs(struct ecore_hwfn *p_hwfn)
913{
914 u16 pf_rls_idx, num_pf_rls = ecore_init_qm_get_num_pf_rls(p_hwfn);
915 struct ecore_qm_info *qm_info = &p_hwfn->qm_info;
916
917 if (!(ecore_get_pq_flags(p_hwfn) & PQ_FLAGS_RLS))
918 return;
919
920 ecore_init_qm_set_idx(p_hwfn, PQ_FLAGS_RLS, qm_info->num_pqs);
921 for (pf_rls_idx = 0; pf_rls_idx < num_pf_rls; pf_rls_idx++)
922 ecore_init_qm_pq(p_hwfn, qm_info, PQ_INIT_OFLD_TC, PQ_INIT_PF_RL);
923}
924
925static void ecore_init_qm_pq_params(struct ecore_hwfn *p_hwfn)
926{
927 /* rate limited pqs, must come first (FW assumption) */
928 ecore_init_qm_rl_pqs(p_hwfn);
929
930 /* pqs for multi cos */
931 ecore_init_qm_mcos_pqs(p_hwfn);
932
933 /* pure loopback pq */
934 ecore_init_qm_lb_pq(p_hwfn);
935
936 /* out of order pq */
937 ecore_init_qm_ooo_pq(p_hwfn);
938
939 /* pure ack pq */
940 ecore_init_qm_pure_ack_pq(p_hwfn);
941
942 /* pq for offloaded protocol */
943 ecore_init_qm_offload_pq(p_hwfn);
944
945 /* low latency pq */
946 ecore_init_qm_low_latency_pq(p_hwfn);
947
948 /* done sharing vports */
949 ecore_init_qm_advance_vport(p_hwfn);
950
951 /* pqs for vfs */
952 ecore_init_qm_vf_pqs(p_hwfn);
953}
954
955/* compare values of getters against resources amounts */
956static enum _ecore_status_t ecore_init_qm_sanity(struct ecore_hwfn *p_hwfn)
957{
958 if (ecore_init_qm_get_num_vports(p_hwfn) > RESC_NUM(p_hwfn, ECORE_VPORT)) {
959 DP_ERR(p_hwfn, "requested amount of vports exceeds resource\n");
960 return ECORE_INVAL;
961 }
962
963 if (ecore_init_qm_get_num_pqs(p_hwfn) > RESC_NUM(p_hwfn, ECORE_PQ)) {
964 DP_ERR(p_hwfn, "requested amount of pqs exceeds resource\n");
965 return ECORE_INVAL;
966 }
967
968 return ECORE_SUCCESS;
969}
970
971/*
972 * Function for verbose printing of the qm initialization results
973 */
974static void ecore_dp_init_qm_params(struct ecore_hwfn *p_hwfn)
975{
976 struct ecore_qm_info *qm_info = &p_hwfn->qm_info;
977 struct init_qm_vport_params *vport;
978 struct init_qm_port_params *port;
979 struct init_qm_pq_params *pq;
980 int i, tc;
981
982 /* top level params */
983 DP_VERBOSE(p_hwfn, ECORE_MSG_HW, "qm init top level params: start_pq %d, start_vport %d, pure_lb_pq %d, offload_pq %d, pure_ack_pq %d\n",
984 qm_info->start_pq, qm_info->start_vport, qm_info->pure_lb_pq, qm_info->offload_pq, qm_info->pure_ack_pq);
985 DP_VERBOSE(p_hwfn, ECORE_MSG_HW, "ooo_pq %d, first_vf_pq %d, num_pqs %d, num_vf_pqs %d, num_vports %d, max_phys_tcs_per_port %d\n",
986 qm_info->ooo_pq, qm_info->first_vf_pq, qm_info->num_pqs, qm_info->num_vf_pqs, qm_info->num_vports, qm_info->max_phys_tcs_per_port);
987 DP_VERBOSE(p_hwfn, ECORE_MSG_HW, "pf_rl_en %d, pf_wfq_en %d, vport_rl_en %d, vport_wfq_en %d, pf_wfq %d, pf_rl %d, num_pf_rls %d, pq_flags %x\n",
988 qm_info->pf_rl_en, qm_info->pf_wfq_en, qm_info->vport_rl_en, qm_info->vport_wfq_en, qm_info->pf_wfq, qm_info->pf_rl, qm_info->num_pf_rls, ecore_get_pq_flags(p_hwfn));
989
990 /* port table */
707 for (i = 0; i < p_hwfn->p_dev->num_ports_in_engines; i++) {
991 for (i = 0; i < p_hwfn->p_dev->num_ports_in_engine; i++) {
708 port = &(qm_info->qm_port_params[i]);
709 DP_VERBOSE(p_hwfn, ECORE_MSG_HW, "port idx %d, active %d, active_phys_tcs %d, num_pbf_cmd_lines %d, num_btb_blocks %d, reserved %d\n",
710 i, port->active, port->active_phys_tcs, port->num_pbf_cmd_lines, port->num_btb_blocks, port->reserved);
711 }
712
713 /* vport table */
714 for (i = 0; i < qm_info->num_vports; i++) {
715 vport = &(qm_info->qm_vport_params[i]);
716 DP_VERBOSE(p_hwfn, ECORE_MSG_HW, "vport idx %d, vport_rl %d, wfq %d, first_tx_pq_id [ ",
717 qm_info->start_vport + i, vport->vport_rl, vport->vport_wfq);
718 for (tc = 0; tc < NUM_OF_TCS; tc++)
719 DP_VERBOSE(p_hwfn, ECORE_MSG_HW, "%d ", vport->first_tx_pq_id[tc]);
720 DP_VERBOSE(p_hwfn, ECORE_MSG_HW, "]\n");
721 }
722
723 /* pq table */
724 for (i = 0; i < qm_info->num_pqs; i++) {
725 pq = &(qm_info->qm_pq_params[i]);
726 DP_VERBOSE(p_hwfn, ECORE_MSG_HW, "pq idx %d, vport_id %d, tc %d, wrr_grp %d, rl_valid %d\n",
727 qm_info->start_pq + i, pq->vport_id, pq->tc_id, pq->wrr_group, pq->rl_valid);
728 }
729}
730
731static void ecore_init_qm_info(struct ecore_hwfn *p_hwfn)
732{
733 /* reset params required for init run */
734 ecore_init_qm_reset_params(p_hwfn);
735
736 /* init QM top level params */
737 ecore_init_qm_params(p_hwfn);
738
739 /* init QM port params */
740 ecore_init_qm_port_params(p_hwfn);
741
742 /* init QM vport params */
743 ecore_init_qm_vport_params(p_hwfn);
744
745 /* init QM physical queue params */
746 ecore_init_qm_pq_params(p_hwfn);
747
748 /* display all that init */
749 ecore_dp_init_qm_params(p_hwfn);
750}
751
752/* This function reconfigures the QM pf on the fly.
753 * For this purpose we:
754 * 1. reconfigure the QM database
755 * 2. set new values to runtime array
756 * 3. send an sdm_qm_cmd through the rbc interface to stop the QM
757 * 4. activate init tool in QM_PF stage
758 * 5. send an sdm_qm_cmd through rbc interface to release the QM
759 */
760enum _ecore_status_t ecore_qm_reconf(struct ecore_hwfn *p_hwfn,
761 struct ecore_ptt *p_ptt)
762{
763 struct ecore_qm_info *qm_info = &p_hwfn->qm_info;
764 bool b_rc;
765 enum _ecore_status_t rc;
766
767 /* initialize ecore's qm data structure */
768 ecore_init_qm_info(p_hwfn);
769
770 /* stop PF's qm queues */
771 OSAL_SPIN_LOCK(&qm_lock);
772 b_rc = ecore_send_qm_stop_cmd(p_hwfn, p_ptt, false, true,
773 qm_info->start_pq, qm_info->num_pqs);
774 OSAL_SPIN_UNLOCK(&qm_lock);
775 if (!b_rc)
776 return ECORE_INVAL;
777
778 /* clear the QM_PF runtime phase leftovers from previous init */
779 ecore_init_clear_rt_data(p_hwfn);
780
781 /* prepare QM portion of runtime array */
992 port = &(qm_info->qm_port_params[i]);
993 DP_VERBOSE(p_hwfn, ECORE_MSG_HW, "port idx %d, active %d, active_phys_tcs %d, num_pbf_cmd_lines %d, num_btb_blocks %d, reserved %d\n",
994 i, port->active, port->active_phys_tcs, port->num_pbf_cmd_lines, port->num_btb_blocks, port->reserved);
995 }
996
997 /* vport table */
998 for (i = 0; i < qm_info->num_vports; i++) {
999 vport = &(qm_info->qm_vport_params[i]);
1000 DP_VERBOSE(p_hwfn, ECORE_MSG_HW, "vport idx %d, vport_rl %d, wfq %d, first_tx_pq_id [ ",
1001 qm_info->start_vport + i, vport->vport_rl, vport->vport_wfq);
1002 for (tc = 0; tc < NUM_OF_TCS; tc++)
1003 DP_VERBOSE(p_hwfn, ECORE_MSG_HW, "%d ", vport->first_tx_pq_id[tc]);
1004 DP_VERBOSE(p_hwfn, ECORE_MSG_HW, "]\n");
1005 }
1006
1007 /* pq table */
1008 for (i = 0; i < qm_info->num_pqs; i++) {
1009 pq = &(qm_info->qm_pq_params[i]);
1010 DP_VERBOSE(p_hwfn, ECORE_MSG_HW, "pq idx %d, vport_id %d, tc %d, wrr_grp %d, rl_valid %d\n",
1011 qm_info->start_pq + i, pq->vport_id, pq->tc_id, pq->wrr_group, pq->rl_valid);
1012 }
1013}
1014
1015static void ecore_init_qm_info(struct ecore_hwfn *p_hwfn)
1016{
1017 /* reset params required for init run */
1018 ecore_init_qm_reset_params(p_hwfn);
1019
1020 /* init QM top level params */
1021 ecore_init_qm_params(p_hwfn);
1022
1023 /* init QM port params */
1024 ecore_init_qm_port_params(p_hwfn);
1025
1026 /* init QM vport params */
1027 ecore_init_qm_vport_params(p_hwfn);
1028
1029 /* init QM physical queue params */
1030 ecore_init_qm_pq_params(p_hwfn);
1031
1032 /* display all that init */
1033 ecore_dp_init_qm_params(p_hwfn);
1034}
1035
1036/* This function reconfigures the QM pf on the fly.
1037 * For this purpose we:
1038 * 1. reconfigure the QM database
1039 * 2. set new values to runtime array
1040 * 3. send an sdm_qm_cmd through the rbc interface to stop the QM
1041 * 4. activate init tool in QM_PF stage
1042 * 5. send an sdm_qm_cmd through rbc interface to release the QM
1043 */
1044enum _ecore_status_t ecore_qm_reconf(struct ecore_hwfn *p_hwfn,
1045 struct ecore_ptt *p_ptt)
1046{
1047 struct ecore_qm_info *qm_info = &p_hwfn->qm_info;
1048 bool b_rc;
1049 enum _ecore_status_t rc;
1050
1051 /* initialize ecore's qm data structure */
1052 ecore_init_qm_info(p_hwfn);
1053
1054 /* stop PF's qm queues */
1055 OSAL_SPIN_LOCK(&qm_lock);
1056 b_rc = ecore_send_qm_stop_cmd(p_hwfn, p_ptt, false, true,
1057 qm_info->start_pq, qm_info->num_pqs);
1058 OSAL_SPIN_UNLOCK(&qm_lock);
1059 if (!b_rc)
1060 return ECORE_INVAL;
1061
1062 /* clear the QM_PF runtime phase leftovers from previous init */
1063 ecore_init_clear_rt_data(p_hwfn);
1064
1065 /* prepare QM portion of runtime array */
782 ecore_qm_init_pf(p_hwfn);
1066 ecore_qm_init_pf(p_hwfn, p_ptt);
783
784 /* activate init tool on runtime array */
785 rc = ecore_init_run(p_hwfn, p_ptt, PHASE_QM_PF, p_hwfn->rel_pf_id,
786 p_hwfn->hw_info.hw_mode);
787 if (rc != ECORE_SUCCESS)
788 return rc;
789
790 /* start PF's qm queues */
791 OSAL_SPIN_LOCK(&qm_lock);
792 b_rc = ecore_send_qm_stop_cmd(p_hwfn, p_ptt, true, true,
793 qm_info->start_pq, qm_info->num_pqs);
794 OSAL_SPIN_UNLOCK(&qm_lock);
795 if (!b_rc)
796 return ECORE_INVAL;
797
798 return ECORE_SUCCESS;
799}
800
801static enum _ecore_status_t ecore_alloc_qm_data(struct ecore_hwfn *p_hwfn)
802{
803 struct ecore_qm_info *qm_info = &p_hwfn->qm_info;
804 enum _ecore_status_t rc;
805
806 rc = ecore_init_qm_sanity(p_hwfn);
807 if (rc != ECORE_SUCCESS)
808 goto alloc_err;
809
810 qm_info->qm_pq_params = OSAL_ZALLOC(p_hwfn->p_dev, GFP_KERNEL,
811 sizeof(struct init_qm_pq_params) *
812 ecore_init_qm_get_num_pqs(p_hwfn));
813 if (!qm_info->qm_pq_params)
814 goto alloc_err;
815
816 qm_info->qm_vport_params = OSAL_ZALLOC(p_hwfn->p_dev, GFP_KERNEL,
817 sizeof(struct init_qm_vport_params) *
818 ecore_init_qm_get_num_vports(p_hwfn));
819 if (!qm_info->qm_vport_params)
820 goto alloc_err;
821
822 qm_info->qm_port_params = OSAL_ZALLOC(p_hwfn->p_dev, GFP_KERNEL,
823 sizeof(struct init_qm_port_params) *
1067
1068 /* activate init tool on runtime array */
1069 rc = ecore_init_run(p_hwfn, p_ptt, PHASE_QM_PF, p_hwfn->rel_pf_id,
1070 p_hwfn->hw_info.hw_mode);
1071 if (rc != ECORE_SUCCESS)
1072 return rc;
1073
1074 /* start PF's qm queues */
1075 OSAL_SPIN_LOCK(&qm_lock);
1076 b_rc = ecore_send_qm_stop_cmd(p_hwfn, p_ptt, true, true,
1077 qm_info->start_pq, qm_info->num_pqs);
1078 OSAL_SPIN_UNLOCK(&qm_lock);
1079 if (!b_rc)
1080 return ECORE_INVAL;
1081
1082 return ECORE_SUCCESS;
1083}
1084
1085static enum _ecore_status_t ecore_alloc_qm_data(struct ecore_hwfn *p_hwfn)
1086{
1087 struct ecore_qm_info *qm_info = &p_hwfn->qm_info;
1088 enum _ecore_status_t rc;
1089
1090 rc = ecore_init_qm_sanity(p_hwfn);
1091 if (rc != ECORE_SUCCESS)
1092 goto alloc_err;
1093
1094 qm_info->qm_pq_params = OSAL_ZALLOC(p_hwfn->p_dev, GFP_KERNEL,
1095 sizeof(struct init_qm_pq_params) *
1096 ecore_init_qm_get_num_pqs(p_hwfn));
1097 if (!qm_info->qm_pq_params)
1098 goto alloc_err;
1099
1100 qm_info->qm_vport_params = OSAL_ZALLOC(p_hwfn->p_dev, GFP_KERNEL,
1101 sizeof(struct init_qm_vport_params) *
1102 ecore_init_qm_get_num_vports(p_hwfn));
1103 if (!qm_info->qm_vport_params)
1104 goto alloc_err;
1105
1106 qm_info->qm_port_params = OSAL_ZALLOC(p_hwfn->p_dev, GFP_KERNEL,
1107 sizeof(struct init_qm_port_params) *
824 p_hwfn->p_dev->num_ports_in_engines);
1108 p_hwfn->p_dev->num_ports_in_engine);
825 if (!qm_info->qm_port_params)
826 goto alloc_err;
827
828 qm_info->wfq_data = OSAL_ZALLOC(p_hwfn->p_dev, GFP_KERNEL,
829 sizeof(struct ecore_wfq_data) *
830 ecore_init_qm_get_num_vports(p_hwfn));
831 if (!qm_info->wfq_data)
832 goto alloc_err;
833
834 return ECORE_SUCCESS;
835
836alloc_err:
837 DP_NOTICE(p_hwfn, false, "Failed to allocate memory for QM params\n");
838 ecore_qm_info_free(p_hwfn);
839 return ECORE_NOMEM;
840}
841/******************** End QM initialization ***************/
842
843enum _ecore_status_t ecore_resc_alloc(struct ecore_dev *p_dev)
844{
1109 if (!qm_info->qm_port_params)
1110 goto alloc_err;
1111
1112 qm_info->wfq_data = OSAL_ZALLOC(p_hwfn->p_dev, GFP_KERNEL,
1113 sizeof(struct ecore_wfq_data) *
1114 ecore_init_qm_get_num_vports(p_hwfn));
1115 if (!qm_info->wfq_data)
1116 goto alloc_err;
1117
1118 return ECORE_SUCCESS;
1119
1120alloc_err:
1121 DP_NOTICE(p_hwfn, false, "Failed to allocate memory for QM params\n");
1122 ecore_qm_info_free(p_hwfn);
1123 return ECORE_NOMEM;
1124}
1125/******************** End QM initialization ***************/
1126
1127enum _ecore_status_t ecore_resc_alloc(struct ecore_dev *p_dev)
1128{
845 enum _ecore_status_t rc = ECORE_SUCCESS;
846 u32 rdma_tasks, excess_tasks;
847 u32 line_count;
1129 u32 rdma_tasks, excess_tasks;
1130 u32 line_count;
1131 enum _ecore_status_t rc = ECORE_SUCCESS;
848 int i;
849
850 if (IS_VF(p_dev)) {
851 for_each_hwfn(p_dev, i) {
852 rc = ecore_l2_alloc(&p_dev->hwfns[i]);
853 if (rc != ECORE_SUCCESS)
854 return rc;
855 }
856 return rc;
857 }
858
859 p_dev->fw_data = OSAL_ZALLOC(p_dev, GFP_KERNEL,
860 sizeof(*p_dev->fw_data));
861 if (!p_dev->fw_data)
862 return ECORE_NOMEM;
863
864 for_each_hwfn(p_dev, i) {
865 struct ecore_hwfn *p_hwfn = &p_dev->hwfns[i];
866 u32 n_eqes, num_cons;
867
868 /* First allocate the context manager structure */
869 rc = ecore_cxt_mngr_alloc(p_hwfn);
870 if (rc)
871 goto alloc_err;
872
873 /* Set the HW cid/tid numbers (in the contest manager)
874 * Must be done prior to any further computations.
875 */
876 rc = ecore_cxt_set_pf_params(p_hwfn, RDMA_MAX_TIDS);
877 if (rc)
878 goto alloc_err;
879
880 rc = ecore_alloc_qm_data(p_hwfn);
881 if (rc)
882 goto alloc_err;
883
884 /* init qm info */
885 ecore_init_qm_info(p_hwfn);
886
887 /* Compute the ILT client partition */
888 rc = ecore_cxt_cfg_ilt_compute(p_hwfn, &line_count);
889 if (rc) {
890 DP_NOTICE(p_hwfn, false, "too many ILT lines; re-computing with less lines\n");
891 /* In case there are not enough ILT lines we reduce the
892 * number of RDMA tasks and re-compute.
893 */
894 excess_tasks = ecore_cxt_cfg_ilt_compute_excess(
895 p_hwfn, line_count);
896 if (!excess_tasks)
897 goto alloc_err;
898
899 rdma_tasks = RDMA_MAX_TIDS - excess_tasks;
900 rc = ecore_cxt_set_pf_params(p_hwfn, rdma_tasks);
901 if (rc)
902 goto alloc_err;
903
904 rc = ecore_cxt_cfg_ilt_compute(p_hwfn, &line_count);
905 if (rc) {
906 DP_ERR(p_hwfn, "failed ILT compute. Requested too many lines: %u\n",
907 line_count);
908
909 goto alloc_err;
910 }
911 }
912
913 /* CID map / ILT shadow table / T2
914 * The talbes sizes are determined by the computations above
915 */
916 rc = ecore_cxt_tables_alloc(p_hwfn);
917 if (rc)
918 goto alloc_err;
919
920 /* SPQ, must follow ILT because initializes SPQ context */
921 rc = ecore_spq_alloc(p_hwfn);
922 if (rc)
923 goto alloc_err;
924
925 /* SP status block allocation */
926 p_hwfn->p_dpc_ptt = ecore_get_reserved_ptt(p_hwfn,
927 RESERVED_PTT_DPC);
928
929 rc = ecore_int_alloc(p_hwfn, p_hwfn->p_main_ptt);
930 if (rc)
931 goto alloc_err;
932
933 rc = ecore_iov_alloc(p_hwfn);
934 if (rc)
935 goto alloc_err;
936
937 /* EQ */
938 n_eqes = ecore_chain_get_capacity(&p_hwfn->p_spq->chain);
939 if (ECORE_IS_RDMA_PERSONALITY(p_hwfn)) {
940 /* Calculate the EQ size
941 * ---------------------
942 * Each ICID may generate up to one event at a time i.e.
943 * the event must be handled/cleared before a new one
944 * can be generated. We calculate the sum of events per
945 * protocol and create an EQ deep enough to handle the
946 * worst case:
947 * - Core - according to SPQ.
948 * - RoCE - per QP there are a couple of ICIDs, one
949 * responder and one requester, each can
950 * generate an EQE => n_eqes_qp = 2 * n_qp.
951 * Each CQ can generate an EQE. There are 2 CQs
952 * per QP => n_eqes_cq = 2 * n_qp.
953 * Hence the RoCE total is 4 * n_qp or
954 * 2 * num_cons.
955 * - ENet - There can be up to two events per VF. One
956 * for VF-PF channel and another for VF FLR
957 * initial cleanup. The number of VFs is
958 * bounded by MAX_NUM_VFS_BB, and is much
959 * smaller than RoCE's so we avoid exact
960 * calculation.
961 */
962 if (p_hwfn->hw_info.personality == ECORE_PCI_ETH_ROCE) {
963 num_cons = ecore_cxt_get_proto_cid_count(
964 p_hwfn, PROTOCOLID_ROCE, OSAL_NULL);
965 num_cons *= 2;
966 } else {
967 num_cons = ecore_cxt_get_proto_cid_count(
968 p_hwfn, PROTOCOLID_IWARP,
969 OSAL_NULL);
970 }
971 n_eqes += num_cons + 2 * MAX_NUM_VFS_BB;
972 } else if (p_hwfn->hw_info.personality == ECORE_PCI_ISCSI) {
973 num_cons = ecore_cxt_get_proto_cid_count(
974 p_hwfn, PROTOCOLID_ISCSI, OSAL_NULL);
975 n_eqes += 2 * num_cons;
976 }
977
978 if (n_eqes > 0xFFFF) {
979 DP_ERR(p_hwfn,
980 "Cannot allocate 0x%x EQ elements. The maximum of a u16 chain is 0x%x\n",
981 n_eqes, 0xFFFF);
982 goto alloc_no_mem;
983 }
984
985 rc = ecore_eq_alloc(p_hwfn, (u16)n_eqes);
986 if (rc)
987 goto alloc_err;
988
989 rc = ecore_consq_alloc(p_hwfn);
990 if (rc)
991 goto alloc_err;
992
993 rc = ecore_l2_alloc(p_hwfn);
994 if (rc != ECORE_SUCCESS)
995 goto alloc_err;
996
997#ifdef CONFIG_ECORE_LL2
998 if (p_hwfn->using_ll2) {
999 rc = ecore_ll2_alloc(p_hwfn);
1000 if (rc)
1001 goto alloc_err;
1002 }
1003#endif
1004#ifdef CONFIG_ECORE_FCOE
1005 if (p_hwfn->hw_info.personality == ECORE_PCI_FCOE) {
1006 rc = ecore_fcoe_alloc(p_hwfn);
1007 if (rc)
1008 goto alloc_err;
1009 }
1010#endif
1011#ifdef CONFIG_ECORE_ISCSI
1012 if (p_hwfn->hw_info.personality == ECORE_PCI_ISCSI) {
1013 rc = ecore_iscsi_alloc(p_hwfn);
1014 if (rc)
1015 goto alloc_err;
1016 rc = ecore_ooo_alloc(p_hwfn);
1017 if (rc)
1018 goto alloc_err;
1019 }
1020#endif
1021
1022 /* DMA info initialization */
1023 rc = ecore_dmae_info_alloc(p_hwfn);
1024 if (rc) {
1025 DP_NOTICE(p_hwfn, true,
1026 "Failed to allocate memory for dmae_info structure\n");
1027 goto alloc_err;
1028 }
1029
1030 /* DCBX initialization */
1031 rc = ecore_dcbx_info_alloc(p_hwfn);
1032 if (rc) {
1033 DP_NOTICE(p_hwfn, true,
1034 "Failed to allocate memory for dcbx structure\n");
1035 goto alloc_err;
1036 }
1132 int i;
1133
1134 if (IS_VF(p_dev)) {
1135 for_each_hwfn(p_dev, i) {
1136 rc = ecore_l2_alloc(&p_dev->hwfns[i]);
1137 if (rc != ECORE_SUCCESS)
1138 return rc;
1139 }
1140 return rc;
1141 }
1142
1143 p_dev->fw_data = OSAL_ZALLOC(p_dev, GFP_KERNEL,
1144 sizeof(*p_dev->fw_data));
1145 if (!p_dev->fw_data)
1146 return ECORE_NOMEM;
1147
1148 for_each_hwfn(p_dev, i) {
1149 struct ecore_hwfn *p_hwfn = &p_dev->hwfns[i];
1150 u32 n_eqes, num_cons;
1151
1152 /* First allocate the context manager structure */
1153 rc = ecore_cxt_mngr_alloc(p_hwfn);
1154 if (rc)
1155 goto alloc_err;
1156
1157 /* Set the HW cid/tid numbers (in the contest manager)
1158 * Must be done prior to any further computations.
1159 */
1160 rc = ecore_cxt_set_pf_params(p_hwfn, RDMA_MAX_TIDS);
1161 if (rc)
1162 goto alloc_err;
1163
1164 rc = ecore_alloc_qm_data(p_hwfn);
1165 if (rc)
1166 goto alloc_err;
1167
1168 /* init qm info */
1169 ecore_init_qm_info(p_hwfn);
1170
1171 /* Compute the ILT client partition */
1172 rc = ecore_cxt_cfg_ilt_compute(p_hwfn, &line_count);
1173 if (rc) {
1174 DP_NOTICE(p_hwfn, false, "too many ILT lines; re-computing with less lines\n");
1175 /* In case there are not enough ILT lines we reduce the
1176 * number of RDMA tasks and re-compute.
1177 */
1178 excess_tasks = ecore_cxt_cfg_ilt_compute_excess(
1179 p_hwfn, line_count);
1180 if (!excess_tasks)
1181 goto alloc_err;
1182
1183 rdma_tasks = RDMA_MAX_TIDS - excess_tasks;
1184 rc = ecore_cxt_set_pf_params(p_hwfn, rdma_tasks);
1185 if (rc)
1186 goto alloc_err;
1187
1188 rc = ecore_cxt_cfg_ilt_compute(p_hwfn, &line_count);
1189 if (rc) {
1190 DP_ERR(p_hwfn, "failed ILT compute. Requested too many lines: %u\n",
1191 line_count);
1192
1193 goto alloc_err;
1194 }
1195 }
1196
1197 /* CID map / ILT shadow table / T2
1198 * The talbes sizes are determined by the computations above
1199 */
1200 rc = ecore_cxt_tables_alloc(p_hwfn);
1201 if (rc)
1202 goto alloc_err;
1203
1204 /* SPQ, must follow ILT because initializes SPQ context */
1205 rc = ecore_spq_alloc(p_hwfn);
1206 if (rc)
1207 goto alloc_err;
1208
1209 /* SP status block allocation */
1210 p_hwfn->p_dpc_ptt = ecore_get_reserved_ptt(p_hwfn,
1211 RESERVED_PTT_DPC);
1212
1213 rc = ecore_int_alloc(p_hwfn, p_hwfn->p_main_ptt);
1214 if (rc)
1215 goto alloc_err;
1216
1217 rc = ecore_iov_alloc(p_hwfn);
1218 if (rc)
1219 goto alloc_err;
1220
1221 /* EQ */
1222 n_eqes = ecore_chain_get_capacity(&p_hwfn->p_spq->chain);
1223 if (ECORE_IS_RDMA_PERSONALITY(p_hwfn)) {
1224 /* Calculate the EQ size
1225 * ---------------------
1226 * Each ICID may generate up to one event at a time i.e.
1227 * the event must be handled/cleared before a new one
1228 * can be generated. We calculate the sum of events per
1229 * protocol and create an EQ deep enough to handle the
1230 * worst case:
1231 * - Core - according to SPQ.
1232 * - RoCE - per QP there are a couple of ICIDs, one
1233 * responder and one requester, each can
1234 * generate an EQE => n_eqes_qp = 2 * n_qp.
1235 * Each CQ can generate an EQE. There are 2 CQs
1236 * per QP => n_eqes_cq = 2 * n_qp.
1237 * Hence the RoCE total is 4 * n_qp or
1238 * 2 * num_cons.
1239 * - ENet - There can be up to two events per VF. One
1240 * for VF-PF channel and another for VF FLR
1241 * initial cleanup. The number of VFs is
1242 * bounded by MAX_NUM_VFS_BB, and is much
1243 * smaller than RoCE's so we avoid exact
1244 * calculation.
1245 */
1246 if (p_hwfn->hw_info.personality == ECORE_PCI_ETH_ROCE) {
1247 num_cons = ecore_cxt_get_proto_cid_count(
1248 p_hwfn, PROTOCOLID_ROCE, OSAL_NULL);
1249 num_cons *= 2;
1250 } else {
1251 num_cons = ecore_cxt_get_proto_cid_count(
1252 p_hwfn, PROTOCOLID_IWARP,
1253 OSAL_NULL);
1254 }
1255 n_eqes += num_cons + 2 * MAX_NUM_VFS_BB;
1256 } else if (p_hwfn->hw_info.personality == ECORE_PCI_ISCSI) {
1257 num_cons = ecore_cxt_get_proto_cid_count(
1258 p_hwfn, PROTOCOLID_ISCSI, OSAL_NULL);
1259 n_eqes += 2 * num_cons;
1260 }
1261
1262 if (n_eqes > 0xFFFF) {
1263 DP_ERR(p_hwfn,
1264 "Cannot allocate 0x%x EQ elements. The maximum of a u16 chain is 0x%x\n",
1265 n_eqes, 0xFFFF);
1266 goto alloc_no_mem;
1267 }
1268
1269 rc = ecore_eq_alloc(p_hwfn, (u16)n_eqes);
1270 if (rc)
1271 goto alloc_err;
1272
1273 rc = ecore_consq_alloc(p_hwfn);
1274 if (rc)
1275 goto alloc_err;
1276
1277 rc = ecore_l2_alloc(p_hwfn);
1278 if (rc != ECORE_SUCCESS)
1279 goto alloc_err;
1280
1281#ifdef CONFIG_ECORE_LL2
1282 if (p_hwfn->using_ll2) {
1283 rc = ecore_ll2_alloc(p_hwfn);
1284 if (rc)
1285 goto alloc_err;
1286 }
1287#endif
1288#ifdef CONFIG_ECORE_FCOE
1289 if (p_hwfn->hw_info.personality == ECORE_PCI_FCOE) {
1290 rc = ecore_fcoe_alloc(p_hwfn);
1291 if (rc)
1292 goto alloc_err;
1293 }
1294#endif
1295#ifdef CONFIG_ECORE_ISCSI
1296 if (p_hwfn->hw_info.personality == ECORE_PCI_ISCSI) {
1297 rc = ecore_iscsi_alloc(p_hwfn);
1298 if (rc)
1299 goto alloc_err;
1300 rc = ecore_ooo_alloc(p_hwfn);
1301 if (rc)
1302 goto alloc_err;
1303 }
1304#endif
1305
1306 /* DMA info initialization */
1307 rc = ecore_dmae_info_alloc(p_hwfn);
1308 if (rc) {
1309 DP_NOTICE(p_hwfn, true,
1310 "Failed to allocate memory for dmae_info structure\n");
1311 goto alloc_err;
1312 }
1313
1314 /* DCBX initialization */
1315 rc = ecore_dcbx_info_alloc(p_hwfn);
1316 if (rc) {
1317 DP_NOTICE(p_hwfn, true,
1318 "Failed to allocate memory for dcbx structure\n");
1319 goto alloc_err;
1320 }
1321
1322 /* initialize the doorbell recovery mechanism */
1323 ecore_db_recovery_setup(p_hwfn);
1037 }
1038
1039 p_dev->reset_stats = OSAL_ZALLOC(p_dev, GFP_KERNEL,
1040 sizeof(*p_dev->reset_stats));
1041 if (!p_dev->reset_stats) {
1042 DP_NOTICE(p_dev, true,
1043 "Failed to allocate reset statistics\n");
1044 goto alloc_no_mem;
1045 }
1046
1047 return ECORE_SUCCESS;
1048
1049alloc_no_mem:
1050 rc = ECORE_NOMEM;
1051alloc_err:
1052 ecore_resc_free(p_dev);
1053 return rc;
1054}
1055
1056void ecore_resc_setup(struct ecore_dev *p_dev)
1057{
1058 int i;
1059
1060 if (IS_VF(p_dev)) {
1061 for_each_hwfn(p_dev, i)
1062 ecore_l2_setup(&p_dev->hwfns[i]);
1063 return;
1064 }
1065
1066 for_each_hwfn(p_dev, i) {
1067 struct ecore_hwfn *p_hwfn = &p_dev->hwfns[i];
1068
1069 ecore_cxt_mngr_setup(p_hwfn);
1070 ecore_spq_setup(p_hwfn);
1071 ecore_eq_setup(p_hwfn);
1072 ecore_consq_setup(p_hwfn);
1073
1074 /* Read shadow of current MFW mailbox */
1075 ecore_mcp_read_mb(p_hwfn, p_hwfn->p_main_ptt);
1076 OSAL_MEMCPY(p_hwfn->mcp_info->mfw_mb_shadow,
1077 p_hwfn->mcp_info->mfw_mb_cur,
1078 p_hwfn->mcp_info->mfw_mb_length);
1079
1080 ecore_int_setup(p_hwfn, p_hwfn->p_main_ptt);
1081
1082 ecore_l2_setup(p_hwfn);
1324 }
1325
1326 p_dev->reset_stats = OSAL_ZALLOC(p_dev, GFP_KERNEL,
1327 sizeof(*p_dev->reset_stats));
1328 if (!p_dev->reset_stats) {
1329 DP_NOTICE(p_dev, true,
1330 "Failed to allocate reset statistics\n");
1331 goto alloc_no_mem;
1332 }
1333
1334 return ECORE_SUCCESS;
1335
1336alloc_no_mem:
1337 rc = ECORE_NOMEM;
1338alloc_err:
1339 ecore_resc_free(p_dev);
1340 return rc;
1341}
1342
1343void ecore_resc_setup(struct ecore_dev *p_dev)
1344{
1345 int i;
1346
1347 if (IS_VF(p_dev)) {
1348 for_each_hwfn(p_dev, i)
1349 ecore_l2_setup(&p_dev->hwfns[i]);
1350 return;
1351 }
1352
1353 for_each_hwfn(p_dev, i) {
1354 struct ecore_hwfn *p_hwfn = &p_dev->hwfns[i];
1355
1356 ecore_cxt_mngr_setup(p_hwfn);
1357 ecore_spq_setup(p_hwfn);
1358 ecore_eq_setup(p_hwfn);
1359 ecore_consq_setup(p_hwfn);
1360
1361 /* Read shadow of current MFW mailbox */
1362 ecore_mcp_read_mb(p_hwfn, p_hwfn->p_main_ptt);
1363 OSAL_MEMCPY(p_hwfn->mcp_info->mfw_mb_shadow,
1364 p_hwfn->mcp_info->mfw_mb_cur,
1365 p_hwfn->mcp_info->mfw_mb_length);
1366
1367 ecore_int_setup(p_hwfn, p_hwfn->p_main_ptt);
1368
1369 ecore_l2_setup(p_hwfn);
1083 ecore_iov_setup(p_hwfn, p_hwfn->p_main_ptt);
1370 ecore_iov_setup(p_hwfn);
1084#ifdef CONFIG_ECORE_LL2
1085 if (p_hwfn->using_ll2)
1086 ecore_ll2_setup(p_hwfn);
1087#endif
1088#ifdef CONFIG_ECORE_FCOE
1089 if (p_hwfn->hw_info.personality == ECORE_PCI_FCOE)
1090 ecore_fcoe_setup(p_hwfn);
1091#endif
1092#ifdef CONFIG_ECORE_ISCSI
1093 if (p_hwfn->hw_info.personality == ECORE_PCI_ISCSI) {
1094 ecore_iscsi_setup(p_hwfn);
1095 ecore_ooo_setup(p_hwfn);
1096 }
1097#endif
1098 }
1099}
1100
1101#define FINAL_CLEANUP_POLL_CNT (100)
1102#define FINAL_CLEANUP_POLL_TIME (10)
1103enum _ecore_status_t ecore_final_cleanup(struct ecore_hwfn *p_hwfn,
1104 struct ecore_ptt *p_ptt,
1105 u16 id, bool is_vf)
1106{
1107 u32 command = 0, addr, count = FINAL_CLEANUP_POLL_CNT;
1108 enum _ecore_status_t rc = ECORE_TIMEOUT;
1109
1110#ifndef ASIC_ONLY
1111 if (CHIP_REV_IS_TEDIBEAR(p_hwfn->p_dev) ||
1112 CHIP_REV_IS_SLOW(p_hwfn->p_dev)) {
1113 DP_INFO(p_hwfn, "Skipping final cleanup for non-ASIC\n");
1114 return ECORE_SUCCESS;
1115 }
1116#endif
1117
1118 addr = GTT_BAR0_MAP_REG_USDM_RAM +
1119 USTORM_FLR_FINAL_ACK_OFFSET(p_hwfn->rel_pf_id);
1120
1121 if (is_vf)
1122 id += 0x10;
1123
1124 command |= X_FINAL_CLEANUP_AGG_INT <<
1125 SDM_AGG_INT_COMP_PARAMS_AGG_INT_INDEX_SHIFT;
1126 command |= 1 << SDM_AGG_INT_COMP_PARAMS_AGG_VECTOR_ENABLE_SHIFT;
1127 command |= id << SDM_AGG_INT_COMP_PARAMS_AGG_VECTOR_BIT_SHIFT;
1128 command |= SDM_COMP_TYPE_AGG_INT << SDM_OP_GEN_COMP_TYPE_SHIFT;
1129
1130 /* Make sure notification is not set before initiating final cleanup */
1131 if (REG_RD(p_hwfn, addr)) {
1132 DP_NOTICE(p_hwfn, false,
1133 "Unexpected; Found final cleanup notification before initiating final cleanup\n");
1134 REG_WR(p_hwfn, addr, 0);
1135 }
1136
1137 DP_VERBOSE(p_hwfn, ECORE_MSG_IOV,
1138 "Sending final cleanup for PFVF[%d] [Command %08x\n]",
1139 id, command);
1140
1141 ecore_wr(p_hwfn, p_ptt, XSDM_REG_OPERATION_GEN, command);
1142
1143 /* Poll until completion */
1144 while (!REG_RD(p_hwfn, addr) && count--)
1145 OSAL_MSLEEP(FINAL_CLEANUP_POLL_TIME);
1146
1147 if (REG_RD(p_hwfn, addr))
1148 rc = ECORE_SUCCESS;
1149 else
1150 DP_NOTICE(p_hwfn, true, "Failed to receive FW final cleanup notification\n");
1151
1152 /* Cleanup afterwards */
1153 REG_WR(p_hwfn, addr, 0);
1154
1155 return rc;
1156}
1157
1158static enum _ecore_status_t ecore_calc_hw_mode(struct ecore_hwfn *p_hwfn)
1159{
1160 int hw_mode = 0;
1161
1162 if (ECORE_IS_BB_B0(p_hwfn->p_dev)) {
1163 hw_mode |= 1 << MODE_BB;
1164 } else if (ECORE_IS_AH(p_hwfn->p_dev)) {
1165 hw_mode |= 1 << MODE_K2;
1371#ifdef CONFIG_ECORE_LL2
1372 if (p_hwfn->using_ll2)
1373 ecore_ll2_setup(p_hwfn);
1374#endif
1375#ifdef CONFIG_ECORE_FCOE
1376 if (p_hwfn->hw_info.personality == ECORE_PCI_FCOE)
1377 ecore_fcoe_setup(p_hwfn);
1378#endif
1379#ifdef CONFIG_ECORE_ISCSI
1380 if (p_hwfn->hw_info.personality == ECORE_PCI_ISCSI) {
1381 ecore_iscsi_setup(p_hwfn);
1382 ecore_ooo_setup(p_hwfn);
1383 }
1384#endif
1385 }
1386}
1387
1388#define FINAL_CLEANUP_POLL_CNT (100)
1389#define FINAL_CLEANUP_POLL_TIME (10)
1390enum _ecore_status_t ecore_final_cleanup(struct ecore_hwfn *p_hwfn,
1391 struct ecore_ptt *p_ptt,
1392 u16 id, bool is_vf)
1393{
1394 u32 command = 0, addr, count = FINAL_CLEANUP_POLL_CNT;
1395 enum _ecore_status_t rc = ECORE_TIMEOUT;
1396
1397#ifndef ASIC_ONLY
1398 if (CHIP_REV_IS_TEDIBEAR(p_hwfn->p_dev) ||
1399 CHIP_REV_IS_SLOW(p_hwfn->p_dev)) {
1400 DP_INFO(p_hwfn, "Skipping final cleanup for non-ASIC\n");
1401 return ECORE_SUCCESS;
1402 }
1403#endif
1404
1405 addr = GTT_BAR0_MAP_REG_USDM_RAM +
1406 USTORM_FLR_FINAL_ACK_OFFSET(p_hwfn->rel_pf_id);
1407
1408 if (is_vf)
1409 id += 0x10;
1410
1411 command |= X_FINAL_CLEANUP_AGG_INT <<
1412 SDM_AGG_INT_COMP_PARAMS_AGG_INT_INDEX_SHIFT;
1413 command |= 1 << SDM_AGG_INT_COMP_PARAMS_AGG_VECTOR_ENABLE_SHIFT;
1414 command |= id << SDM_AGG_INT_COMP_PARAMS_AGG_VECTOR_BIT_SHIFT;
1415 command |= SDM_COMP_TYPE_AGG_INT << SDM_OP_GEN_COMP_TYPE_SHIFT;
1416
1417 /* Make sure notification is not set before initiating final cleanup */
1418 if (REG_RD(p_hwfn, addr)) {
1419 DP_NOTICE(p_hwfn, false,
1420 "Unexpected; Found final cleanup notification before initiating final cleanup\n");
1421 REG_WR(p_hwfn, addr, 0);
1422 }
1423
1424 DP_VERBOSE(p_hwfn, ECORE_MSG_IOV,
1425 "Sending final cleanup for PFVF[%d] [Command %08x\n]",
1426 id, command);
1427
1428 ecore_wr(p_hwfn, p_ptt, XSDM_REG_OPERATION_GEN, command);
1429
1430 /* Poll until completion */
1431 while (!REG_RD(p_hwfn, addr) && count--)
1432 OSAL_MSLEEP(FINAL_CLEANUP_POLL_TIME);
1433
1434 if (REG_RD(p_hwfn, addr))
1435 rc = ECORE_SUCCESS;
1436 else
1437 DP_NOTICE(p_hwfn, true, "Failed to receive FW final cleanup notification\n");
1438
1439 /* Cleanup afterwards */
1440 REG_WR(p_hwfn, addr, 0);
1441
1442 return rc;
1443}
1444
1445static enum _ecore_status_t ecore_calc_hw_mode(struct ecore_hwfn *p_hwfn)
1446{
1447 int hw_mode = 0;
1448
1449 if (ECORE_IS_BB_B0(p_hwfn->p_dev)) {
1450 hw_mode |= 1 << MODE_BB;
1451 } else if (ECORE_IS_AH(p_hwfn->p_dev)) {
1452 hw_mode |= 1 << MODE_K2;
1453 } else if (ECORE_IS_E5(p_hwfn->p_dev)) {
1454 hw_mode |= 1 << MODE_E5;
1166 } else {
1167 DP_NOTICE(p_hwfn, true, "Unknown chip type %#x\n",
1168 p_hwfn->p_dev->type);
1169 return ECORE_INVAL;
1170 }
1171
1172 /* Ports per engine is based on the values in CNIG_REG_NW_PORT_MODE*/
1455 } else {
1456 DP_NOTICE(p_hwfn, true, "Unknown chip type %#x\n",
1457 p_hwfn->p_dev->type);
1458 return ECORE_INVAL;
1459 }
1460
1461 /* Ports per engine is based on the values in CNIG_REG_NW_PORT_MODE*/
1173 switch (p_hwfn->p_dev->num_ports_in_engines) {
1462 switch (p_hwfn->p_dev->num_ports_in_engine) {
1174 case 1:
1175 hw_mode |= 1 << MODE_PORTS_PER_ENG_1;
1176 break;
1177 case 2:
1178 hw_mode |= 1 << MODE_PORTS_PER_ENG_2;
1179 break;
1180 case 4:
1181 hw_mode |= 1 << MODE_PORTS_PER_ENG_4;
1182 break;
1183 default:
1184 DP_NOTICE(p_hwfn, true, "num_ports_in_engine = %d not supported\n",
1463 case 1:
1464 hw_mode |= 1 << MODE_PORTS_PER_ENG_1;
1465 break;
1466 case 2:
1467 hw_mode |= 1 << MODE_PORTS_PER_ENG_2;
1468 break;
1469 case 4:
1470 hw_mode |= 1 << MODE_PORTS_PER_ENG_4;
1471 break;
1472 default:
1473 DP_NOTICE(p_hwfn, true, "num_ports_in_engine = %d not supported\n",
1185 p_hwfn->p_dev->num_ports_in_engines);
1474 p_hwfn->p_dev->num_ports_in_engine);
1186 return ECORE_INVAL;
1187 }
1188
1189 switch (p_hwfn->p_dev->mf_mode) {
1190 case ECORE_MF_DEFAULT:
1191 case ECORE_MF_NPAR:
1192 hw_mode |= 1 << MODE_MF_SI;
1193 break;
1194 case ECORE_MF_OVLAN:
1195 hw_mode |= 1 << MODE_MF_SD;
1196 break;
1197 default:
1198 DP_NOTICE(p_hwfn, true, "Unsupported MF mode, init as DEFAULT\n");
1199 hw_mode |= 1 << MODE_MF_SI;
1200 }
1201
1202#ifndef ASIC_ONLY
1203 if (CHIP_REV_IS_SLOW(p_hwfn->p_dev)) {
1204 if (CHIP_REV_IS_FPGA(p_hwfn->p_dev)) {
1205 hw_mode |= 1 << MODE_FPGA;
1206 } else {
1207 if (p_hwfn->p_dev->b_is_emul_full)
1208 hw_mode |= 1 << MODE_EMUL_FULL;
1209 else
1210 hw_mode |= 1 << MODE_EMUL_REDUCED;
1211 }
1212 } else
1213#endif
1214 hw_mode |= 1 << MODE_ASIC;
1215
1216 if (p_hwfn->p_dev->num_hwfns > 1)
1217 hw_mode |= 1 << MODE_100G;
1218
1219 p_hwfn->hw_info.hw_mode = hw_mode;
1220
1221 DP_VERBOSE(p_hwfn, (ECORE_MSG_PROBE | ECORE_MSG_IFUP),
1222 "Configuring function for hw_mode: 0x%08x\n",
1223 p_hwfn->hw_info.hw_mode);
1224
1225 return ECORE_SUCCESS;
1226}
1227
1228#ifndef ASIC_ONLY
1229/* MFW-replacement initializations for non-ASIC */
1230static enum _ecore_status_t ecore_hw_init_chip(struct ecore_hwfn *p_hwfn,
1231 struct ecore_ptt *p_ptt)
1232{
1233 struct ecore_dev *p_dev = p_hwfn->p_dev;
1234 u32 pl_hv = 1;
1235 int i;
1236
1237 if (CHIP_REV_IS_EMUL(p_dev)) {
1238 if (ECORE_IS_AH(p_dev))
1239 pl_hv |= 0x600;
1240 else if (ECORE_IS_E5(p_dev))
1241 ECORE_E5_MISSING_CODE;
1242 }
1243
1244 ecore_wr(p_hwfn, p_ptt, MISCS_REG_RESET_PL_HV + 4, pl_hv);
1245
1246 if (CHIP_REV_IS_EMUL(p_dev) &&
1247 (ECORE_IS_AH(p_dev) || ECORE_IS_E5(p_dev)))
1248 ecore_wr(p_hwfn, p_ptt, MISCS_REG_RESET_PL_HV_2_K2_E5,
1249 0x3ffffff);
1250
1251 /* initialize port mode to 4x10G_E (10G with 4x10 SERDES) */
1252 /* CNIG_REG_NW_PORT_MODE is same for A0 and B0 */
1253 if (!CHIP_REV_IS_EMUL(p_dev) || ECORE_IS_BB(p_dev))
1254 ecore_wr(p_hwfn, p_ptt, CNIG_REG_NW_PORT_MODE_BB, 4);
1255
1256 if (CHIP_REV_IS_EMUL(p_dev)) {
1257 if (ECORE_IS_AH(p_dev)) {
1258 /* 2 for 4-port, 1 for 2-port, 0 for 1-port */
1259 ecore_wr(p_hwfn, p_ptt, MISC_REG_PORT_MODE,
1475 return ECORE_INVAL;
1476 }
1477
1478 switch (p_hwfn->p_dev->mf_mode) {
1479 case ECORE_MF_DEFAULT:
1480 case ECORE_MF_NPAR:
1481 hw_mode |= 1 << MODE_MF_SI;
1482 break;
1483 case ECORE_MF_OVLAN:
1484 hw_mode |= 1 << MODE_MF_SD;
1485 break;
1486 default:
1487 DP_NOTICE(p_hwfn, true, "Unsupported MF mode, init as DEFAULT\n");
1488 hw_mode |= 1 << MODE_MF_SI;
1489 }
1490
1491#ifndef ASIC_ONLY
1492 if (CHIP_REV_IS_SLOW(p_hwfn->p_dev)) {
1493 if (CHIP_REV_IS_FPGA(p_hwfn->p_dev)) {
1494 hw_mode |= 1 << MODE_FPGA;
1495 } else {
1496 if (p_hwfn->p_dev->b_is_emul_full)
1497 hw_mode |= 1 << MODE_EMUL_FULL;
1498 else
1499 hw_mode |= 1 << MODE_EMUL_REDUCED;
1500 }
1501 } else
1502#endif
1503 hw_mode |= 1 << MODE_ASIC;
1504
1505 if (p_hwfn->p_dev->num_hwfns > 1)
1506 hw_mode |= 1 << MODE_100G;
1507
1508 p_hwfn->hw_info.hw_mode = hw_mode;
1509
1510 DP_VERBOSE(p_hwfn, (ECORE_MSG_PROBE | ECORE_MSG_IFUP),
1511 "Configuring function for hw_mode: 0x%08x\n",
1512 p_hwfn->hw_info.hw_mode);
1513
1514 return ECORE_SUCCESS;
1515}
1516
1517#ifndef ASIC_ONLY
1518/* MFW-replacement initializations for non-ASIC */
1519static enum _ecore_status_t ecore_hw_init_chip(struct ecore_hwfn *p_hwfn,
1520 struct ecore_ptt *p_ptt)
1521{
1522 struct ecore_dev *p_dev = p_hwfn->p_dev;
1523 u32 pl_hv = 1;
1524 int i;
1525
1526 if (CHIP_REV_IS_EMUL(p_dev)) {
1527 if (ECORE_IS_AH(p_dev))
1528 pl_hv |= 0x600;
1529 else if (ECORE_IS_E5(p_dev))
1530 ECORE_E5_MISSING_CODE;
1531 }
1532
1533 ecore_wr(p_hwfn, p_ptt, MISCS_REG_RESET_PL_HV + 4, pl_hv);
1534
1535 if (CHIP_REV_IS_EMUL(p_dev) &&
1536 (ECORE_IS_AH(p_dev) || ECORE_IS_E5(p_dev)))
1537 ecore_wr(p_hwfn, p_ptt, MISCS_REG_RESET_PL_HV_2_K2_E5,
1538 0x3ffffff);
1539
1540 /* initialize port mode to 4x10G_E (10G with 4x10 SERDES) */
1541 /* CNIG_REG_NW_PORT_MODE is same for A0 and B0 */
1542 if (!CHIP_REV_IS_EMUL(p_dev) || ECORE_IS_BB(p_dev))
1543 ecore_wr(p_hwfn, p_ptt, CNIG_REG_NW_PORT_MODE_BB, 4);
1544
1545 if (CHIP_REV_IS_EMUL(p_dev)) {
1546 if (ECORE_IS_AH(p_dev)) {
1547 /* 2 for 4-port, 1 for 2-port, 0 for 1-port */
1548 ecore_wr(p_hwfn, p_ptt, MISC_REG_PORT_MODE,
1260 (p_dev->num_ports_in_engines >> 1));
1549 (p_dev->num_ports_in_engine >> 1));
1261
1262 ecore_wr(p_hwfn, p_ptt, MISC_REG_BLOCK_256B_EN,
1550
1551 ecore_wr(p_hwfn, p_ptt, MISC_REG_BLOCK_256B_EN,
1263 p_dev->num_ports_in_engines == 4 ? 0 : 3);
1552 p_dev->num_ports_in_engine == 4 ? 0 : 3);
1264 } else if (ECORE_IS_E5(p_dev)) {
1265 ECORE_E5_MISSING_CODE;
1266 }
1553 } else if (ECORE_IS_E5(p_dev)) {
1554 ECORE_E5_MISSING_CODE;
1555 }
1267 }
1268
1556
1269 /* Poll on RBC */
1270 ecore_wr(p_hwfn, p_ptt, PSWRQ2_REG_RBC_DONE, 1);
1271 for (i = 0; i < 100; i++) {
1272 OSAL_UDELAY(50);
1273 if (ecore_rd(p_hwfn, p_ptt, PSWRQ2_REG_CFG_DONE) == 1)
1274 break;
1557 /* Poll on RBC */
1558 ecore_wr(p_hwfn, p_ptt, PSWRQ2_REG_RBC_DONE, 1);
1559 for (i = 0; i < 100; i++) {
1560 OSAL_UDELAY(50);
1561 if (ecore_rd(p_hwfn, p_ptt, PSWRQ2_REG_CFG_DONE) == 1)
1562 break;
1563 }
1564 if (i == 100)
1565 DP_NOTICE(p_hwfn, true,
1566 "RBC done failed to complete in PSWRQ2\n");
1275 }
1567 }
1276 if (i == 100)
1277 DP_NOTICE(p_hwfn, true, "RBC done failed to complete in PSWRQ2\n");
1278
1279 return ECORE_SUCCESS;
1280}
1281#endif
1282
1283/* Init run time data for all PFs and their VFs on an engine.
1284 * TBD - for VFs - Once we have parent PF info for each VF in
1285 * shmem available as CAU requires knowledge of parent PF for each VF.
1286 */
1287static void ecore_init_cau_rt_data(struct ecore_dev *p_dev)
1288{
1289 u32 offset = CAU_REG_SB_VAR_MEMORY_RT_OFFSET;
1290 int i, igu_sb_id;
1291
1292 for_each_hwfn(p_dev, i) {
1293 struct ecore_hwfn *p_hwfn = &p_dev->hwfns[i];
1294 struct ecore_igu_info *p_igu_info;
1295 struct ecore_igu_block *p_block;
1296 struct cau_sb_entry sb_entry;
1297
1298 p_igu_info = p_hwfn->hw_info.p_igu_info;
1299
1300 for (igu_sb_id = 0;
1301 igu_sb_id < ECORE_MAPPING_MEMORY_SIZE(p_dev);
1302 igu_sb_id++) {
1303 p_block = &p_igu_info->entry[igu_sb_id];
1304
1305 if (!p_block->is_pf)
1306 continue;
1307
1308 ecore_init_cau_sb_entry(p_hwfn, &sb_entry,
1309 p_block->function_id,
1310 0, 0);
1311 STORE_RT_REG_AGG(p_hwfn, offset + igu_sb_id * 2,
1312 sb_entry);
1313 }
1314 }
1315}
1316
1317static void ecore_init_cache_line_size(struct ecore_hwfn *p_hwfn,
1318 struct ecore_ptt *p_ptt)
1319{
1320 u32 val, wr_mbs, cache_line_size;
1321
1322 val = ecore_rd(p_hwfn, p_ptt, PSWRQ2_REG_WR_MBS0);
1323 switch (val) {
1324 case 0:
1325 wr_mbs = 128;
1326 break;
1327 case 1:
1328 wr_mbs = 256;
1329 break;
1330 case 2:
1331 wr_mbs = 512;
1332 break;
1333 default:
1334 DP_INFO(p_hwfn,
1335 "Unexpected value of PSWRQ2_REG_WR_MBS0 [0x%x]. Avoid configuring PGLUE_B_REG_CACHE_LINE_SIZE.\n",
1336 val);
1337 return;
1338 }
1339
1340 cache_line_size = OSAL_MIN_T(u32, OSAL_CACHE_LINE_SIZE, wr_mbs);
1341 switch (cache_line_size) {
1342 case 32:
1343 val = 0;
1344 break;
1345 case 64:
1346 val = 1;
1347 break;
1348 case 128:
1349 val = 2;
1350 break;
1351 case 256:
1352 val = 3;
1353 break;
1354 default:
1355 DP_INFO(p_hwfn,
1356 "Unexpected value of cache line size [0x%x]. Avoid configuring PGLUE_B_REG_CACHE_LINE_SIZE.\n",
1357 cache_line_size);
1358 }
1359
1360 if (OSAL_CACHE_LINE_SIZE > wr_mbs)
1361 DP_INFO(p_hwfn,
1362 "The cache line size for padding is suboptimal for performance [OS cache line size 0x%x, wr mbs 0x%x]\n",
1363 OSAL_CACHE_LINE_SIZE, wr_mbs);
1364
1365 STORE_RT_REG(p_hwfn, PGLUE_REG_B_CACHE_LINE_SIZE_RT_OFFSET, val);
1568
1569 return ECORE_SUCCESS;
1570}
1571#endif
1572
1573/* Init run time data for all PFs and their VFs on an engine.
1574 * TBD - for VFs - Once we have parent PF info for each VF in
1575 * shmem available as CAU requires knowledge of parent PF for each VF.
1576 */
1577static void ecore_init_cau_rt_data(struct ecore_dev *p_dev)
1578{
1579 u32 offset = CAU_REG_SB_VAR_MEMORY_RT_OFFSET;
1580 int i, igu_sb_id;
1581
1582 for_each_hwfn(p_dev, i) {
1583 struct ecore_hwfn *p_hwfn = &p_dev->hwfns[i];
1584 struct ecore_igu_info *p_igu_info;
1585 struct ecore_igu_block *p_block;
1586 struct cau_sb_entry sb_entry;
1587
1588 p_igu_info = p_hwfn->hw_info.p_igu_info;
1589
1590 for (igu_sb_id = 0;
1591 igu_sb_id < ECORE_MAPPING_MEMORY_SIZE(p_dev);
1592 igu_sb_id++) {
1593 p_block = &p_igu_info->entry[igu_sb_id];
1594
1595 if (!p_block->is_pf)
1596 continue;
1597
1598 ecore_init_cau_sb_entry(p_hwfn, &sb_entry,
1599 p_block->function_id,
1600 0, 0);
1601 STORE_RT_REG_AGG(p_hwfn, offset + igu_sb_id * 2,
1602 sb_entry);
1603 }
1604 }
1605}
1606
1607static void ecore_init_cache_line_size(struct ecore_hwfn *p_hwfn,
1608 struct ecore_ptt *p_ptt)
1609{
1610 u32 val, wr_mbs, cache_line_size;
1611
1612 val = ecore_rd(p_hwfn, p_ptt, PSWRQ2_REG_WR_MBS0);
1613 switch (val) {
1614 case 0:
1615 wr_mbs = 128;
1616 break;
1617 case 1:
1618 wr_mbs = 256;
1619 break;
1620 case 2:
1621 wr_mbs = 512;
1622 break;
1623 default:
1624 DP_INFO(p_hwfn,
1625 "Unexpected value of PSWRQ2_REG_WR_MBS0 [0x%x]. Avoid configuring PGLUE_B_REG_CACHE_LINE_SIZE.\n",
1626 val);
1627 return;
1628 }
1629
1630 cache_line_size = OSAL_MIN_T(u32, OSAL_CACHE_LINE_SIZE, wr_mbs);
1631 switch (cache_line_size) {
1632 case 32:
1633 val = 0;
1634 break;
1635 case 64:
1636 val = 1;
1637 break;
1638 case 128:
1639 val = 2;
1640 break;
1641 case 256:
1642 val = 3;
1643 break;
1644 default:
1645 DP_INFO(p_hwfn,
1646 "Unexpected value of cache line size [0x%x]. Avoid configuring PGLUE_B_REG_CACHE_LINE_SIZE.\n",
1647 cache_line_size);
1648 }
1649
1650 if (OSAL_CACHE_LINE_SIZE > wr_mbs)
1651 DP_INFO(p_hwfn,
1652 "The cache line size for padding is suboptimal for performance [OS cache line size 0x%x, wr mbs 0x%x]\n",
1653 OSAL_CACHE_LINE_SIZE, wr_mbs);
1654
1655 STORE_RT_REG(p_hwfn, PGLUE_REG_B_CACHE_LINE_SIZE_RT_OFFSET, val);
1656 if (val > 0) {
1657 STORE_RT_REG(p_hwfn, PSWRQ2_REG_DRAM_ALIGN_WR_RT_OFFSET, val);
1658 STORE_RT_REG(p_hwfn, PSWRQ2_REG_DRAM_ALIGN_RD_RT_OFFSET, val);
1659 }
1366}
1367
1368static enum _ecore_status_t ecore_hw_init_common(struct ecore_hwfn *p_hwfn,
1369 struct ecore_ptt *p_ptt,
1370 int hw_mode)
1371{
1372 struct ecore_qm_info *qm_info = &p_hwfn->qm_info;
1373 struct ecore_dev *p_dev = p_hwfn->p_dev;
1374 u8 vf_id, max_num_vfs;
1375 u16 num_pfs, pf_id;
1376 u32 concrete_fid;
1377 enum _ecore_status_t rc = ECORE_SUCCESS;
1378
1379 ecore_init_cau_rt_data(p_dev);
1380
1381 /* Program GTT windows */
1660}
1661
1662static enum _ecore_status_t ecore_hw_init_common(struct ecore_hwfn *p_hwfn,
1663 struct ecore_ptt *p_ptt,
1664 int hw_mode)
1665{
1666 struct ecore_qm_info *qm_info = &p_hwfn->qm_info;
1667 struct ecore_dev *p_dev = p_hwfn->p_dev;
1668 u8 vf_id, max_num_vfs;
1669 u16 num_pfs, pf_id;
1670 u32 concrete_fid;
1671 enum _ecore_status_t rc = ECORE_SUCCESS;
1672
1673 ecore_init_cau_rt_data(p_dev);
1674
1675 /* Program GTT windows */
1382 ecore_gtt_init(p_hwfn);
1676 ecore_gtt_init(p_hwfn, p_ptt);
1383
1384#ifndef ASIC_ONLY
1385 if (CHIP_REV_IS_EMUL(p_dev)) {
1677
1678#ifndef ASIC_ONLY
1679 if (CHIP_REV_IS_EMUL(p_dev)) {
1386 rc = ecore_hw_init_chip(p_hwfn, p_hwfn->p_main_ptt);
1680 rc = ecore_hw_init_chip(p_hwfn, p_ptt);
1387 if (rc != ECORE_SUCCESS)
1388 return rc;
1389 }
1390#endif
1391
1392 if (p_hwfn->mcp_info) {
1393 if (p_hwfn->mcp_info->func_info.bandwidth_max)
1394 qm_info->pf_rl_en = 1;
1395 if (p_hwfn->mcp_info->func_info.bandwidth_min)
1396 qm_info->pf_wfq_en = 1;
1397 }
1398
1399 ecore_qm_common_rt_init(p_hwfn,
1681 if (rc != ECORE_SUCCESS)
1682 return rc;
1683 }
1684#endif
1685
1686 if (p_hwfn->mcp_info) {
1687 if (p_hwfn->mcp_info->func_info.bandwidth_max)
1688 qm_info->pf_rl_en = 1;
1689 if (p_hwfn->mcp_info->func_info.bandwidth_min)
1690 qm_info->pf_wfq_en = 1;
1691 }
1692
1693 ecore_qm_common_rt_init(p_hwfn,
1400 p_dev->num_ports_in_engines,
1694 p_dev->num_ports_in_engine,
1401 qm_info->max_phys_tcs_per_port,
1402 qm_info->pf_rl_en, qm_info->pf_wfq_en,
1403 qm_info->vport_rl_en, qm_info->vport_wfq_en,
1404 qm_info->qm_port_params);
1405
1406 ecore_cxt_hw_init_common(p_hwfn);
1407
1408 ecore_init_cache_line_size(p_hwfn, p_ptt);
1409
1410 rc = ecore_init_run(p_hwfn, p_ptt, PHASE_ENGINE, ANY_PHASE_ID, hw_mode);
1411 if (rc != ECORE_SUCCESS)
1412 return rc;
1413
1695 qm_info->max_phys_tcs_per_port,
1696 qm_info->pf_rl_en, qm_info->pf_wfq_en,
1697 qm_info->vport_rl_en, qm_info->vport_wfq_en,
1698 qm_info->qm_port_params);
1699
1700 ecore_cxt_hw_init_common(p_hwfn);
1701
1702 ecore_init_cache_line_size(p_hwfn, p_ptt);
1703
1704 rc = ecore_init_run(p_hwfn, p_ptt, PHASE_ENGINE, ANY_PHASE_ID, hw_mode);
1705 if (rc != ECORE_SUCCESS)
1706 return rc;
1707
1708 /* @@@TBD mask DORQ afull as it is now benign. Init tool should do this */
1709 ecore_wr(p_hwfn, p_ptt, DORQ_REG_INT_MASK,
1710 DORQ_REG_INT_STS_DORQ_FIFO_AFULL);
1711
1414 /* @@TBD MichalK - should add VALIDATE_VFID to init tool...
1415 * need to decide with which value, maybe runtime
1416 */
1417 ecore_wr(p_hwfn, p_ptt, PSWRQ2_REG_L2P_VALIDATE_VFID, 0);
1418 ecore_wr(p_hwfn, p_ptt, PGLUE_B_REG_USE_CLIENTID_IN_TAG, 1);
1419
1420 if (ECORE_IS_BB(p_dev)) {
1421 /* Workaround clears ROCE search for all functions to prevent
1422 * involving non intialized function in processing ROCE packet.
1423 */
1424 num_pfs = NUM_OF_ENG_PFS(p_dev);
1425 for (pf_id = 0; pf_id < num_pfs; pf_id++) {
1426 ecore_fid_pretend(p_hwfn, p_ptt, pf_id);
1427 ecore_wr(p_hwfn, p_ptt, PRS_REG_SEARCH_ROCE, 0x0);
1428 ecore_wr(p_hwfn, p_ptt, PRS_REG_SEARCH_TCP, 0x0);
1429 }
1430 /* pretend to original PF */
1431 ecore_fid_pretend(p_hwfn, p_ptt, p_hwfn->rel_pf_id);
1432 }
1433
1434 /* Workaround for avoiding CCFC execution error when getting packets
1435 * with CRC errors, and allowing instead the invoking of the FW error
1436 * handler.
1437 * This is not done inside the init tool since it currently can't
1438 * perform a pretending to VFs.
1439 */
1440 max_num_vfs = ECORE_IS_AH(p_dev) ? MAX_NUM_VFS_K2 : MAX_NUM_VFS_BB;
1441 for (vf_id = 0; vf_id < max_num_vfs; vf_id++) {
1442 concrete_fid = ecore_vfid_to_concrete(p_hwfn, vf_id);
1443 ecore_fid_pretend(p_hwfn, p_ptt, (u16)concrete_fid);
1444 ecore_wr(p_hwfn, p_ptt, CCFC_REG_STRONG_ENABLE_VF, 0x1);
1445 ecore_wr(p_hwfn, p_ptt, CCFC_REG_WEAK_ENABLE_VF, 0x0);
1446 ecore_wr(p_hwfn, p_ptt, TCFC_REG_STRONG_ENABLE_VF, 0x1);
1447 ecore_wr(p_hwfn, p_ptt, TCFC_REG_WEAK_ENABLE_VF, 0x0);
1448 }
1449 /* pretend to original PF */
1450 ecore_fid_pretend(p_hwfn, p_ptt, p_hwfn->rel_pf_id);
1451
1452 return rc;
1453}
1454
1455#ifndef ASIC_ONLY
1456#define MISC_REG_RESET_REG_2_XMAC_BIT (1<<4)
1457#define MISC_REG_RESET_REG_2_XMAC_SOFT_BIT (1<<5)
1458
1459#define PMEG_IF_BYTE_COUNT 8
1460
1461static void ecore_wr_nw_port(struct ecore_hwfn *p_hwfn,
1462 struct ecore_ptt *p_ptt,
1463 u32 addr,
1464 u64 data,
1465 u8 reg_type,
1466 u8 port)
1467{
1468 DP_VERBOSE(p_hwfn, ECORE_MSG_LINK,
1469 "CMD: %08x, ADDR: 0x%08x, DATA: %08x:%08x\n",
1470 ecore_rd(p_hwfn, p_ptt, CNIG_REG_PMEG_IF_CMD_BB) |
1471 (8 << PMEG_IF_BYTE_COUNT),
1472 (reg_type << 25) | (addr << 8) | port,
1473 (u32)((data >> 32) & 0xffffffff),
1474 (u32)(data & 0xffffffff));
1475
1476 ecore_wr(p_hwfn, p_ptt, CNIG_REG_PMEG_IF_CMD_BB,
1477 (ecore_rd(p_hwfn, p_ptt, CNIG_REG_PMEG_IF_CMD_BB) &
1478 0xffff00fe) |
1479 (8 << PMEG_IF_BYTE_COUNT));
1480 ecore_wr(p_hwfn, p_ptt, CNIG_REG_PMEG_IF_ADDR_BB,
1481 (reg_type << 25) | (addr << 8) | port);
1482 ecore_wr(p_hwfn, p_ptt, CNIG_REG_PMEG_IF_WRDATA_BB, data & 0xffffffff);
1483 ecore_wr(p_hwfn, p_ptt, CNIG_REG_PMEG_IF_WRDATA_BB,
1484 (data >> 32) & 0xffffffff);
1485}
1486
1487#define XLPORT_MODE_REG (0x20a)
1488#define XLPORT_MAC_CONTROL (0x210)
1489#define XLPORT_FLOW_CONTROL_CONFIG (0x207)
1490#define XLPORT_ENABLE_REG (0x20b)
1491
1492#define XLMAC_CTRL (0x600)
1493#define XLMAC_MODE (0x601)
1494#define XLMAC_RX_MAX_SIZE (0x608)
1495#define XLMAC_TX_CTRL (0x604)
1496#define XLMAC_PAUSE_CTRL (0x60d)
1497#define XLMAC_PFC_CTRL (0x60e)
1498
1499static void ecore_emul_link_init_bb(struct ecore_hwfn *p_hwfn,
1500 struct ecore_ptt *p_ptt)
1501{
1502 u8 loopback = 0, port = p_hwfn->port_id * 2;
1503
1504 DP_INFO(p_hwfn->p_dev, "Configurating Emulation Link %02x\n", port);
1505
1506 ecore_wr_nw_port(p_hwfn, p_ptt, XLPORT_MODE_REG,
1507 (0x4 << 4) | 0x4, 1, port); /* XLPORT MAC MODE */ /* 0 Quad, 4 Single... */
1508 ecore_wr_nw_port(p_hwfn, p_ptt, XLPORT_MAC_CONTROL, 0, 1, port);
1509 ecore_wr_nw_port(p_hwfn, p_ptt, XLMAC_CTRL,
1510 0x40, 0, port); /*XLMAC: SOFT RESET */
1511 ecore_wr_nw_port(p_hwfn, p_ptt, XLMAC_MODE,
1512 0x40, 0, port); /*XLMAC: Port Speed >= 10Gbps */
1513 ecore_wr_nw_port(p_hwfn, p_ptt, XLMAC_RX_MAX_SIZE,
1514 0x3fff, 0, port); /* XLMAC: Max Size */
1515 ecore_wr_nw_port(p_hwfn, p_ptt, XLMAC_TX_CTRL,
1516 0x01000000800ULL | (0xa << 12) | ((u64)1 << 38),
1517 0, port);
1518 ecore_wr_nw_port(p_hwfn, p_ptt, XLMAC_PAUSE_CTRL,
1519 0x7c000, 0, port);
1520 ecore_wr_nw_port(p_hwfn, p_ptt, XLMAC_PFC_CTRL,
1521 0x30ffffc000ULL, 0, port);
1522 ecore_wr_nw_port(p_hwfn, p_ptt, XLMAC_CTRL, 0x3 | (loopback << 2),
1523 0, port); /* XLMAC: TX_EN, RX_EN */
1524 ecore_wr_nw_port(p_hwfn, p_ptt, XLMAC_CTRL, 0x1003 | (loopback << 2),
1525 0, port); /* XLMAC: TX_EN, RX_EN, SW_LINK_STATUS */
1526 ecore_wr_nw_port(p_hwfn, p_ptt, XLPORT_FLOW_CONTROL_CONFIG,
1527 1, 0, port); /* Enabled Parallel PFC interface */
1528 ecore_wr_nw_port(p_hwfn, p_ptt, XLPORT_ENABLE_REG,
1529 0xf, 1, port); /* XLPORT port enable */
1530}
1531
1532static void ecore_emul_link_init_ah_e5(struct ecore_hwfn *p_hwfn,
1533 struct ecore_ptt *p_ptt)
1534{
1535 u8 port = p_hwfn->port_id;
1536 u32 mac_base = NWM_REG_MAC0_K2_E5 + (port << 2) * NWM_REG_MAC0_SIZE;
1537
1538 DP_INFO(p_hwfn->p_dev, "Configurating Emulation Link %02x\n", port);
1539
1540 ecore_wr(p_hwfn, p_ptt, CNIG_REG_NIG_PORT0_CONF_K2_E5 + (port << 2),
1541 (1 << CNIG_REG_NIG_PORT0_CONF_NIG_PORT_ENABLE_0_K2_E5_SHIFT) |
1542 (port <<
1543 CNIG_REG_NIG_PORT0_CONF_NIG_PORT_NWM_PORT_MAP_0_K2_E5_SHIFT) |
1544 (0 << CNIG_REG_NIG_PORT0_CONF_NIG_PORT_RATE_0_K2_E5_SHIFT));
1545
1546 ecore_wr(p_hwfn, p_ptt, mac_base + ETH_MAC_REG_XIF_MODE_K2_E5,
1547 1 << ETH_MAC_REG_XIF_MODE_XGMII_K2_E5_SHIFT);
1548
1549 ecore_wr(p_hwfn, p_ptt, mac_base + ETH_MAC_REG_FRM_LENGTH_K2_E5,
1550 9018 << ETH_MAC_REG_FRM_LENGTH_FRM_LENGTH_K2_E5_SHIFT);
1551
1552 ecore_wr(p_hwfn, p_ptt, mac_base + ETH_MAC_REG_TX_IPG_LENGTH_K2_E5,
1553 0xc << ETH_MAC_REG_TX_IPG_LENGTH_TXIPG_K2_E5_SHIFT);
1554
1555 ecore_wr(p_hwfn, p_ptt, mac_base + ETH_MAC_REG_RX_FIFO_SECTIONS_K2_E5,
1556 8 << ETH_MAC_REG_RX_FIFO_SECTIONS_RX_SECTION_FULL_K2_E5_SHIFT);
1557
1558 ecore_wr(p_hwfn, p_ptt, mac_base + ETH_MAC_REG_TX_FIFO_SECTIONS_K2_E5,
1559 (0xA <<
1560 ETH_MAC_REG_TX_FIFO_SECTIONS_TX_SECTION_EMPTY_K2_E5_SHIFT) |
1561 (8 <<
1562 ETH_MAC_REG_TX_FIFO_SECTIONS_TX_SECTION_FULL_K2_E5_SHIFT));
1563
1564 ecore_wr(p_hwfn, p_ptt, mac_base + ETH_MAC_REG_COMMAND_CONFIG_K2_E5,
1565 0xa853);
1566}
1567
1568static void ecore_emul_link_init(struct ecore_hwfn *p_hwfn,
1569 struct ecore_ptt *p_ptt)
1570{
1571 if (ECORE_IS_AH(p_hwfn->p_dev) || ECORE_IS_E5(p_hwfn->p_dev))
1572 ecore_emul_link_init_ah_e5(p_hwfn, p_ptt);
1573 else /* BB */
1574 ecore_emul_link_init_bb(p_hwfn, p_ptt);
1575
1576 return;
1577}
1578
1579static void ecore_link_init_bb(struct ecore_hwfn *p_hwfn,
1580 struct ecore_ptt *p_ptt, u8 port)
1581{
1582 int port_offset = port ? 0x800 : 0;
1583 u32 xmac_rxctrl = 0;
1584
1585 /* Reset of XMAC */
1586 /* FIXME: move to common start */
1587 ecore_wr(p_hwfn, p_ptt, MISC_REG_RESET_PL_PDA_VAUX + 2*sizeof(u32),
1588 MISC_REG_RESET_REG_2_XMAC_BIT); /* Clear */
1589 OSAL_MSLEEP(1);
1590 ecore_wr(p_hwfn, p_ptt, MISC_REG_RESET_PL_PDA_VAUX + sizeof(u32),
1591 MISC_REG_RESET_REG_2_XMAC_BIT); /* Set */
1592
1593 ecore_wr(p_hwfn, p_ptt, MISC_REG_XMAC_CORE_PORT_MODE_BB, 1);
1594
1595 /* Set the number of ports on the Warp Core to 10G */
1596 ecore_wr(p_hwfn, p_ptt, MISC_REG_XMAC_PHY_PORT_MODE_BB, 3);
1597
1598 /* Soft reset of XMAC */
1599 ecore_wr(p_hwfn, p_ptt, MISC_REG_RESET_PL_PDA_VAUX + 2 * sizeof(u32),
1600 MISC_REG_RESET_REG_2_XMAC_SOFT_BIT);
1601 OSAL_MSLEEP(1);
1602 ecore_wr(p_hwfn, p_ptt, MISC_REG_RESET_PL_PDA_VAUX + sizeof(u32),
1603 MISC_REG_RESET_REG_2_XMAC_SOFT_BIT);
1604
1605 /* FIXME: move to common end */
1606 if (CHIP_REV_IS_FPGA(p_hwfn->p_dev))
1607 ecore_wr(p_hwfn, p_ptt, XMAC_REG_MODE_BB + port_offset, 0x20);
1608
1609 /* Set Max packet size: initialize XMAC block register for port 0 */
1610 ecore_wr(p_hwfn, p_ptt, XMAC_REG_RX_MAX_SIZE_BB + port_offset, 0x2710);
1611
1612 /* CRC append for Tx packets: init XMAC block register for port 1 */
1613 ecore_wr(p_hwfn, p_ptt, XMAC_REG_TX_CTRL_LO_BB + port_offset, 0xC800);
1614
1615 /* Enable TX and RX: initialize XMAC block register for port 1 */
1616 ecore_wr(p_hwfn, p_ptt, XMAC_REG_CTRL_BB + port_offset,
1617 XMAC_REG_CTRL_TX_EN_BB | XMAC_REG_CTRL_RX_EN_BB);
1618 xmac_rxctrl = ecore_rd(p_hwfn, p_ptt,
1619 XMAC_REG_RX_CTRL_BB + port_offset);
1620 xmac_rxctrl |= XMAC_REG_RX_CTRL_PROCESS_VARIABLE_PREAMBLE_BB;
1621 ecore_wr(p_hwfn, p_ptt, XMAC_REG_RX_CTRL_BB + port_offset, xmac_rxctrl);
1622}
1623#endif
1624
1625static enum _ecore_status_t
1626ecore_hw_init_dpi_size(struct ecore_hwfn *p_hwfn,
1627 struct ecore_ptt *p_ptt,
1628 u32 pwm_region_size,
1629 u32 n_cpus)
1630{
1631 u32 dpi_page_size_1, dpi_page_size_2, dpi_page_size;
1632 u32 dpi_bit_shift, dpi_count;
1633 u32 min_dpis;
1634
1635 /* Calculate DPI size
1636 * ------------------
1637 * The PWM region contains Doorbell Pages. The first is reserverd for
1638 * the kernel for, e.g, L2. The others are free to be used by non-
1639 * trusted applications, typically from user space. Each page, called a
1640 * doorbell page is sectioned into windows that allow doorbells to be
1641 * issued in parallel by the kernel/application. The size of such a
1642 * window (a.k.a. WID) is 1kB.
1643 * Summary:
1644 * 1kB WID x N WIDS = DPI page size
1645 * DPI page size x N DPIs = PWM region size
1646 * Notes:
1647 * The size of the DPI page size must be in multiples of OSAL_PAGE_SIZE
1648 * in order to ensure that two applications won't share the same page.
1649 * It also must contain at least one WID per CPU to allow parallelism.
1650 * It also must be a power of 2, since it is stored as a bit shift.
1651 *
1652 * The DPI page size is stored in a register as 'dpi_bit_shift' so that
1653 * 0 is 4kB, 1 is 8kB and etc. Hence the minimum size is 4,096
1654 * containing 4 WIDs.
1655 */
1656 dpi_page_size_1 = ECORE_WID_SIZE * n_cpus;
1657 dpi_page_size_2 = OSAL_MAX_T(u32, ECORE_WID_SIZE, OSAL_PAGE_SIZE);
1658 dpi_page_size = OSAL_MAX_T(u32, dpi_page_size_1, dpi_page_size_2);
1712 /* @@TBD MichalK - should add VALIDATE_VFID to init tool...
1713 * need to decide with which value, maybe runtime
1714 */
1715 ecore_wr(p_hwfn, p_ptt, PSWRQ2_REG_L2P_VALIDATE_VFID, 0);
1716 ecore_wr(p_hwfn, p_ptt, PGLUE_B_REG_USE_CLIENTID_IN_TAG, 1);
1717
1718 if (ECORE_IS_BB(p_dev)) {
1719 /* Workaround clears ROCE search for all functions to prevent
1720 * involving non intialized function in processing ROCE packet.
1721 */
1722 num_pfs = NUM_OF_ENG_PFS(p_dev);
1723 for (pf_id = 0; pf_id < num_pfs; pf_id++) {
1724 ecore_fid_pretend(p_hwfn, p_ptt, pf_id);
1725 ecore_wr(p_hwfn, p_ptt, PRS_REG_SEARCH_ROCE, 0x0);
1726 ecore_wr(p_hwfn, p_ptt, PRS_REG_SEARCH_TCP, 0x0);
1727 }
1728 /* pretend to original PF */
1729 ecore_fid_pretend(p_hwfn, p_ptt, p_hwfn->rel_pf_id);
1730 }
1731
1732 /* Workaround for avoiding CCFC execution error when getting packets
1733 * with CRC errors, and allowing instead the invoking of the FW error
1734 * handler.
1735 * This is not done inside the init tool since it currently can't
1736 * perform a pretending to VFs.
1737 */
1738 max_num_vfs = ECORE_IS_AH(p_dev) ? MAX_NUM_VFS_K2 : MAX_NUM_VFS_BB;
1739 for (vf_id = 0; vf_id < max_num_vfs; vf_id++) {
1740 concrete_fid = ecore_vfid_to_concrete(p_hwfn, vf_id);
1741 ecore_fid_pretend(p_hwfn, p_ptt, (u16)concrete_fid);
1742 ecore_wr(p_hwfn, p_ptt, CCFC_REG_STRONG_ENABLE_VF, 0x1);
1743 ecore_wr(p_hwfn, p_ptt, CCFC_REG_WEAK_ENABLE_VF, 0x0);
1744 ecore_wr(p_hwfn, p_ptt, TCFC_REG_STRONG_ENABLE_VF, 0x1);
1745 ecore_wr(p_hwfn, p_ptt, TCFC_REG_WEAK_ENABLE_VF, 0x0);
1746 }
1747 /* pretend to original PF */
1748 ecore_fid_pretend(p_hwfn, p_ptt, p_hwfn->rel_pf_id);
1749
1750 return rc;
1751}
1752
1753#ifndef ASIC_ONLY
1754#define MISC_REG_RESET_REG_2_XMAC_BIT (1<<4)
1755#define MISC_REG_RESET_REG_2_XMAC_SOFT_BIT (1<<5)
1756
1757#define PMEG_IF_BYTE_COUNT 8
1758
1759static void ecore_wr_nw_port(struct ecore_hwfn *p_hwfn,
1760 struct ecore_ptt *p_ptt,
1761 u32 addr,
1762 u64 data,
1763 u8 reg_type,
1764 u8 port)
1765{
1766 DP_VERBOSE(p_hwfn, ECORE_MSG_LINK,
1767 "CMD: %08x, ADDR: 0x%08x, DATA: %08x:%08x\n",
1768 ecore_rd(p_hwfn, p_ptt, CNIG_REG_PMEG_IF_CMD_BB) |
1769 (8 << PMEG_IF_BYTE_COUNT),
1770 (reg_type << 25) | (addr << 8) | port,
1771 (u32)((data >> 32) & 0xffffffff),
1772 (u32)(data & 0xffffffff));
1773
1774 ecore_wr(p_hwfn, p_ptt, CNIG_REG_PMEG_IF_CMD_BB,
1775 (ecore_rd(p_hwfn, p_ptt, CNIG_REG_PMEG_IF_CMD_BB) &
1776 0xffff00fe) |
1777 (8 << PMEG_IF_BYTE_COUNT));
1778 ecore_wr(p_hwfn, p_ptt, CNIG_REG_PMEG_IF_ADDR_BB,
1779 (reg_type << 25) | (addr << 8) | port);
1780 ecore_wr(p_hwfn, p_ptt, CNIG_REG_PMEG_IF_WRDATA_BB, data & 0xffffffff);
1781 ecore_wr(p_hwfn, p_ptt, CNIG_REG_PMEG_IF_WRDATA_BB,
1782 (data >> 32) & 0xffffffff);
1783}
1784
1785#define XLPORT_MODE_REG (0x20a)
1786#define XLPORT_MAC_CONTROL (0x210)
1787#define XLPORT_FLOW_CONTROL_CONFIG (0x207)
1788#define XLPORT_ENABLE_REG (0x20b)
1789
1790#define XLMAC_CTRL (0x600)
1791#define XLMAC_MODE (0x601)
1792#define XLMAC_RX_MAX_SIZE (0x608)
1793#define XLMAC_TX_CTRL (0x604)
1794#define XLMAC_PAUSE_CTRL (0x60d)
1795#define XLMAC_PFC_CTRL (0x60e)
1796
1797static void ecore_emul_link_init_bb(struct ecore_hwfn *p_hwfn,
1798 struct ecore_ptt *p_ptt)
1799{
1800 u8 loopback = 0, port = p_hwfn->port_id * 2;
1801
1802 DP_INFO(p_hwfn->p_dev, "Configurating Emulation Link %02x\n", port);
1803
1804 ecore_wr_nw_port(p_hwfn, p_ptt, XLPORT_MODE_REG,
1805 (0x4 << 4) | 0x4, 1, port); /* XLPORT MAC MODE */ /* 0 Quad, 4 Single... */
1806 ecore_wr_nw_port(p_hwfn, p_ptt, XLPORT_MAC_CONTROL, 0, 1, port);
1807 ecore_wr_nw_port(p_hwfn, p_ptt, XLMAC_CTRL,
1808 0x40, 0, port); /*XLMAC: SOFT RESET */
1809 ecore_wr_nw_port(p_hwfn, p_ptt, XLMAC_MODE,
1810 0x40, 0, port); /*XLMAC: Port Speed >= 10Gbps */
1811 ecore_wr_nw_port(p_hwfn, p_ptt, XLMAC_RX_MAX_SIZE,
1812 0x3fff, 0, port); /* XLMAC: Max Size */
1813 ecore_wr_nw_port(p_hwfn, p_ptt, XLMAC_TX_CTRL,
1814 0x01000000800ULL | (0xa << 12) | ((u64)1 << 38),
1815 0, port);
1816 ecore_wr_nw_port(p_hwfn, p_ptt, XLMAC_PAUSE_CTRL,
1817 0x7c000, 0, port);
1818 ecore_wr_nw_port(p_hwfn, p_ptt, XLMAC_PFC_CTRL,
1819 0x30ffffc000ULL, 0, port);
1820 ecore_wr_nw_port(p_hwfn, p_ptt, XLMAC_CTRL, 0x3 | (loopback << 2),
1821 0, port); /* XLMAC: TX_EN, RX_EN */
1822 ecore_wr_nw_port(p_hwfn, p_ptt, XLMAC_CTRL, 0x1003 | (loopback << 2),
1823 0, port); /* XLMAC: TX_EN, RX_EN, SW_LINK_STATUS */
1824 ecore_wr_nw_port(p_hwfn, p_ptt, XLPORT_FLOW_CONTROL_CONFIG,
1825 1, 0, port); /* Enabled Parallel PFC interface */
1826 ecore_wr_nw_port(p_hwfn, p_ptt, XLPORT_ENABLE_REG,
1827 0xf, 1, port); /* XLPORT port enable */
1828}
1829
1830static void ecore_emul_link_init_ah_e5(struct ecore_hwfn *p_hwfn,
1831 struct ecore_ptt *p_ptt)
1832{
1833 u8 port = p_hwfn->port_id;
1834 u32 mac_base = NWM_REG_MAC0_K2_E5 + (port << 2) * NWM_REG_MAC0_SIZE;
1835
1836 DP_INFO(p_hwfn->p_dev, "Configurating Emulation Link %02x\n", port);
1837
1838 ecore_wr(p_hwfn, p_ptt, CNIG_REG_NIG_PORT0_CONF_K2_E5 + (port << 2),
1839 (1 << CNIG_REG_NIG_PORT0_CONF_NIG_PORT_ENABLE_0_K2_E5_SHIFT) |
1840 (port <<
1841 CNIG_REG_NIG_PORT0_CONF_NIG_PORT_NWM_PORT_MAP_0_K2_E5_SHIFT) |
1842 (0 << CNIG_REG_NIG_PORT0_CONF_NIG_PORT_RATE_0_K2_E5_SHIFT));
1843
1844 ecore_wr(p_hwfn, p_ptt, mac_base + ETH_MAC_REG_XIF_MODE_K2_E5,
1845 1 << ETH_MAC_REG_XIF_MODE_XGMII_K2_E5_SHIFT);
1846
1847 ecore_wr(p_hwfn, p_ptt, mac_base + ETH_MAC_REG_FRM_LENGTH_K2_E5,
1848 9018 << ETH_MAC_REG_FRM_LENGTH_FRM_LENGTH_K2_E5_SHIFT);
1849
1850 ecore_wr(p_hwfn, p_ptt, mac_base + ETH_MAC_REG_TX_IPG_LENGTH_K2_E5,
1851 0xc << ETH_MAC_REG_TX_IPG_LENGTH_TXIPG_K2_E5_SHIFT);
1852
1853 ecore_wr(p_hwfn, p_ptt, mac_base + ETH_MAC_REG_RX_FIFO_SECTIONS_K2_E5,
1854 8 << ETH_MAC_REG_RX_FIFO_SECTIONS_RX_SECTION_FULL_K2_E5_SHIFT);
1855
1856 ecore_wr(p_hwfn, p_ptt, mac_base + ETH_MAC_REG_TX_FIFO_SECTIONS_K2_E5,
1857 (0xA <<
1858 ETH_MAC_REG_TX_FIFO_SECTIONS_TX_SECTION_EMPTY_K2_E5_SHIFT) |
1859 (8 <<
1860 ETH_MAC_REG_TX_FIFO_SECTIONS_TX_SECTION_FULL_K2_E5_SHIFT));
1861
1862 ecore_wr(p_hwfn, p_ptt, mac_base + ETH_MAC_REG_COMMAND_CONFIG_K2_E5,
1863 0xa853);
1864}
1865
1866static void ecore_emul_link_init(struct ecore_hwfn *p_hwfn,
1867 struct ecore_ptt *p_ptt)
1868{
1869 if (ECORE_IS_AH(p_hwfn->p_dev) || ECORE_IS_E5(p_hwfn->p_dev))
1870 ecore_emul_link_init_ah_e5(p_hwfn, p_ptt);
1871 else /* BB */
1872 ecore_emul_link_init_bb(p_hwfn, p_ptt);
1873
1874 return;
1875}
1876
1877static void ecore_link_init_bb(struct ecore_hwfn *p_hwfn,
1878 struct ecore_ptt *p_ptt, u8 port)
1879{
1880 int port_offset = port ? 0x800 : 0;
1881 u32 xmac_rxctrl = 0;
1882
1883 /* Reset of XMAC */
1884 /* FIXME: move to common start */
1885 ecore_wr(p_hwfn, p_ptt, MISC_REG_RESET_PL_PDA_VAUX + 2*sizeof(u32),
1886 MISC_REG_RESET_REG_2_XMAC_BIT); /* Clear */
1887 OSAL_MSLEEP(1);
1888 ecore_wr(p_hwfn, p_ptt, MISC_REG_RESET_PL_PDA_VAUX + sizeof(u32),
1889 MISC_REG_RESET_REG_2_XMAC_BIT); /* Set */
1890
1891 ecore_wr(p_hwfn, p_ptt, MISC_REG_XMAC_CORE_PORT_MODE_BB, 1);
1892
1893 /* Set the number of ports on the Warp Core to 10G */
1894 ecore_wr(p_hwfn, p_ptt, MISC_REG_XMAC_PHY_PORT_MODE_BB, 3);
1895
1896 /* Soft reset of XMAC */
1897 ecore_wr(p_hwfn, p_ptt, MISC_REG_RESET_PL_PDA_VAUX + 2 * sizeof(u32),
1898 MISC_REG_RESET_REG_2_XMAC_SOFT_BIT);
1899 OSAL_MSLEEP(1);
1900 ecore_wr(p_hwfn, p_ptt, MISC_REG_RESET_PL_PDA_VAUX + sizeof(u32),
1901 MISC_REG_RESET_REG_2_XMAC_SOFT_BIT);
1902
1903 /* FIXME: move to common end */
1904 if (CHIP_REV_IS_FPGA(p_hwfn->p_dev))
1905 ecore_wr(p_hwfn, p_ptt, XMAC_REG_MODE_BB + port_offset, 0x20);
1906
1907 /* Set Max packet size: initialize XMAC block register for port 0 */
1908 ecore_wr(p_hwfn, p_ptt, XMAC_REG_RX_MAX_SIZE_BB + port_offset, 0x2710);
1909
1910 /* CRC append for Tx packets: init XMAC block register for port 1 */
1911 ecore_wr(p_hwfn, p_ptt, XMAC_REG_TX_CTRL_LO_BB + port_offset, 0xC800);
1912
1913 /* Enable TX and RX: initialize XMAC block register for port 1 */
1914 ecore_wr(p_hwfn, p_ptt, XMAC_REG_CTRL_BB + port_offset,
1915 XMAC_REG_CTRL_TX_EN_BB | XMAC_REG_CTRL_RX_EN_BB);
1916 xmac_rxctrl = ecore_rd(p_hwfn, p_ptt,
1917 XMAC_REG_RX_CTRL_BB + port_offset);
1918 xmac_rxctrl |= XMAC_REG_RX_CTRL_PROCESS_VARIABLE_PREAMBLE_BB;
1919 ecore_wr(p_hwfn, p_ptt, XMAC_REG_RX_CTRL_BB + port_offset, xmac_rxctrl);
1920}
1921#endif
1922
1923static enum _ecore_status_t
1924ecore_hw_init_dpi_size(struct ecore_hwfn *p_hwfn,
1925 struct ecore_ptt *p_ptt,
1926 u32 pwm_region_size,
1927 u32 n_cpus)
1928{
1929 u32 dpi_page_size_1, dpi_page_size_2, dpi_page_size;
1930 u32 dpi_bit_shift, dpi_count;
1931 u32 min_dpis;
1932
1933 /* Calculate DPI size
1934 * ------------------
1935 * The PWM region contains Doorbell Pages. The first is reserverd for
1936 * the kernel for, e.g, L2. The others are free to be used by non-
1937 * trusted applications, typically from user space. Each page, called a
1938 * doorbell page is sectioned into windows that allow doorbells to be
1939 * issued in parallel by the kernel/application. The size of such a
1940 * window (a.k.a. WID) is 1kB.
1941 * Summary:
1942 * 1kB WID x N WIDS = DPI page size
1943 * DPI page size x N DPIs = PWM region size
1944 * Notes:
1945 * The size of the DPI page size must be in multiples of OSAL_PAGE_SIZE
1946 * in order to ensure that two applications won't share the same page.
1947 * It also must contain at least one WID per CPU to allow parallelism.
1948 * It also must be a power of 2, since it is stored as a bit shift.
1949 *
1950 * The DPI page size is stored in a register as 'dpi_bit_shift' so that
1951 * 0 is 4kB, 1 is 8kB and etc. Hence the minimum size is 4,096
1952 * containing 4 WIDs.
1953 */
1954 dpi_page_size_1 = ECORE_WID_SIZE * n_cpus;
1955 dpi_page_size_2 = OSAL_MAX_T(u32, ECORE_WID_SIZE, OSAL_PAGE_SIZE);
1956 dpi_page_size = OSAL_MAX_T(u32, dpi_page_size_1, dpi_page_size_2);
1659 dpi_page_size = OSAL_ROUNDUP_POW_OF_TWO(dpi_page_size);
1957 dpi_page_size = (dpi_page_size + OSAL_PAGE_SIZE - 1) & ~(OSAL_PAGE_SIZE - 1);
1660 dpi_bit_shift = OSAL_LOG2(dpi_page_size / 4096);
1661
1662 dpi_count = pwm_region_size / dpi_page_size;
1663
1664 min_dpis = p_hwfn->pf_params.rdma_pf_params.min_dpis;
1665 min_dpis = OSAL_MAX_T(u32, ECORE_MIN_DPIS, min_dpis);
1666
1667 /* Update hwfn */
1668 p_hwfn->dpi_size = dpi_page_size;
1669 p_hwfn->dpi_count = dpi_count;
1670
1671 /* Update registers */
1672 ecore_wr(p_hwfn, p_ptt, DORQ_REG_PF_DPI_BIT_SHIFT, dpi_bit_shift);
1673
1674 if (dpi_count < min_dpis)
1675 return ECORE_NORESOURCES;
1676
1677 return ECORE_SUCCESS;
1678}
1679
1680enum ECORE_ROCE_EDPM_MODE {
1681 ECORE_ROCE_EDPM_MODE_ENABLE = 0,
1682 ECORE_ROCE_EDPM_MODE_FORCE_ON = 1,
1683 ECORE_ROCE_EDPM_MODE_DISABLE = 2,
1684};
1685
1686static enum _ecore_status_t
1687ecore_hw_init_pf_doorbell_bar(struct ecore_hwfn *p_hwfn,
1688 struct ecore_ptt *p_ptt)
1689{
1690 u32 pwm_regsize, norm_regsize;
1691 u32 non_pwm_conn, min_addr_reg1;
1692 u32 db_bar_size, n_cpus = 1;
1693 u32 roce_edpm_mode;
1694 u32 pf_dems_shift;
1695 enum _ecore_status_t rc = ECORE_SUCCESS;
1696 u8 cond;
1697
1958 dpi_bit_shift = OSAL_LOG2(dpi_page_size / 4096);
1959
1960 dpi_count = pwm_region_size / dpi_page_size;
1961
1962 min_dpis = p_hwfn->pf_params.rdma_pf_params.min_dpis;
1963 min_dpis = OSAL_MAX_T(u32, ECORE_MIN_DPIS, min_dpis);
1964
1965 /* Update hwfn */
1966 p_hwfn->dpi_size = dpi_page_size;
1967 p_hwfn->dpi_count = dpi_count;
1968
1969 /* Update registers */
1970 ecore_wr(p_hwfn, p_ptt, DORQ_REG_PF_DPI_BIT_SHIFT, dpi_bit_shift);
1971
1972 if (dpi_count < min_dpis)
1973 return ECORE_NORESOURCES;
1974
1975 return ECORE_SUCCESS;
1976}
1977
1978enum ECORE_ROCE_EDPM_MODE {
1979 ECORE_ROCE_EDPM_MODE_ENABLE = 0,
1980 ECORE_ROCE_EDPM_MODE_FORCE_ON = 1,
1981 ECORE_ROCE_EDPM_MODE_DISABLE = 2,
1982};
1983
1984static enum _ecore_status_t
1985ecore_hw_init_pf_doorbell_bar(struct ecore_hwfn *p_hwfn,
1986 struct ecore_ptt *p_ptt)
1987{
1988 u32 pwm_regsize, norm_regsize;
1989 u32 non_pwm_conn, min_addr_reg1;
1990 u32 db_bar_size, n_cpus = 1;
1991 u32 roce_edpm_mode;
1992 u32 pf_dems_shift;
1993 enum _ecore_status_t rc = ECORE_SUCCESS;
1994 u8 cond;
1995
1698 db_bar_size = ecore_hw_bar_size(p_hwfn, BAR_ID_1);
1996 db_bar_size = ecore_hw_bar_size(p_hwfn, p_ptt, BAR_ID_1);
1699 if (p_hwfn->p_dev->num_hwfns > 1)
1700 db_bar_size /= 2;
1701
1702 /* Calculate doorbell regions
1703 * -----------------------------------
1704 * The doorbell BAR is made of two regions. The first is called normal
1705 * region and the second is called PWM region. In the normal region
1706 * each ICID has its own set of addresses so that writing to that
1707 * specific address identifies the ICID. In the Process Window Mode
1708 * region the ICID is given in the data written to the doorbell. The
1709 * above per PF register denotes the offset in the doorbell BAR in which
1710 * the PWM region begins.
1711 * The normal region has ECORE_PF_DEMS_SIZE bytes per ICID, that is per
1712 * non-PWM connection. The calculation below computes the total non-PWM
1713 * connections. The DORQ_REG_PF_MIN_ADDR_REG1 register is
1714 * in units of 4,096 bytes.
1715 */
1716 non_pwm_conn = ecore_cxt_get_proto_cid_start(p_hwfn, PROTOCOLID_CORE) +
1717 ecore_cxt_get_proto_cid_count(p_hwfn, PROTOCOLID_CORE,
1718 OSAL_NULL) +
1719 ecore_cxt_get_proto_cid_count(p_hwfn, PROTOCOLID_ETH,
1720 OSAL_NULL);
1997 if (p_hwfn->p_dev->num_hwfns > 1)
1998 db_bar_size /= 2;
1999
2000 /* Calculate doorbell regions
2001 * -----------------------------------
2002 * The doorbell BAR is made of two regions. The first is called normal
2003 * region and the second is called PWM region. In the normal region
2004 * each ICID has its own set of addresses so that writing to that
2005 * specific address identifies the ICID. In the Process Window Mode
2006 * region the ICID is given in the data written to the doorbell. The
2007 * above per PF register denotes the offset in the doorbell BAR in which
2008 * the PWM region begins.
2009 * The normal region has ECORE_PF_DEMS_SIZE bytes per ICID, that is per
2010 * non-PWM connection. The calculation below computes the total non-PWM
2011 * connections. The DORQ_REG_PF_MIN_ADDR_REG1 register is
2012 * in units of 4,096 bytes.
2013 */
2014 non_pwm_conn = ecore_cxt_get_proto_cid_start(p_hwfn, PROTOCOLID_CORE) +
2015 ecore_cxt_get_proto_cid_count(p_hwfn, PROTOCOLID_CORE,
2016 OSAL_NULL) +
2017 ecore_cxt_get_proto_cid_count(p_hwfn, PROTOCOLID_ETH,
2018 OSAL_NULL);
1721 norm_regsize = ROUNDUP(ECORE_PF_DEMS_SIZE * non_pwm_conn, 4096);
2019 norm_regsize = ROUNDUP(ECORE_PF_DEMS_SIZE * non_pwm_conn, OSAL_PAGE_SIZE);
1722 min_addr_reg1 = norm_regsize / 4096;
1723 pwm_regsize = db_bar_size - norm_regsize;
1724
1725 /* Check that the normal and PWM sizes are valid */
1726 if (db_bar_size < norm_regsize) {
1727 DP_ERR(p_hwfn->p_dev, "Doorbell BAR size 0x%x is too small (normal region is 0x%0x )\n", db_bar_size, norm_regsize);
1728 return ECORE_NORESOURCES;
1729 }
1730 if (pwm_regsize < ECORE_MIN_PWM_REGION) {
1731 DP_ERR(p_hwfn->p_dev, "PWM region size 0x%0x is too small. Should be at least 0x%0x (Doorbell BAR size is 0x%x and normal region size is 0x%0x)\n", pwm_regsize, ECORE_MIN_PWM_REGION, db_bar_size, norm_regsize);
1732 return ECORE_NORESOURCES;
1733 }
1734
1735 /* Calculate number of DPIs */
1736 roce_edpm_mode = p_hwfn->pf_params.rdma_pf_params.roce_edpm_mode;
1737 if ((roce_edpm_mode == ECORE_ROCE_EDPM_MODE_ENABLE) ||
1738 ((roce_edpm_mode == ECORE_ROCE_EDPM_MODE_FORCE_ON))) {
1739 /* Either EDPM is mandatory, or we are attempting to allocate a
1740 * WID per CPU.
1741 */
2020 min_addr_reg1 = norm_regsize / 4096;
2021 pwm_regsize = db_bar_size - norm_regsize;
2022
2023 /* Check that the normal and PWM sizes are valid */
2024 if (db_bar_size < norm_regsize) {
2025 DP_ERR(p_hwfn->p_dev, "Doorbell BAR size 0x%x is too small (normal region is 0x%0x )\n", db_bar_size, norm_regsize);
2026 return ECORE_NORESOURCES;
2027 }
2028 if (pwm_regsize < ECORE_MIN_PWM_REGION) {
2029 DP_ERR(p_hwfn->p_dev, "PWM region size 0x%0x is too small. Should be at least 0x%0x (Doorbell BAR size is 0x%x and normal region size is 0x%0x)\n", pwm_regsize, ECORE_MIN_PWM_REGION, db_bar_size, norm_regsize);
2030 return ECORE_NORESOURCES;
2031 }
2032
2033 /* Calculate number of DPIs */
2034 roce_edpm_mode = p_hwfn->pf_params.rdma_pf_params.roce_edpm_mode;
2035 if ((roce_edpm_mode == ECORE_ROCE_EDPM_MODE_ENABLE) ||
2036 ((roce_edpm_mode == ECORE_ROCE_EDPM_MODE_FORCE_ON))) {
2037 /* Either EDPM is mandatory, or we are attempting to allocate a
2038 * WID per CPU.
2039 */
1742 n_cpus = OSAL_NUM_ACTIVE_CPU();
2040 n_cpus = OSAL_NUM_CPUS();
1743 rc = ecore_hw_init_dpi_size(p_hwfn, p_ptt, pwm_regsize, n_cpus);
1744 }
1745
1746 cond = ((rc != ECORE_SUCCESS) &&
1747 (roce_edpm_mode == ECORE_ROCE_EDPM_MODE_ENABLE)) ||
1748 (roce_edpm_mode == ECORE_ROCE_EDPM_MODE_DISABLE);
1749 if (cond || p_hwfn->dcbx_no_edpm) {
1750 /* Either EDPM is disabled from user configuration, or it is
1751 * disabled via DCBx, or it is not mandatory and we failed to
1752 * allocated a WID per CPU.
1753 */
1754 n_cpus = 1;
1755 rc = ecore_hw_init_dpi_size(p_hwfn, p_ptt, pwm_regsize, n_cpus);
1756
1757#ifdef CONFIG_ECORE_ROCE
1758 /* If we entered this flow due to DCBX then the DPM register is
1759 * already configured.
1760 */
1761 if (cond)
1762 ecore_rdma_dpm_bar(p_hwfn, p_ptt);
1763#endif
1764 }
1765
1766 p_hwfn->wid_count = (u16)n_cpus;
1767
1768 DP_INFO(p_hwfn, "doorbell bar: normal_region_size=%d, pwm_region_size=%d, dpi_size=%d, dpi_count=%d, roce_edpm=%s\n",
1769 norm_regsize, pwm_regsize, p_hwfn->dpi_size, p_hwfn->dpi_count,
1770 ((p_hwfn->dcbx_no_edpm) || (p_hwfn->db_bar_no_edpm)) ?
1771 "disabled" : "enabled");
1772
1773 /* Check return codes from above calls */
1774 if (rc != ECORE_SUCCESS) {
2041 rc = ecore_hw_init_dpi_size(p_hwfn, p_ptt, pwm_regsize, n_cpus);
2042 }
2043
2044 cond = ((rc != ECORE_SUCCESS) &&
2045 (roce_edpm_mode == ECORE_ROCE_EDPM_MODE_ENABLE)) ||
2046 (roce_edpm_mode == ECORE_ROCE_EDPM_MODE_DISABLE);
2047 if (cond || p_hwfn->dcbx_no_edpm) {
2048 /* Either EDPM is disabled from user configuration, or it is
2049 * disabled via DCBx, or it is not mandatory and we failed to
2050 * allocated a WID per CPU.
2051 */
2052 n_cpus = 1;
2053 rc = ecore_hw_init_dpi_size(p_hwfn, p_ptt, pwm_regsize, n_cpus);
2054
2055#ifdef CONFIG_ECORE_ROCE
2056 /* If we entered this flow due to DCBX then the DPM register is
2057 * already configured.
2058 */
2059 if (cond)
2060 ecore_rdma_dpm_bar(p_hwfn, p_ptt);
2061#endif
2062 }
2063
2064 p_hwfn->wid_count = (u16)n_cpus;
2065
2066 DP_INFO(p_hwfn, "doorbell bar: normal_region_size=%d, pwm_region_size=%d, dpi_size=%d, dpi_count=%d, roce_edpm=%s\n",
2067 norm_regsize, pwm_regsize, p_hwfn->dpi_size, p_hwfn->dpi_count,
2068 ((p_hwfn->dcbx_no_edpm) || (p_hwfn->db_bar_no_edpm)) ?
2069 "disabled" : "enabled");
2070
2071 /* Check return codes from above calls */
2072 if (rc != ECORE_SUCCESS) {
2073#ifndef LINUX_REMOVE
1775 DP_ERR(p_hwfn,
1776 "Failed to allocate enough DPIs. Allocated %d but the current minimum is %d. You can try reducing this down to %d via user configuration n_dpi or by disabling EDPM via user configuration roce_edpm\n",
1777 p_hwfn->dpi_count,
1778 p_hwfn->pf_params.rdma_pf_params.min_dpis,
1779 ECORE_MIN_DPIS);
2074 DP_ERR(p_hwfn,
2075 "Failed to allocate enough DPIs. Allocated %d but the current minimum is %d. You can try reducing this down to %d via user configuration n_dpi or by disabling EDPM via user configuration roce_edpm\n",
2076 p_hwfn->dpi_count,
2077 p_hwfn->pf_params.rdma_pf_params.min_dpis,
2078 ECORE_MIN_DPIS);
2079#else
2080 DP_ERR(p_hwfn,
2081 "Failed to allocate enough DPIs. Allocated %d but the current minimum is %d. You can try reducing this down to %d via the module parameter min_roce_dpis or by disabling EDPM via the module parameter roce_edpm\n",
2082 p_hwfn->dpi_count,
2083 p_hwfn->pf_params.rdma_pf_params.min_dpis,
2084 ECORE_MIN_DPIS);
2085#endif
1780 return ECORE_NORESOURCES;
1781 }
1782
1783 /* Update hwfn */
1784 p_hwfn->dpi_start_offset = norm_regsize; /* this is later used to
1785 * calculate the doorbell
1786 * address
1787 */
1788
1789 /* Update registers */
1790 /* DEMS size is configured log2 of DWORDs, hence the division by 4 */
1791 pf_dems_shift = OSAL_LOG2(ECORE_PF_DEMS_SIZE / 4);
1792 ecore_wr(p_hwfn, p_ptt, DORQ_REG_PF_ICID_BIT_SHIFT_NORM, pf_dems_shift);
1793 ecore_wr(p_hwfn, p_ptt, DORQ_REG_PF_MIN_ADDR_REG1, min_addr_reg1);
1794
1795 return ECORE_SUCCESS;
1796}
1797
1798static enum _ecore_status_t ecore_hw_init_port(struct ecore_hwfn *p_hwfn,
1799 struct ecore_ptt *p_ptt,
1800 int hw_mode)
1801{
1802 enum _ecore_status_t rc = ECORE_SUCCESS;
1803
1804 rc = ecore_init_run(p_hwfn, p_ptt, PHASE_PORT, p_hwfn->port_id,
1805 hw_mode);
1806 if (rc != ECORE_SUCCESS)
1807 return rc;
2086 return ECORE_NORESOURCES;
2087 }
2088
2089 /* Update hwfn */
2090 p_hwfn->dpi_start_offset = norm_regsize; /* this is later used to
2091 * calculate the doorbell
2092 * address
2093 */
2094
2095 /* Update registers */
2096 /* DEMS size is configured log2 of DWORDs, hence the division by 4 */
2097 pf_dems_shift = OSAL_LOG2(ECORE_PF_DEMS_SIZE / 4);
2098 ecore_wr(p_hwfn, p_ptt, DORQ_REG_PF_ICID_BIT_SHIFT_NORM, pf_dems_shift);
2099 ecore_wr(p_hwfn, p_ptt, DORQ_REG_PF_MIN_ADDR_REG1, min_addr_reg1);
2100
2101 return ECORE_SUCCESS;
2102}
2103
2104static enum _ecore_status_t ecore_hw_init_port(struct ecore_hwfn *p_hwfn,
2105 struct ecore_ptt *p_ptt,
2106 int hw_mode)
2107{
2108 enum _ecore_status_t rc = ECORE_SUCCESS;
2109
2110 rc = ecore_init_run(p_hwfn, p_ptt, PHASE_PORT, p_hwfn->port_id,
2111 hw_mode);
2112 if (rc != ECORE_SUCCESS)
2113 return rc;
2114
2115 ecore_wr(p_hwfn, p_ptt, PGLUE_B_REG_MASTER_WRITE_PAD_ENABLE, 0);
2116
1808#if 0
1809 /* FW 8.10.5.0 requires us to configure PF_VECTOR and DUALMODE in LLH.
1810 * This would hopefully be moved to MFW.
1811 */
1812 if (IS_MF_DEFAULT(p_hwfn) || IS_MF_SI(p_hwfn)) {
1813 u8 pf_id = 0;
1814
1815 if (ecore_hw_init_first_eth(p_hwfn, p_ptt, &pf_id) ==
1816 ECORE_SUCCESS) {
1817 DP_VERBOSE(p_hwfn, ECORE_MSG_IFUP,
1818 "PF[%08x] is first eth on engine\n",
1819 pf_id);
1820
1821 /* We should have configured BIT for ppfid, i.e., the
1822 * relative function number in the port. But there's a
1823 * bug in LLH in BB where the ppfid is actually engine
1824 * based, so we need to take this into account.
1825 */
1826 if (!ECORE_IS_BB(p_hwfn->p_dev))
2117#if 0
2118 /* FW 8.10.5.0 requires us to configure PF_VECTOR and DUALMODE in LLH.
2119 * This would hopefully be moved to MFW.
2120 */
2121 if (IS_MF_DEFAULT(p_hwfn) || IS_MF_SI(p_hwfn)) {
2122 u8 pf_id = 0;
2123
2124 if (ecore_hw_init_first_eth(p_hwfn, p_ptt, &pf_id) ==
2125 ECORE_SUCCESS) {
2126 DP_VERBOSE(p_hwfn, ECORE_MSG_IFUP,
2127 "PF[%08x] is first eth on engine\n",
2128 pf_id);
2129
2130 /* We should have configured BIT for ppfid, i.e., the
2131 * relative function number in the port. But there's a
2132 * bug in LLH in BB where the ppfid is actually engine
2133 * based, so we need to take this into account.
2134 */
2135 if (!ECORE_IS_BB(p_hwfn->p_dev))
1827 pf_id /= p_hwfn->p_dev->num_ports_in_engines;
2136 pf_id /= p_hwfn->p_dev->num_ports_in_engine;
1828
1829 ecore_wr(p_hwfn, p_ptt,
1830 NIG_REG_LLH_TAGMAC_DEF_PF_VECTOR, 1 << pf_id);
1831 }
1832
1833 /* Take the protocol-based hit vector if there is a hit,
1834 * otherwise take the other vector.
1835 */
1836 ecore_wr(p_hwfn, p_ptt, NIG_REG_LLH_CLS_TYPE_DUALMODE, 0x2);
1837 }
1838#endif
1839#ifndef ASIC_ONLY
1840 if (CHIP_REV_IS_ASIC(p_hwfn->p_dev))
1841 return ECORE_SUCCESS;
1842
1843 if (CHIP_REV_IS_FPGA(p_hwfn->p_dev)) {
1844 if (ECORE_IS_AH(p_hwfn->p_dev))
1845 return ECORE_SUCCESS;
1846 else if (ECORE_IS_BB(p_hwfn->p_dev))
1847 ecore_link_init_bb(p_hwfn, p_ptt, p_hwfn->port_id);
1848 else /* E5 */
1849 ECORE_E5_MISSING_CODE;
1850 } else if (CHIP_REV_IS_EMUL(p_hwfn->p_dev)) {
1851 if (p_hwfn->p_dev->num_hwfns > 1) {
1852 /* Activate OPTE in CMT */
1853 u32 val;
1854
1855 val = ecore_rd(p_hwfn, p_ptt, MISCS_REG_RESET_PL_HV);
1856 val |= 0x10;
1857 ecore_wr(p_hwfn, p_ptt, MISCS_REG_RESET_PL_HV, val);
1858 ecore_wr(p_hwfn, p_ptt, MISC_REG_CLK_100G_MODE, 1);
1859 ecore_wr(p_hwfn, p_ptt, MISCS_REG_CLK_100G_MODE, 1);
1860 ecore_wr(p_hwfn, p_ptt, MISC_REG_OPTE_MODE, 1);
1861 ecore_wr(p_hwfn, p_ptt,
1862 NIG_REG_LLH_ENG_CLS_TCP_4_TUPLE_SEARCH, 1);
1863 ecore_wr(p_hwfn, p_ptt,
1864 NIG_REG_LLH_ENG_CLS_ENG_ID_TBL, 0x55555555);
1865 ecore_wr(p_hwfn, p_ptt,
1866 NIG_REG_LLH_ENG_CLS_ENG_ID_TBL + 0x4,
1867 0x55555555);
1868 }
1869
1870 ecore_emul_link_init(p_hwfn, p_ptt);
1871 } else {
1872 DP_INFO(p_hwfn->p_dev, "link is not being configured\n");
1873 }
1874#endif
1875
1876 return rc;
1877}
1878
1879static enum _ecore_status_t ecore_hw_init_pf(struct ecore_hwfn *p_hwfn,
1880 struct ecore_ptt *p_ptt,
1881 struct ecore_tunnel_info *p_tunn,
1882 int hw_mode,
1883 bool b_hw_start,
1884 enum ecore_int_mode int_mode,
1885 bool allow_npar_tx_switch)
1886{
1887 u8 rel_pf_id = p_hwfn->rel_pf_id;
1888 u32 prs_reg;
1889 enum _ecore_status_t rc = ECORE_SUCCESS;
1890 u16 ctrl;
1891 int pos;
1892
1893 if (p_hwfn->mcp_info) {
1894 struct ecore_mcp_function_info *p_info;
1895
1896 p_info = &p_hwfn->mcp_info->func_info;
1897 if (p_info->bandwidth_min)
1898 p_hwfn->qm_info.pf_wfq = p_info->bandwidth_min;
1899
1900 /* Update rate limit once we'll actually have a link */
1901 p_hwfn->qm_info.pf_rl = 100000;
1902 }
2137
2138 ecore_wr(p_hwfn, p_ptt,
2139 NIG_REG_LLH_TAGMAC_DEF_PF_VECTOR, 1 << pf_id);
2140 }
2141
2142 /* Take the protocol-based hit vector if there is a hit,
2143 * otherwise take the other vector.
2144 */
2145 ecore_wr(p_hwfn, p_ptt, NIG_REG_LLH_CLS_TYPE_DUALMODE, 0x2);
2146 }
2147#endif
2148#ifndef ASIC_ONLY
2149 if (CHIP_REV_IS_ASIC(p_hwfn->p_dev))
2150 return ECORE_SUCCESS;
2151
2152 if (CHIP_REV_IS_FPGA(p_hwfn->p_dev)) {
2153 if (ECORE_IS_AH(p_hwfn->p_dev))
2154 return ECORE_SUCCESS;
2155 else if (ECORE_IS_BB(p_hwfn->p_dev))
2156 ecore_link_init_bb(p_hwfn, p_ptt, p_hwfn->port_id);
2157 else /* E5 */
2158 ECORE_E5_MISSING_CODE;
2159 } else if (CHIP_REV_IS_EMUL(p_hwfn->p_dev)) {
2160 if (p_hwfn->p_dev->num_hwfns > 1) {
2161 /* Activate OPTE in CMT */
2162 u32 val;
2163
2164 val = ecore_rd(p_hwfn, p_ptt, MISCS_REG_RESET_PL_HV);
2165 val |= 0x10;
2166 ecore_wr(p_hwfn, p_ptt, MISCS_REG_RESET_PL_HV, val);
2167 ecore_wr(p_hwfn, p_ptt, MISC_REG_CLK_100G_MODE, 1);
2168 ecore_wr(p_hwfn, p_ptt, MISCS_REG_CLK_100G_MODE, 1);
2169 ecore_wr(p_hwfn, p_ptt, MISC_REG_OPTE_MODE, 1);
2170 ecore_wr(p_hwfn, p_ptt,
2171 NIG_REG_LLH_ENG_CLS_TCP_4_TUPLE_SEARCH, 1);
2172 ecore_wr(p_hwfn, p_ptt,
2173 NIG_REG_LLH_ENG_CLS_ENG_ID_TBL, 0x55555555);
2174 ecore_wr(p_hwfn, p_ptt,
2175 NIG_REG_LLH_ENG_CLS_ENG_ID_TBL + 0x4,
2176 0x55555555);
2177 }
2178
2179 ecore_emul_link_init(p_hwfn, p_ptt);
2180 } else {
2181 DP_INFO(p_hwfn->p_dev, "link is not being configured\n");
2182 }
2183#endif
2184
2185 return rc;
2186}
2187
2188static enum _ecore_status_t ecore_hw_init_pf(struct ecore_hwfn *p_hwfn,
2189 struct ecore_ptt *p_ptt,
2190 struct ecore_tunnel_info *p_tunn,
2191 int hw_mode,
2192 bool b_hw_start,
2193 enum ecore_int_mode int_mode,
2194 bool allow_npar_tx_switch)
2195{
2196 u8 rel_pf_id = p_hwfn->rel_pf_id;
2197 u32 prs_reg;
2198 enum _ecore_status_t rc = ECORE_SUCCESS;
2199 u16 ctrl;
2200 int pos;
2201
2202 if (p_hwfn->mcp_info) {
2203 struct ecore_mcp_function_info *p_info;
2204
2205 p_info = &p_hwfn->mcp_info->func_info;
2206 if (p_info->bandwidth_min)
2207 p_hwfn->qm_info.pf_wfq = p_info->bandwidth_min;
2208
2209 /* Update rate limit once we'll actually have a link */
2210 p_hwfn->qm_info.pf_rl = 100000;
2211 }
1903 ecore_cxt_hw_init_pf(p_hwfn);
2212 ecore_cxt_hw_init_pf(p_hwfn, p_ptt);
1904
1905 ecore_int_igu_init_rt(p_hwfn);
1906
1907 /* Set VLAN in NIG if needed */
1908 if (hw_mode & (1 << MODE_MF_SD)) {
1909 DP_VERBOSE(p_hwfn, ECORE_MSG_HW, "Configuring LLH_FUNC_TAG\n");
1910 STORE_RT_REG(p_hwfn, NIG_REG_LLH_FUNC_TAG_EN_RT_OFFSET, 1);
1911 STORE_RT_REG(p_hwfn, NIG_REG_LLH_FUNC_TAG_VALUE_RT_OFFSET,
1912 p_hwfn->hw_info.ovlan);
1913 }
1914
1915 /* Enable classification by MAC if needed */
1916 if (hw_mode & (1 << MODE_MF_SI)) {
1917 DP_VERBOSE(p_hwfn, ECORE_MSG_HW, "Configuring TAGMAC_CLS_TYPE\n");
1918 STORE_RT_REG(p_hwfn,
1919 NIG_REG_LLH_FUNC_TAGMAC_CLS_TYPE_RT_OFFSET, 1);
1920 }
1921
1922 /* Protocl Configuration - @@@TBD - should we set 0 otherwise?*/
1923 STORE_RT_REG(p_hwfn, PRS_REG_SEARCH_TCP_RT_OFFSET,
1924 (p_hwfn->hw_info.personality == ECORE_PCI_ISCSI) ? 1 : 0);
1925 STORE_RT_REG(p_hwfn, PRS_REG_SEARCH_FCOE_RT_OFFSET,
1926 (p_hwfn->hw_info.personality == ECORE_PCI_FCOE) ? 1 : 0);
1927 STORE_RT_REG(p_hwfn, PRS_REG_SEARCH_ROCE_RT_OFFSET, 0);
1928
1929 /* perform debug configuration when chip is out of reset */
1930 OSAL_BEFORE_PF_START((void *)p_hwfn->p_dev, p_hwfn->my_id);
1931
1932 /* Cleanup chip from previous driver if such remains exist */
1933 rc = ecore_final_cleanup(p_hwfn, p_ptt, rel_pf_id, false);
1934 if (rc != ECORE_SUCCESS) {
1935 ecore_hw_err_notify(p_hwfn, ECORE_HW_ERR_RAMROD_FAIL);
1936 return rc;
1937 }
1938
1939 /* PF Init sequence */
1940 rc = ecore_init_run(p_hwfn, p_ptt, PHASE_PF, rel_pf_id, hw_mode);
1941 if (rc)
1942 return rc;
1943
1944 /* QM_PF Init sequence (may be invoked separately e.g. for DCB) */
1945 rc = ecore_init_run(p_hwfn, p_ptt, PHASE_QM_PF, rel_pf_id, hw_mode);
1946 if (rc)
1947 return rc;
1948
1949 /* Pure runtime initializations - directly to the HW */
1950 ecore_int_igu_init_pure_rt(p_hwfn, p_ptt, true, true);
1951
1952 /* PCI relaxed ordering causes a decrease in the performance on some
1953 * systems. Till a root cause is found, disable this attribute in the
1954 * PCI config space.
1955 */
1956 pos = OSAL_PCI_FIND_CAPABILITY(p_hwfn->p_dev, PCI_CAP_ID_EXP);
1957 if (!pos) {
1958 DP_NOTICE(p_hwfn, true,
1959 "Failed to find the PCI Express Capability structure in the PCI config space\n");
1960 return ECORE_IO;
1961 }
1962 OSAL_PCI_READ_CONFIG_WORD(p_hwfn->p_dev, pos + PCI_EXP_DEVCTL, &ctrl);
1963 ctrl &= ~PCI_EXP_DEVCTL_RELAX_EN;
1964 OSAL_PCI_WRITE_CONFIG_WORD(p_hwfn->p_dev, pos + PCI_EXP_DEVCTL, ctrl);
1965
1966 rc = ecore_hw_init_pf_doorbell_bar(p_hwfn, p_ptt);
1967 if (rc)
1968 return rc;
1969#if 0
1970 /* FW 8.10.5.0 requires us to configure MSG_INFO in PRS.
1971 * This would hopefully be moved to MFW.
1972 */
1973 if (IS_MF_SI(p_hwfn)) {
1974 u8 pf_id = 0;
1975 u32 val;
1976
1977 if (ecore_hw_init_first_eth(p_hwfn, p_ptt, &pf_id) ==
1978 ECORE_SUCCESS) {
1979 if (p_hwfn->rel_pf_id == pf_id) {
1980 DP_VERBOSE(p_hwfn, ECORE_MSG_IFUP,
1981 "PF[%d] is first ETH on engine\n",
1982 pf_id);
1983 val = 1;
1984 }
1985 ecore_wr(p_hwfn, p_ptt, PRS_REG_MSG_INFO, val);
1986 }
1987 }
1988#endif
2213
2214 ecore_int_igu_init_rt(p_hwfn);
2215
2216 /* Set VLAN in NIG if needed */
2217 if (hw_mode & (1 << MODE_MF_SD)) {
2218 DP_VERBOSE(p_hwfn, ECORE_MSG_HW, "Configuring LLH_FUNC_TAG\n");
2219 STORE_RT_REG(p_hwfn, NIG_REG_LLH_FUNC_TAG_EN_RT_OFFSET, 1);
2220 STORE_RT_REG(p_hwfn, NIG_REG_LLH_FUNC_TAG_VALUE_RT_OFFSET,
2221 p_hwfn->hw_info.ovlan);
2222 }
2223
2224 /* Enable classification by MAC if needed */
2225 if (hw_mode & (1 << MODE_MF_SI)) {
2226 DP_VERBOSE(p_hwfn, ECORE_MSG_HW, "Configuring TAGMAC_CLS_TYPE\n");
2227 STORE_RT_REG(p_hwfn,
2228 NIG_REG_LLH_FUNC_TAGMAC_CLS_TYPE_RT_OFFSET, 1);
2229 }
2230
2231 /* Protocl Configuration - @@@TBD - should we set 0 otherwise?*/
2232 STORE_RT_REG(p_hwfn, PRS_REG_SEARCH_TCP_RT_OFFSET,
2233 (p_hwfn->hw_info.personality == ECORE_PCI_ISCSI) ? 1 : 0);
2234 STORE_RT_REG(p_hwfn, PRS_REG_SEARCH_FCOE_RT_OFFSET,
2235 (p_hwfn->hw_info.personality == ECORE_PCI_FCOE) ? 1 : 0);
2236 STORE_RT_REG(p_hwfn, PRS_REG_SEARCH_ROCE_RT_OFFSET, 0);
2237
2238 /* perform debug configuration when chip is out of reset */
2239 OSAL_BEFORE_PF_START((void *)p_hwfn->p_dev, p_hwfn->my_id);
2240
2241 /* Cleanup chip from previous driver if such remains exist */
2242 rc = ecore_final_cleanup(p_hwfn, p_ptt, rel_pf_id, false);
2243 if (rc != ECORE_SUCCESS) {
2244 ecore_hw_err_notify(p_hwfn, ECORE_HW_ERR_RAMROD_FAIL);
2245 return rc;
2246 }
2247
2248 /* PF Init sequence */
2249 rc = ecore_init_run(p_hwfn, p_ptt, PHASE_PF, rel_pf_id, hw_mode);
2250 if (rc)
2251 return rc;
2252
2253 /* QM_PF Init sequence (may be invoked separately e.g. for DCB) */
2254 rc = ecore_init_run(p_hwfn, p_ptt, PHASE_QM_PF, rel_pf_id, hw_mode);
2255 if (rc)
2256 return rc;
2257
2258 /* Pure runtime initializations - directly to the HW */
2259 ecore_int_igu_init_pure_rt(p_hwfn, p_ptt, true, true);
2260
2261 /* PCI relaxed ordering causes a decrease in the performance on some
2262 * systems. Till a root cause is found, disable this attribute in the
2263 * PCI config space.
2264 */
2265 pos = OSAL_PCI_FIND_CAPABILITY(p_hwfn->p_dev, PCI_CAP_ID_EXP);
2266 if (!pos) {
2267 DP_NOTICE(p_hwfn, true,
2268 "Failed to find the PCI Express Capability structure in the PCI config space\n");
2269 return ECORE_IO;
2270 }
2271 OSAL_PCI_READ_CONFIG_WORD(p_hwfn->p_dev, pos + PCI_EXP_DEVCTL, &ctrl);
2272 ctrl &= ~PCI_EXP_DEVCTL_RELAX_EN;
2273 OSAL_PCI_WRITE_CONFIG_WORD(p_hwfn->p_dev, pos + PCI_EXP_DEVCTL, ctrl);
2274
2275 rc = ecore_hw_init_pf_doorbell_bar(p_hwfn, p_ptt);
2276 if (rc)
2277 return rc;
2278#if 0
2279 /* FW 8.10.5.0 requires us to configure MSG_INFO in PRS.
2280 * This would hopefully be moved to MFW.
2281 */
2282 if (IS_MF_SI(p_hwfn)) {
2283 u8 pf_id = 0;
2284 u32 val;
2285
2286 if (ecore_hw_init_first_eth(p_hwfn, p_ptt, &pf_id) ==
2287 ECORE_SUCCESS) {
2288 if (p_hwfn->rel_pf_id == pf_id) {
2289 DP_VERBOSE(p_hwfn, ECORE_MSG_IFUP,
2290 "PF[%d] is first ETH on engine\n",
2291 pf_id);
2292 val = 1;
2293 }
2294 ecore_wr(p_hwfn, p_ptt, PRS_REG_MSG_INFO, val);
2295 }
2296 }
2297#endif
1989 /* Add an LLH filter with the primary MAC address. */
2298 /* No default PF is configured in 100G NPAR mode, so need add an LLH
2299 * filter with the primary MAC address.
2300 */
1990 if (p_hwfn->p_dev->num_hwfns > 1 && IS_LEAD_HWFN(p_hwfn)) {
1991 rc = ecore_llh_add_mac_filter(p_hwfn, p_ptt,
1992 p_hwfn->hw_info.hw_mac_addr);
1993 if (rc != ECORE_SUCCESS)
1994 DP_NOTICE(p_hwfn, false,
2301 if (p_hwfn->p_dev->num_hwfns > 1 && IS_LEAD_HWFN(p_hwfn)) {
2302 rc = ecore_llh_add_mac_filter(p_hwfn, p_ptt,
2303 p_hwfn->hw_info.hw_mac_addr);
2304 if (rc != ECORE_SUCCESS)
2305 DP_NOTICE(p_hwfn, false,
1995 "Failed to add an LLH filter with the primary MAC\n");
2306 "Failed to add an LLH filter with the primary MAC in 100 NPAR mode\n");
1996 }
1997
1998 if (b_hw_start) {
1999 /* enable interrupts */
2000 rc = ecore_int_igu_enable(p_hwfn, p_ptt, int_mode);
2001 if (rc != ECORE_SUCCESS)
2002 return rc;
2003
2004 /* send function start command */
2307 }
2308
2309 if (b_hw_start) {
2310 /* enable interrupts */
2311 rc = ecore_int_igu_enable(p_hwfn, p_ptt, int_mode);
2312 if (rc != ECORE_SUCCESS)
2313 return rc;
2314
2315 /* send function start command */
2005 rc = ecore_sp_pf_start(p_hwfn, p_tunn, p_hwfn->p_dev->mf_mode,
2316 rc = ecore_sp_pf_start(p_hwfn, p_ptt, p_tunn,
2317 p_hwfn->p_dev->mf_mode,
2006 allow_npar_tx_switch);
2007 if (rc) {
2008 DP_NOTICE(p_hwfn, true, "Function start ramrod failed\n");
2009 } else {
2010 prs_reg = ecore_rd(p_hwfn, p_ptt, PRS_REG_SEARCH_TAG1);
2011 DP_VERBOSE(p_hwfn, ECORE_MSG_STORAGE,
2012 "PRS_REG_SEARCH_TAG1: %x\n", prs_reg);
2013
2014 if (p_hwfn->hw_info.personality == ECORE_PCI_FCOE)
2015 {
2016 ecore_wr(p_hwfn, p_ptt, PRS_REG_SEARCH_TAG1,
2017 (1 << 2));
2018 ecore_wr(p_hwfn, p_ptt,
2019 PRS_REG_PKT_LEN_STAT_TAGS_NOT_COUNTED_FIRST,
2020 0x100);
2021 }
2022 DP_VERBOSE(p_hwfn, ECORE_MSG_STORAGE,
2023 "PRS_REG_SEARCH registers after start PFn\n");
2024 prs_reg = ecore_rd(p_hwfn, p_ptt, PRS_REG_SEARCH_TCP);
2025 DP_VERBOSE(p_hwfn, ECORE_MSG_STORAGE,
2026 "PRS_REG_SEARCH_TCP: %x\n", prs_reg);
2027 prs_reg = ecore_rd(p_hwfn, p_ptt, PRS_REG_SEARCH_UDP);
2028 DP_VERBOSE(p_hwfn, ECORE_MSG_STORAGE,
2029 "PRS_REG_SEARCH_UDP: %x\n", prs_reg);
2030 prs_reg = ecore_rd(p_hwfn, p_ptt, PRS_REG_SEARCH_FCOE);
2031 DP_VERBOSE(p_hwfn, ECORE_MSG_STORAGE,
2032 "PRS_REG_SEARCH_FCOE: %x\n", prs_reg);
2033 prs_reg = ecore_rd(p_hwfn, p_ptt, PRS_REG_SEARCH_ROCE);
2034 DP_VERBOSE(p_hwfn, ECORE_MSG_STORAGE,
2035 "PRS_REG_SEARCH_ROCE: %x\n", prs_reg);
2036 prs_reg = ecore_rd(p_hwfn, p_ptt,
2037 PRS_REG_SEARCH_TCP_FIRST_FRAG);
2038 DP_VERBOSE(p_hwfn, ECORE_MSG_STORAGE,
2039 "PRS_REG_SEARCH_TCP_FIRST_FRAG: %x\n",
2040 prs_reg);
2041 prs_reg = ecore_rd(p_hwfn, p_ptt, PRS_REG_SEARCH_TAG1);
2042 DP_VERBOSE(p_hwfn, ECORE_MSG_STORAGE,
2043 "PRS_REG_SEARCH_TAG1: %x\n", prs_reg);
2044 }
2045 }
2046 return rc;
2047}
2048
2049enum _ecore_status_t ecore_change_pci_hwfn(struct ecore_hwfn *p_hwfn,
2050 struct ecore_ptt *p_ptt,
2051 u8 enable)
2052{
2053 u32 delay_idx = 0, val, set_val = enable ? 1 : 0;
2054
2055 /* Change PF in PXP */
2056 ecore_wr(p_hwfn, p_ptt,
2057 PGLUE_B_REG_INTERNAL_PFID_ENABLE_MASTER, set_val);
2058
2059 /* wait until value is set - try for 1 second every 50us */
2060 for (delay_idx = 0; delay_idx < 20000; delay_idx++) {
2061 val = ecore_rd(p_hwfn, p_ptt,
2062 PGLUE_B_REG_INTERNAL_PFID_ENABLE_MASTER);
2063 if (val == set_val)
2064 break;
2065
2066 OSAL_UDELAY(50);
2067 }
2068
2069 if (val != set_val) {
2070 DP_NOTICE(p_hwfn, true,
2071 "PFID_ENABLE_MASTER wasn't changed after a second\n");
2072 return ECORE_UNKNOWN_ERROR;
2073 }
2074
2075 return ECORE_SUCCESS;
2076}
2077
2078static void ecore_reset_mb_shadow(struct ecore_hwfn *p_hwfn,
2079 struct ecore_ptt *p_main_ptt)
2080{
2081 /* Read shadow of current MFW mailbox */
2082 ecore_mcp_read_mb(p_hwfn, p_main_ptt);
2083 OSAL_MEMCPY(p_hwfn->mcp_info->mfw_mb_shadow,
2084 p_hwfn->mcp_info->mfw_mb_cur,
2085 p_hwfn->mcp_info->mfw_mb_length);
2086}
2087
2088static enum _ecore_status_t ecore_vf_start(struct ecore_hwfn *p_hwfn,
2089 struct ecore_hw_init_params *p_params)
2090{
2091 if (p_params->p_tunn) {
2092 ecore_vf_set_vf_start_tunn_update_param(p_params->p_tunn);
2093 ecore_vf_pf_tunnel_param_update(p_hwfn, p_params->p_tunn);
2094 }
2095
2096 p_hwfn->b_int_enabled = 1;
2097
2098 return ECORE_SUCCESS;
2099}
2100
2101static void
2102ecore_fill_load_req_params(struct ecore_load_req_params *p_load_req,
2103 struct ecore_drv_load_params *p_drv_load)
2104{
2318 allow_npar_tx_switch);
2319 if (rc) {
2320 DP_NOTICE(p_hwfn, true, "Function start ramrod failed\n");
2321 } else {
2322 prs_reg = ecore_rd(p_hwfn, p_ptt, PRS_REG_SEARCH_TAG1);
2323 DP_VERBOSE(p_hwfn, ECORE_MSG_STORAGE,
2324 "PRS_REG_SEARCH_TAG1: %x\n", prs_reg);
2325
2326 if (p_hwfn->hw_info.personality == ECORE_PCI_FCOE)
2327 {
2328 ecore_wr(p_hwfn, p_ptt, PRS_REG_SEARCH_TAG1,
2329 (1 << 2));
2330 ecore_wr(p_hwfn, p_ptt,
2331 PRS_REG_PKT_LEN_STAT_TAGS_NOT_COUNTED_FIRST,
2332 0x100);
2333 }
2334 DP_VERBOSE(p_hwfn, ECORE_MSG_STORAGE,
2335 "PRS_REG_SEARCH registers after start PFn\n");
2336 prs_reg = ecore_rd(p_hwfn, p_ptt, PRS_REG_SEARCH_TCP);
2337 DP_VERBOSE(p_hwfn, ECORE_MSG_STORAGE,
2338 "PRS_REG_SEARCH_TCP: %x\n", prs_reg);
2339 prs_reg = ecore_rd(p_hwfn, p_ptt, PRS_REG_SEARCH_UDP);
2340 DP_VERBOSE(p_hwfn, ECORE_MSG_STORAGE,
2341 "PRS_REG_SEARCH_UDP: %x\n", prs_reg);
2342 prs_reg = ecore_rd(p_hwfn, p_ptt, PRS_REG_SEARCH_FCOE);
2343 DP_VERBOSE(p_hwfn, ECORE_MSG_STORAGE,
2344 "PRS_REG_SEARCH_FCOE: %x\n", prs_reg);
2345 prs_reg = ecore_rd(p_hwfn, p_ptt, PRS_REG_SEARCH_ROCE);
2346 DP_VERBOSE(p_hwfn, ECORE_MSG_STORAGE,
2347 "PRS_REG_SEARCH_ROCE: %x\n", prs_reg);
2348 prs_reg = ecore_rd(p_hwfn, p_ptt,
2349 PRS_REG_SEARCH_TCP_FIRST_FRAG);
2350 DP_VERBOSE(p_hwfn, ECORE_MSG_STORAGE,
2351 "PRS_REG_SEARCH_TCP_FIRST_FRAG: %x\n",
2352 prs_reg);
2353 prs_reg = ecore_rd(p_hwfn, p_ptt, PRS_REG_SEARCH_TAG1);
2354 DP_VERBOSE(p_hwfn, ECORE_MSG_STORAGE,
2355 "PRS_REG_SEARCH_TAG1: %x\n", prs_reg);
2356 }
2357 }
2358 return rc;
2359}
2360
2361enum _ecore_status_t ecore_change_pci_hwfn(struct ecore_hwfn *p_hwfn,
2362 struct ecore_ptt *p_ptt,
2363 u8 enable)
2364{
2365 u32 delay_idx = 0, val, set_val = enable ? 1 : 0;
2366
2367 /* Change PF in PXP */
2368 ecore_wr(p_hwfn, p_ptt,
2369 PGLUE_B_REG_INTERNAL_PFID_ENABLE_MASTER, set_val);
2370
2371 /* wait until value is set - try for 1 second every 50us */
2372 for (delay_idx = 0; delay_idx < 20000; delay_idx++) {
2373 val = ecore_rd(p_hwfn, p_ptt,
2374 PGLUE_B_REG_INTERNAL_PFID_ENABLE_MASTER);
2375 if (val == set_val)
2376 break;
2377
2378 OSAL_UDELAY(50);
2379 }
2380
2381 if (val != set_val) {
2382 DP_NOTICE(p_hwfn, true,
2383 "PFID_ENABLE_MASTER wasn't changed after a second\n");
2384 return ECORE_UNKNOWN_ERROR;
2385 }
2386
2387 return ECORE_SUCCESS;
2388}
2389
2390static void ecore_reset_mb_shadow(struct ecore_hwfn *p_hwfn,
2391 struct ecore_ptt *p_main_ptt)
2392{
2393 /* Read shadow of current MFW mailbox */
2394 ecore_mcp_read_mb(p_hwfn, p_main_ptt);
2395 OSAL_MEMCPY(p_hwfn->mcp_info->mfw_mb_shadow,
2396 p_hwfn->mcp_info->mfw_mb_cur,
2397 p_hwfn->mcp_info->mfw_mb_length);
2398}
2399
2400static enum _ecore_status_t ecore_vf_start(struct ecore_hwfn *p_hwfn,
2401 struct ecore_hw_init_params *p_params)
2402{
2403 if (p_params->p_tunn) {
2404 ecore_vf_set_vf_start_tunn_update_param(p_params->p_tunn);
2405 ecore_vf_pf_tunnel_param_update(p_hwfn, p_params->p_tunn);
2406 }
2407
2408 p_hwfn->b_int_enabled = 1;
2409
2410 return ECORE_SUCCESS;
2411}
2412
2413static void
2414ecore_fill_load_req_params(struct ecore_load_req_params *p_load_req,
2415 struct ecore_drv_load_params *p_drv_load)
2416{
2417 /* Make sure that if ecore-client didn't provide inputs, all the
2418 * expected defaults are indeed zero.
2419 */
2420 OSAL_BUILD_BUG_ON(ECORE_DRV_ROLE_OS != 0);
2421 OSAL_BUILD_BUG_ON(ECORE_LOAD_REQ_LOCK_TO_DEFAULT != 0);
2422 OSAL_BUILD_BUG_ON(ECORE_OVERRIDE_FORCE_LOAD_NONE != 0);
2423
2105 OSAL_MEM_ZERO(p_load_req, sizeof(*p_load_req));
2106
2107 if (p_drv_load != OSAL_NULL) {
2108 p_load_req->drv_role = p_drv_load->is_crash_kernel ?
2109 ECORE_DRV_ROLE_KDUMP :
2110 ECORE_DRV_ROLE_OS;
2111 p_load_req->timeout_val = p_drv_load->mfw_timeout_val;
2112 p_load_req->avoid_eng_reset = p_drv_load->avoid_eng_reset;
2113 p_load_req->override_force_load =
2114 p_drv_load->override_force_load;
2424 OSAL_MEM_ZERO(p_load_req, sizeof(*p_load_req));
2425
2426 if (p_drv_load != OSAL_NULL) {
2427 p_load_req->drv_role = p_drv_load->is_crash_kernel ?
2428 ECORE_DRV_ROLE_KDUMP :
2429 ECORE_DRV_ROLE_OS;
2430 p_load_req->timeout_val = p_drv_load->mfw_timeout_val;
2431 p_load_req->avoid_eng_reset = p_drv_load->avoid_eng_reset;
2432 p_load_req->override_force_load =
2433 p_drv_load->override_force_load;
2115 } else {
2116 p_load_req->drv_role = ECORE_DRV_ROLE_OS;
2117 p_load_req->timeout_val = ECORE_LOAD_REQ_LOCK_TO_DEFAULT;
2118 p_load_req->avoid_eng_reset = false;
2119 p_load_req->override_force_load =
2120 ECORE_OVERRIDE_FORCE_LOAD_NONE;
2121 }
2122}
2123
2124enum _ecore_status_t ecore_hw_init(struct ecore_dev *p_dev,
2125 struct ecore_hw_init_params *p_params)
2126{
2127 struct ecore_load_req_params load_req_params;
2128 u32 load_code, param, drv_mb_param;
2129 bool b_default_mtu = true;
2130 struct ecore_hwfn *p_hwfn;
2131 enum _ecore_status_t rc = ECORE_SUCCESS, mfw_rc;
2132 int i;
2133
2134 if ((p_params->int_mode == ECORE_INT_MODE_MSI) && (p_dev->num_hwfns > 1)) {
2135 DP_NOTICE(p_dev, false,
2136 "MSI mode is not supported for CMT devices\n");
2137 return ECORE_INVAL;
2138 }
2139
2140 if (IS_PF(p_dev)) {
2141 rc = ecore_init_fw_data(p_dev, p_params->bin_fw_data);
2142 if (rc != ECORE_SUCCESS)
2143 return rc;
2144 }
2145
2146 for_each_hwfn(p_dev, i) {
2147 struct ecore_hwfn *p_hwfn = &p_dev->hwfns[i];
2148
2149 /* If management didn't provide a default, set one of our own */
2150 if (!p_hwfn->hw_info.mtu) {
2151 p_hwfn->hw_info.mtu = 1500;
2152 b_default_mtu = false;
2153 }
2154
2155 if (IS_VF(p_dev)) {
2156 ecore_vf_start(p_hwfn, p_params);
2157 continue;
2158 }
2159
2160 /* Enable DMAE in PXP */
2161 rc = ecore_change_pci_hwfn(p_hwfn, p_hwfn->p_main_ptt, true);
2162 if (rc != ECORE_SUCCESS)
2163 return rc;
2164
2165 rc = ecore_calc_hw_mode(p_hwfn);
2166 if (rc != ECORE_SUCCESS)
2167 return rc;
2168
2169 ecore_fill_load_req_params(&load_req_params,
2170 p_params->p_drv_load_params);
2171 rc = ecore_mcp_load_req(p_hwfn, p_hwfn->p_main_ptt,
2172 &load_req_params);
2173 if (rc != ECORE_SUCCESS) {
2174 DP_NOTICE(p_hwfn, true,
2175 "Failed sending a LOAD_REQ command\n");
2176 return rc;
2177 }
2178
2179 load_code = load_req_params.load_code;
2180 DP_VERBOSE(p_hwfn, ECORE_MSG_SP,
2181 "Load request was sent. Load code: 0x%x\n",
2182 load_code);
2183
2184 ecore_mcp_set_capabilities(p_hwfn, p_hwfn->p_main_ptt);
2185
2186 /* CQ75580:
2187 * When comming back from hiberbate state, the registers from
2188 * which shadow is read initially are not initialized. It turns
2189 * out that these registers get initialized during the call to
2190 * ecore_mcp_load_req request. So we need to reread them here
2191 * to get the proper shadow register value.
2192 * Note: This is a workaround for the missing MFW
2193 * initialization. It may be removed once the implementation
2194 * is done.
2195 */
2196 ecore_reset_mb_shadow(p_hwfn, p_hwfn->p_main_ptt);
2197
2198 /* Only relevant for recovery:
2199 * Clear the indication after the LOAD_REQ command is responded
2200 * by the MFW.
2201 */
2202 p_dev->recov_in_prog = false;
2203
2204 p_hwfn->first_on_engine = (load_code ==
2205 FW_MSG_CODE_DRV_LOAD_ENGINE);
2206
2207 if (!qm_lock_init) {
2208 OSAL_SPIN_LOCK_INIT(&qm_lock);
2209 qm_lock_init = true;
2210 }
2211
2212 switch (load_code) {
2213 case FW_MSG_CODE_DRV_LOAD_ENGINE:
2214 rc = ecore_hw_init_common(p_hwfn, p_hwfn->p_main_ptt,
2215 p_hwfn->hw_info.hw_mode);
2216 if (rc != ECORE_SUCCESS)
2217 break;
2218 /* Fall into */
2219 case FW_MSG_CODE_DRV_LOAD_PORT:
2220 rc = ecore_hw_init_port(p_hwfn, p_hwfn->p_main_ptt,
2221 p_hwfn->hw_info.hw_mode);
2222 if (rc != ECORE_SUCCESS)
2223 break;
2224 /* Fall into */
2225 case FW_MSG_CODE_DRV_LOAD_FUNCTION:
2226 rc = ecore_hw_init_pf(p_hwfn, p_hwfn->p_main_ptt,
2227 p_params->p_tunn,
2228 p_hwfn->hw_info.hw_mode,
2229 p_params->b_hw_start,
2230 p_params->int_mode,
2231 p_params->allow_npar_tx_switch);
2232 break;
2233 default:
2234 DP_NOTICE(p_hwfn, false,
2235 "Unexpected load code [0x%08x]", load_code);
2236 rc = ECORE_NOTIMPL;
2237 break;
2238 }
2239
2240 if (rc != ECORE_SUCCESS)
2241 DP_NOTICE(p_hwfn, true,
2242 "init phase failed for loadcode 0x%x (rc %d)\n",
2243 load_code, rc);
2244
2245 /* ACK mfw regardless of success or failure of initialization */
2246 mfw_rc = ecore_mcp_cmd(p_hwfn, p_hwfn->p_main_ptt,
2247 DRV_MSG_CODE_LOAD_DONE,
2248 0, &load_code, &param);
2249
2250 /* Check the return value of the ecore_hw_init_*() function */
2251 if (rc != ECORE_SUCCESS)
2252 return rc;
2253
2254 /* Check the return value of the LOAD_DONE command */
2255 if (mfw_rc != ECORE_SUCCESS) {
2256 DP_NOTICE(p_hwfn, true,
2257 "Failed sending a LOAD_DONE command\n");
2258 return mfw_rc;
2259 }
2260
2261 /* Check if there is a DID mismatch between nvm-cfg/efuse */
2262 if (param & FW_MB_PARAM_LOAD_DONE_DID_EFUSE_ERROR)
2263 DP_NOTICE(p_hwfn, false,
2264 "warning: device configuration is not supported on this board type. The device may not function as expected.\n");
2265
2266 /* send DCBX attention request command */
2267 DP_VERBOSE(p_hwfn, ECORE_MSG_DCB,
2268 "sending phony dcbx set command to trigger DCBx attention handling\n");
2269 mfw_rc = ecore_mcp_cmd(p_hwfn, p_hwfn->p_main_ptt,
2270 DRV_MSG_CODE_SET_DCBX,
2434 }
2435}
2436
2437enum _ecore_status_t ecore_hw_init(struct ecore_dev *p_dev,
2438 struct ecore_hw_init_params *p_params)
2439{
2440 struct ecore_load_req_params load_req_params;
2441 u32 load_code, param, drv_mb_param;
2442 bool b_default_mtu = true;
2443 struct ecore_hwfn *p_hwfn;
2444 enum _ecore_status_t rc = ECORE_SUCCESS, mfw_rc;
2445 int i;
2446
2447 if ((p_params->int_mode == ECORE_INT_MODE_MSI) && (p_dev->num_hwfns > 1)) {
2448 DP_NOTICE(p_dev, false,
2449 "MSI mode is not supported for CMT devices\n");
2450 return ECORE_INVAL;
2451 }
2452
2453 if (IS_PF(p_dev)) {
2454 rc = ecore_init_fw_data(p_dev, p_params->bin_fw_data);
2455 if (rc != ECORE_SUCCESS)
2456 return rc;
2457 }
2458
2459 for_each_hwfn(p_dev, i) {
2460 struct ecore_hwfn *p_hwfn = &p_dev->hwfns[i];
2461
2462 /* If management didn't provide a default, set one of our own */
2463 if (!p_hwfn->hw_info.mtu) {
2464 p_hwfn->hw_info.mtu = 1500;
2465 b_default_mtu = false;
2466 }
2467
2468 if (IS_VF(p_dev)) {
2469 ecore_vf_start(p_hwfn, p_params);
2470 continue;
2471 }
2472
2473 /* Enable DMAE in PXP */
2474 rc = ecore_change_pci_hwfn(p_hwfn, p_hwfn->p_main_ptt, true);
2475 if (rc != ECORE_SUCCESS)
2476 return rc;
2477
2478 rc = ecore_calc_hw_mode(p_hwfn);
2479 if (rc != ECORE_SUCCESS)
2480 return rc;
2481
2482 ecore_fill_load_req_params(&load_req_params,
2483 p_params->p_drv_load_params);
2484 rc = ecore_mcp_load_req(p_hwfn, p_hwfn->p_main_ptt,
2485 &load_req_params);
2486 if (rc != ECORE_SUCCESS) {
2487 DP_NOTICE(p_hwfn, true,
2488 "Failed sending a LOAD_REQ command\n");
2489 return rc;
2490 }
2491
2492 load_code = load_req_params.load_code;
2493 DP_VERBOSE(p_hwfn, ECORE_MSG_SP,
2494 "Load request was sent. Load code: 0x%x\n",
2495 load_code);
2496
2497 ecore_mcp_set_capabilities(p_hwfn, p_hwfn->p_main_ptt);
2498
2499 /* CQ75580:
2500 * When comming back from hiberbate state, the registers from
2501 * which shadow is read initially are not initialized. It turns
2502 * out that these registers get initialized during the call to
2503 * ecore_mcp_load_req request. So we need to reread them here
2504 * to get the proper shadow register value.
2505 * Note: This is a workaround for the missing MFW
2506 * initialization. It may be removed once the implementation
2507 * is done.
2508 */
2509 ecore_reset_mb_shadow(p_hwfn, p_hwfn->p_main_ptt);
2510
2511 /* Only relevant for recovery:
2512 * Clear the indication after the LOAD_REQ command is responded
2513 * by the MFW.
2514 */
2515 p_dev->recov_in_prog = false;
2516
2517 p_hwfn->first_on_engine = (load_code ==
2518 FW_MSG_CODE_DRV_LOAD_ENGINE);
2519
2520 if (!qm_lock_init) {
2521 OSAL_SPIN_LOCK_INIT(&qm_lock);
2522 qm_lock_init = true;
2523 }
2524
2525 switch (load_code) {
2526 case FW_MSG_CODE_DRV_LOAD_ENGINE:
2527 rc = ecore_hw_init_common(p_hwfn, p_hwfn->p_main_ptt,
2528 p_hwfn->hw_info.hw_mode);
2529 if (rc != ECORE_SUCCESS)
2530 break;
2531 /* Fall into */
2532 case FW_MSG_CODE_DRV_LOAD_PORT:
2533 rc = ecore_hw_init_port(p_hwfn, p_hwfn->p_main_ptt,
2534 p_hwfn->hw_info.hw_mode);
2535 if (rc != ECORE_SUCCESS)
2536 break;
2537 /* Fall into */
2538 case FW_MSG_CODE_DRV_LOAD_FUNCTION:
2539 rc = ecore_hw_init_pf(p_hwfn, p_hwfn->p_main_ptt,
2540 p_params->p_tunn,
2541 p_hwfn->hw_info.hw_mode,
2542 p_params->b_hw_start,
2543 p_params->int_mode,
2544 p_params->allow_npar_tx_switch);
2545 break;
2546 default:
2547 DP_NOTICE(p_hwfn, false,
2548 "Unexpected load code [0x%08x]", load_code);
2549 rc = ECORE_NOTIMPL;
2550 break;
2551 }
2552
2553 if (rc != ECORE_SUCCESS)
2554 DP_NOTICE(p_hwfn, true,
2555 "init phase failed for loadcode 0x%x (rc %d)\n",
2556 load_code, rc);
2557
2558 /* ACK mfw regardless of success or failure of initialization */
2559 mfw_rc = ecore_mcp_cmd(p_hwfn, p_hwfn->p_main_ptt,
2560 DRV_MSG_CODE_LOAD_DONE,
2561 0, &load_code, &param);
2562
2563 /* Check the return value of the ecore_hw_init_*() function */
2564 if (rc != ECORE_SUCCESS)
2565 return rc;
2566
2567 /* Check the return value of the LOAD_DONE command */
2568 if (mfw_rc != ECORE_SUCCESS) {
2569 DP_NOTICE(p_hwfn, true,
2570 "Failed sending a LOAD_DONE command\n");
2571 return mfw_rc;
2572 }
2573
2574 /* Check if there is a DID mismatch between nvm-cfg/efuse */
2575 if (param & FW_MB_PARAM_LOAD_DONE_DID_EFUSE_ERROR)
2576 DP_NOTICE(p_hwfn, false,
2577 "warning: device configuration is not supported on this board type. The device may not function as expected.\n");
2578
2579 /* send DCBX attention request command */
2580 DP_VERBOSE(p_hwfn, ECORE_MSG_DCB,
2581 "sending phony dcbx set command to trigger DCBx attention handling\n");
2582 mfw_rc = ecore_mcp_cmd(p_hwfn, p_hwfn->p_main_ptt,
2583 DRV_MSG_CODE_SET_DCBX,
2271 1 << DRV_MB_PARAM_DCBX_NOTIFY_SHIFT,
2584 1 << DRV_MB_PARAM_DCBX_NOTIFY_OFFSET,
2272 &load_code, &param);
2273 if (mfw_rc != ECORE_SUCCESS) {
2274 DP_NOTICE(p_hwfn, true,
2275 "Failed to send DCBX attention request\n");
2276 return mfw_rc;
2277 }
2278
2279 p_hwfn->hw_init_done = true;
2280 }
2281
2282 if (IS_PF(p_dev)) {
2283 p_hwfn = ECORE_LEADING_HWFN(p_dev);
2284 drv_mb_param = STORM_FW_VERSION;
2285 rc = ecore_mcp_cmd(p_hwfn, p_hwfn->p_main_ptt,
2286 DRV_MSG_CODE_OV_UPDATE_STORM_FW_VER,
2287 drv_mb_param, &load_code, &param);
2288 if (rc != ECORE_SUCCESS)
2289 DP_INFO(p_hwfn, "Failed to update firmware version\n");
2290
2291 if (!b_default_mtu) {
2292 rc = ecore_mcp_ov_update_mtu(p_hwfn, p_hwfn->p_main_ptt,
2293 p_hwfn->hw_info.mtu);
2294 if (rc != ECORE_SUCCESS)
2295 DP_INFO(p_hwfn, "Failed to update default mtu\n");
2296 }
2297
2298 rc = ecore_mcp_ov_update_driver_state(p_hwfn,
2299 p_hwfn->p_main_ptt,
2300 ECORE_OV_DRIVER_STATE_DISABLED);
2301 if (rc != ECORE_SUCCESS)
2302 DP_INFO(p_hwfn, "Failed to update driver state\n");
2303
2304 rc = ecore_mcp_ov_update_eswitch(p_hwfn, p_hwfn->p_main_ptt,
2305 ECORE_OV_ESWITCH_VEB);
2306 if (rc != ECORE_SUCCESS)
2307 DP_INFO(p_hwfn, "Failed to update eswitch mode\n");
2308 }
2309
2310 return rc;
2311}
2312
2313#define ECORE_HW_STOP_RETRY_LIMIT (10)
2314static void ecore_hw_timers_stop(struct ecore_dev *p_dev,
2315 struct ecore_hwfn *p_hwfn,
2316 struct ecore_ptt *p_ptt)
2317{
2318 int i;
2319
2320 /* close timers */
2321 ecore_wr(p_hwfn, p_ptt, TM_REG_PF_ENABLE_CONN, 0x0);
2322 ecore_wr(p_hwfn, p_ptt, TM_REG_PF_ENABLE_TASK, 0x0);
2323 for (i = 0;
2324 i < ECORE_HW_STOP_RETRY_LIMIT && !p_dev->recov_in_prog;
2325 i++) {
2326 if ((!ecore_rd(p_hwfn, p_ptt,
2327 TM_REG_PF_SCAN_ACTIVE_CONN)) &&
2328 (!ecore_rd(p_hwfn, p_ptt,
2329 TM_REG_PF_SCAN_ACTIVE_TASK)))
2330 break;
2331
2332 /* Dependent on number of connection/tasks, possibly
2333 * 1ms sleep is required between polls
2334 */
2335 OSAL_MSLEEP(1);
2336 }
2337
2338 if (i < ECORE_HW_STOP_RETRY_LIMIT)
2339 return;
2340
2341 DP_NOTICE(p_hwfn, true,
2342 "Timers linear scans are not over [Connection %02x Tasks %02x]\n",
2343 (u8)ecore_rd(p_hwfn, p_ptt, TM_REG_PF_SCAN_ACTIVE_CONN),
2344 (u8)ecore_rd(p_hwfn, p_ptt, TM_REG_PF_SCAN_ACTIVE_TASK));
2345}
2346
2347void ecore_hw_timers_stop_all(struct ecore_dev *p_dev)
2348{
2349 int j;
2350
2351 for_each_hwfn(p_dev, j) {
2352 struct ecore_hwfn *p_hwfn = &p_dev->hwfns[j];
2353 struct ecore_ptt *p_ptt = p_hwfn->p_main_ptt;
2354
2355 ecore_hw_timers_stop(p_dev, p_hwfn, p_ptt);
2356 }
2357}
2358
2359static enum _ecore_status_t ecore_verify_reg_val(struct ecore_hwfn *p_hwfn,
2360 struct ecore_ptt *p_ptt,
2361 u32 addr, u32 expected_val)
2362{
2363 u32 val = ecore_rd(p_hwfn, p_ptt, addr);
2364
2365 if (val != expected_val) {
2366 DP_NOTICE(p_hwfn, true,
2367 "Value at address 0x%08x is 0x%08x while the expected value is 0x%08x\n",
2368 addr, val, expected_val);
2369 return ECORE_UNKNOWN_ERROR;
2370 }
2371
2372 return ECORE_SUCCESS;
2373}
2374
2375enum _ecore_status_t ecore_hw_stop(struct ecore_dev *p_dev)
2376{
2377 struct ecore_hwfn *p_hwfn;
2378 struct ecore_ptt *p_ptt;
2379 enum _ecore_status_t rc, rc2 = ECORE_SUCCESS;
2380 int j;
2381
2382 for_each_hwfn(p_dev, j) {
2383 p_hwfn = &p_dev->hwfns[j];
2384 p_ptt = p_hwfn->p_main_ptt;
2385
2386 DP_VERBOSE(p_hwfn, ECORE_MSG_IFDOWN, "Stopping hw/fw\n");
2387
2388 if (IS_VF(p_dev)) {
2389 ecore_vf_pf_int_cleanup(p_hwfn);
2390 rc = ecore_vf_pf_reset(p_hwfn);
2391 if (rc != ECORE_SUCCESS) {
2392 DP_NOTICE(p_hwfn, true,
2393 "ecore_vf_pf_reset failed. rc = %d.\n",
2394 rc);
2395 rc2 = ECORE_UNKNOWN_ERROR;
2396 }
2397 continue;
2398 }
2399
2400 /* mark the hw as uninitialized... */
2401 p_hwfn->hw_init_done = false;
2402
2403 /* Send unload command to MCP */
2404 if (!p_dev->recov_in_prog) {
2405 rc = ecore_mcp_unload_req(p_hwfn, p_ptt);
2406 if (rc != ECORE_SUCCESS) {
2407 DP_NOTICE(p_hwfn, true,
2408 "Failed sending a UNLOAD_REQ command. rc = %d.\n",
2409 rc);
2410 rc2 = ECORE_UNKNOWN_ERROR;
2411 }
2412 }
2413
2414 OSAL_DPC_SYNC(p_hwfn);
2415
2416 /* After this point no MFW attentions are expected, e.g. prevent
2417 * race between pf stop and dcbx pf update.
2418 */
2419
2420 rc = ecore_sp_pf_stop(p_hwfn);
2421 if (rc != ECORE_SUCCESS) {
2422 DP_NOTICE(p_hwfn, true,
2423 "Failed to close PF against FW [rc = %d]. Continue to stop HW to prevent illegal host access by the device.\n",
2424 rc);
2425 rc2 = ECORE_UNKNOWN_ERROR;
2426 }
2427
2428 /* perform debug action after PF stop was sent */
2429 OSAL_AFTER_PF_STOP((void *)p_dev, p_hwfn->my_id);
2430
2431 /* close NIG to BRB gate */
2432 ecore_wr(p_hwfn, p_ptt,
2433 NIG_REG_RX_LLH_BRB_GATE_DNTFWD_PERPF, 0x1);
2434
2435 /* close parser */
2436 ecore_wr(p_hwfn, p_ptt, PRS_REG_SEARCH_TCP, 0x0);
2437 ecore_wr(p_hwfn, p_ptt, PRS_REG_SEARCH_UDP, 0x0);
2438 ecore_wr(p_hwfn, p_ptt, PRS_REG_SEARCH_FCOE, 0x0);
2439 ecore_wr(p_hwfn, p_ptt, PRS_REG_SEARCH_ROCE, 0x0);
2440 ecore_wr(p_hwfn, p_ptt, PRS_REG_SEARCH_OPENFLOW, 0x0);
2441
2442 /* @@@TBD - clean transmission queues (5.b) */
2443 /* @@@TBD - clean BTB (5.c) */
2444
2445 ecore_hw_timers_stop(p_dev, p_hwfn, p_ptt);
2446
2447 /* @@@TBD - verify DMAE requests are done (8) */
2448
2449 /* Disable Attention Generation */
2450 ecore_int_igu_disable_int(p_hwfn, p_ptt);
2451 ecore_wr(p_hwfn, p_ptt, IGU_REG_LEADING_EDGE_LATCH, 0);
2452 ecore_wr(p_hwfn, p_ptt, IGU_REG_TRAILING_EDGE_LATCH, 0);
2453 ecore_int_igu_init_pure_rt(p_hwfn, p_ptt, false, true);
2454 rc = ecore_int_igu_reset_cam_default(p_hwfn, p_ptt);
2455 if (rc != ECORE_SUCCESS) {
2456 DP_NOTICE(p_hwfn, true,
2457 "Failed to return IGU CAM to default\n");
2458 rc2 = ECORE_UNKNOWN_ERROR;
2459 }
2460
2461 /* Need to wait 1ms to guarantee SBs are cleared */
2462 OSAL_MSLEEP(1);
2463
2464 if (!p_dev->recov_in_prog) {
2465 ecore_verify_reg_val(p_hwfn, p_ptt,
2466 QM_REG_USG_CNT_PF_TX, 0);
2467 ecore_verify_reg_val(p_hwfn, p_ptt,
2468 QM_REG_USG_CNT_PF_OTHER, 0);
2469 /* @@@TBD - assert on incorrect xCFC values (10.b) */
2470 }
2471
2472 /* Disable PF in HW blocks */
2473 ecore_wr(p_hwfn, p_ptt, DORQ_REG_PF_DB_ENABLE, 0);
2474 ecore_wr(p_hwfn, p_ptt, QM_REG_PF_EN, 0);
2475
2476 if (!p_dev->recov_in_prog) {
2477 ecore_mcp_unload_done(p_hwfn, p_ptt);
2478 if (rc != ECORE_SUCCESS) {
2479 DP_NOTICE(p_hwfn, true,
2480 "Failed sending a UNLOAD_DONE command. rc = %d.\n",
2481 rc);
2482 rc2 = ECORE_UNKNOWN_ERROR;
2483 }
2484 }
2485
2585 &load_code, &param);
2586 if (mfw_rc != ECORE_SUCCESS) {
2587 DP_NOTICE(p_hwfn, true,
2588 "Failed to send DCBX attention request\n");
2589 return mfw_rc;
2590 }
2591
2592 p_hwfn->hw_init_done = true;
2593 }
2594
2595 if (IS_PF(p_dev)) {
2596 p_hwfn = ECORE_LEADING_HWFN(p_dev);
2597 drv_mb_param = STORM_FW_VERSION;
2598 rc = ecore_mcp_cmd(p_hwfn, p_hwfn->p_main_ptt,
2599 DRV_MSG_CODE_OV_UPDATE_STORM_FW_VER,
2600 drv_mb_param, &load_code, &param);
2601 if (rc != ECORE_SUCCESS)
2602 DP_INFO(p_hwfn, "Failed to update firmware version\n");
2603
2604 if (!b_default_mtu) {
2605 rc = ecore_mcp_ov_update_mtu(p_hwfn, p_hwfn->p_main_ptt,
2606 p_hwfn->hw_info.mtu);
2607 if (rc != ECORE_SUCCESS)
2608 DP_INFO(p_hwfn, "Failed to update default mtu\n");
2609 }
2610
2611 rc = ecore_mcp_ov_update_driver_state(p_hwfn,
2612 p_hwfn->p_main_ptt,
2613 ECORE_OV_DRIVER_STATE_DISABLED);
2614 if (rc != ECORE_SUCCESS)
2615 DP_INFO(p_hwfn, "Failed to update driver state\n");
2616
2617 rc = ecore_mcp_ov_update_eswitch(p_hwfn, p_hwfn->p_main_ptt,
2618 ECORE_OV_ESWITCH_VEB);
2619 if (rc != ECORE_SUCCESS)
2620 DP_INFO(p_hwfn, "Failed to update eswitch mode\n");
2621 }
2622
2623 return rc;
2624}
2625
2626#define ECORE_HW_STOP_RETRY_LIMIT (10)
2627static void ecore_hw_timers_stop(struct ecore_dev *p_dev,
2628 struct ecore_hwfn *p_hwfn,
2629 struct ecore_ptt *p_ptt)
2630{
2631 int i;
2632
2633 /* close timers */
2634 ecore_wr(p_hwfn, p_ptt, TM_REG_PF_ENABLE_CONN, 0x0);
2635 ecore_wr(p_hwfn, p_ptt, TM_REG_PF_ENABLE_TASK, 0x0);
2636 for (i = 0;
2637 i < ECORE_HW_STOP_RETRY_LIMIT && !p_dev->recov_in_prog;
2638 i++) {
2639 if ((!ecore_rd(p_hwfn, p_ptt,
2640 TM_REG_PF_SCAN_ACTIVE_CONN)) &&
2641 (!ecore_rd(p_hwfn, p_ptt,
2642 TM_REG_PF_SCAN_ACTIVE_TASK)))
2643 break;
2644
2645 /* Dependent on number of connection/tasks, possibly
2646 * 1ms sleep is required between polls
2647 */
2648 OSAL_MSLEEP(1);
2649 }
2650
2651 if (i < ECORE_HW_STOP_RETRY_LIMIT)
2652 return;
2653
2654 DP_NOTICE(p_hwfn, true,
2655 "Timers linear scans are not over [Connection %02x Tasks %02x]\n",
2656 (u8)ecore_rd(p_hwfn, p_ptt, TM_REG_PF_SCAN_ACTIVE_CONN),
2657 (u8)ecore_rd(p_hwfn, p_ptt, TM_REG_PF_SCAN_ACTIVE_TASK));
2658}
2659
2660void ecore_hw_timers_stop_all(struct ecore_dev *p_dev)
2661{
2662 int j;
2663
2664 for_each_hwfn(p_dev, j) {
2665 struct ecore_hwfn *p_hwfn = &p_dev->hwfns[j];
2666 struct ecore_ptt *p_ptt = p_hwfn->p_main_ptt;
2667
2668 ecore_hw_timers_stop(p_dev, p_hwfn, p_ptt);
2669 }
2670}
2671
2672static enum _ecore_status_t ecore_verify_reg_val(struct ecore_hwfn *p_hwfn,
2673 struct ecore_ptt *p_ptt,
2674 u32 addr, u32 expected_val)
2675{
2676 u32 val = ecore_rd(p_hwfn, p_ptt, addr);
2677
2678 if (val != expected_val) {
2679 DP_NOTICE(p_hwfn, true,
2680 "Value at address 0x%08x is 0x%08x while the expected value is 0x%08x\n",
2681 addr, val, expected_val);
2682 return ECORE_UNKNOWN_ERROR;
2683 }
2684
2685 return ECORE_SUCCESS;
2686}
2687
2688enum _ecore_status_t ecore_hw_stop(struct ecore_dev *p_dev)
2689{
2690 struct ecore_hwfn *p_hwfn;
2691 struct ecore_ptt *p_ptt;
2692 enum _ecore_status_t rc, rc2 = ECORE_SUCCESS;
2693 int j;
2694
2695 for_each_hwfn(p_dev, j) {
2696 p_hwfn = &p_dev->hwfns[j];
2697 p_ptt = p_hwfn->p_main_ptt;
2698
2699 DP_VERBOSE(p_hwfn, ECORE_MSG_IFDOWN, "Stopping hw/fw\n");
2700
2701 if (IS_VF(p_dev)) {
2702 ecore_vf_pf_int_cleanup(p_hwfn);
2703 rc = ecore_vf_pf_reset(p_hwfn);
2704 if (rc != ECORE_SUCCESS) {
2705 DP_NOTICE(p_hwfn, true,
2706 "ecore_vf_pf_reset failed. rc = %d.\n",
2707 rc);
2708 rc2 = ECORE_UNKNOWN_ERROR;
2709 }
2710 continue;
2711 }
2712
2713 /* mark the hw as uninitialized... */
2714 p_hwfn->hw_init_done = false;
2715
2716 /* Send unload command to MCP */
2717 if (!p_dev->recov_in_prog) {
2718 rc = ecore_mcp_unload_req(p_hwfn, p_ptt);
2719 if (rc != ECORE_SUCCESS) {
2720 DP_NOTICE(p_hwfn, true,
2721 "Failed sending a UNLOAD_REQ command. rc = %d.\n",
2722 rc);
2723 rc2 = ECORE_UNKNOWN_ERROR;
2724 }
2725 }
2726
2727 OSAL_DPC_SYNC(p_hwfn);
2728
2729 /* After this point no MFW attentions are expected, e.g. prevent
2730 * race between pf stop and dcbx pf update.
2731 */
2732
2733 rc = ecore_sp_pf_stop(p_hwfn);
2734 if (rc != ECORE_SUCCESS) {
2735 DP_NOTICE(p_hwfn, true,
2736 "Failed to close PF against FW [rc = %d]. Continue to stop HW to prevent illegal host access by the device.\n",
2737 rc);
2738 rc2 = ECORE_UNKNOWN_ERROR;
2739 }
2740
2741 /* perform debug action after PF stop was sent */
2742 OSAL_AFTER_PF_STOP((void *)p_dev, p_hwfn->my_id);
2743
2744 /* close NIG to BRB gate */
2745 ecore_wr(p_hwfn, p_ptt,
2746 NIG_REG_RX_LLH_BRB_GATE_DNTFWD_PERPF, 0x1);
2747
2748 /* close parser */
2749 ecore_wr(p_hwfn, p_ptt, PRS_REG_SEARCH_TCP, 0x0);
2750 ecore_wr(p_hwfn, p_ptt, PRS_REG_SEARCH_UDP, 0x0);
2751 ecore_wr(p_hwfn, p_ptt, PRS_REG_SEARCH_FCOE, 0x0);
2752 ecore_wr(p_hwfn, p_ptt, PRS_REG_SEARCH_ROCE, 0x0);
2753 ecore_wr(p_hwfn, p_ptt, PRS_REG_SEARCH_OPENFLOW, 0x0);
2754
2755 /* @@@TBD - clean transmission queues (5.b) */
2756 /* @@@TBD - clean BTB (5.c) */
2757
2758 ecore_hw_timers_stop(p_dev, p_hwfn, p_ptt);
2759
2760 /* @@@TBD - verify DMAE requests are done (8) */
2761
2762 /* Disable Attention Generation */
2763 ecore_int_igu_disable_int(p_hwfn, p_ptt);
2764 ecore_wr(p_hwfn, p_ptt, IGU_REG_LEADING_EDGE_LATCH, 0);
2765 ecore_wr(p_hwfn, p_ptt, IGU_REG_TRAILING_EDGE_LATCH, 0);
2766 ecore_int_igu_init_pure_rt(p_hwfn, p_ptt, false, true);
2767 rc = ecore_int_igu_reset_cam_default(p_hwfn, p_ptt);
2768 if (rc != ECORE_SUCCESS) {
2769 DP_NOTICE(p_hwfn, true,
2770 "Failed to return IGU CAM to default\n");
2771 rc2 = ECORE_UNKNOWN_ERROR;
2772 }
2773
2774 /* Need to wait 1ms to guarantee SBs are cleared */
2775 OSAL_MSLEEP(1);
2776
2777 if (!p_dev->recov_in_prog) {
2778 ecore_verify_reg_val(p_hwfn, p_ptt,
2779 QM_REG_USG_CNT_PF_TX, 0);
2780 ecore_verify_reg_val(p_hwfn, p_ptt,
2781 QM_REG_USG_CNT_PF_OTHER, 0);
2782 /* @@@TBD - assert on incorrect xCFC values (10.b) */
2783 }
2784
2785 /* Disable PF in HW blocks */
2786 ecore_wr(p_hwfn, p_ptt, DORQ_REG_PF_DB_ENABLE, 0);
2787 ecore_wr(p_hwfn, p_ptt, QM_REG_PF_EN, 0);
2788
2789 if (!p_dev->recov_in_prog) {
2790 ecore_mcp_unload_done(p_hwfn, p_ptt);
2791 if (rc != ECORE_SUCCESS) {
2792 DP_NOTICE(p_hwfn, true,
2793 "Failed sending a UNLOAD_DONE command. rc = %d.\n",
2794 rc);
2795 rc2 = ECORE_UNKNOWN_ERROR;
2796 }
2797 }
2798
2486 /* remove the LLH filter with the primary MAC addres */
2799 /* 100g NPAR mode - remove the LLH filter with the primary MAC
2800 * address.
2801 */
2487 if (p_hwfn->p_dev->num_hwfns > 1 && IS_LEAD_HWFN(p_hwfn))
2488 ecore_llh_remove_mac_filter(p_hwfn, p_ptt,
2802 if (p_hwfn->p_dev->num_hwfns > 1 && IS_LEAD_HWFN(p_hwfn))
2803 ecore_llh_remove_mac_filter(p_hwfn, p_ptt,
2489 p_hwfn->hw_info.hw_mac_addr);
2804 p_hwfn->hw_info.hw_mac_addr);
2490 } /* hwfn loop */
2491
2492 if (IS_PF(p_dev)) {
2493 p_hwfn = ECORE_LEADING_HWFN(p_dev);
2494 p_ptt = ECORE_LEADING_HWFN(p_dev)->p_main_ptt;
2495
2496 /* Disable DMAE in PXP - in CMT, this should only be done for
2497 * first hw-function, and only after all transactions have
2498 * stopped for all active hw-functions.
2499 */
2500 rc = ecore_change_pci_hwfn(p_hwfn, p_ptt, false);
2501 if (rc != ECORE_SUCCESS) {
2502 DP_NOTICE(p_hwfn, true,
2503 "ecore_change_pci_hwfn failed. rc = %d.\n",
2504 rc);
2505 rc2 = ECORE_UNKNOWN_ERROR;
2506 }
2507 }
2508
2509 return rc2;
2510}
2511
2805 } /* hwfn loop */
2806
2807 if (IS_PF(p_dev)) {
2808 p_hwfn = ECORE_LEADING_HWFN(p_dev);
2809 p_ptt = ECORE_LEADING_HWFN(p_dev)->p_main_ptt;
2810
2811 /* Disable DMAE in PXP - in CMT, this should only be done for
2812 * first hw-function, and only after all transactions have
2813 * stopped for all active hw-functions.
2814 */
2815 rc = ecore_change_pci_hwfn(p_hwfn, p_ptt, false);
2816 if (rc != ECORE_SUCCESS) {
2817 DP_NOTICE(p_hwfn, true,
2818 "ecore_change_pci_hwfn failed. rc = %d.\n",
2819 rc);
2820 rc2 = ECORE_UNKNOWN_ERROR;
2821 }
2822 }
2823
2824 return rc2;
2825}
2826
2512void ecore_hw_stop_fastpath(struct ecore_dev *p_dev)
2827enum _ecore_status_t ecore_hw_stop_fastpath(struct ecore_dev *p_dev)
2513{
2514 int j;
2515
2516 for_each_hwfn(p_dev, j) {
2517 struct ecore_hwfn *p_hwfn = &p_dev->hwfns[j];
2828{
2829 int j;
2830
2831 for_each_hwfn(p_dev, j) {
2832 struct ecore_hwfn *p_hwfn = &p_dev->hwfns[j];
2518 struct ecore_ptt *p_ptt = p_hwfn->p_main_ptt;
2833 struct ecore_ptt *p_ptt;
2519
2520 if (IS_VF(p_dev)) {
2521 ecore_vf_pf_int_cleanup(p_hwfn);
2522 continue;
2523 }
2834
2835 if (IS_VF(p_dev)) {
2836 ecore_vf_pf_int_cleanup(p_hwfn);
2837 continue;
2838 }
2839 p_ptt = ecore_ptt_acquire(p_hwfn);
2840 if (!p_ptt)
2841 return ECORE_AGAIN;
2524
2525 DP_VERBOSE(p_hwfn, ECORE_MSG_IFDOWN, "Shutting down the fastpath\n");
2526
2527 ecore_wr(p_hwfn, p_ptt,
2528 NIG_REG_RX_LLH_BRB_GATE_DNTFWD_PERPF, 0x1);
2529
2530 ecore_wr(p_hwfn, p_ptt, PRS_REG_SEARCH_TCP, 0x0);
2531 ecore_wr(p_hwfn, p_ptt, PRS_REG_SEARCH_UDP, 0x0);
2532 ecore_wr(p_hwfn, p_ptt, PRS_REG_SEARCH_FCOE, 0x0);
2533 ecore_wr(p_hwfn, p_ptt, PRS_REG_SEARCH_ROCE, 0x0);
2534 ecore_wr(p_hwfn, p_ptt, PRS_REG_SEARCH_OPENFLOW, 0x0);
2535
2536 /* @@@TBD - clean transmission queues (5.b) */
2537 /* @@@TBD - clean BTB (5.c) */
2538
2539 /* @@@TBD - verify DMAE requests are done (8) */
2540
2541 ecore_int_igu_init_pure_rt(p_hwfn, p_ptt, false, false);
2542 /* Need to wait 1ms to guarantee SBs are cleared */
2543 OSAL_MSLEEP(1);
2842
2843 DP_VERBOSE(p_hwfn, ECORE_MSG_IFDOWN, "Shutting down the fastpath\n");
2844
2845 ecore_wr(p_hwfn, p_ptt,
2846 NIG_REG_RX_LLH_BRB_GATE_DNTFWD_PERPF, 0x1);
2847
2848 ecore_wr(p_hwfn, p_ptt, PRS_REG_SEARCH_TCP, 0x0);
2849 ecore_wr(p_hwfn, p_ptt, PRS_REG_SEARCH_UDP, 0x0);
2850 ecore_wr(p_hwfn, p_ptt, PRS_REG_SEARCH_FCOE, 0x0);
2851 ecore_wr(p_hwfn, p_ptt, PRS_REG_SEARCH_ROCE, 0x0);
2852 ecore_wr(p_hwfn, p_ptt, PRS_REG_SEARCH_OPENFLOW, 0x0);
2853
2854 /* @@@TBD - clean transmission queues (5.b) */
2855 /* @@@TBD - clean BTB (5.c) */
2856
2857 /* @@@TBD - verify DMAE requests are done (8) */
2858
2859 ecore_int_igu_init_pure_rt(p_hwfn, p_ptt, false, false);
2860 /* Need to wait 1ms to guarantee SBs are cleared */
2861 OSAL_MSLEEP(1);
2862 ecore_ptt_release(p_hwfn, p_ptt);
2544 }
2863 }
2864
2865 return ECORE_SUCCESS;
2545}
2546
2866}
2867
2547void ecore_hw_start_fastpath(struct ecore_hwfn *p_hwfn)
2868enum _ecore_status_t ecore_hw_start_fastpath(struct ecore_hwfn *p_hwfn)
2548{
2869{
2549 struct ecore_ptt *p_ptt = p_hwfn->p_main_ptt;
2870 struct ecore_ptt *p_ptt;
2550
2551 if (IS_VF(p_hwfn->p_dev))
2871
2872 if (IS_VF(p_hwfn->p_dev))
2552 return;
2873 return ECORE_SUCCESS;
2553
2874
2875 p_ptt = ecore_ptt_acquire(p_hwfn);
2876 if (!p_ptt)
2877 return ECORE_AGAIN;
2878
2554 /* If roce info is allocated it means roce is initialized and should
2555 * be enabled in searcher.
2556 */
2557 if (p_hwfn->p_rdma_info) {
2558 if (p_hwfn->b_rdma_enabled_in_prs)
2559 ecore_wr(p_hwfn, p_ptt,
2560 p_hwfn->rdma_prs_search_reg, 0x1);
2561 ecore_wr(p_hwfn, p_ptt, TM_REG_PF_ENABLE_CONN, 0x1);
2562 }
2563
2564 /* Re-open incoming traffic */
2879 /* If roce info is allocated it means roce is initialized and should
2880 * be enabled in searcher.
2881 */
2882 if (p_hwfn->p_rdma_info) {
2883 if (p_hwfn->b_rdma_enabled_in_prs)
2884 ecore_wr(p_hwfn, p_ptt,
2885 p_hwfn->rdma_prs_search_reg, 0x1);
2886 ecore_wr(p_hwfn, p_ptt, TM_REG_PF_ENABLE_CONN, 0x1);
2887 }
2888
2889 /* Re-open incoming traffic */
2565 ecore_wr(p_hwfn, p_hwfn->p_main_ptt,
2890 ecore_wr(p_hwfn, p_ptt,
2566 NIG_REG_RX_LLH_BRB_GATE_DNTFWD_PERPF, 0x0);
2891 NIG_REG_RX_LLH_BRB_GATE_DNTFWD_PERPF, 0x0);
2892 ecore_ptt_release(p_hwfn, p_ptt);
2893
2894 return ECORE_SUCCESS;
2567}
2568/* TEMP macro to be removed when wol code revisted */
2569#define ECORE_WOL_WR(_p_hwfn, _p_ptt, _offset, _val) ECORE_IS_BB(_p_hwfn->p_dev) ? \
2570 ecore_wr(_p_hwfn, _p_ptt, _offset, _val) : \
2571 ecore_mcp_wol_wr(_p_hwfn, _p_ptt, _offset, _val);
2572
2895}
2896/* TEMP macro to be removed when wol code revisted */
2897#define ECORE_WOL_WR(_p_hwfn, _p_ptt, _offset, _val) ECORE_IS_BB(_p_hwfn->p_dev) ? \
2898 ecore_wr(_p_hwfn, _p_ptt, _offset, _val) : \
2899 ecore_mcp_wol_wr(_p_hwfn, _p_ptt, _offset, _val);
2900
2573enum _ecore_status_t ecore_set_nwuf_reg(struct ecore_dev *p_dev,
2574 const bool b_enable,
2575 u32 reg_idx,
2576 u32 pattern_size,
2577 u32 crc)
2901enum _ecore_status_t ecore_set_nwuf_reg(struct ecore_dev *p_dev, u32 reg_idx,
2902 u32 pattern_size, u32 crc)
2578{
2579 struct ecore_hwfn *hwfn = &p_dev->hwfns[0];
2903{
2904 struct ecore_hwfn *hwfn = &p_dev->hwfns[0];
2905 enum _ecore_status_t rc = ECORE_SUCCESS;
2906 struct ecore_ptt *p_ptt;
2580 u32 reg_len = 0;
2581 u32 reg_crc = 0;
2582
2907 u32 reg_len = 0;
2908 u32 reg_crc = 0;
2909
2910 p_ptt = ecore_ptt_acquire(hwfn);
2911 if (!p_ptt)
2912 return ECORE_AGAIN;
2913
2583 /* Get length and CRC register offsets */
2584 switch (reg_idx)
2585 {
2586 case 0:
2587 reg_len = ECORE_IS_BB(p_dev) ? NIG_REG_ACPI_PAT_0_LEN_BB :
2588 WOL_REG_ACPI_PAT_0_LEN_K2_E5;
2589 reg_crc = ECORE_IS_BB(p_dev) ? NIG_REG_ACPI_PAT_0_CRC_BB :
2590 WOL_REG_ACPI_PAT_0_CRC_K2_E5;
2591 break;
2592 case 1:
2593 reg_len = ECORE_IS_BB(p_dev) ? NIG_REG_ACPI_PAT_1_LEN_BB :
2594 WOL_REG_ACPI_PAT_1_LEN_K2_E5;
2595 reg_crc = ECORE_IS_BB(p_dev) ? NIG_REG_ACPI_PAT_1_CRC_BB :
2596 WOL_REG_ACPI_PAT_1_CRC_K2_E5;
2597 break;
2598 case 2:
2599 reg_len = ECORE_IS_BB(p_dev) ? NIG_REG_ACPI_PAT_2_LEN_BB :
2600 WOL_REG_ACPI_PAT_2_LEN_K2_E5;
2601 reg_crc = ECORE_IS_BB(p_dev) ? NIG_REG_ACPI_PAT_2_CRC_BB :
2602 WOL_REG_ACPI_PAT_2_CRC_K2_E5;
2603 break;
2604 case 3:
2605 reg_len = ECORE_IS_BB(p_dev) ? NIG_REG_ACPI_PAT_3_LEN_BB :
2606 WOL_REG_ACPI_PAT_3_LEN_K2_E5;
2607 reg_crc = ECORE_IS_BB(p_dev) ? NIG_REG_ACPI_PAT_3_CRC_BB :
2608 WOL_REG_ACPI_PAT_3_CRC_K2_E5;
2609 break;
2610 case 4:
2611 reg_len = ECORE_IS_BB(p_dev) ? NIG_REG_ACPI_PAT_4_LEN_BB :
2612 WOL_REG_ACPI_PAT_4_LEN_K2_E5;
2613 reg_crc = ECORE_IS_BB(p_dev) ? NIG_REG_ACPI_PAT_4_CRC_BB :
2614 WOL_REG_ACPI_PAT_4_CRC_K2_E5;
2615 break;
2616 case 5:
2617 reg_len = ECORE_IS_BB(p_dev) ? NIG_REG_ACPI_PAT_5_LEN_BB :
2618 WOL_REG_ACPI_PAT_5_LEN_K2_E5;
2619 reg_crc = ECORE_IS_BB(p_dev) ? NIG_REG_ACPI_PAT_5_CRC_BB :
2620 WOL_REG_ACPI_PAT_5_CRC_K2_E5;
2621 break;
2622 case 6:
2623 reg_len = ECORE_IS_BB(p_dev) ? NIG_REG_ACPI_PAT_6_LEN_BB :
2624 WOL_REG_ACPI_PAT_6_LEN_K2_E5;
2625 reg_crc = ECORE_IS_BB(p_dev) ? NIG_REG_ACPI_PAT_6_CRC_BB :
2626 WOL_REG_ACPI_PAT_6_CRC_K2_E5;
2627 break;
2628 case 7:
2629 reg_len = ECORE_IS_BB(p_dev) ? NIG_REG_ACPI_PAT_7_LEN_BB :
2630 WOL_REG_ACPI_PAT_7_LEN_K2_E5;
2631 reg_crc = ECORE_IS_BB(p_dev) ? NIG_REG_ACPI_PAT_7_CRC_BB :
2632 WOL_REG_ACPI_PAT_7_CRC_K2_E5;
2633 break;
2634 default:
2914 /* Get length and CRC register offsets */
2915 switch (reg_idx)
2916 {
2917 case 0:
2918 reg_len = ECORE_IS_BB(p_dev) ? NIG_REG_ACPI_PAT_0_LEN_BB :
2919 WOL_REG_ACPI_PAT_0_LEN_K2_E5;
2920 reg_crc = ECORE_IS_BB(p_dev) ? NIG_REG_ACPI_PAT_0_CRC_BB :
2921 WOL_REG_ACPI_PAT_0_CRC_K2_E5;
2922 break;
2923 case 1:
2924 reg_len = ECORE_IS_BB(p_dev) ? NIG_REG_ACPI_PAT_1_LEN_BB :
2925 WOL_REG_ACPI_PAT_1_LEN_K2_E5;
2926 reg_crc = ECORE_IS_BB(p_dev) ? NIG_REG_ACPI_PAT_1_CRC_BB :
2927 WOL_REG_ACPI_PAT_1_CRC_K2_E5;
2928 break;
2929 case 2:
2930 reg_len = ECORE_IS_BB(p_dev) ? NIG_REG_ACPI_PAT_2_LEN_BB :
2931 WOL_REG_ACPI_PAT_2_LEN_K2_E5;
2932 reg_crc = ECORE_IS_BB(p_dev) ? NIG_REG_ACPI_PAT_2_CRC_BB :
2933 WOL_REG_ACPI_PAT_2_CRC_K2_E5;
2934 break;
2935 case 3:
2936 reg_len = ECORE_IS_BB(p_dev) ? NIG_REG_ACPI_PAT_3_LEN_BB :
2937 WOL_REG_ACPI_PAT_3_LEN_K2_E5;
2938 reg_crc = ECORE_IS_BB(p_dev) ? NIG_REG_ACPI_PAT_3_CRC_BB :
2939 WOL_REG_ACPI_PAT_3_CRC_K2_E5;
2940 break;
2941 case 4:
2942 reg_len = ECORE_IS_BB(p_dev) ? NIG_REG_ACPI_PAT_4_LEN_BB :
2943 WOL_REG_ACPI_PAT_4_LEN_K2_E5;
2944 reg_crc = ECORE_IS_BB(p_dev) ? NIG_REG_ACPI_PAT_4_CRC_BB :
2945 WOL_REG_ACPI_PAT_4_CRC_K2_E5;
2946 break;
2947 case 5:
2948 reg_len = ECORE_IS_BB(p_dev) ? NIG_REG_ACPI_PAT_5_LEN_BB :
2949 WOL_REG_ACPI_PAT_5_LEN_K2_E5;
2950 reg_crc = ECORE_IS_BB(p_dev) ? NIG_REG_ACPI_PAT_5_CRC_BB :
2951 WOL_REG_ACPI_PAT_5_CRC_K2_E5;
2952 break;
2953 case 6:
2954 reg_len = ECORE_IS_BB(p_dev) ? NIG_REG_ACPI_PAT_6_LEN_BB :
2955 WOL_REG_ACPI_PAT_6_LEN_K2_E5;
2956 reg_crc = ECORE_IS_BB(p_dev) ? NIG_REG_ACPI_PAT_6_CRC_BB :
2957 WOL_REG_ACPI_PAT_6_CRC_K2_E5;
2958 break;
2959 case 7:
2960 reg_len = ECORE_IS_BB(p_dev) ? NIG_REG_ACPI_PAT_7_LEN_BB :
2961 WOL_REG_ACPI_PAT_7_LEN_K2_E5;
2962 reg_crc = ECORE_IS_BB(p_dev) ? NIG_REG_ACPI_PAT_7_CRC_BB :
2963 WOL_REG_ACPI_PAT_7_CRC_K2_E5;
2964 break;
2965 default:
2635 return ECORE_UNKNOWN_ERROR;
2966 rc = ECORE_UNKNOWN_ERROR;
2967 goto out;
2636 }
2637
2638 /* Allign pattern size to 4 */
2639 while (pattern_size % 4)
2640 {
2641 pattern_size++;
2642 }
2643 /* write pattern length */
2968 }
2969
2970 /* Allign pattern size to 4 */
2971 while (pattern_size % 4)
2972 {
2973 pattern_size++;
2974 }
2975 /* write pattern length */
2644 ECORE_WOL_WR(hwfn, hwfn->p_main_ptt, reg_len, pattern_size);
2976 ECORE_WOL_WR(hwfn, p_ptt, reg_len, pattern_size);
2645
2646 /* write crc value*/
2977
2978 /* write crc value*/
2647 ECORE_WOL_WR(hwfn, hwfn->p_main_ptt, reg_crc, crc);
2979 ECORE_WOL_WR(hwfn, p_ptt, reg_crc, crc);
2648
2649 DP_INFO(p_dev,
2650 "ecore_set_nwuf_reg: idx[%d] reg_crc[0x%x=0x%08x] "
2651 "reg_len[0x%x=0x%x]\n",
2652 reg_idx, reg_crc, crc, reg_len, pattern_size);
2980
2981 DP_INFO(p_dev,
2982 "ecore_set_nwuf_reg: idx[%d] reg_crc[0x%x=0x%08x] "
2983 "reg_len[0x%x=0x%x]\n",
2984 reg_idx, reg_crc, crc, reg_len, pattern_size);
2985out:
2986 ecore_ptt_release(hwfn, p_ptt);
2653
2987
2654 return ECORE_SUCCESS;
2988 return rc;
2655}
2656
2989}
2990
2657void ecore_wol_buffer_clear(struct ecore_dev *p_dev)
2991void ecore_wol_buffer_clear(struct ecore_hwfn *p_hwfn,
2992 struct ecore_ptt *p_ptt)
2658{
2993{
2659 struct ecore_hwfn *hwfn = &p_dev->hwfns[0];
2660 const u32 wake_buffer_clear_offset =
2994 const u32 wake_buffer_clear_offset =
2661 ECORE_IS_BB(p_dev) ?
2995 ECORE_IS_BB(p_hwfn->p_dev) ?
2662 NIG_REG_WAKE_BUFFER_CLEAR_BB : WOL_REG_WAKE_BUFFER_CLEAR_K2_E5;
2663
2996 NIG_REG_WAKE_BUFFER_CLEAR_BB : WOL_REG_WAKE_BUFFER_CLEAR_K2_E5;
2997
2664 DP_INFO(p_dev,
2998 DP_INFO(p_hwfn->p_dev,
2665 "ecore_wol_buffer_clear: reset "
2666 "REG_WAKE_BUFFER_CLEAR offset=0x%08x\n",
2667 wake_buffer_clear_offset);
2668
2999 "ecore_wol_buffer_clear: reset "
3000 "REG_WAKE_BUFFER_CLEAR offset=0x%08x\n",
3001 wake_buffer_clear_offset);
3002
2669 ECORE_WOL_WR(hwfn, hwfn->p_main_ptt, wake_buffer_clear_offset, 1);
2670 ECORE_WOL_WR(hwfn, hwfn->p_main_ptt, wake_buffer_clear_offset, 0);
3003 ECORE_WOL_WR(p_hwfn, p_ptt, wake_buffer_clear_offset, 1);
3004 ECORE_WOL_WR(p_hwfn, p_ptt, wake_buffer_clear_offset, 0);
2671}
2672
3005}
3006
2673enum _ecore_status_t ecore_get_wake_info(struct ecore_dev *p_dev,
2674 struct ecore_wake_info *wake_info)
3007enum _ecore_status_t ecore_get_wake_info(struct ecore_hwfn *p_hwfn,
3008 struct ecore_ptt *p_ptt,
3009 struct ecore_wake_info *wake_info)
2675{
3010{
2676 struct ecore_hwfn *hwfn = &p_dev->hwfns[0];
3011 struct ecore_dev *p_dev = p_hwfn->p_dev;
2677 u32 *buf = OSAL_NULL;
2678 u32 i = 0;
2679 const u32 reg_wake_buffer_offest =
2680 ECORE_IS_BB(p_dev) ? NIG_REG_WAKE_BUFFER_BB :
2681 WOL_REG_WAKE_BUFFER_K2_E5;
2682
3012 u32 *buf = OSAL_NULL;
3013 u32 i = 0;
3014 const u32 reg_wake_buffer_offest =
3015 ECORE_IS_BB(p_dev) ? NIG_REG_WAKE_BUFFER_BB :
3016 WOL_REG_WAKE_BUFFER_K2_E5;
3017
2683 wake_info->wk_info = ecore_rd(hwfn, hwfn->p_main_ptt,
3018 wake_info->wk_info = ecore_rd(p_hwfn, p_ptt,
2684 ECORE_IS_BB(p_dev) ? NIG_REG_WAKE_INFO_BB :
2685 WOL_REG_WAKE_INFO_K2_E5);
3019 ECORE_IS_BB(p_dev) ? NIG_REG_WAKE_INFO_BB :
3020 WOL_REG_WAKE_INFO_K2_E5);
2686 wake_info->wk_details = ecore_rd(hwfn, hwfn->p_main_ptt,
3021 wake_info->wk_details = ecore_rd(p_hwfn, p_ptt,
2687 ECORE_IS_BB(p_dev) ? NIG_REG_WAKE_DETAILS_BB :
2688 WOL_REG_WAKE_DETAILS_K2_E5);
3022 ECORE_IS_BB(p_dev) ? NIG_REG_WAKE_DETAILS_BB :
3023 WOL_REG_WAKE_DETAILS_K2_E5);
2689 wake_info->wk_pkt_len = ecore_rd(hwfn, hwfn->p_main_ptt,
3024 wake_info->wk_pkt_len = ecore_rd(p_hwfn, p_ptt,
2690 ECORE_IS_BB(p_dev) ? NIG_REG_WAKE_PKT_LEN_BB :
2691 WOL_REG_WAKE_PKT_LEN_K2_E5);
2692
2693 DP_INFO(p_dev,
2694 "ecore_get_wake_info: REG_WAKE_INFO=0x%08x "
2695 "REG_WAKE_DETAILS=0x%08x "
2696 "REG_WAKE_PKT_LEN=0x%08x\n",
2697 wake_info->wk_info,
2698 wake_info->wk_details,
2699 wake_info->wk_pkt_len);
2700
2701 buf = (u32 *)wake_info->wk_buffer;
2702
2703 for (i = 0; i < (wake_info->wk_pkt_len / sizeof(u32)); i++)
2704 {
2705 if ((i*sizeof(u32)) >= sizeof(wake_info->wk_buffer))
2706 {
2707 DP_INFO(p_dev,
2708 "ecore_get_wake_info: i index to 0 high=%d\n",
2709 i);
2710 break;
2711 }
3025 ECORE_IS_BB(p_dev) ? NIG_REG_WAKE_PKT_LEN_BB :
3026 WOL_REG_WAKE_PKT_LEN_K2_E5);
3027
3028 DP_INFO(p_dev,
3029 "ecore_get_wake_info: REG_WAKE_INFO=0x%08x "
3030 "REG_WAKE_DETAILS=0x%08x "
3031 "REG_WAKE_PKT_LEN=0x%08x\n",
3032 wake_info->wk_info,
3033 wake_info->wk_details,
3034 wake_info->wk_pkt_len);
3035
3036 buf = (u32 *)wake_info->wk_buffer;
3037
3038 for (i = 0; i < (wake_info->wk_pkt_len / sizeof(u32)); i++)
3039 {
3040 if ((i*sizeof(u32)) >= sizeof(wake_info->wk_buffer))
3041 {
3042 DP_INFO(p_dev,
3043 "ecore_get_wake_info: i index to 0 high=%d\n",
3044 i);
3045 break;
3046 }
2712 buf[i] = ecore_rd(hwfn, hwfn->p_main_ptt,
3047 buf[i] = ecore_rd(p_hwfn, p_ptt,
2713 reg_wake_buffer_offest + (i * sizeof(u32)));
2714 DP_INFO(p_dev, "ecore_get_wake_info: wk_buffer[%u]: 0x%08x\n",
2715 i, buf[i]);
2716 }
2717
3048 reg_wake_buffer_offest + (i * sizeof(u32)));
3049 DP_INFO(p_dev, "ecore_get_wake_info: wk_buffer[%u]: 0x%08x\n",
3050 i, buf[i]);
3051 }
3052
2718 ecore_wol_buffer_clear(p_dev);
3053 ecore_wol_buffer_clear(p_hwfn, p_ptt);
2719
2720 return ECORE_SUCCESS;
2721}
2722
2723/* Free hwfn memory and resources acquired in hw_hwfn_prepare */
2724static void ecore_hw_hwfn_free(struct ecore_hwfn *p_hwfn)
2725{
2726 ecore_ptt_pool_free(p_hwfn);
2727 OSAL_FREE(p_hwfn->p_dev, p_hwfn->hw_info.p_igu_info);
2728 p_hwfn->hw_info.p_igu_info = OSAL_NULL;
2729}
2730
2731/* Setup bar access */
2732static void ecore_hw_hwfn_prepare(struct ecore_hwfn *p_hwfn)
2733{
2734 /* clear indirect access */
2735 if (ECORE_IS_AH(p_hwfn->p_dev) || ECORE_IS_E5(p_hwfn->p_dev)) {
2736 ecore_wr(p_hwfn, p_hwfn->p_main_ptt,
2737 PGLUE_B_REG_PGL_ADDR_E8_F0_K2_E5, 0);
2738 ecore_wr(p_hwfn, p_hwfn->p_main_ptt,
2739 PGLUE_B_REG_PGL_ADDR_EC_F0_K2_E5, 0);
2740 ecore_wr(p_hwfn, p_hwfn->p_main_ptt,
2741 PGLUE_B_REG_PGL_ADDR_F0_F0_K2_E5, 0);
2742 ecore_wr(p_hwfn, p_hwfn->p_main_ptt,
2743 PGLUE_B_REG_PGL_ADDR_F4_F0_K2_E5, 0);
2744 } else {
2745 ecore_wr(p_hwfn, p_hwfn->p_main_ptt,
2746 PGLUE_B_REG_PGL_ADDR_88_F0_BB, 0);
2747 ecore_wr(p_hwfn, p_hwfn->p_main_ptt,
2748 PGLUE_B_REG_PGL_ADDR_8C_F0_BB, 0);
2749 ecore_wr(p_hwfn, p_hwfn->p_main_ptt,
2750 PGLUE_B_REG_PGL_ADDR_90_F0_BB, 0);
2751 ecore_wr(p_hwfn, p_hwfn->p_main_ptt,
2752 PGLUE_B_REG_PGL_ADDR_94_F0_BB, 0);
2753 }
2754
2755 /* Clean Previous errors if such exist */
2756 ecore_wr(p_hwfn, p_hwfn->p_main_ptt,
2757 PGLUE_B_REG_WAS_ERROR_PF_31_0_CLR,
2758 1 << p_hwfn->abs_pf_id);
2759
2760 /* enable internal target-read */
2761 ecore_wr(p_hwfn, p_hwfn->p_main_ptt,
2762 PGLUE_B_REG_INTERNAL_PFID_ENABLE_TARGET_READ, 1);
2763}
2764
2765static void get_function_id(struct ecore_hwfn *p_hwfn)
2766{
2767 /* ME Register */
2768 p_hwfn->hw_info.opaque_fid = (u16) REG_RD(p_hwfn,
2769 PXP_PF_ME_OPAQUE_ADDR);
2770
2771 p_hwfn->hw_info.concrete_fid = REG_RD(p_hwfn, PXP_PF_ME_CONCRETE_ADDR);
2772
2773 /* Bits 16-19 from the ME registers are the pf_num */
2774 p_hwfn->abs_pf_id = (p_hwfn->hw_info.concrete_fid >> 16) & 0xf;
2775 p_hwfn->rel_pf_id = GET_FIELD(p_hwfn->hw_info.concrete_fid,
2776 PXP_CONCRETE_FID_PFID);
2777 p_hwfn->port_id = GET_FIELD(p_hwfn->hw_info.concrete_fid,
2778 PXP_CONCRETE_FID_PORT);
2779
2780 DP_VERBOSE(p_hwfn, ECORE_MSG_PROBE,
2781 "Read ME register: Concrete 0x%08x Opaque 0x%04x\n",
2782 p_hwfn->hw_info.concrete_fid, p_hwfn->hw_info.opaque_fid);
2783}
2784
2785void ecore_hw_set_feat(struct ecore_hwfn *p_hwfn)
2786{
2787 u32 *feat_num = p_hwfn->hw_info.feat_num;
2788 struct ecore_sb_cnt_info sb_cnt;
2789 u32 non_l2_sbs = 0;
2790
2791 OSAL_MEM_ZERO(&sb_cnt, sizeof(sb_cnt));
2792 ecore_int_get_num_sbs(p_hwfn, &sb_cnt);
2793
2794#ifdef CONFIG_ECORE_ROCE
2795 /* Roce CNQ require each: 1 status block. 1 CNQ, we divide the
2796 * status blocks equally between L2 / RoCE but with consideration as
2797 * to how many l2 queues / cnqs we have
2798 */
2799 if (ECORE_IS_RDMA_PERSONALITY(p_hwfn)) {
2800 u32 max_cnqs;
2801
2802 feat_num[ECORE_RDMA_CNQ] =
2803 OSAL_MIN_T(u32,
2804 sb_cnt.cnt / 2,
2805 RESC_NUM(p_hwfn, ECORE_RDMA_CNQ_RAM));
2806
2807 /* Upper layer might require less */
2808 max_cnqs = (u32)p_hwfn->pf_params.rdma_pf_params.max_cnqs;
2809 if (max_cnqs) {
2810 if (max_cnqs == ECORE_RDMA_PF_PARAMS_CNQS_NONE)
2811 max_cnqs = 0;
2812 feat_num[ECORE_RDMA_CNQ] =
2813 OSAL_MIN_T(u32,
2814 feat_num[ECORE_RDMA_CNQ],
2815 max_cnqs);
2816 }
2817
2818 non_l2_sbs = feat_num[ECORE_RDMA_CNQ];
2819 }
2820#endif
2821
2822 /* L2 Queues require each: 1 status block. 1 L2 queue */
2823 if (ECORE_IS_L2_PERSONALITY(p_hwfn)) {
2824 /* Start by allocating VF queues, then PF's */
2825 feat_num[ECORE_VF_L2_QUE] =
2826 OSAL_MIN_T(u32,
2827 RESC_NUM(p_hwfn, ECORE_L2_QUEUE),
2828 sb_cnt.iov_cnt);
2829 feat_num[ECORE_PF_L2_QUE] =
2830 OSAL_MIN_T(u32,
2831 sb_cnt.cnt - non_l2_sbs,
2832 RESC_NUM(p_hwfn, ECORE_L2_QUEUE) -
2833 FEAT_NUM(p_hwfn, ECORE_VF_L2_QUE));
2834 }
2835
2836 if (ECORE_IS_FCOE_PERSONALITY(p_hwfn))
2837 feat_num[ECORE_FCOE_CQ] =
2838 OSAL_MIN_T(u32, sb_cnt.cnt, RESC_NUM(p_hwfn,
2839 ECORE_CMDQS_CQS));
2840
2841 if (ECORE_IS_ISCSI_PERSONALITY(p_hwfn))
2842 feat_num[ECORE_ISCSI_CQ] =
2843 OSAL_MIN_T(u32, sb_cnt.cnt, RESC_NUM(p_hwfn,
2844 ECORE_CMDQS_CQS));
2845
2846 DP_VERBOSE(p_hwfn, ECORE_MSG_PROBE,
2847 "#PF_L2_QUEUE=%d VF_L2_QUEUES=%d #ROCE_CNQ=%d #FCOE_CQ=%d #ISCSI_CQ=%d #SB=%d\n",
2848 (int)FEAT_NUM(p_hwfn, ECORE_PF_L2_QUE),
2849 (int)FEAT_NUM(p_hwfn, ECORE_VF_L2_QUE),
2850 (int)FEAT_NUM(p_hwfn, ECORE_RDMA_CNQ),
2851 (int)FEAT_NUM(p_hwfn, ECORE_FCOE_CQ),
2852 (int)FEAT_NUM(p_hwfn, ECORE_ISCSI_CQ),
2853 (int)sb_cnt.cnt);
2854}
2855
2856const char *ecore_hw_get_resc_name(enum ecore_resources res_id)
2857{
2858 switch (res_id) {
2859 case ECORE_L2_QUEUE:
2860 return "L2_QUEUE";
2861 case ECORE_VPORT:
2862 return "VPORT";
2863 case ECORE_RSS_ENG:
2864 return "RSS_ENG";
2865 case ECORE_PQ:
2866 return "PQ";
2867 case ECORE_RL:
2868 return "RL";
2869 case ECORE_MAC:
2870 return "MAC";
2871 case ECORE_VLAN:
2872 return "VLAN";
2873 case ECORE_RDMA_CNQ_RAM:
2874 return "RDMA_CNQ_RAM";
2875 case ECORE_ILT:
2876 return "ILT";
2877 case ECORE_LL2_QUEUE:
2878 return "LL2_QUEUE";
2879 case ECORE_CMDQS_CQS:
2880 return "CMDQS_CQS";
2881 case ECORE_RDMA_STATS_QUEUE:
2882 return "RDMA_STATS_QUEUE";
2883 case ECORE_BDQ:
2884 return "BDQ";
2885 case ECORE_SB:
2886 return "SB";
2887 default:
2888 return "UNKNOWN_RESOURCE";
2889 }
2890}
2891
2892static enum _ecore_status_t
2893__ecore_hw_set_soft_resc_size(struct ecore_hwfn *p_hwfn,
3054
3055 return ECORE_SUCCESS;
3056}
3057
3058/* Free hwfn memory and resources acquired in hw_hwfn_prepare */
3059static void ecore_hw_hwfn_free(struct ecore_hwfn *p_hwfn)
3060{
3061 ecore_ptt_pool_free(p_hwfn);
3062 OSAL_FREE(p_hwfn->p_dev, p_hwfn->hw_info.p_igu_info);
3063 p_hwfn->hw_info.p_igu_info = OSAL_NULL;
3064}
3065
3066/* Setup bar access */
3067static void ecore_hw_hwfn_prepare(struct ecore_hwfn *p_hwfn)
3068{
3069 /* clear indirect access */
3070 if (ECORE_IS_AH(p_hwfn->p_dev) || ECORE_IS_E5(p_hwfn->p_dev)) {
3071 ecore_wr(p_hwfn, p_hwfn->p_main_ptt,
3072 PGLUE_B_REG_PGL_ADDR_E8_F0_K2_E5, 0);
3073 ecore_wr(p_hwfn, p_hwfn->p_main_ptt,
3074 PGLUE_B_REG_PGL_ADDR_EC_F0_K2_E5, 0);
3075 ecore_wr(p_hwfn, p_hwfn->p_main_ptt,
3076 PGLUE_B_REG_PGL_ADDR_F0_F0_K2_E5, 0);
3077 ecore_wr(p_hwfn, p_hwfn->p_main_ptt,
3078 PGLUE_B_REG_PGL_ADDR_F4_F0_K2_E5, 0);
3079 } else {
3080 ecore_wr(p_hwfn, p_hwfn->p_main_ptt,
3081 PGLUE_B_REG_PGL_ADDR_88_F0_BB, 0);
3082 ecore_wr(p_hwfn, p_hwfn->p_main_ptt,
3083 PGLUE_B_REG_PGL_ADDR_8C_F0_BB, 0);
3084 ecore_wr(p_hwfn, p_hwfn->p_main_ptt,
3085 PGLUE_B_REG_PGL_ADDR_90_F0_BB, 0);
3086 ecore_wr(p_hwfn, p_hwfn->p_main_ptt,
3087 PGLUE_B_REG_PGL_ADDR_94_F0_BB, 0);
3088 }
3089
3090 /* Clean Previous errors if such exist */
3091 ecore_wr(p_hwfn, p_hwfn->p_main_ptt,
3092 PGLUE_B_REG_WAS_ERROR_PF_31_0_CLR,
3093 1 << p_hwfn->abs_pf_id);
3094
3095 /* enable internal target-read */
3096 ecore_wr(p_hwfn, p_hwfn->p_main_ptt,
3097 PGLUE_B_REG_INTERNAL_PFID_ENABLE_TARGET_READ, 1);
3098}
3099
3100static void get_function_id(struct ecore_hwfn *p_hwfn)
3101{
3102 /* ME Register */
3103 p_hwfn->hw_info.opaque_fid = (u16) REG_RD(p_hwfn,
3104 PXP_PF_ME_OPAQUE_ADDR);
3105
3106 p_hwfn->hw_info.concrete_fid = REG_RD(p_hwfn, PXP_PF_ME_CONCRETE_ADDR);
3107
3108 /* Bits 16-19 from the ME registers are the pf_num */
3109 p_hwfn->abs_pf_id = (p_hwfn->hw_info.concrete_fid >> 16) & 0xf;
3110 p_hwfn->rel_pf_id = GET_FIELD(p_hwfn->hw_info.concrete_fid,
3111 PXP_CONCRETE_FID_PFID);
3112 p_hwfn->port_id = GET_FIELD(p_hwfn->hw_info.concrete_fid,
3113 PXP_CONCRETE_FID_PORT);
3114
3115 DP_VERBOSE(p_hwfn, ECORE_MSG_PROBE,
3116 "Read ME register: Concrete 0x%08x Opaque 0x%04x\n",
3117 p_hwfn->hw_info.concrete_fid, p_hwfn->hw_info.opaque_fid);
3118}
3119
3120void ecore_hw_set_feat(struct ecore_hwfn *p_hwfn)
3121{
3122 u32 *feat_num = p_hwfn->hw_info.feat_num;
3123 struct ecore_sb_cnt_info sb_cnt;
3124 u32 non_l2_sbs = 0;
3125
3126 OSAL_MEM_ZERO(&sb_cnt, sizeof(sb_cnt));
3127 ecore_int_get_num_sbs(p_hwfn, &sb_cnt);
3128
3129#ifdef CONFIG_ECORE_ROCE
3130 /* Roce CNQ require each: 1 status block. 1 CNQ, we divide the
3131 * status blocks equally between L2 / RoCE but with consideration as
3132 * to how many l2 queues / cnqs we have
3133 */
3134 if (ECORE_IS_RDMA_PERSONALITY(p_hwfn)) {
3135 u32 max_cnqs;
3136
3137 feat_num[ECORE_RDMA_CNQ] =
3138 OSAL_MIN_T(u32,
3139 sb_cnt.cnt / 2,
3140 RESC_NUM(p_hwfn, ECORE_RDMA_CNQ_RAM));
3141
3142 /* Upper layer might require less */
3143 max_cnqs = (u32)p_hwfn->pf_params.rdma_pf_params.max_cnqs;
3144 if (max_cnqs) {
3145 if (max_cnqs == ECORE_RDMA_PF_PARAMS_CNQS_NONE)
3146 max_cnqs = 0;
3147 feat_num[ECORE_RDMA_CNQ] =
3148 OSAL_MIN_T(u32,
3149 feat_num[ECORE_RDMA_CNQ],
3150 max_cnqs);
3151 }
3152
3153 non_l2_sbs = feat_num[ECORE_RDMA_CNQ];
3154 }
3155#endif
3156
3157 /* L2 Queues require each: 1 status block. 1 L2 queue */
3158 if (ECORE_IS_L2_PERSONALITY(p_hwfn)) {
3159 /* Start by allocating VF queues, then PF's */
3160 feat_num[ECORE_VF_L2_QUE] =
3161 OSAL_MIN_T(u32,
3162 RESC_NUM(p_hwfn, ECORE_L2_QUEUE),
3163 sb_cnt.iov_cnt);
3164 feat_num[ECORE_PF_L2_QUE] =
3165 OSAL_MIN_T(u32,
3166 sb_cnt.cnt - non_l2_sbs,
3167 RESC_NUM(p_hwfn, ECORE_L2_QUEUE) -
3168 FEAT_NUM(p_hwfn, ECORE_VF_L2_QUE));
3169 }
3170
3171 if (ECORE_IS_FCOE_PERSONALITY(p_hwfn))
3172 feat_num[ECORE_FCOE_CQ] =
3173 OSAL_MIN_T(u32, sb_cnt.cnt, RESC_NUM(p_hwfn,
3174 ECORE_CMDQS_CQS));
3175
3176 if (ECORE_IS_ISCSI_PERSONALITY(p_hwfn))
3177 feat_num[ECORE_ISCSI_CQ] =
3178 OSAL_MIN_T(u32, sb_cnt.cnt, RESC_NUM(p_hwfn,
3179 ECORE_CMDQS_CQS));
3180
3181 DP_VERBOSE(p_hwfn, ECORE_MSG_PROBE,
3182 "#PF_L2_QUEUE=%d VF_L2_QUEUES=%d #ROCE_CNQ=%d #FCOE_CQ=%d #ISCSI_CQ=%d #SB=%d\n",
3183 (int)FEAT_NUM(p_hwfn, ECORE_PF_L2_QUE),
3184 (int)FEAT_NUM(p_hwfn, ECORE_VF_L2_QUE),
3185 (int)FEAT_NUM(p_hwfn, ECORE_RDMA_CNQ),
3186 (int)FEAT_NUM(p_hwfn, ECORE_FCOE_CQ),
3187 (int)FEAT_NUM(p_hwfn, ECORE_ISCSI_CQ),
3188 (int)sb_cnt.cnt);
3189}
3190
3191const char *ecore_hw_get_resc_name(enum ecore_resources res_id)
3192{
3193 switch (res_id) {
3194 case ECORE_L2_QUEUE:
3195 return "L2_QUEUE";
3196 case ECORE_VPORT:
3197 return "VPORT";
3198 case ECORE_RSS_ENG:
3199 return "RSS_ENG";
3200 case ECORE_PQ:
3201 return "PQ";
3202 case ECORE_RL:
3203 return "RL";
3204 case ECORE_MAC:
3205 return "MAC";
3206 case ECORE_VLAN:
3207 return "VLAN";
3208 case ECORE_RDMA_CNQ_RAM:
3209 return "RDMA_CNQ_RAM";
3210 case ECORE_ILT:
3211 return "ILT";
3212 case ECORE_LL2_QUEUE:
3213 return "LL2_QUEUE";
3214 case ECORE_CMDQS_CQS:
3215 return "CMDQS_CQS";
3216 case ECORE_RDMA_STATS_QUEUE:
3217 return "RDMA_STATS_QUEUE";
3218 case ECORE_BDQ:
3219 return "BDQ";
3220 case ECORE_SB:
3221 return "SB";
3222 default:
3223 return "UNKNOWN_RESOURCE";
3224 }
3225}
3226
3227static enum _ecore_status_t
3228__ecore_hw_set_soft_resc_size(struct ecore_hwfn *p_hwfn,
2894 enum ecore_resources res_id, u32 resc_max_val,
3229 struct ecore_ptt *p_ptt,
3230 enum ecore_resources res_id,
3231 u32 resc_max_val,
2895 u32 *p_mcp_resp)
2896{
2897 enum _ecore_status_t rc;
2898
3232 u32 *p_mcp_resp)
3233{
3234 enum _ecore_status_t rc;
3235
2899 rc = ecore_mcp_set_resc_max_val(p_hwfn, p_hwfn->p_main_ptt, res_id,
3236 rc = ecore_mcp_set_resc_max_val(p_hwfn, p_ptt, res_id,
2900 resc_max_val, p_mcp_resp);
2901 if (rc != ECORE_SUCCESS) {
2902 DP_NOTICE(p_hwfn, true,
2903 "MFW response failure for a max value setting of resource %d [%s]\n",
2904 res_id, ecore_hw_get_resc_name(res_id));
2905 return rc;
2906 }
2907
2908 if (*p_mcp_resp != FW_MSG_CODE_RESOURCE_ALLOC_OK)
2909 DP_INFO(p_hwfn,
2910 "Failed to set the max value of resource %d [%s]. mcp_resp = 0x%08x.\n",
2911 res_id, ecore_hw_get_resc_name(res_id), *p_mcp_resp);
2912
2913 return ECORE_SUCCESS;
2914}
2915
2916static enum _ecore_status_t
3237 resc_max_val, p_mcp_resp);
3238 if (rc != ECORE_SUCCESS) {
3239 DP_NOTICE(p_hwfn, true,
3240 "MFW response failure for a max value setting of resource %d [%s]\n",
3241 res_id, ecore_hw_get_resc_name(res_id));
3242 return rc;
3243 }
3244
3245 if (*p_mcp_resp != FW_MSG_CODE_RESOURCE_ALLOC_OK)
3246 DP_INFO(p_hwfn,
3247 "Failed to set the max value of resource %d [%s]. mcp_resp = 0x%08x.\n",
3248 res_id, ecore_hw_get_resc_name(res_id), *p_mcp_resp);
3249
3250 return ECORE_SUCCESS;
3251}
3252
3253static enum _ecore_status_t
2917ecore_hw_set_soft_resc_size(struct ecore_hwfn *p_hwfn)
3254ecore_hw_set_soft_resc_size(struct ecore_hwfn *p_hwfn,
3255 struct ecore_ptt *p_ptt)
2918{
2919 bool b_ah = ECORE_IS_AH(p_hwfn->p_dev);
2920 u32 resc_max_val, mcp_resp;
2921 u8 res_id;
2922 enum _ecore_status_t rc;
2923
2924 for (res_id = 0; res_id < ECORE_MAX_RESC; res_id++) {
2925 switch (res_id) {
2926 case ECORE_LL2_QUEUE:
2927 resc_max_val = MAX_NUM_LL2_RX_QUEUES;
2928 break;
2929 case ECORE_RDMA_CNQ_RAM:
2930 /* No need for a case for ECORE_CMDQS_CQS since
2931 * CNQ/CMDQS are the same resource.
2932 */
3256{
3257 bool b_ah = ECORE_IS_AH(p_hwfn->p_dev);
3258 u32 resc_max_val, mcp_resp;
3259 u8 res_id;
3260 enum _ecore_status_t rc;
3261
3262 for (res_id = 0; res_id < ECORE_MAX_RESC; res_id++) {
3263 switch (res_id) {
3264 case ECORE_LL2_QUEUE:
3265 resc_max_val = MAX_NUM_LL2_RX_QUEUES;
3266 break;
3267 case ECORE_RDMA_CNQ_RAM:
3268 /* No need for a case for ECORE_CMDQS_CQS since
3269 * CNQ/CMDQS are the same resource.
3270 */
2933 resc_max_val = NUM_OF_GLOBAL_QUEUES;
3271 resc_max_val = NUM_OF_CMDQS_CQS;
2934 break;
2935 case ECORE_RDMA_STATS_QUEUE:
2936 resc_max_val = b_ah ? RDMA_NUM_STATISTIC_COUNTERS_K2
2937 : RDMA_NUM_STATISTIC_COUNTERS_BB;
2938 break;
2939 case ECORE_BDQ:
2940 resc_max_val = BDQ_NUM_RESOURCES;
2941 break;
2942 default:
2943 continue;
2944 }
2945
3272 break;
3273 case ECORE_RDMA_STATS_QUEUE:
3274 resc_max_val = b_ah ? RDMA_NUM_STATISTIC_COUNTERS_K2
3275 : RDMA_NUM_STATISTIC_COUNTERS_BB;
3276 break;
3277 case ECORE_BDQ:
3278 resc_max_val = BDQ_NUM_RESOURCES;
3279 break;
3280 default:
3281 continue;
3282 }
3283
2946 rc = __ecore_hw_set_soft_resc_size(p_hwfn, res_id,
3284 rc = __ecore_hw_set_soft_resc_size(p_hwfn, p_ptt, res_id,
2947 resc_max_val, &mcp_resp);
2948 if (rc != ECORE_SUCCESS)
2949 return rc;
2950
2951 /* There's no point to continue to the next resource if the
2952 * command is not supported by the MFW.
2953 * We do continue if the command is supported but the resource
2954 * is unknown to the MFW. Such a resource will be later
2955 * configured with the default allocation values.
2956 */
2957 if (mcp_resp == FW_MSG_CODE_UNSUPPORTED)
2958 return ECORE_NOTIMPL;
2959 }
2960
2961 return ECORE_SUCCESS;
2962}
2963
2964static
2965enum _ecore_status_t ecore_hw_get_dflt_resc(struct ecore_hwfn *p_hwfn,
2966 enum ecore_resources res_id,
2967 u32 *p_resc_num, u32 *p_resc_start)
2968{
2969 u8 num_funcs = p_hwfn->num_funcs_on_engine;
2970 bool b_ah = ECORE_IS_AH(p_hwfn->p_dev);
2971
2972 switch (res_id) {
2973 case ECORE_L2_QUEUE:
2974 *p_resc_num = (b_ah ? MAX_NUM_L2_QUEUES_K2 :
2975 MAX_NUM_L2_QUEUES_BB) / num_funcs;
2976 break;
2977 case ECORE_VPORT:
2978 *p_resc_num = (b_ah ? MAX_NUM_VPORTS_K2 :
2979 MAX_NUM_VPORTS_BB) / num_funcs;
2980 break;
2981 case ECORE_RSS_ENG:
2982 *p_resc_num = (b_ah ? ETH_RSS_ENGINE_NUM_K2 :
2983 ETH_RSS_ENGINE_NUM_BB) / num_funcs;
2984 break;
2985 case ECORE_PQ:
2986 *p_resc_num = (b_ah ? MAX_QM_TX_QUEUES_K2 :
2987 MAX_QM_TX_QUEUES_BB) / num_funcs;
2988 *p_resc_num &= ~0x7; /* The granularity of the PQs is 8 */
2989 break;
2990 case ECORE_RL:
2991 *p_resc_num = MAX_QM_GLOBAL_RLS / num_funcs;
2992 break;
2993 case ECORE_MAC:
2994 case ECORE_VLAN:
2995 /* Each VFC resource can accommodate both a MAC and a VLAN */
2996 *p_resc_num = ETH_NUM_MAC_FILTERS / num_funcs;
2997 break;
2998 case ECORE_ILT:
2999 *p_resc_num = (b_ah ? PXP_NUM_ILT_RECORDS_K2 :
3000 PXP_NUM_ILT_RECORDS_BB) / num_funcs;
3001 break;
3002 case ECORE_LL2_QUEUE:
3003 *p_resc_num = MAX_NUM_LL2_RX_QUEUES / num_funcs;
3004 break;
3005 case ECORE_RDMA_CNQ_RAM:
3006 case ECORE_CMDQS_CQS:
3007 /* CNQ/CMDQS are the same resource */
3285 resc_max_val, &mcp_resp);
3286 if (rc != ECORE_SUCCESS)
3287 return rc;
3288
3289 /* There's no point to continue to the next resource if the
3290 * command is not supported by the MFW.
3291 * We do continue if the command is supported but the resource
3292 * is unknown to the MFW. Such a resource will be later
3293 * configured with the default allocation values.
3294 */
3295 if (mcp_resp == FW_MSG_CODE_UNSUPPORTED)
3296 return ECORE_NOTIMPL;
3297 }
3298
3299 return ECORE_SUCCESS;
3300}
3301
3302static
3303enum _ecore_status_t ecore_hw_get_dflt_resc(struct ecore_hwfn *p_hwfn,
3304 enum ecore_resources res_id,
3305 u32 *p_resc_num, u32 *p_resc_start)
3306{
3307 u8 num_funcs = p_hwfn->num_funcs_on_engine;
3308 bool b_ah = ECORE_IS_AH(p_hwfn->p_dev);
3309
3310 switch (res_id) {
3311 case ECORE_L2_QUEUE:
3312 *p_resc_num = (b_ah ? MAX_NUM_L2_QUEUES_K2 :
3313 MAX_NUM_L2_QUEUES_BB) / num_funcs;
3314 break;
3315 case ECORE_VPORT:
3316 *p_resc_num = (b_ah ? MAX_NUM_VPORTS_K2 :
3317 MAX_NUM_VPORTS_BB) / num_funcs;
3318 break;
3319 case ECORE_RSS_ENG:
3320 *p_resc_num = (b_ah ? ETH_RSS_ENGINE_NUM_K2 :
3321 ETH_RSS_ENGINE_NUM_BB) / num_funcs;
3322 break;
3323 case ECORE_PQ:
3324 *p_resc_num = (b_ah ? MAX_QM_TX_QUEUES_K2 :
3325 MAX_QM_TX_QUEUES_BB) / num_funcs;
3326 *p_resc_num &= ~0x7; /* The granularity of the PQs is 8 */
3327 break;
3328 case ECORE_RL:
3329 *p_resc_num = MAX_QM_GLOBAL_RLS / num_funcs;
3330 break;
3331 case ECORE_MAC:
3332 case ECORE_VLAN:
3333 /* Each VFC resource can accommodate both a MAC and a VLAN */
3334 *p_resc_num = ETH_NUM_MAC_FILTERS / num_funcs;
3335 break;
3336 case ECORE_ILT:
3337 *p_resc_num = (b_ah ? PXP_NUM_ILT_RECORDS_K2 :
3338 PXP_NUM_ILT_RECORDS_BB) / num_funcs;
3339 break;
3340 case ECORE_LL2_QUEUE:
3341 *p_resc_num = MAX_NUM_LL2_RX_QUEUES / num_funcs;
3342 break;
3343 case ECORE_RDMA_CNQ_RAM:
3344 case ECORE_CMDQS_CQS:
3345 /* CNQ/CMDQS are the same resource */
3008 *p_resc_num = NUM_OF_GLOBAL_QUEUES / num_funcs;
3346 *p_resc_num = NUM_OF_CMDQS_CQS / num_funcs;
3009 break;
3010 case ECORE_RDMA_STATS_QUEUE:
3011 *p_resc_num = (b_ah ? RDMA_NUM_STATISTIC_COUNTERS_K2 :
3012 RDMA_NUM_STATISTIC_COUNTERS_BB) /
3013 num_funcs;
3014 break;
3015 case ECORE_BDQ:
3016 if (p_hwfn->hw_info.personality != ECORE_PCI_ISCSI &&
3017 p_hwfn->hw_info.personality != ECORE_PCI_FCOE)
3018 *p_resc_num = 0;
3019 else
3020 *p_resc_num = 1;
3021 break;
3022 case ECORE_SB:
3023 /* Since we want its value to reflect whether MFW supports
3024 * the new scheme, have a default of 0.
3025 */
3026 *p_resc_num = 0;
3027 break;
3028 default:
3029 return ECORE_INVAL;
3030 }
3031
3032 switch (res_id) {
3033 case ECORE_BDQ:
3034 if (!*p_resc_num)
3035 *p_resc_start = 0;
3347 break;
3348 case ECORE_RDMA_STATS_QUEUE:
3349 *p_resc_num = (b_ah ? RDMA_NUM_STATISTIC_COUNTERS_K2 :
3350 RDMA_NUM_STATISTIC_COUNTERS_BB) /
3351 num_funcs;
3352 break;
3353 case ECORE_BDQ:
3354 if (p_hwfn->hw_info.personality != ECORE_PCI_ISCSI &&
3355 p_hwfn->hw_info.personality != ECORE_PCI_FCOE)
3356 *p_resc_num = 0;
3357 else
3358 *p_resc_num = 1;
3359 break;
3360 case ECORE_SB:
3361 /* Since we want its value to reflect whether MFW supports
3362 * the new scheme, have a default of 0.
3363 */
3364 *p_resc_num = 0;
3365 break;
3366 default:
3367 return ECORE_INVAL;
3368 }
3369
3370 switch (res_id) {
3371 case ECORE_BDQ:
3372 if (!*p_resc_num)
3373 *p_resc_start = 0;
3036 else if (p_hwfn->p_dev->num_ports_in_engines == 4)
3374 else if (p_hwfn->p_dev->num_ports_in_engine == 4)
3037 *p_resc_start = p_hwfn->port_id;
3038 else if (p_hwfn->hw_info.personality == ECORE_PCI_ISCSI)
3039 *p_resc_start = p_hwfn->port_id;
3040 else if (p_hwfn->hw_info.personality == ECORE_PCI_FCOE)
3041 *p_resc_start = p_hwfn->port_id + 2;
3042 break;
3043 default:
3044 *p_resc_start = *p_resc_num * p_hwfn->enabled_func_idx;
3045 break;
3046 }
3047
3048 return ECORE_SUCCESS;
3049}
3050
3051static enum _ecore_status_t
3052__ecore_hw_set_resc_info(struct ecore_hwfn *p_hwfn, enum ecore_resources res_id,
3053 bool drv_resc_alloc)
3054{
3055 u32 dflt_resc_num = 0, dflt_resc_start = 0;
3056 u32 mcp_resp, *p_resc_num, *p_resc_start;
3057 enum _ecore_status_t rc;
3058
3059 p_resc_num = &RESC_NUM(p_hwfn, res_id);
3060 p_resc_start = &RESC_START(p_hwfn, res_id);
3061
3062 rc = ecore_hw_get_dflt_resc(p_hwfn, res_id, &dflt_resc_num,
3063 &dflt_resc_start);
3064 if (rc != ECORE_SUCCESS) {
3065 DP_ERR(p_hwfn,
3066 "Failed to get default amount for resource %d [%s]\n",
3067 res_id, ecore_hw_get_resc_name(res_id));
3068 return rc;
3069 }
3070
3071#ifndef ASIC_ONLY
3072 if (CHIP_REV_IS_SLOW(p_hwfn->p_dev)) {
3073 *p_resc_num = dflt_resc_num;
3074 *p_resc_start = dflt_resc_start;
3075 goto out;
3076 }
3077#endif
3078
3079 rc = ecore_mcp_get_resc_info(p_hwfn, p_hwfn->p_main_ptt, res_id,
3080 &mcp_resp, p_resc_num, p_resc_start);
3081 if (rc != ECORE_SUCCESS) {
3082 DP_NOTICE(p_hwfn, true,
3083 "MFW response failure for an allocation request for resource %d [%s]\n",
3084 res_id, ecore_hw_get_resc_name(res_id));
3085 return rc;
3086 }
3087
3088 /* Default driver values are applied in the following cases:
3089 * - The resource allocation MB command is not supported by the MFW
3090 * - There is an internal error in the MFW while processing the request
3091 * - The resource ID is unknown to the MFW
3092 */
3093 if (mcp_resp != FW_MSG_CODE_RESOURCE_ALLOC_OK) {
3094 DP_INFO(p_hwfn,
3095 "Failed to receive allocation info for resource %d [%s]. mcp_resp = 0x%x. Applying default values [%d,%d].\n",
3096 res_id, ecore_hw_get_resc_name(res_id), mcp_resp,
3097 dflt_resc_num, dflt_resc_start);
3098 *p_resc_num = dflt_resc_num;
3099 *p_resc_start = dflt_resc_start;
3100 goto out;
3101 }
3102
3103 if ((*p_resc_num != dflt_resc_num ||
3104 *p_resc_start != dflt_resc_start) &&
3105 res_id != ECORE_SB) {
3106 DP_INFO(p_hwfn,
3107 "MFW allocation for resource %d [%s] differs from default values [%d,%d vs. %d,%d]%s\n",
3108 res_id, ecore_hw_get_resc_name(res_id), *p_resc_num,
3109 *p_resc_start, dflt_resc_num, dflt_resc_start,
3110 drv_resc_alloc ? " - Applying default values" : "");
3111 if (drv_resc_alloc) {
3112 *p_resc_num = dflt_resc_num;
3113 *p_resc_start = dflt_resc_start;
3114 }
3115 }
3116out:
3117 /* PQs have to divide by 8 [that's the HW granularity].
3118 * Reduce number so it would fit.
3119 */
3120 if ((res_id == ECORE_PQ) &&
3121 ((*p_resc_num % 8) || (*p_resc_start % 8))) {
3122 DP_INFO(p_hwfn,
3123 "PQs need to align by 8; Number %08x --> %08x, Start %08x --> %08x\n",
3124 *p_resc_num, (*p_resc_num) & ~0x7,
3125 *p_resc_start, (*p_resc_start) & ~0x7);
3126 *p_resc_num &= ~0x7;
3127 *p_resc_start &= ~0x7;
3128 }
3129
3130 return ECORE_SUCCESS;
3131}
3132
3133static enum _ecore_status_t ecore_hw_set_resc_info(struct ecore_hwfn *p_hwfn,
3134 bool drv_resc_alloc)
3135{
3136 enum _ecore_status_t rc;
3137 u8 res_id;
3138
3139 for (res_id = 0; res_id < ECORE_MAX_RESC; res_id++) {
3140 rc = __ecore_hw_set_resc_info(p_hwfn, res_id, drv_resc_alloc);
3141 if (rc != ECORE_SUCCESS)
3142 return rc;
3143 }
3144
3145 return ECORE_SUCCESS;
3146}
3147
3375 *p_resc_start = p_hwfn->port_id;
3376 else if (p_hwfn->hw_info.personality == ECORE_PCI_ISCSI)
3377 *p_resc_start = p_hwfn->port_id;
3378 else if (p_hwfn->hw_info.personality == ECORE_PCI_FCOE)
3379 *p_resc_start = p_hwfn->port_id + 2;
3380 break;
3381 default:
3382 *p_resc_start = *p_resc_num * p_hwfn->enabled_func_idx;
3383 break;
3384 }
3385
3386 return ECORE_SUCCESS;
3387}
3388
3389static enum _ecore_status_t
3390__ecore_hw_set_resc_info(struct ecore_hwfn *p_hwfn, enum ecore_resources res_id,
3391 bool drv_resc_alloc)
3392{
3393 u32 dflt_resc_num = 0, dflt_resc_start = 0;
3394 u32 mcp_resp, *p_resc_num, *p_resc_start;
3395 enum _ecore_status_t rc;
3396
3397 p_resc_num = &RESC_NUM(p_hwfn, res_id);
3398 p_resc_start = &RESC_START(p_hwfn, res_id);
3399
3400 rc = ecore_hw_get_dflt_resc(p_hwfn, res_id, &dflt_resc_num,
3401 &dflt_resc_start);
3402 if (rc != ECORE_SUCCESS) {
3403 DP_ERR(p_hwfn,
3404 "Failed to get default amount for resource %d [%s]\n",
3405 res_id, ecore_hw_get_resc_name(res_id));
3406 return rc;
3407 }
3408
3409#ifndef ASIC_ONLY
3410 if (CHIP_REV_IS_SLOW(p_hwfn->p_dev)) {
3411 *p_resc_num = dflt_resc_num;
3412 *p_resc_start = dflt_resc_start;
3413 goto out;
3414 }
3415#endif
3416
3417 rc = ecore_mcp_get_resc_info(p_hwfn, p_hwfn->p_main_ptt, res_id,
3418 &mcp_resp, p_resc_num, p_resc_start);
3419 if (rc != ECORE_SUCCESS) {
3420 DP_NOTICE(p_hwfn, true,
3421 "MFW response failure for an allocation request for resource %d [%s]\n",
3422 res_id, ecore_hw_get_resc_name(res_id));
3423 return rc;
3424 }
3425
3426 /* Default driver values are applied in the following cases:
3427 * - The resource allocation MB command is not supported by the MFW
3428 * - There is an internal error in the MFW while processing the request
3429 * - The resource ID is unknown to the MFW
3430 */
3431 if (mcp_resp != FW_MSG_CODE_RESOURCE_ALLOC_OK) {
3432 DP_INFO(p_hwfn,
3433 "Failed to receive allocation info for resource %d [%s]. mcp_resp = 0x%x. Applying default values [%d,%d].\n",
3434 res_id, ecore_hw_get_resc_name(res_id), mcp_resp,
3435 dflt_resc_num, dflt_resc_start);
3436 *p_resc_num = dflt_resc_num;
3437 *p_resc_start = dflt_resc_start;
3438 goto out;
3439 }
3440
3441 if ((*p_resc_num != dflt_resc_num ||
3442 *p_resc_start != dflt_resc_start) &&
3443 res_id != ECORE_SB) {
3444 DP_INFO(p_hwfn,
3445 "MFW allocation for resource %d [%s] differs from default values [%d,%d vs. %d,%d]%s\n",
3446 res_id, ecore_hw_get_resc_name(res_id), *p_resc_num,
3447 *p_resc_start, dflt_resc_num, dflt_resc_start,
3448 drv_resc_alloc ? " - Applying default values" : "");
3449 if (drv_resc_alloc) {
3450 *p_resc_num = dflt_resc_num;
3451 *p_resc_start = dflt_resc_start;
3452 }
3453 }
3454out:
3455 /* PQs have to divide by 8 [that's the HW granularity].
3456 * Reduce number so it would fit.
3457 */
3458 if ((res_id == ECORE_PQ) &&
3459 ((*p_resc_num % 8) || (*p_resc_start % 8))) {
3460 DP_INFO(p_hwfn,
3461 "PQs need to align by 8; Number %08x --> %08x, Start %08x --> %08x\n",
3462 *p_resc_num, (*p_resc_num) & ~0x7,
3463 *p_resc_start, (*p_resc_start) & ~0x7);
3464 *p_resc_num &= ~0x7;
3465 *p_resc_start &= ~0x7;
3466 }
3467
3468 return ECORE_SUCCESS;
3469}
3470
3471static enum _ecore_status_t ecore_hw_set_resc_info(struct ecore_hwfn *p_hwfn,
3472 bool drv_resc_alloc)
3473{
3474 enum _ecore_status_t rc;
3475 u8 res_id;
3476
3477 for (res_id = 0; res_id < ECORE_MAX_RESC; res_id++) {
3478 rc = __ecore_hw_set_resc_info(p_hwfn, res_id, drv_resc_alloc);
3479 if (rc != ECORE_SUCCESS)
3480 return rc;
3481 }
3482
3483 return ECORE_SUCCESS;
3484}
3485
3148#define ECORE_RESC_ALLOC_LOCK_RETRY_CNT 10
3149#define ECORE_RESC_ALLOC_LOCK_RETRY_INTVL_US 10000 /* 10 msec */
3150
3151static enum _ecore_status_t ecore_hw_get_resc(struct ecore_hwfn *p_hwfn,
3486static enum _ecore_status_t ecore_hw_get_resc(struct ecore_hwfn *p_hwfn,
3487 struct ecore_ptt *p_ptt,
3152 bool drv_resc_alloc)
3153{
3154 struct ecore_resc_unlock_params resc_unlock_params;
3155 struct ecore_resc_lock_params resc_lock_params;
3156 bool b_ah = ECORE_IS_AH(p_hwfn->p_dev);
3157 u8 res_id;
3158 enum _ecore_status_t rc;
3159#ifndef ASIC_ONLY
3160 u32 *resc_start = p_hwfn->hw_info.resc_start;
3161 u32 *resc_num = p_hwfn->hw_info.resc_num;
3162 /* For AH, an equal share of the ILT lines between the maximal number of
3163 * PFs is not enough for RoCE. This would be solved by the future
3164 * resource allocation scheme, but isn't currently present for
3165 * FPGA/emulation. For now we keep a number that is sufficient for RoCE
3166 * to work - the BB number of ILT lines divided by its max PFs number.
3167 */
3168 u32 roce_min_ilt_lines = PXP_NUM_ILT_RECORDS_BB / MAX_NUM_PFS_BB;
3169#endif
3170
3171 /* Setting the max values of the soft resources and the following
3172 * resources allocation queries should be atomic. Since several PFs can
3173 * run in parallel - a resource lock is needed.
3174 * If either the resource lock or resource set value commands are not
3175 * supported - skip the the max values setting, release the lock if
3176 * needed, and proceed to the queries. Other failures, including a
3177 * failure to acquire the lock, will cause this function to fail.
3178 * Old drivers that don't acquire the lock can run in parallel, and
3179 * their allocation values won't be affected by the updated max values.
3180 */
3488 bool drv_resc_alloc)
3489{
3490 struct ecore_resc_unlock_params resc_unlock_params;
3491 struct ecore_resc_lock_params resc_lock_params;
3492 bool b_ah = ECORE_IS_AH(p_hwfn->p_dev);
3493 u8 res_id;
3494 enum _ecore_status_t rc;
3495#ifndef ASIC_ONLY
3496 u32 *resc_start = p_hwfn->hw_info.resc_start;
3497 u32 *resc_num = p_hwfn->hw_info.resc_num;
3498 /* For AH, an equal share of the ILT lines between the maximal number of
3499 * PFs is not enough for RoCE. This would be solved by the future
3500 * resource allocation scheme, but isn't currently present for
3501 * FPGA/emulation. For now we keep a number that is sufficient for RoCE
3502 * to work - the BB number of ILT lines divided by its max PFs number.
3503 */
3504 u32 roce_min_ilt_lines = PXP_NUM_ILT_RECORDS_BB / MAX_NUM_PFS_BB;
3505#endif
3506
3507 /* Setting the max values of the soft resources and the following
3508 * resources allocation queries should be atomic. Since several PFs can
3509 * run in parallel - a resource lock is needed.
3510 * If either the resource lock or resource set value commands are not
3511 * supported - skip the the max values setting, release the lock if
3512 * needed, and proceed to the queries. Other failures, including a
3513 * failure to acquire the lock, will cause this function to fail.
3514 * Old drivers that don't acquire the lock can run in parallel, and
3515 * their allocation values won't be affected by the updated max values.
3516 */
3181 OSAL_MEM_ZERO(&resc_lock_params, sizeof(resc_lock_params));
3182 resc_lock_params.resource = ECORE_RESC_LOCK_RESC_ALLOC;
3183 resc_lock_params.retry_num = ECORE_RESC_ALLOC_LOCK_RETRY_CNT;
3184 resc_lock_params.retry_interval = ECORE_RESC_ALLOC_LOCK_RETRY_INTVL_US;
3185 resc_lock_params.sleep_b4_retry = true;
3186 OSAL_MEM_ZERO(&resc_unlock_params, sizeof(resc_unlock_params));
3187 resc_unlock_params.resource = ECORE_RESC_LOCK_RESC_ALLOC;
3517 ecore_mcp_resc_lock_default_init(&resc_lock_params, &resc_unlock_params,
3518 ECORE_RESC_LOCK_RESC_ALLOC, false);
3188
3519
3189 rc = ecore_mcp_resc_lock(p_hwfn, p_hwfn->p_main_ptt, &resc_lock_params);
3520 rc = ecore_mcp_resc_lock(p_hwfn, p_ptt, &resc_lock_params);
3190 if (rc != ECORE_SUCCESS && rc != ECORE_NOTIMPL) {
3191 return rc;
3192 } else if (rc == ECORE_NOTIMPL) {
3193 DP_INFO(p_hwfn,
3194 "Skip the max values setting of the soft resources since the resource lock is not supported by the MFW\n");
3195 } else if (rc == ECORE_SUCCESS && !resc_lock_params.b_granted) {
3196 DP_NOTICE(p_hwfn, false,
3197 "Failed to acquire the resource lock for the resource allocation commands\n");
3198 return ECORE_BUSY;
3199 } else {
3521 if (rc != ECORE_SUCCESS && rc != ECORE_NOTIMPL) {
3522 return rc;
3523 } else if (rc == ECORE_NOTIMPL) {
3524 DP_INFO(p_hwfn,
3525 "Skip the max values setting of the soft resources since the resource lock is not supported by the MFW\n");
3526 } else if (rc == ECORE_SUCCESS && !resc_lock_params.b_granted) {
3527 DP_NOTICE(p_hwfn, false,
3528 "Failed to acquire the resource lock for the resource allocation commands\n");
3529 return ECORE_BUSY;
3530 } else {
3200 rc = ecore_hw_set_soft_resc_size(p_hwfn);
3531 rc = ecore_hw_set_soft_resc_size(p_hwfn, p_ptt);
3201 if (rc != ECORE_SUCCESS && rc != ECORE_NOTIMPL) {
3202 DP_NOTICE(p_hwfn, false,
3203 "Failed to set the max values of the soft resources\n");
3204 goto unlock_and_exit;
3205 } else if (rc == ECORE_NOTIMPL) {
3206 DP_INFO(p_hwfn,
3207 "Skip the max values setting of the soft resources since it is not supported by the MFW\n");
3532 if (rc != ECORE_SUCCESS && rc != ECORE_NOTIMPL) {
3533 DP_NOTICE(p_hwfn, false,
3534 "Failed to set the max values of the soft resources\n");
3535 goto unlock_and_exit;
3536 } else if (rc == ECORE_NOTIMPL) {
3537 DP_INFO(p_hwfn,
3538 "Skip the max values setting of the soft resources since it is not supported by the MFW\n");
3208 rc = ecore_mcp_resc_unlock(p_hwfn, p_hwfn->p_main_ptt,
3539 rc = ecore_mcp_resc_unlock(p_hwfn, p_ptt,
3209 &resc_unlock_params);
3210 if (rc != ECORE_SUCCESS)
3211 DP_INFO(p_hwfn,
3212 "Failed to release the resource lock for the resource allocation commands\n");
3213 }
3214 }
3215
3216 rc = ecore_hw_set_resc_info(p_hwfn, drv_resc_alloc);
3217 if (rc != ECORE_SUCCESS)
3218 goto unlock_and_exit;
3219
3220 if (resc_lock_params.b_granted && !resc_unlock_params.b_released) {
3540 &resc_unlock_params);
3541 if (rc != ECORE_SUCCESS)
3542 DP_INFO(p_hwfn,
3543 "Failed to release the resource lock for the resource allocation commands\n");
3544 }
3545 }
3546
3547 rc = ecore_hw_set_resc_info(p_hwfn, drv_resc_alloc);
3548 if (rc != ECORE_SUCCESS)
3549 goto unlock_and_exit;
3550
3551 if (resc_lock_params.b_granted && !resc_unlock_params.b_released) {
3221 rc = ecore_mcp_resc_unlock(p_hwfn, p_hwfn->p_main_ptt,
3552 rc = ecore_mcp_resc_unlock(p_hwfn, p_ptt,
3222 &resc_unlock_params);
3223 if (rc != ECORE_SUCCESS)
3224 DP_INFO(p_hwfn,
3225 "Failed to release the resource lock for the resource allocation commands\n");
3226 }
3227
3228#ifndef ASIC_ONLY
3229 if (CHIP_REV_IS_SLOW(p_hwfn->p_dev)) {
3230 /* Reduced build contains less PQs */
3231 if (!(p_hwfn->p_dev->b_is_emul_full)) {
3232 resc_num[ECORE_PQ] = 32;
3233 resc_start[ECORE_PQ] = resc_num[ECORE_PQ] *
3234 p_hwfn->enabled_func_idx;
3235 }
3236
3237 /* For AH emulation, since we have a possible maximal number of
3238 * 16 enabled PFs, in case there are not enough ILT lines -
3239 * allocate only first PF as RoCE and have all the other ETH
3240 * only with less ILT lines.
3241 */
3242 if (!p_hwfn->rel_pf_id && p_hwfn->p_dev->b_is_emul_full)
3243 resc_num[ECORE_ILT] = OSAL_MAX_T(u32,
3244 resc_num[ECORE_ILT],
3245 roce_min_ilt_lines);
3246 }
3247
3248 /* Correct the common ILT calculation if PF0 has more */
3249 if (CHIP_REV_IS_SLOW(p_hwfn->p_dev) &&
3250 p_hwfn->p_dev->b_is_emul_full &&
3251 p_hwfn->rel_pf_id &&
3252 resc_num[ECORE_ILT] < roce_min_ilt_lines)
3253 resc_start[ECORE_ILT] += roce_min_ilt_lines -
3254 resc_num[ECORE_ILT];
3255#endif
3256
3257 /* Sanity for ILT */
3258 if ((b_ah && (RESC_END(p_hwfn, ECORE_ILT) > PXP_NUM_ILT_RECORDS_K2)) ||
3259 (!b_ah && (RESC_END(p_hwfn, ECORE_ILT) > PXP_NUM_ILT_RECORDS_BB))) {
3260 DP_NOTICE(p_hwfn, true, "Can't assign ILT pages [%08x,...,%08x]\n",
3261 RESC_START(p_hwfn, ECORE_ILT),
3262 RESC_END(p_hwfn, ECORE_ILT) - 1);
3263 return ECORE_INVAL;
3264 }
3265
3266 /* This will also learn the number of SBs from MFW */
3553 &resc_unlock_params);
3554 if (rc != ECORE_SUCCESS)
3555 DP_INFO(p_hwfn,
3556 "Failed to release the resource lock for the resource allocation commands\n");
3557 }
3558
3559#ifndef ASIC_ONLY
3560 if (CHIP_REV_IS_SLOW(p_hwfn->p_dev)) {
3561 /* Reduced build contains less PQs */
3562 if (!(p_hwfn->p_dev->b_is_emul_full)) {
3563 resc_num[ECORE_PQ] = 32;
3564 resc_start[ECORE_PQ] = resc_num[ECORE_PQ] *
3565 p_hwfn->enabled_func_idx;
3566 }
3567
3568 /* For AH emulation, since we have a possible maximal number of
3569 * 16 enabled PFs, in case there are not enough ILT lines -
3570 * allocate only first PF as RoCE and have all the other ETH
3571 * only with less ILT lines.
3572 */
3573 if (!p_hwfn->rel_pf_id && p_hwfn->p_dev->b_is_emul_full)
3574 resc_num[ECORE_ILT] = OSAL_MAX_T(u32,
3575 resc_num[ECORE_ILT],
3576 roce_min_ilt_lines);
3577 }
3578
3579 /* Correct the common ILT calculation if PF0 has more */
3580 if (CHIP_REV_IS_SLOW(p_hwfn->p_dev) &&
3581 p_hwfn->p_dev->b_is_emul_full &&
3582 p_hwfn->rel_pf_id &&
3583 resc_num[ECORE_ILT] < roce_min_ilt_lines)
3584 resc_start[ECORE_ILT] += roce_min_ilt_lines -
3585 resc_num[ECORE_ILT];
3586#endif
3587
3588 /* Sanity for ILT */
3589 if ((b_ah && (RESC_END(p_hwfn, ECORE_ILT) > PXP_NUM_ILT_RECORDS_K2)) ||
3590 (!b_ah && (RESC_END(p_hwfn, ECORE_ILT) > PXP_NUM_ILT_RECORDS_BB))) {
3591 DP_NOTICE(p_hwfn, true, "Can't assign ILT pages [%08x,...,%08x]\n",
3592 RESC_START(p_hwfn, ECORE_ILT),
3593 RESC_END(p_hwfn, ECORE_ILT) - 1);
3594 return ECORE_INVAL;
3595 }
3596
3597 /* This will also learn the number of SBs from MFW */
3267 if (ecore_int_igu_reset_cam(p_hwfn, p_hwfn->p_main_ptt))
3598 if (ecore_int_igu_reset_cam(p_hwfn, p_ptt))
3268 return ECORE_INVAL;
3269
3270 ecore_hw_set_feat(p_hwfn);
3271
3272 DP_VERBOSE(p_hwfn, ECORE_MSG_PROBE,
3273 "The numbers for each resource are:\n");
3274 for (res_id = 0; res_id < ECORE_MAX_RESC; res_id++)
3275 DP_VERBOSE(p_hwfn, ECORE_MSG_PROBE, "%s = %d start = %d\n",
3276 ecore_hw_get_resc_name(res_id),
3277 RESC_NUM(p_hwfn, res_id),
3278 RESC_START(p_hwfn, res_id));
3279
3280 return ECORE_SUCCESS;
3281
3282unlock_and_exit:
3283 if (resc_lock_params.b_granted && !resc_unlock_params.b_released)
3599 return ECORE_INVAL;
3600
3601 ecore_hw_set_feat(p_hwfn);
3602
3603 DP_VERBOSE(p_hwfn, ECORE_MSG_PROBE,
3604 "The numbers for each resource are:\n");
3605 for (res_id = 0; res_id < ECORE_MAX_RESC; res_id++)
3606 DP_VERBOSE(p_hwfn, ECORE_MSG_PROBE, "%s = %d start = %d\n",
3607 ecore_hw_get_resc_name(res_id),
3608 RESC_NUM(p_hwfn, res_id),
3609 RESC_START(p_hwfn, res_id));
3610
3611 return ECORE_SUCCESS;
3612
3613unlock_and_exit:
3614 if (resc_lock_params.b_granted && !resc_unlock_params.b_released)
3284 ecore_mcp_resc_unlock(p_hwfn, p_hwfn->p_main_ptt,
3615 ecore_mcp_resc_unlock(p_hwfn, p_ptt,
3285 &resc_unlock_params);
3286 return rc;
3287}
3288
3289static enum _ecore_status_t
3290ecore_hw_get_nvm_info(struct ecore_hwfn *p_hwfn,
3291 struct ecore_ptt *p_ptt,
3292 struct ecore_hw_prepare_params *p_params)
3293{
3294 u32 nvm_cfg1_offset, mf_mode, addr, generic_cont0, core_cfg, dcbx_mode;
3295 u32 port_cfg_addr, link_temp, nvm_cfg_addr, device_capabilities;
3296 struct ecore_mcp_link_capabilities *p_caps;
3297 struct ecore_mcp_link_params *link;
3298 enum _ecore_status_t rc;
3299
3300 /* Read global nvm_cfg address */
3301 nvm_cfg_addr = ecore_rd(p_hwfn, p_ptt, MISC_REG_GEN_PURP_CR0);
3302
3303 /* Verify MCP has initialized it */
3304 if (!nvm_cfg_addr) {
3305 DP_NOTICE(p_hwfn, false, "Shared memory not initialized\n");
3306 if (p_params->b_relaxed_probe)
3307 p_params->p_relaxed_res = ECORE_HW_PREPARE_FAILED_NVM;
3308 return ECORE_INVAL;
3309 }
3310
3311 /* Read nvm_cfg1 (Notice this is just offset, and not offsize (TBD) */
3312 nvm_cfg1_offset = ecore_rd(p_hwfn, p_ptt, nvm_cfg_addr + 4);
3313
3314 addr = MCP_REG_SCRATCH + nvm_cfg1_offset +
3315 OFFSETOF(struct nvm_cfg1, glob) +
3316 OFFSETOF(struct nvm_cfg1_glob, core_cfg);
3317
3318 core_cfg = ecore_rd(p_hwfn, p_ptt, addr);
3319
3320 switch ((core_cfg & NVM_CFG1_GLOB_NETWORK_PORT_MODE_MASK) >>
3321 NVM_CFG1_GLOB_NETWORK_PORT_MODE_OFFSET) {
3322 case NVM_CFG1_GLOB_NETWORK_PORT_MODE_BB_2X40G:
3323 p_hwfn->hw_info.port_mode = ECORE_PORT_MODE_DE_2X40G;
3324 break;
3325 case NVM_CFG1_GLOB_NETWORK_PORT_MODE_2X50G:
3326 p_hwfn->hw_info.port_mode = ECORE_PORT_MODE_DE_2X50G;
3327 break;
3328 case NVM_CFG1_GLOB_NETWORK_PORT_MODE_BB_1X100G:
3329 p_hwfn->hw_info.port_mode = ECORE_PORT_MODE_DE_1X100G;
3330 break;
3331 case NVM_CFG1_GLOB_NETWORK_PORT_MODE_4X10G_F:
3332 p_hwfn->hw_info.port_mode = ECORE_PORT_MODE_DE_4X10G_F;
3333 break;
3334 case NVM_CFG1_GLOB_NETWORK_PORT_MODE_BB_4X10G_E:
3335 p_hwfn->hw_info.port_mode = ECORE_PORT_MODE_DE_4X10G_E;
3336 break;
3337 case NVM_CFG1_GLOB_NETWORK_PORT_MODE_BB_4X20G:
3338 p_hwfn->hw_info.port_mode = ECORE_PORT_MODE_DE_4X20G;
3339 break;
3340 case NVM_CFG1_GLOB_NETWORK_PORT_MODE_1X40G:
3341 p_hwfn->hw_info.port_mode = ECORE_PORT_MODE_DE_1X40G;
3342 break;
3343 case NVM_CFG1_GLOB_NETWORK_PORT_MODE_2X25G:
3344 p_hwfn->hw_info.port_mode = ECORE_PORT_MODE_DE_2X25G;
3345 break;
3346 case NVM_CFG1_GLOB_NETWORK_PORT_MODE_2X10G:
3347 p_hwfn->hw_info.port_mode = ECORE_PORT_MODE_DE_2X10G;
3348 break;
3349 case NVM_CFG1_GLOB_NETWORK_PORT_MODE_1X25G:
3350 p_hwfn->hw_info.port_mode = ECORE_PORT_MODE_DE_1X25G;
3351 break;
3352 case NVM_CFG1_GLOB_NETWORK_PORT_MODE_4X25G:
3353 p_hwfn->hw_info.port_mode = ECORE_PORT_MODE_DE_4X25G;
3354 break;
3355 default:
3356 DP_NOTICE(p_hwfn, true, "Unknown port mode in 0x%08x\n",
3357 core_cfg);
3358 break;
3359 }
3360
3361 /* Read DCBX configuration */
3362 port_cfg_addr = MCP_REG_SCRATCH + nvm_cfg1_offset +
3363 OFFSETOF(struct nvm_cfg1, port[MFW_PORT(p_hwfn)]);
3364 dcbx_mode = ecore_rd(p_hwfn, p_ptt,
3365 port_cfg_addr +
3366 OFFSETOF(struct nvm_cfg1_port, generic_cont0));
3367 dcbx_mode = (dcbx_mode & NVM_CFG1_PORT_DCBX_MODE_MASK)
3368 >> NVM_CFG1_PORT_DCBX_MODE_OFFSET;
3369 switch (dcbx_mode) {
3370 case NVM_CFG1_PORT_DCBX_MODE_DYNAMIC:
3371 p_hwfn->hw_info.dcbx_mode = ECORE_DCBX_VERSION_DYNAMIC;
3372 break;
3373 case NVM_CFG1_PORT_DCBX_MODE_CEE:
3374 p_hwfn->hw_info.dcbx_mode = ECORE_DCBX_VERSION_CEE;
3375 break;
3376 case NVM_CFG1_PORT_DCBX_MODE_IEEE:
3377 p_hwfn->hw_info.dcbx_mode = ECORE_DCBX_VERSION_IEEE;
3378 break;
3379 default:
3380 p_hwfn->hw_info.dcbx_mode = ECORE_DCBX_VERSION_DISABLED;
3381 }
3382
3383 /* Read default link configuration */
3384 link = &p_hwfn->mcp_info->link_input;
3385 p_caps = &p_hwfn->mcp_info->link_capabilities;
3386 port_cfg_addr = MCP_REG_SCRATCH + nvm_cfg1_offset +
3387 OFFSETOF(struct nvm_cfg1, port[MFW_PORT(p_hwfn)]);
3388 link_temp = ecore_rd(p_hwfn, p_ptt,
3389 port_cfg_addr +
3390 OFFSETOF(struct nvm_cfg1_port, speed_cap_mask));
3391 link_temp &= NVM_CFG1_PORT_DRV_SPEED_CAPABILITY_MASK_MASK;
3392 link->speed.advertised_speeds = link_temp;
3393 p_caps->speed_capabilities = link->speed.advertised_speeds;
3394
3395 link_temp = ecore_rd(p_hwfn, p_ptt,
3396 port_cfg_addr +
3397 OFFSETOF(struct nvm_cfg1_port, link_settings));
3398 switch ((link_temp & NVM_CFG1_PORT_DRV_LINK_SPEED_MASK) >>
3399 NVM_CFG1_PORT_DRV_LINK_SPEED_OFFSET) {
3400 case NVM_CFG1_PORT_DRV_LINK_SPEED_AUTONEG:
3401 link->speed.autoneg = true;
3402 break;
3403 case NVM_CFG1_PORT_DRV_LINK_SPEED_1G:
3404 link->speed.forced_speed = 1000;
3405 break;
3406 case NVM_CFG1_PORT_DRV_LINK_SPEED_10G:
3407 link->speed.forced_speed = 10000;
3408 break;
3409 case NVM_CFG1_PORT_DRV_LINK_SPEED_25G:
3410 link->speed.forced_speed = 25000;
3411 break;
3412 case NVM_CFG1_PORT_DRV_LINK_SPEED_40G:
3413 link->speed.forced_speed = 40000;
3414 break;
3415 case NVM_CFG1_PORT_DRV_LINK_SPEED_50G:
3416 link->speed.forced_speed = 50000;
3417 break;
3418 case NVM_CFG1_PORT_DRV_LINK_SPEED_BB_100G:
3419 link->speed.forced_speed = 100000;
3420 break;
3421 default:
3422 DP_NOTICE(p_hwfn, true, "Unknown Speed in 0x%08x\n",
3423 link_temp);
3424 }
3425
3426 p_caps->default_speed = link->speed.forced_speed;
3427 p_caps->default_speed_autoneg = link->speed.autoneg;
3428
3429 link_temp &= NVM_CFG1_PORT_DRV_FLOW_CONTROL_MASK;
3430 link_temp >>= NVM_CFG1_PORT_DRV_FLOW_CONTROL_OFFSET;
3431 link->pause.autoneg = !!(link_temp &
3432 NVM_CFG1_PORT_DRV_FLOW_CONTROL_AUTONEG);
3433 link->pause.forced_rx = !!(link_temp &
3434 NVM_CFG1_PORT_DRV_FLOW_CONTROL_RX);
3435 link->pause.forced_tx = !!(link_temp &
3436 NVM_CFG1_PORT_DRV_FLOW_CONTROL_TX);
3437 link->loopback_mode = 0;
3438
3439 if (p_hwfn->mcp_info->capabilities & FW_MB_PARAM_FEATURE_SUPPORT_EEE) {
3440 link_temp = ecore_rd(p_hwfn, p_ptt, port_cfg_addr +
3441 OFFSETOF(struct nvm_cfg1_port, ext_phy));
3442 link_temp &= NVM_CFG1_PORT_EEE_POWER_SAVING_MODE_MASK;
3443 link_temp >>= NVM_CFG1_PORT_EEE_POWER_SAVING_MODE_OFFSET;
3444 p_caps->default_eee = ECORE_MCP_EEE_ENABLED;
3445 link->eee.enable = true;
3446 switch (link_temp) {
3447 case NVM_CFG1_PORT_EEE_POWER_SAVING_MODE_DISABLED:
3448 p_caps->default_eee = ECORE_MCP_EEE_DISABLED;
3449 link->eee.enable = false;
3450 break;
3451 case NVM_CFG1_PORT_EEE_POWER_SAVING_MODE_BALANCED:
3452 p_caps->eee_lpi_timer = EEE_TX_TIMER_USEC_BALANCED_TIME;
3453 break;
3454 case NVM_CFG1_PORT_EEE_POWER_SAVING_MODE_AGGRESSIVE:
3455 p_caps->eee_lpi_timer =
3456 EEE_TX_TIMER_USEC_AGGRESSIVE_TIME;
3457 break;
3458 case NVM_CFG1_PORT_EEE_POWER_SAVING_MODE_LOW_LATENCY:
3459 p_caps->eee_lpi_timer = EEE_TX_TIMER_USEC_LATENCY_TIME;
3460 break;
3461 }
3462 link->eee.tx_lpi_timer = p_caps->eee_lpi_timer;
3463 link->eee.tx_lpi_enable = link->eee.enable;
3464 if (link->eee.enable)
3465 link->eee.adv_caps = ECORE_EEE_1G_ADV |
3466 ECORE_EEE_10G_ADV;
3467 } else {
3468 p_caps->default_eee = ECORE_MCP_EEE_UNSUPPORTED;
3469 }
3470
3471 DP_VERBOSE(p_hwfn, ECORE_MSG_LINK,
3472 "Read default link: Speed 0x%08x, Adv. Speed 0x%08x, AN: 0x%02x, PAUSE AN: 0x%02x EEE: %02x [%08x usec]\n",
3473 link->speed.forced_speed, link->speed.advertised_speeds,
3474 link->speed.autoneg, link->pause.autoneg,
3475 p_caps->default_eee, p_caps->eee_lpi_timer);
3476
3477 /* Read Multi-function information from shmem */
3478 addr = MCP_REG_SCRATCH + nvm_cfg1_offset +
3479 OFFSETOF(struct nvm_cfg1, glob) +
3480 OFFSETOF(struct nvm_cfg1_glob, generic_cont0);
3481
3482 generic_cont0 = ecore_rd(p_hwfn, p_ptt, addr);
3483
3484 mf_mode = (generic_cont0 & NVM_CFG1_GLOB_MF_MODE_MASK) >>
3485 NVM_CFG1_GLOB_MF_MODE_OFFSET;
3486
3487 switch (mf_mode) {
3488 case NVM_CFG1_GLOB_MF_MODE_MF_ALLOWED:
3489 p_hwfn->p_dev->mf_mode = ECORE_MF_OVLAN;
3490 break;
3491 case NVM_CFG1_GLOB_MF_MODE_NPAR1_0:
3492 p_hwfn->p_dev->mf_mode = ECORE_MF_NPAR;
3493 break;
3494 case NVM_CFG1_GLOB_MF_MODE_DEFAULT:
3495 p_hwfn->p_dev->mf_mode = ECORE_MF_DEFAULT;
3496 break;
3497 }
3498 DP_INFO(p_hwfn, "Multi function mode is %08x\n",
3499 p_hwfn->p_dev->mf_mode);
3500
3501 /* Read Multi-function information from shmem */
3502 addr = MCP_REG_SCRATCH + nvm_cfg1_offset +
3503 OFFSETOF(struct nvm_cfg1, glob) +
3504 OFFSETOF(struct nvm_cfg1_glob, device_capabilities);
3505
3506 device_capabilities = ecore_rd(p_hwfn, p_ptt, addr);
3507 if (device_capabilities & NVM_CFG1_GLOB_DEVICE_CAPABILITIES_ETHERNET)
3508 OSAL_SET_BIT(ECORE_DEV_CAP_ETH,
3509 &p_hwfn->hw_info.device_capabilities);
3510 if (device_capabilities & NVM_CFG1_GLOB_DEVICE_CAPABILITIES_FCOE)
3511 OSAL_SET_BIT(ECORE_DEV_CAP_FCOE,
3512 &p_hwfn->hw_info.device_capabilities);
3513 if (device_capabilities & NVM_CFG1_GLOB_DEVICE_CAPABILITIES_ISCSI)
3514 OSAL_SET_BIT(ECORE_DEV_CAP_ISCSI,
3515 &p_hwfn->hw_info.device_capabilities);
3516 if (device_capabilities & NVM_CFG1_GLOB_DEVICE_CAPABILITIES_ROCE)
3517 OSAL_SET_BIT(ECORE_DEV_CAP_ROCE,
3518 &p_hwfn->hw_info.device_capabilities);
3519 if (device_capabilities & NVM_CFG1_GLOB_DEVICE_CAPABILITIES_IWARP)
3520 OSAL_SET_BIT(ECORE_DEV_CAP_IWARP,
3521 &p_hwfn->hw_info.device_capabilities);
3522
3523 rc = ecore_mcp_fill_shmem_func_info(p_hwfn, p_ptt);
3524 if (rc != ECORE_SUCCESS && p_params->b_relaxed_probe) {
3525 rc = ECORE_SUCCESS;
3526 p_params->p_relaxed_res = ECORE_HW_PREPARE_BAD_MCP;
3527 }
3528
3529 return rc;
3530}
3531
3532static void ecore_get_num_funcs(struct ecore_hwfn *p_hwfn,
3533 struct ecore_ptt *p_ptt)
3534{
3535 u8 num_funcs, enabled_func_idx = p_hwfn->rel_pf_id;
3536 u32 reg_function_hide, tmp, eng_mask, low_pfs_mask;
3537 struct ecore_dev *p_dev = p_hwfn->p_dev;
3538
3539 num_funcs = ECORE_IS_AH(p_dev) ? MAX_NUM_PFS_K2 : MAX_NUM_PFS_BB;
3540
3541 /* Bit 0 of MISCS_REG_FUNCTION_HIDE indicates whether the bypass values
3542 * in the other bits are selected.
3543 * Bits 1-15 are for functions 1-15, respectively, and their value is
3544 * '0' only for enabled functions (function 0 always exists and
3545 * enabled).
3546 * In case of CMT in BB, only the "even" functions are enabled, and thus
3547 * the number of functions for both hwfns is learnt from the same bits.
3548 */
3549 if (ECORE_IS_BB(p_dev) || ECORE_IS_AH(p_dev)) {
3550 reg_function_hide = ecore_rd(p_hwfn, p_ptt,
3551 MISCS_REG_FUNCTION_HIDE_BB_K2);
3552 } else { /* E5 */
3553 reg_function_hide = 0;
3554 ECORE_E5_MISSING_CODE;
3555 }
3556
3557 if (reg_function_hide & 0x1) {
3558 if (ECORE_IS_BB(p_dev)) {
3559 if (ECORE_PATH_ID(p_hwfn) && p_dev->num_hwfns == 1) {
3560 num_funcs = 0;
3561 eng_mask = 0xaaaa;
3562 } else {
3563 num_funcs = 1;
3564 eng_mask = 0x5554;
3565 }
3566 } else {
3567 num_funcs = 1;
3568 eng_mask = 0xfffe;
3569 }
3570
3571 /* Get the number of the enabled functions on the engine */
3572 tmp = (reg_function_hide ^ 0xffffffff) & eng_mask;
3573 while (tmp) {
3574 if (tmp & 0x1)
3575 num_funcs++;
3576 tmp >>= 0x1;
3577 }
3578
3579 /* Get the PF index within the enabled functions */
3580 low_pfs_mask = (0x1 << p_hwfn->abs_pf_id) - 1;
3581 tmp = reg_function_hide & eng_mask & low_pfs_mask;
3582 while (tmp) {
3583 if (tmp & 0x1)
3584 enabled_func_idx--;
3585 tmp >>= 0x1;
3586 }
3587 }
3588
3589 p_hwfn->num_funcs_on_engine = num_funcs;
3590 p_hwfn->enabled_func_idx = enabled_func_idx;
3591
3592#ifndef ASIC_ONLY
3593 if (CHIP_REV_IS_FPGA(p_dev)) {
3594 DP_NOTICE(p_hwfn, false,
3595 "FPGA: Limit number of PFs to 4 [would affect resource allocation, needed for IOV]\n");
3596 p_hwfn->num_funcs_on_engine = 4;
3597 }
3598#endif
3599
3600 DP_VERBOSE(p_hwfn, ECORE_MSG_PROBE,
3601 "PF [rel_id %d, abs_id %d] occupies index %d within the %d enabled functions on the engine\n",
3602 p_hwfn->rel_pf_id, p_hwfn->abs_pf_id,
3603 p_hwfn->enabled_func_idx, p_hwfn->num_funcs_on_engine);
3604}
3605
3606static void ecore_hw_info_port_num_bb(struct ecore_hwfn *p_hwfn,
3607 struct ecore_ptt *p_ptt)
3608{
3609 u32 port_mode;
3610
3611#ifndef ASIC_ONLY
3612 /* Read the port mode */
3613 if (CHIP_REV_IS_FPGA(p_hwfn->p_dev))
3614 port_mode = 4;
3615 else if (CHIP_REV_IS_EMUL(p_hwfn->p_dev) &&
3616 (p_hwfn->p_dev->num_hwfns > 1))
3617 /* In CMT on emulation, assume 1 port */
3618 port_mode = 1;
3619 else
3620#endif
3621 port_mode = ecore_rd(p_hwfn, p_ptt, CNIG_REG_NW_PORT_MODE_BB);
3622
3623 if (port_mode < 3) {
3616 &resc_unlock_params);
3617 return rc;
3618}
3619
3620static enum _ecore_status_t
3621ecore_hw_get_nvm_info(struct ecore_hwfn *p_hwfn,
3622 struct ecore_ptt *p_ptt,
3623 struct ecore_hw_prepare_params *p_params)
3624{
3625 u32 nvm_cfg1_offset, mf_mode, addr, generic_cont0, core_cfg, dcbx_mode;
3626 u32 port_cfg_addr, link_temp, nvm_cfg_addr, device_capabilities;
3627 struct ecore_mcp_link_capabilities *p_caps;
3628 struct ecore_mcp_link_params *link;
3629 enum _ecore_status_t rc;
3630
3631 /* Read global nvm_cfg address */
3632 nvm_cfg_addr = ecore_rd(p_hwfn, p_ptt, MISC_REG_GEN_PURP_CR0);
3633
3634 /* Verify MCP has initialized it */
3635 if (!nvm_cfg_addr) {
3636 DP_NOTICE(p_hwfn, false, "Shared memory not initialized\n");
3637 if (p_params->b_relaxed_probe)
3638 p_params->p_relaxed_res = ECORE_HW_PREPARE_FAILED_NVM;
3639 return ECORE_INVAL;
3640 }
3641
3642 /* Read nvm_cfg1 (Notice this is just offset, and not offsize (TBD) */
3643 nvm_cfg1_offset = ecore_rd(p_hwfn, p_ptt, nvm_cfg_addr + 4);
3644
3645 addr = MCP_REG_SCRATCH + nvm_cfg1_offset +
3646 OFFSETOF(struct nvm_cfg1, glob) +
3647 OFFSETOF(struct nvm_cfg1_glob, core_cfg);
3648
3649 core_cfg = ecore_rd(p_hwfn, p_ptt, addr);
3650
3651 switch ((core_cfg & NVM_CFG1_GLOB_NETWORK_PORT_MODE_MASK) >>
3652 NVM_CFG1_GLOB_NETWORK_PORT_MODE_OFFSET) {
3653 case NVM_CFG1_GLOB_NETWORK_PORT_MODE_BB_2X40G:
3654 p_hwfn->hw_info.port_mode = ECORE_PORT_MODE_DE_2X40G;
3655 break;
3656 case NVM_CFG1_GLOB_NETWORK_PORT_MODE_2X50G:
3657 p_hwfn->hw_info.port_mode = ECORE_PORT_MODE_DE_2X50G;
3658 break;
3659 case NVM_CFG1_GLOB_NETWORK_PORT_MODE_BB_1X100G:
3660 p_hwfn->hw_info.port_mode = ECORE_PORT_MODE_DE_1X100G;
3661 break;
3662 case NVM_CFG1_GLOB_NETWORK_PORT_MODE_4X10G_F:
3663 p_hwfn->hw_info.port_mode = ECORE_PORT_MODE_DE_4X10G_F;
3664 break;
3665 case NVM_CFG1_GLOB_NETWORK_PORT_MODE_BB_4X10G_E:
3666 p_hwfn->hw_info.port_mode = ECORE_PORT_MODE_DE_4X10G_E;
3667 break;
3668 case NVM_CFG1_GLOB_NETWORK_PORT_MODE_BB_4X20G:
3669 p_hwfn->hw_info.port_mode = ECORE_PORT_MODE_DE_4X20G;
3670 break;
3671 case NVM_CFG1_GLOB_NETWORK_PORT_MODE_1X40G:
3672 p_hwfn->hw_info.port_mode = ECORE_PORT_MODE_DE_1X40G;
3673 break;
3674 case NVM_CFG1_GLOB_NETWORK_PORT_MODE_2X25G:
3675 p_hwfn->hw_info.port_mode = ECORE_PORT_MODE_DE_2X25G;
3676 break;
3677 case NVM_CFG1_GLOB_NETWORK_PORT_MODE_2X10G:
3678 p_hwfn->hw_info.port_mode = ECORE_PORT_MODE_DE_2X10G;
3679 break;
3680 case NVM_CFG1_GLOB_NETWORK_PORT_MODE_1X25G:
3681 p_hwfn->hw_info.port_mode = ECORE_PORT_MODE_DE_1X25G;
3682 break;
3683 case NVM_CFG1_GLOB_NETWORK_PORT_MODE_4X25G:
3684 p_hwfn->hw_info.port_mode = ECORE_PORT_MODE_DE_4X25G;
3685 break;
3686 default:
3687 DP_NOTICE(p_hwfn, true, "Unknown port mode in 0x%08x\n",
3688 core_cfg);
3689 break;
3690 }
3691
3692 /* Read DCBX configuration */
3693 port_cfg_addr = MCP_REG_SCRATCH + nvm_cfg1_offset +
3694 OFFSETOF(struct nvm_cfg1, port[MFW_PORT(p_hwfn)]);
3695 dcbx_mode = ecore_rd(p_hwfn, p_ptt,
3696 port_cfg_addr +
3697 OFFSETOF(struct nvm_cfg1_port, generic_cont0));
3698 dcbx_mode = (dcbx_mode & NVM_CFG1_PORT_DCBX_MODE_MASK)
3699 >> NVM_CFG1_PORT_DCBX_MODE_OFFSET;
3700 switch (dcbx_mode) {
3701 case NVM_CFG1_PORT_DCBX_MODE_DYNAMIC:
3702 p_hwfn->hw_info.dcbx_mode = ECORE_DCBX_VERSION_DYNAMIC;
3703 break;
3704 case NVM_CFG1_PORT_DCBX_MODE_CEE:
3705 p_hwfn->hw_info.dcbx_mode = ECORE_DCBX_VERSION_CEE;
3706 break;
3707 case NVM_CFG1_PORT_DCBX_MODE_IEEE:
3708 p_hwfn->hw_info.dcbx_mode = ECORE_DCBX_VERSION_IEEE;
3709 break;
3710 default:
3711 p_hwfn->hw_info.dcbx_mode = ECORE_DCBX_VERSION_DISABLED;
3712 }
3713
3714 /* Read default link configuration */
3715 link = &p_hwfn->mcp_info->link_input;
3716 p_caps = &p_hwfn->mcp_info->link_capabilities;
3717 port_cfg_addr = MCP_REG_SCRATCH + nvm_cfg1_offset +
3718 OFFSETOF(struct nvm_cfg1, port[MFW_PORT(p_hwfn)]);
3719 link_temp = ecore_rd(p_hwfn, p_ptt,
3720 port_cfg_addr +
3721 OFFSETOF(struct nvm_cfg1_port, speed_cap_mask));
3722 link_temp &= NVM_CFG1_PORT_DRV_SPEED_CAPABILITY_MASK_MASK;
3723 link->speed.advertised_speeds = link_temp;
3724 p_caps->speed_capabilities = link->speed.advertised_speeds;
3725
3726 link_temp = ecore_rd(p_hwfn, p_ptt,
3727 port_cfg_addr +
3728 OFFSETOF(struct nvm_cfg1_port, link_settings));
3729 switch ((link_temp & NVM_CFG1_PORT_DRV_LINK_SPEED_MASK) >>
3730 NVM_CFG1_PORT_DRV_LINK_SPEED_OFFSET) {
3731 case NVM_CFG1_PORT_DRV_LINK_SPEED_AUTONEG:
3732 link->speed.autoneg = true;
3733 break;
3734 case NVM_CFG1_PORT_DRV_LINK_SPEED_1G:
3735 link->speed.forced_speed = 1000;
3736 break;
3737 case NVM_CFG1_PORT_DRV_LINK_SPEED_10G:
3738 link->speed.forced_speed = 10000;
3739 break;
3740 case NVM_CFG1_PORT_DRV_LINK_SPEED_25G:
3741 link->speed.forced_speed = 25000;
3742 break;
3743 case NVM_CFG1_PORT_DRV_LINK_SPEED_40G:
3744 link->speed.forced_speed = 40000;
3745 break;
3746 case NVM_CFG1_PORT_DRV_LINK_SPEED_50G:
3747 link->speed.forced_speed = 50000;
3748 break;
3749 case NVM_CFG1_PORT_DRV_LINK_SPEED_BB_100G:
3750 link->speed.forced_speed = 100000;
3751 break;
3752 default:
3753 DP_NOTICE(p_hwfn, true, "Unknown Speed in 0x%08x\n",
3754 link_temp);
3755 }
3756
3757 p_caps->default_speed = link->speed.forced_speed;
3758 p_caps->default_speed_autoneg = link->speed.autoneg;
3759
3760 link_temp &= NVM_CFG1_PORT_DRV_FLOW_CONTROL_MASK;
3761 link_temp >>= NVM_CFG1_PORT_DRV_FLOW_CONTROL_OFFSET;
3762 link->pause.autoneg = !!(link_temp &
3763 NVM_CFG1_PORT_DRV_FLOW_CONTROL_AUTONEG);
3764 link->pause.forced_rx = !!(link_temp &
3765 NVM_CFG1_PORT_DRV_FLOW_CONTROL_RX);
3766 link->pause.forced_tx = !!(link_temp &
3767 NVM_CFG1_PORT_DRV_FLOW_CONTROL_TX);
3768 link->loopback_mode = 0;
3769
3770 if (p_hwfn->mcp_info->capabilities & FW_MB_PARAM_FEATURE_SUPPORT_EEE) {
3771 link_temp = ecore_rd(p_hwfn, p_ptt, port_cfg_addr +
3772 OFFSETOF(struct nvm_cfg1_port, ext_phy));
3773 link_temp &= NVM_CFG1_PORT_EEE_POWER_SAVING_MODE_MASK;
3774 link_temp >>= NVM_CFG1_PORT_EEE_POWER_SAVING_MODE_OFFSET;
3775 p_caps->default_eee = ECORE_MCP_EEE_ENABLED;
3776 link->eee.enable = true;
3777 switch (link_temp) {
3778 case NVM_CFG1_PORT_EEE_POWER_SAVING_MODE_DISABLED:
3779 p_caps->default_eee = ECORE_MCP_EEE_DISABLED;
3780 link->eee.enable = false;
3781 break;
3782 case NVM_CFG1_PORT_EEE_POWER_SAVING_MODE_BALANCED:
3783 p_caps->eee_lpi_timer = EEE_TX_TIMER_USEC_BALANCED_TIME;
3784 break;
3785 case NVM_CFG1_PORT_EEE_POWER_SAVING_MODE_AGGRESSIVE:
3786 p_caps->eee_lpi_timer =
3787 EEE_TX_TIMER_USEC_AGGRESSIVE_TIME;
3788 break;
3789 case NVM_CFG1_PORT_EEE_POWER_SAVING_MODE_LOW_LATENCY:
3790 p_caps->eee_lpi_timer = EEE_TX_TIMER_USEC_LATENCY_TIME;
3791 break;
3792 }
3793 link->eee.tx_lpi_timer = p_caps->eee_lpi_timer;
3794 link->eee.tx_lpi_enable = link->eee.enable;
3795 if (link->eee.enable)
3796 link->eee.adv_caps = ECORE_EEE_1G_ADV |
3797 ECORE_EEE_10G_ADV;
3798 } else {
3799 p_caps->default_eee = ECORE_MCP_EEE_UNSUPPORTED;
3800 }
3801
3802 DP_VERBOSE(p_hwfn, ECORE_MSG_LINK,
3803 "Read default link: Speed 0x%08x, Adv. Speed 0x%08x, AN: 0x%02x, PAUSE AN: 0x%02x EEE: %02x [%08x usec]\n",
3804 link->speed.forced_speed, link->speed.advertised_speeds,
3805 link->speed.autoneg, link->pause.autoneg,
3806 p_caps->default_eee, p_caps->eee_lpi_timer);
3807
3808 /* Read Multi-function information from shmem */
3809 addr = MCP_REG_SCRATCH + nvm_cfg1_offset +
3810 OFFSETOF(struct nvm_cfg1, glob) +
3811 OFFSETOF(struct nvm_cfg1_glob, generic_cont0);
3812
3813 generic_cont0 = ecore_rd(p_hwfn, p_ptt, addr);
3814
3815 mf_mode = (generic_cont0 & NVM_CFG1_GLOB_MF_MODE_MASK) >>
3816 NVM_CFG1_GLOB_MF_MODE_OFFSET;
3817
3818 switch (mf_mode) {
3819 case NVM_CFG1_GLOB_MF_MODE_MF_ALLOWED:
3820 p_hwfn->p_dev->mf_mode = ECORE_MF_OVLAN;
3821 break;
3822 case NVM_CFG1_GLOB_MF_MODE_NPAR1_0:
3823 p_hwfn->p_dev->mf_mode = ECORE_MF_NPAR;
3824 break;
3825 case NVM_CFG1_GLOB_MF_MODE_DEFAULT:
3826 p_hwfn->p_dev->mf_mode = ECORE_MF_DEFAULT;
3827 break;
3828 }
3829 DP_INFO(p_hwfn, "Multi function mode is %08x\n",
3830 p_hwfn->p_dev->mf_mode);
3831
3832 /* Read Multi-function information from shmem */
3833 addr = MCP_REG_SCRATCH + nvm_cfg1_offset +
3834 OFFSETOF(struct nvm_cfg1, glob) +
3835 OFFSETOF(struct nvm_cfg1_glob, device_capabilities);
3836
3837 device_capabilities = ecore_rd(p_hwfn, p_ptt, addr);
3838 if (device_capabilities & NVM_CFG1_GLOB_DEVICE_CAPABILITIES_ETHERNET)
3839 OSAL_SET_BIT(ECORE_DEV_CAP_ETH,
3840 &p_hwfn->hw_info.device_capabilities);
3841 if (device_capabilities & NVM_CFG1_GLOB_DEVICE_CAPABILITIES_FCOE)
3842 OSAL_SET_BIT(ECORE_DEV_CAP_FCOE,
3843 &p_hwfn->hw_info.device_capabilities);
3844 if (device_capabilities & NVM_CFG1_GLOB_DEVICE_CAPABILITIES_ISCSI)
3845 OSAL_SET_BIT(ECORE_DEV_CAP_ISCSI,
3846 &p_hwfn->hw_info.device_capabilities);
3847 if (device_capabilities & NVM_CFG1_GLOB_DEVICE_CAPABILITIES_ROCE)
3848 OSAL_SET_BIT(ECORE_DEV_CAP_ROCE,
3849 &p_hwfn->hw_info.device_capabilities);
3850 if (device_capabilities & NVM_CFG1_GLOB_DEVICE_CAPABILITIES_IWARP)
3851 OSAL_SET_BIT(ECORE_DEV_CAP_IWARP,
3852 &p_hwfn->hw_info.device_capabilities);
3853
3854 rc = ecore_mcp_fill_shmem_func_info(p_hwfn, p_ptt);
3855 if (rc != ECORE_SUCCESS && p_params->b_relaxed_probe) {
3856 rc = ECORE_SUCCESS;
3857 p_params->p_relaxed_res = ECORE_HW_PREPARE_BAD_MCP;
3858 }
3859
3860 return rc;
3861}
3862
3863static void ecore_get_num_funcs(struct ecore_hwfn *p_hwfn,
3864 struct ecore_ptt *p_ptt)
3865{
3866 u8 num_funcs, enabled_func_idx = p_hwfn->rel_pf_id;
3867 u32 reg_function_hide, tmp, eng_mask, low_pfs_mask;
3868 struct ecore_dev *p_dev = p_hwfn->p_dev;
3869
3870 num_funcs = ECORE_IS_AH(p_dev) ? MAX_NUM_PFS_K2 : MAX_NUM_PFS_BB;
3871
3872 /* Bit 0 of MISCS_REG_FUNCTION_HIDE indicates whether the bypass values
3873 * in the other bits are selected.
3874 * Bits 1-15 are for functions 1-15, respectively, and their value is
3875 * '0' only for enabled functions (function 0 always exists and
3876 * enabled).
3877 * In case of CMT in BB, only the "even" functions are enabled, and thus
3878 * the number of functions for both hwfns is learnt from the same bits.
3879 */
3880 if (ECORE_IS_BB(p_dev) || ECORE_IS_AH(p_dev)) {
3881 reg_function_hide = ecore_rd(p_hwfn, p_ptt,
3882 MISCS_REG_FUNCTION_HIDE_BB_K2);
3883 } else { /* E5 */
3884 reg_function_hide = 0;
3885 ECORE_E5_MISSING_CODE;
3886 }
3887
3888 if (reg_function_hide & 0x1) {
3889 if (ECORE_IS_BB(p_dev)) {
3890 if (ECORE_PATH_ID(p_hwfn) && p_dev->num_hwfns == 1) {
3891 num_funcs = 0;
3892 eng_mask = 0xaaaa;
3893 } else {
3894 num_funcs = 1;
3895 eng_mask = 0x5554;
3896 }
3897 } else {
3898 num_funcs = 1;
3899 eng_mask = 0xfffe;
3900 }
3901
3902 /* Get the number of the enabled functions on the engine */
3903 tmp = (reg_function_hide ^ 0xffffffff) & eng_mask;
3904 while (tmp) {
3905 if (tmp & 0x1)
3906 num_funcs++;
3907 tmp >>= 0x1;
3908 }
3909
3910 /* Get the PF index within the enabled functions */
3911 low_pfs_mask = (0x1 << p_hwfn->abs_pf_id) - 1;
3912 tmp = reg_function_hide & eng_mask & low_pfs_mask;
3913 while (tmp) {
3914 if (tmp & 0x1)
3915 enabled_func_idx--;
3916 tmp >>= 0x1;
3917 }
3918 }
3919
3920 p_hwfn->num_funcs_on_engine = num_funcs;
3921 p_hwfn->enabled_func_idx = enabled_func_idx;
3922
3923#ifndef ASIC_ONLY
3924 if (CHIP_REV_IS_FPGA(p_dev)) {
3925 DP_NOTICE(p_hwfn, false,
3926 "FPGA: Limit number of PFs to 4 [would affect resource allocation, needed for IOV]\n");
3927 p_hwfn->num_funcs_on_engine = 4;
3928 }
3929#endif
3930
3931 DP_VERBOSE(p_hwfn, ECORE_MSG_PROBE,
3932 "PF [rel_id %d, abs_id %d] occupies index %d within the %d enabled functions on the engine\n",
3933 p_hwfn->rel_pf_id, p_hwfn->abs_pf_id,
3934 p_hwfn->enabled_func_idx, p_hwfn->num_funcs_on_engine);
3935}
3936
3937static void ecore_hw_info_port_num_bb(struct ecore_hwfn *p_hwfn,
3938 struct ecore_ptt *p_ptt)
3939{
3940 u32 port_mode;
3941
3942#ifndef ASIC_ONLY
3943 /* Read the port mode */
3944 if (CHIP_REV_IS_FPGA(p_hwfn->p_dev))
3945 port_mode = 4;
3946 else if (CHIP_REV_IS_EMUL(p_hwfn->p_dev) &&
3947 (p_hwfn->p_dev->num_hwfns > 1))
3948 /* In CMT on emulation, assume 1 port */
3949 port_mode = 1;
3950 else
3951#endif
3952 port_mode = ecore_rd(p_hwfn, p_ptt, CNIG_REG_NW_PORT_MODE_BB);
3953
3954 if (port_mode < 3) {
3624 p_hwfn->p_dev->num_ports_in_engines = 1;
3955 p_hwfn->p_dev->num_ports_in_engine = 1;
3625 } else if (port_mode <= 5) {
3956 } else if (port_mode <= 5) {
3626 p_hwfn->p_dev->num_ports_in_engines = 2;
3957 p_hwfn->p_dev->num_ports_in_engine = 2;
3627 } else {
3628 DP_NOTICE(p_hwfn, true, "PORT MODE: %d not supported\n",
3958 } else {
3959 DP_NOTICE(p_hwfn, true, "PORT MODE: %d not supported\n",
3629 p_hwfn->p_dev->num_ports_in_engines);
3960 p_hwfn->p_dev->num_ports_in_engine);
3630
3961
3631 /* Default num_ports_in_engines to something */
3632 p_hwfn->p_dev->num_ports_in_engines = 1;
3962 /* Default num_ports_in_engine to something */
3963 p_hwfn->p_dev->num_ports_in_engine = 1;
3633 }
3634}
3635
3636static void ecore_hw_info_port_num_ah_e5(struct ecore_hwfn *p_hwfn,
3637 struct ecore_ptt *p_ptt)
3638{
3639 u32 port;
3640 int i;
3641
3964 }
3965}
3966
3967static void ecore_hw_info_port_num_ah_e5(struct ecore_hwfn *p_hwfn,
3968 struct ecore_ptt *p_ptt)
3969{
3970 u32 port;
3971 int i;
3972
3642 p_hwfn->p_dev->num_ports_in_engines = 0;
3973 p_hwfn->p_dev->num_ports_in_engine = 0;
3643
3644#ifndef ASIC_ONLY
3645 if (CHIP_REV_IS_EMUL(p_hwfn->p_dev)) {
3974
3975#ifndef ASIC_ONLY
3976 if (CHIP_REV_IS_EMUL(p_hwfn->p_dev)) {
3646 port = ecore_rd(p_hwfn, p_ptt,
3647 MISCS_REG_ECO_RESERVED);
3977 port = ecore_rd(p_hwfn, p_ptt, MISCS_REG_ECO_RESERVED);
3648 switch ((port & 0xf000) >> 12) {
3649 case 1:
3978 switch ((port & 0xf000) >> 12) {
3979 case 1:
3650 p_hwfn->p_dev->num_ports_in_engines = 1;
3980 p_hwfn->p_dev->num_ports_in_engine = 1;
3651 break;
3652 case 3:
3981 break;
3982 case 3:
3653 p_hwfn->p_dev->num_ports_in_engines = 2;
3983 p_hwfn->p_dev->num_ports_in_engine = 2;
3654 break;
3655 case 0xf:
3984 break;
3985 case 0xf:
3656 p_hwfn->p_dev->num_ports_in_engines = 4;
3986 p_hwfn->p_dev->num_ports_in_engine = 4;
3657 break;
3658 default:
3659 DP_NOTICE(p_hwfn, false,
3660 "Unknown port mode in ECO_RESERVED %08x\n",
3661 port);
3662 }
3663 } else
3664#endif
3665 for (i = 0; i < MAX_NUM_PORTS_K2; i++) {
3666 port = ecore_rd(p_hwfn, p_ptt,
3667 CNIG_REG_NIG_PORT0_CONF_K2_E5 + (i * 4));
3668 if (port & 1)
3987 break;
3988 default:
3989 DP_NOTICE(p_hwfn, false,
3990 "Unknown port mode in ECO_RESERVED %08x\n",
3991 port);
3992 }
3993 } else
3994#endif
3995 for (i = 0; i < MAX_NUM_PORTS_K2; i++) {
3996 port = ecore_rd(p_hwfn, p_ptt,
3997 CNIG_REG_NIG_PORT0_CONF_K2_E5 + (i * 4));
3998 if (port & 1)
3669 p_hwfn->p_dev->num_ports_in_engines++;
3999 p_hwfn->p_dev->num_ports_in_engine++;
3670 }
4000 }
4001
4002 if (!p_hwfn->p_dev->num_ports_in_engine) {
4003 DP_NOTICE(p_hwfn, true, "All NIG ports are inactive\n");
4004
4005 /* Default num_ports_in_engine to something */
4006 p_hwfn->p_dev->num_ports_in_engine = 1;
4007 }
3671}
3672
3673static void ecore_hw_info_port_num(struct ecore_hwfn *p_hwfn,
3674 struct ecore_ptt *p_ptt)
3675{
3676 if (ECORE_IS_BB(p_hwfn->p_dev))
3677 ecore_hw_info_port_num_bb(p_hwfn, p_ptt);
3678 else
3679 ecore_hw_info_port_num_ah_e5(p_hwfn, p_ptt);
3680}
3681
3682static enum _ecore_status_t
3683ecore_get_hw_info(struct ecore_hwfn *p_hwfn, struct ecore_ptt *p_ptt,
3684 enum ecore_pci_personality personality,
3685 struct ecore_hw_prepare_params *p_params)
3686{
3687 bool drv_resc_alloc = p_params->drv_resc_alloc;
3688 enum _ecore_status_t rc;
3689
3690 /* Since all information is common, only first hwfns should do this */
3691 if (IS_LEAD_HWFN(p_hwfn)) {
3692 rc = ecore_iov_hw_info(p_hwfn);
3693 if (rc != ECORE_SUCCESS) {
3694 if (p_params->b_relaxed_probe)
3695 p_params->p_relaxed_res =
3696 ECORE_HW_PREPARE_BAD_IOV;
3697 else
3698 return rc;
3699 }
3700 }
3701
3702 /* TODO In get_hw_info, amoungst others:
3703 * Get MCP FW revision and determine according to it the supported
3704 * featrues (e.g. DCB)
3705 * Get boot mode
3706 * ecore_get_pcie_width_speed, WOL capability.
3707 * Number of global CQ-s (for storage
3708 */
3709 ecore_hw_info_port_num(p_hwfn, p_ptt);
3710
3711 ecore_mcp_get_capabilities(p_hwfn, p_ptt);
3712
3713#ifndef ASIC_ONLY
3714 if (CHIP_REV_IS_ASIC(p_hwfn->p_dev)) {
3715#endif
3716 rc = ecore_hw_get_nvm_info(p_hwfn, p_ptt, p_params);
3717 if (rc != ECORE_SUCCESS)
3718 return rc;
3719#ifndef ASIC_ONLY
3720 }
3721#endif
3722
3723 rc = ecore_int_igu_read_cam(p_hwfn, p_ptt);
3724 if (rc != ECORE_SUCCESS) {
3725 if (p_params->b_relaxed_probe)
3726 p_params->p_relaxed_res = ECORE_HW_PREPARE_BAD_IGU;
3727 else
3728 return rc;
3729 }
3730
3731#ifndef ASIC_ONLY
3732 if (CHIP_REV_IS_ASIC(p_hwfn->p_dev) && ecore_mcp_is_init(p_hwfn)) {
3733#endif
3734 OSAL_MEMCPY(p_hwfn->hw_info.hw_mac_addr,
3735 p_hwfn->mcp_info->func_info.mac, ETH_ALEN);
3736#ifndef ASIC_ONLY
3737 } else {
3738 static u8 mcp_hw_mac[6] = {0, 2, 3, 4, 5, 6};
3739
3740 OSAL_MEMCPY(p_hwfn->hw_info.hw_mac_addr, mcp_hw_mac, ETH_ALEN);
3741 p_hwfn->hw_info.hw_mac_addr[5] = p_hwfn->abs_pf_id;
3742 }
3743#endif
3744
3745 if (ecore_mcp_is_init(p_hwfn)) {
3746 if (p_hwfn->mcp_info->func_info.ovlan != ECORE_MCP_VLAN_UNSET)
3747 p_hwfn->hw_info.ovlan =
3748 p_hwfn->mcp_info->func_info.ovlan;
3749
3750 ecore_mcp_cmd_port_init(p_hwfn, p_ptt);
3751 }
3752
3753 if (personality != ECORE_PCI_DEFAULT) {
3754 p_hwfn->hw_info.personality = personality;
3755 } else if (ecore_mcp_is_init(p_hwfn)) {
3756 enum ecore_pci_personality protocol;
3757
3758 protocol = p_hwfn->mcp_info->func_info.protocol;
3759 p_hwfn->hw_info.personality = protocol;
3760 }
3761
3762#ifndef ASIC_ONLY
3763 /* To overcome ILT lack for emulation, until at least until we'll have
3764 * a definite answer from system about it, allow only PF0 to be RoCE.
3765 */
3766 if (CHIP_REV_IS_EMUL(p_hwfn->p_dev) && ECORE_IS_AH(p_hwfn->p_dev)) {
3767 if (!p_hwfn->rel_pf_id)
3768 p_hwfn->hw_info.personality = ECORE_PCI_ETH_ROCE;
3769 else
3770 p_hwfn->hw_info.personality = ECORE_PCI_ETH;
3771 }
3772#endif
3773
3774 /* although in BB some constellations may support more than 4 tcs,
3775 * that can result in performance penalty in some cases. 4
3776 * represents a good tradeoff between performance and flexibility.
3777 */
3778 p_hwfn->hw_info.num_hw_tc = NUM_PHYS_TCS_4PORT_K2;
3779
3780 /* start out with a single active tc. This can be increased either
3781 * by dcbx negotiation or by upper layer driver
3782 */
3783 p_hwfn->hw_info.num_active_tc = 1;
3784
3785 ecore_get_num_funcs(p_hwfn, p_ptt);
3786
3787 if (ecore_mcp_is_init(p_hwfn))
3788 p_hwfn->hw_info.mtu = p_hwfn->mcp_info->func_info.mtu;
3789
3790 /* In case of forcing the driver's default resource allocation, calling
3791 * ecore_hw_get_resc() should come after initializing the personality
3792 * and after getting the number of functions, since the calculation of
3793 * the resources/features depends on them.
3794 * This order is not harmful if not forcing.
3795 */
4008}
4009
4010static void ecore_hw_info_port_num(struct ecore_hwfn *p_hwfn,
4011 struct ecore_ptt *p_ptt)
4012{
4013 if (ECORE_IS_BB(p_hwfn->p_dev))
4014 ecore_hw_info_port_num_bb(p_hwfn, p_ptt);
4015 else
4016 ecore_hw_info_port_num_ah_e5(p_hwfn, p_ptt);
4017}
4018
4019static enum _ecore_status_t
4020ecore_get_hw_info(struct ecore_hwfn *p_hwfn, struct ecore_ptt *p_ptt,
4021 enum ecore_pci_personality personality,
4022 struct ecore_hw_prepare_params *p_params)
4023{
4024 bool drv_resc_alloc = p_params->drv_resc_alloc;
4025 enum _ecore_status_t rc;
4026
4027 /* Since all information is common, only first hwfns should do this */
4028 if (IS_LEAD_HWFN(p_hwfn)) {
4029 rc = ecore_iov_hw_info(p_hwfn);
4030 if (rc != ECORE_SUCCESS) {
4031 if (p_params->b_relaxed_probe)
4032 p_params->p_relaxed_res =
4033 ECORE_HW_PREPARE_BAD_IOV;
4034 else
4035 return rc;
4036 }
4037 }
4038
4039 /* TODO In get_hw_info, amoungst others:
4040 * Get MCP FW revision and determine according to it the supported
4041 * featrues (e.g. DCB)
4042 * Get boot mode
4043 * ecore_get_pcie_width_speed, WOL capability.
4044 * Number of global CQ-s (for storage
4045 */
4046 ecore_hw_info_port_num(p_hwfn, p_ptt);
4047
4048 ecore_mcp_get_capabilities(p_hwfn, p_ptt);
4049
4050#ifndef ASIC_ONLY
4051 if (CHIP_REV_IS_ASIC(p_hwfn->p_dev)) {
4052#endif
4053 rc = ecore_hw_get_nvm_info(p_hwfn, p_ptt, p_params);
4054 if (rc != ECORE_SUCCESS)
4055 return rc;
4056#ifndef ASIC_ONLY
4057 }
4058#endif
4059
4060 rc = ecore_int_igu_read_cam(p_hwfn, p_ptt);
4061 if (rc != ECORE_SUCCESS) {
4062 if (p_params->b_relaxed_probe)
4063 p_params->p_relaxed_res = ECORE_HW_PREPARE_BAD_IGU;
4064 else
4065 return rc;
4066 }
4067
4068#ifndef ASIC_ONLY
4069 if (CHIP_REV_IS_ASIC(p_hwfn->p_dev) && ecore_mcp_is_init(p_hwfn)) {
4070#endif
4071 OSAL_MEMCPY(p_hwfn->hw_info.hw_mac_addr,
4072 p_hwfn->mcp_info->func_info.mac, ETH_ALEN);
4073#ifndef ASIC_ONLY
4074 } else {
4075 static u8 mcp_hw_mac[6] = {0, 2, 3, 4, 5, 6};
4076
4077 OSAL_MEMCPY(p_hwfn->hw_info.hw_mac_addr, mcp_hw_mac, ETH_ALEN);
4078 p_hwfn->hw_info.hw_mac_addr[5] = p_hwfn->abs_pf_id;
4079 }
4080#endif
4081
4082 if (ecore_mcp_is_init(p_hwfn)) {
4083 if (p_hwfn->mcp_info->func_info.ovlan != ECORE_MCP_VLAN_UNSET)
4084 p_hwfn->hw_info.ovlan =
4085 p_hwfn->mcp_info->func_info.ovlan;
4086
4087 ecore_mcp_cmd_port_init(p_hwfn, p_ptt);
4088 }
4089
4090 if (personality != ECORE_PCI_DEFAULT) {
4091 p_hwfn->hw_info.personality = personality;
4092 } else if (ecore_mcp_is_init(p_hwfn)) {
4093 enum ecore_pci_personality protocol;
4094
4095 protocol = p_hwfn->mcp_info->func_info.protocol;
4096 p_hwfn->hw_info.personality = protocol;
4097 }
4098
4099#ifndef ASIC_ONLY
4100 /* To overcome ILT lack for emulation, until at least until we'll have
4101 * a definite answer from system about it, allow only PF0 to be RoCE.
4102 */
4103 if (CHIP_REV_IS_EMUL(p_hwfn->p_dev) && ECORE_IS_AH(p_hwfn->p_dev)) {
4104 if (!p_hwfn->rel_pf_id)
4105 p_hwfn->hw_info.personality = ECORE_PCI_ETH_ROCE;
4106 else
4107 p_hwfn->hw_info.personality = ECORE_PCI_ETH;
4108 }
4109#endif
4110
4111 /* although in BB some constellations may support more than 4 tcs,
4112 * that can result in performance penalty in some cases. 4
4113 * represents a good tradeoff between performance and flexibility.
4114 */
4115 p_hwfn->hw_info.num_hw_tc = NUM_PHYS_TCS_4PORT_K2;
4116
4117 /* start out with a single active tc. This can be increased either
4118 * by dcbx negotiation or by upper layer driver
4119 */
4120 p_hwfn->hw_info.num_active_tc = 1;
4121
4122 ecore_get_num_funcs(p_hwfn, p_ptt);
4123
4124 if (ecore_mcp_is_init(p_hwfn))
4125 p_hwfn->hw_info.mtu = p_hwfn->mcp_info->func_info.mtu;
4126
4127 /* In case of forcing the driver's default resource allocation, calling
4128 * ecore_hw_get_resc() should come after initializing the personality
4129 * and after getting the number of functions, since the calculation of
4130 * the resources/features depends on them.
4131 * This order is not harmful if not forcing.
4132 */
3796 rc = ecore_hw_get_resc(p_hwfn, drv_resc_alloc);
4133 rc = ecore_hw_get_resc(p_hwfn, p_ptt, drv_resc_alloc);
3797 if (rc != ECORE_SUCCESS && p_params->b_relaxed_probe) {
3798 rc = ECORE_SUCCESS;
3799 p_params->p_relaxed_res = ECORE_HW_PREPARE_BAD_MCP;
3800 }
3801
3802 return rc;
3803}
3804
4134 if (rc != ECORE_SUCCESS && p_params->b_relaxed_probe) {
4135 rc = ECORE_SUCCESS;
4136 p_params->p_relaxed_res = ECORE_HW_PREPARE_BAD_MCP;
4137 }
4138
4139 return rc;
4140}
4141
3805static enum _ecore_status_t ecore_get_dev_info(struct ecore_dev *p_dev)
4142static enum _ecore_status_t ecore_get_dev_info(struct ecore_hwfn *p_hwfn,
4143 struct ecore_ptt *p_ptt)
3806{
4144{
3807 struct ecore_hwfn *p_hwfn = ECORE_LEADING_HWFN(p_dev);
4145 struct ecore_dev *p_dev = p_hwfn->p_dev;
3808 u16 device_id_mask;
3809 u32 tmp;
3810
3811 /* Read Vendor Id / Device Id */
3812 OSAL_PCI_READ_CONFIG_WORD(p_dev, PCICFG_VENDOR_ID_OFFSET,
3813 &p_dev->vendor_id);
3814 OSAL_PCI_READ_CONFIG_WORD(p_dev, PCICFG_DEVICE_ID_OFFSET,
3815 &p_dev->device_id);
3816
3817 /* Determine type */
3818 device_id_mask = p_dev->device_id & ECORE_DEV_ID_MASK;
3819 switch (device_id_mask) {
3820 case ECORE_DEV_ID_MASK_BB:
3821 p_dev->type = ECORE_DEV_TYPE_BB;
3822 break;
3823 case ECORE_DEV_ID_MASK_AH:
3824 p_dev->type = ECORE_DEV_TYPE_AH;
3825 break;
4146 u16 device_id_mask;
4147 u32 tmp;
4148
4149 /* Read Vendor Id / Device Id */
4150 OSAL_PCI_READ_CONFIG_WORD(p_dev, PCICFG_VENDOR_ID_OFFSET,
4151 &p_dev->vendor_id);
4152 OSAL_PCI_READ_CONFIG_WORD(p_dev, PCICFG_DEVICE_ID_OFFSET,
4153 &p_dev->device_id);
4154
4155 /* Determine type */
4156 device_id_mask = p_dev->device_id & ECORE_DEV_ID_MASK;
4157 switch (device_id_mask) {
4158 case ECORE_DEV_ID_MASK_BB:
4159 p_dev->type = ECORE_DEV_TYPE_BB;
4160 break;
4161 case ECORE_DEV_ID_MASK_AH:
4162 p_dev->type = ECORE_DEV_TYPE_AH;
4163 break;
4164 case ECORE_DEV_ID_MASK_E5:
4165 p_dev->type = ECORE_DEV_TYPE_E5;
4166 break;
3826 default:
3827 DP_NOTICE(p_hwfn, true, "Unknown device id 0x%x\n",
3828 p_dev->device_id);
3829 return ECORE_ABORTED;
3830 }
3831
4167 default:
4168 DP_NOTICE(p_hwfn, true, "Unknown device id 0x%x\n",
4169 p_dev->device_id);
4170 return ECORE_ABORTED;
4171 }
4172
3832 p_dev->chip_num = (u16)ecore_rd(p_hwfn, p_hwfn->p_main_ptt,
3833 MISCS_REG_CHIP_NUM);
3834 p_dev->chip_rev = (u16)ecore_rd(p_hwfn, p_hwfn->p_main_ptt,
3835 MISCS_REG_CHIP_REV);
4173 p_dev->chip_num = (u16)ecore_rd(p_hwfn, p_ptt,
4174 MISCS_REG_CHIP_NUM);
4175 p_dev->chip_rev = (u16)ecore_rd(p_hwfn, p_ptt,
4176 MISCS_REG_CHIP_REV);
3836
3837 MASK_FIELD(CHIP_REV, p_dev->chip_rev);
3838
3839 /* Learn number of HW-functions */
4177
4178 MASK_FIELD(CHIP_REV, p_dev->chip_rev);
4179
4180 /* Learn number of HW-functions */
3840 tmp = ecore_rd(p_hwfn, p_hwfn->p_main_ptt,
3841 MISCS_REG_CMT_ENABLED_FOR_PAIR);
4181 tmp = ecore_rd(p_hwfn, p_ptt, MISCS_REG_CMT_ENABLED_FOR_PAIR);
3842
3843 if (tmp & (1 << p_hwfn->rel_pf_id)) {
3844 DP_NOTICE(p_dev->hwfns, false, "device in CMT mode\n");
3845 p_dev->num_hwfns = 2;
3846 } else {
3847 p_dev->num_hwfns = 1;
3848 }
3849
3850#ifndef ASIC_ONLY
3851 if (CHIP_REV_IS_EMUL(p_dev)) {
3852 /* For some reason we have problems with this register
3853 * in B0 emulation; Simply assume no CMT
3854 */
3855 DP_NOTICE(p_dev->hwfns, false, "device on emul - assume no CMT\n");
3856 p_dev->num_hwfns = 1;
3857 }
3858#endif
3859
4182
4183 if (tmp & (1 << p_hwfn->rel_pf_id)) {
4184 DP_NOTICE(p_dev->hwfns, false, "device in CMT mode\n");
4185 p_dev->num_hwfns = 2;
4186 } else {
4187 p_dev->num_hwfns = 1;
4188 }
4189
4190#ifndef ASIC_ONLY
4191 if (CHIP_REV_IS_EMUL(p_dev)) {
4192 /* For some reason we have problems with this register
4193 * in B0 emulation; Simply assume no CMT
4194 */
4195 DP_NOTICE(p_dev->hwfns, false, "device on emul - assume no CMT\n");
4196 p_dev->num_hwfns = 1;
4197 }
4198#endif
4199
3860 p_dev->chip_bond_id = ecore_rd(p_hwfn, p_hwfn->p_main_ptt,
4200 p_dev->chip_bond_id = ecore_rd(p_hwfn, p_ptt,
3861 MISCS_REG_CHIP_TEST_REG) >> 4;
3862 MASK_FIELD(CHIP_BOND_ID, p_dev->chip_bond_id);
4201 MISCS_REG_CHIP_TEST_REG) >> 4;
4202 MASK_FIELD(CHIP_BOND_ID, p_dev->chip_bond_id);
3863 p_dev->chip_metal = (u16)ecore_rd(p_hwfn, p_hwfn->p_main_ptt,
4203 p_dev->chip_metal = (u16)ecore_rd(p_hwfn, p_ptt,
3864 MISCS_REG_CHIP_METAL);
3865 MASK_FIELD(CHIP_METAL, p_dev->chip_metal);
3866 DP_INFO(p_dev->hwfns,
3867 "Chip details - %s %c%d, Num: %04x Rev: %04x Bond id: %04x Metal: %04x\n",
3868 ECORE_IS_BB(p_dev) ? "BB" : "AH",
3869 'A' + p_dev->chip_rev, (int)p_dev->chip_metal,
3870 p_dev->chip_num, p_dev->chip_rev, p_dev->chip_bond_id,
3871 p_dev->chip_metal);
3872
3873 if (ECORE_IS_BB(p_dev) && CHIP_REV_IS_A0(p_dev)) {
3874 DP_NOTICE(p_dev->hwfns, false,
3875 "The chip type/rev (BB A0) is not supported!\n");
3876 return ECORE_ABORTED;
3877 }
3878
3879#ifndef ASIC_ONLY
3880 if (CHIP_REV_IS_EMUL(p_dev) && ECORE_IS_AH(p_dev))
4204 MISCS_REG_CHIP_METAL);
4205 MASK_FIELD(CHIP_METAL, p_dev->chip_metal);
4206 DP_INFO(p_dev->hwfns,
4207 "Chip details - %s %c%d, Num: %04x Rev: %04x Bond id: %04x Metal: %04x\n",
4208 ECORE_IS_BB(p_dev) ? "BB" : "AH",
4209 'A' + p_dev->chip_rev, (int)p_dev->chip_metal,
4210 p_dev->chip_num, p_dev->chip_rev, p_dev->chip_bond_id,
4211 p_dev->chip_metal);
4212
4213 if (ECORE_IS_BB(p_dev) && CHIP_REV_IS_A0(p_dev)) {
4214 DP_NOTICE(p_dev->hwfns, false,
4215 "The chip type/rev (BB A0) is not supported!\n");
4216 return ECORE_ABORTED;
4217 }
4218
4219#ifndef ASIC_ONLY
4220 if (CHIP_REV_IS_EMUL(p_dev) && ECORE_IS_AH(p_dev))
3881 ecore_wr(p_hwfn, p_hwfn->p_main_ptt,
3882 MISCS_REG_PLL_MAIN_CTRL_4, 0x1);
4221 ecore_wr(p_hwfn, p_ptt, MISCS_REG_PLL_MAIN_CTRL_4, 0x1);
3883
3884 if (CHIP_REV_IS_EMUL(p_dev)) {
4222
4223 if (CHIP_REV_IS_EMUL(p_dev)) {
3885 tmp = ecore_rd(p_hwfn, p_hwfn->p_main_ptt,
3886 MISCS_REG_ECO_RESERVED);
4224 tmp = ecore_rd(p_hwfn, p_ptt, MISCS_REG_ECO_RESERVED);
3887 if (tmp & (1 << 29)) {
3888 DP_NOTICE(p_hwfn, false, "Emulation: Running on a FULL build\n");
3889 p_dev->b_is_emul_full = true;
3890 } else {
3891 DP_NOTICE(p_hwfn, false, "Emulation: Running on a REDUCED build\n");
3892 }
3893 }
3894#endif
3895
3896 return ECORE_SUCCESS;
3897}
3898
3899void ecore_hw_hibernate_prepare(struct ecore_dev *p_dev)
3900{
3901 int j;
3902
3903 if (IS_VF(p_dev))
3904 return;
3905
3906 for_each_hwfn(p_dev, j) {
3907 struct ecore_hwfn *p_hwfn = &p_dev->hwfns[j];
3908
3909 DP_VERBOSE(p_hwfn, ECORE_MSG_IFDOWN, "Mark hw/fw uninitialized\n");
3910
3911 p_hwfn->hw_init_done = false;
3912 p_hwfn->first_on_engine = false;
3913
3914 ecore_ptt_invalidate(p_hwfn);
3915 }
3916}
3917
3918void ecore_hw_hibernate_resume(struct ecore_dev *p_dev)
3919{
3920 int j = 0;
3921
3922 if (IS_VF(p_dev))
3923 return;
3924
3925 for_each_hwfn(p_dev, j) {
3926 struct ecore_hwfn *p_hwfn = &p_dev->hwfns[j];
3927 struct ecore_ptt *p_ptt = ecore_ptt_acquire(p_hwfn);
3928
3929 ecore_hw_hwfn_prepare(p_hwfn);
3930
3931 if (!p_ptt)
3932 DP_NOTICE(p_hwfn, true, "ptt acquire failed\n");
3933 else {
3934 ecore_load_mcp_offsets(p_hwfn, p_ptt);
3935 ecore_ptt_release(p_hwfn, p_ptt);
3936 }
3937 DP_VERBOSE(p_hwfn, ECORE_MSG_IFUP, "Reinitialized hw after low power state\n");
3938 }
3939}
3940
3941static enum _ecore_status_t ecore_hw_prepare_single(struct ecore_hwfn *p_hwfn,
3942 void OSAL_IOMEM *p_regview,
3943 void OSAL_IOMEM *p_doorbells,
3944 struct ecore_hw_prepare_params *p_params)
3945{
3946 struct ecore_mdump_retain_data mdump_retain;
3947 struct ecore_dev *p_dev = p_hwfn->p_dev;
3948 struct ecore_mdump_info mdump_info;
3949 enum _ecore_status_t rc = ECORE_SUCCESS;
3950
3951 /* Split PCI bars evenly between hwfns */
3952 p_hwfn->regview = p_regview;
3953 p_hwfn->doorbells = p_doorbells;
3954
3955 if (IS_VF(p_dev))
3956 return ecore_vf_hw_prepare(p_hwfn);
3957
3958 /* Validate that chip access is feasible */
3959 if (REG_RD(p_hwfn, PXP_PF_ME_OPAQUE_ADDR) == 0xffffffff) {
3960 DP_ERR(p_hwfn, "Reading the ME register returns all Fs; Preventing further chip access\n");
3961 if (p_params->b_relaxed_probe)
3962 p_params->p_relaxed_res = ECORE_HW_PREPARE_FAILED_ME;
3963 return ECORE_INVAL;
3964 }
3965
3966 get_function_id(p_hwfn);
3967
3968 /* Allocate PTT pool */
3969 rc = ecore_ptt_pool_alloc(p_hwfn);
3970 if (rc) {
3971 DP_NOTICE(p_hwfn, true, "Failed to prepare hwfn's hw\n");
3972 if (p_params->b_relaxed_probe)
3973 p_params->p_relaxed_res = ECORE_HW_PREPARE_FAILED_MEM;
3974 goto err0;
3975 }
3976
3977 /* Allocate the main PTT */
3978 p_hwfn->p_main_ptt = ecore_get_reserved_ptt(p_hwfn, RESERVED_PTT_MAIN);
3979
3980 /* First hwfn learns basic information, e.g., number of hwfns */
3981 if (!p_hwfn->my_id) {
4225 if (tmp & (1 << 29)) {
4226 DP_NOTICE(p_hwfn, false, "Emulation: Running on a FULL build\n");
4227 p_dev->b_is_emul_full = true;
4228 } else {
4229 DP_NOTICE(p_hwfn, false, "Emulation: Running on a REDUCED build\n");
4230 }
4231 }
4232#endif
4233
4234 return ECORE_SUCCESS;
4235}
4236
4237void ecore_hw_hibernate_prepare(struct ecore_dev *p_dev)
4238{
4239 int j;
4240
4241 if (IS_VF(p_dev))
4242 return;
4243
4244 for_each_hwfn(p_dev, j) {
4245 struct ecore_hwfn *p_hwfn = &p_dev->hwfns[j];
4246
4247 DP_VERBOSE(p_hwfn, ECORE_MSG_IFDOWN, "Mark hw/fw uninitialized\n");
4248
4249 p_hwfn->hw_init_done = false;
4250 p_hwfn->first_on_engine = false;
4251
4252 ecore_ptt_invalidate(p_hwfn);
4253 }
4254}
4255
4256void ecore_hw_hibernate_resume(struct ecore_dev *p_dev)
4257{
4258 int j = 0;
4259
4260 if (IS_VF(p_dev))
4261 return;
4262
4263 for_each_hwfn(p_dev, j) {
4264 struct ecore_hwfn *p_hwfn = &p_dev->hwfns[j];
4265 struct ecore_ptt *p_ptt = ecore_ptt_acquire(p_hwfn);
4266
4267 ecore_hw_hwfn_prepare(p_hwfn);
4268
4269 if (!p_ptt)
4270 DP_NOTICE(p_hwfn, true, "ptt acquire failed\n");
4271 else {
4272 ecore_load_mcp_offsets(p_hwfn, p_ptt);
4273 ecore_ptt_release(p_hwfn, p_ptt);
4274 }
4275 DP_VERBOSE(p_hwfn, ECORE_MSG_IFUP, "Reinitialized hw after low power state\n");
4276 }
4277}
4278
4279static enum _ecore_status_t ecore_hw_prepare_single(struct ecore_hwfn *p_hwfn,
4280 void OSAL_IOMEM *p_regview,
4281 void OSAL_IOMEM *p_doorbells,
4282 struct ecore_hw_prepare_params *p_params)
4283{
4284 struct ecore_mdump_retain_data mdump_retain;
4285 struct ecore_dev *p_dev = p_hwfn->p_dev;
4286 struct ecore_mdump_info mdump_info;
4287 enum _ecore_status_t rc = ECORE_SUCCESS;
4288
4289 /* Split PCI bars evenly between hwfns */
4290 p_hwfn->regview = p_regview;
4291 p_hwfn->doorbells = p_doorbells;
4292
4293 if (IS_VF(p_dev))
4294 return ecore_vf_hw_prepare(p_hwfn);
4295
4296 /* Validate that chip access is feasible */
4297 if (REG_RD(p_hwfn, PXP_PF_ME_OPAQUE_ADDR) == 0xffffffff) {
4298 DP_ERR(p_hwfn, "Reading the ME register returns all Fs; Preventing further chip access\n");
4299 if (p_params->b_relaxed_probe)
4300 p_params->p_relaxed_res = ECORE_HW_PREPARE_FAILED_ME;
4301 return ECORE_INVAL;
4302 }
4303
4304 get_function_id(p_hwfn);
4305
4306 /* Allocate PTT pool */
4307 rc = ecore_ptt_pool_alloc(p_hwfn);
4308 if (rc) {
4309 DP_NOTICE(p_hwfn, true, "Failed to prepare hwfn's hw\n");
4310 if (p_params->b_relaxed_probe)
4311 p_params->p_relaxed_res = ECORE_HW_PREPARE_FAILED_MEM;
4312 goto err0;
4313 }
4314
4315 /* Allocate the main PTT */
4316 p_hwfn->p_main_ptt = ecore_get_reserved_ptt(p_hwfn, RESERVED_PTT_MAIN);
4317
4318 /* First hwfn learns basic information, e.g., number of hwfns */
4319 if (!p_hwfn->my_id) {
3982 rc = ecore_get_dev_info(p_dev);
4320 rc = ecore_get_dev_info(p_hwfn, p_hwfn->p_main_ptt);
3983 if (rc != ECORE_SUCCESS) {
3984 if (p_params->b_relaxed_probe)
3985 p_params->p_relaxed_res =
3986 ECORE_HW_PREPARE_FAILED_DEV;
3987 goto err1;
3988 }
3989 }
3990
3991 ecore_hw_hwfn_prepare(p_hwfn);
3992
3993 /* Initialize MCP structure */
3994 rc = ecore_mcp_cmd_init(p_hwfn, p_hwfn->p_main_ptt);
3995 if (rc) {
3996 DP_NOTICE(p_hwfn, true, "Failed initializing mcp command\n");
3997 if (p_params->b_relaxed_probe)
3998 p_params->p_relaxed_res = ECORE_HW_PREPARE_FAILED_MEM;
3999 goto err1;
4000 }
4001
4002 /* Read the device configuration information from the HW and SHMEM */
4003 rc = ecore_get_hw_info(p_hwfn, p_hwfn->p_main_ptt,
4004 p_params->personality, p_params);
4005 if (rc) {
4006 DP_NOTICE(p_hwfn, true, "Failed to get HW information\n");
4007 goto err2;
4008 }
4009
4010 /* Sending a mailbox to the MFW should be after ecore_get_hw_info() is
4011 * called, since among others it sets the ports number in an engine.
4012 */
4013 if (p_params->initiate_pf_flr && p_hwfn == ECORE_LEADING_HWFN(p_dev) &&
4014 !p_dev->recov_in_prog) {
4015 rc = ecore_mcp_initiate_pf_flr(p_hwfn, p_hwfn->p_main_ptt);
4016 if (rc != ECORE_SUCCESS)
4017 DP_NOTICE(p_hwfn, false, "Failed to initiate PF FLR\n");
4018 }
4019
4020 /* Check if mdump logs/data are present and update the epoch value */
4021 if (p_hwfn == ECORE_LEADING_HWFN(p_hwfn->p_dev)) {
4022 rc = ecore_mcp_mdump_get_info(p_hwfn, p_hwfn->p_main_ptt,
4023 &mdump_info);
4024 if (rc == ECORE_SUCCESS && mdump_info.num_of_logs)
4025 DP_NOTICE(p_hwfn, false,
4026 "* * * IMPORTANT - HW ERROR register dump captured by device * * *\n");
4027
4028 rc = ecore_mcp_mdump_get_retain(p_hwfn, p_hwfn->p_main_ptt,
4029 &mdump_retain);
4030 if (rc == ECORE_SUCCESS && mdump_retain.valid)
4031 DP_NOTICE(p_hwfn, false,
4032 "mdump retained data: epoch 0x%08x, pf 0x%x, status 0x%08x\n",
4033 mdump_retain.epoch, mdump_retain.pf,
4034 mdump_retain.status);
4035
4036 ecore_mcp_mdump_set_values(p_hwfn, p_hwfn->p_main_ptt,
4037 p_params->epoch);
4038 }
4039
4040 /* Allocate the init RT array and initialize the init-ops engine */
4041 rc = ecore_init_alloc(p_hwfn);
4042 if (rc) {
4043 DP_NOTICE(p_hwfn, true, "Failed to allocate the init array\n");
4044 if (p_params->b_relaxed_probe)
4045 p_params->p_relaxed_res = ECORE_HW_PREPARE_FAILED_MEM;
4046 goto err2;
4047 }
4048
4049#ifndef ASIC_ONLY
4050 if (CHIP_REV_IS_FPGA(p_dev)) {
4051 DP_NOTICE(p_hwfn, false,
4052 "FPGA: workaround; Prevent DMAE parities\n");
4053 ecore_wr(p_hwfn, p_hwfn->p_main_ptt, PCIE_REG_PRTY_MASK_K2_E5,
4054 7);
4055
4056 DP_NOTICE(p_hwfn, false,
4057 "FPGA: workaround: Set VF bar0 size\n");
4058 ecore_wr(p_hwfn, p_hwfn->p_main_ptt,
4059 PGLUE_B_REG_VF_BAR0_SIZE_K2_E5, 4);
4060 }
4061#endif
4062
4063 return rc;
4064err2:
4065 if (IS_LEAD_HWFN(p_hwfn))
4066 ecore_iov_free_hw_info(p_dev);
4067 ecore_mcp_free(p_hwfn);
4068err1:
4069 ecore_hw_hwfn_free(p_hwfn);
4070err0:
4071 return rc;
4072}
4073
4074enum _ecore_status_t ecore_hw_prepare(struct ecore_dev *p_dev,
4075 struct ecore_hw_prepare_params *p_params)
4076{
4077 struct ecore_hwfn *p_hwfn = ECORE_LEADING_HWFN(p_dev);
4078 enum _ecore_status_t rc;
4079
4080 p_dev->chk_reg_fifo = p_params->chk_reg_fifo;
4081 p_dev->allow_mdump = p_params->allow_mdump;
4082
4083 if (p_params->b_relaxed_probe)
4084 p_params->p_relaxed_res = ECORE_HW_PREPARE_SUCCESS;
4085
4086 /* Store the precompiled init data ptrs */
4087 if (IS_PF(p_dev))
4088 ecore_init_iro_array(p_dev);
4089
4090 /* Initialize the first hwfn - will learn number of hwfns */
4091 rc = ecore_hw_prepare_single(p_hwfn,
4092 p_dev->regview,
4093 p_dev->doorbells, p_params);
4094 if (rc != ECORE_SUCCESS)
4095 return rc;
4096
4097 p_params->personality = p_hwfn->hw_info.personality;
4098
4099 /* initilalize 2nd hwfn if necessary */
4100 if (p_dev->num_hwfns > 1) {
4101 void OSAL_IOMEM *p_regview, *p_doorbell;
4102 u8 OSAL_IOMEM *addr;
4103
4104 /* adjust bar offset for second engine */
4105 addr = (u8 OSAL_IOMEM *)p_dev->regview +
4321 if (rc != ECORE_SUCCESS) {
4322 if (p_params->b_relaxed_probe)
4323 p_params->p_relaxed_res =
4324 ECORE_HW_PREPARE_FAILED_DEV;
4325 goto err1;
4326 }
4327 }
4328
4329 ecore_hw_hwfn_prepare(p_hwfn);
4330
4331 /* Initialize MCP structure */
4332 rc = ecore_mcp_cmd_init(p_hwfn, p_hwfn->p_main_ptt);
4333 if (rc) {
4334 DP_NOTICE(p_hwfn, true, "Failed initializing mcp command\n");
4335 if (p_params->b_relaxed_probe)
4336 p_params->p_relaxed_res = ECORE_HW_PREPARE_FAILED_MEM;
4337 goto err1;
4338 }
4339
4340 /* Read the device configuration information from the HW and SHMEM */
4341 rc = ecore_get_hw_info(p_hwfn, p_hwfn->p_main_ptt,
4342 p_params->personality, p_params);
4343 if (rc) {
4344 DP_NOTICE(p_hwfn, true, "Failed to get HW information\n");
4345 goto err2;
4346 }
4347
4348 /* Sending a mailbox to the MFW should be after ecore_get_hw_info() is
4349 * called, since among others it sets the ports number in an engine.
4350 */
4351 if (p_params->initiate_pf_flr && p_hwfn == ECORE_LEADING_HWFN(p_dev) &&
4352 !p_dev->recov_in_prog) {
4353 rc = ecore_mcp_initiate_pf_flr(p_hwfn, p_hwfn->p_main_ptt);
4354 if (rc != ECORE_SUCCESS)
4355 DP_NOTICE(p_hwfn, false, "Failed to initiate PF FLR\n");
4356 }
4357
4358 /* Check if mdump logs/data are present and update the epoch value */
4359 if (p_hwfn == ECORE_LEADING_HWFN(p_hwfn->p_dev)) {
4360 rc = ecore_mcp_mdump_get_info(p_hwfn, p_hwfn->p_main_ptt,
4361 &mdump_info);
4362 if (rc == ECORE_SUCCESS && mdump_info.num_of_logs)
4363 DP_NOTICE(p_hwfn, false,
4364 "* * * IMPORTANT - HW ERROR register dump captured by device * * *\n");
4365
4366 rc = ecore_mcp_mdump_get_retain(p_hwfn, p_hwfn->p_main_ptt,
4367 &mdump_retain);
4368 if (rc == ECORE_SUCCESS && mdump_retain.valid)
4369 DP_NOTICE(p_hwfn, false,
4370 "mdump retained data: epoch 0x%08x, pf 0x%x, status 0x%08x\n",
4371 mdump_retain.epoch, mdump_retain.pf,
4372 mdump_retain.status);
4373
4374 ecore_mcp_mdump_set_values(p_hwfn, p_hwfn->p_main_ptt,
4375 p_params->epoch);
4376 }
4377
4378 /* Allocate the init RT array and initialize the init-ops engine */
4379 rc = ecore_init_alloc(p_hwfn);
4380 if (rc) {
4381 DP_NOTICE(p_hwfn, true, "Failed to allocate the init array\n");
4382 if (p_params->b_relaxed_probe)
4383 p_params->p_relaxed_res = ECORE_HW_PREPARE_FAILED_MEM;
4384 goto err2;
4385 }
4386
4387#ifndef ASIC_ONLY
4388 if (CHIP_REV_IS_FPGA(p_dev)) {
4389 DP_NOTICE(p_hwfn, false,
4390 "FPGA: workaround; Prevent DMAE parities\n");
4391 ecore_wr(p_hwfn, p_hwfn->p_main_ptt, PCIE_REG_PRTY_MASK_K2_E5,
4392 7);
4393
4394 DP_NOTICE(p_hwfn, false,
4395 "FPGA: workaround: Set VF bar0 size\n");
4396 ecore_wr(p_hwfn, p_hwfn->p_main_ptt,
4397 PGLUE_B_REG_VF_BAR0_SIZE_K2_E5, 4);
4398 }
4399#endif
4400
4401 return rc;
4402err2:
4403 if (IS_LEAD_HWFN(p_hwfn))
4404 ecore_iov_free_hw_info(p_dev);
4405 ecore_mcp_free(p_hwfn);
4406err1:
4407 ecore_hw_hwfn_free(p_hwfn);
4408err0:
4409 return rc;
4410}
4411
4412enum _ecore_status_t ecore_hw_prepare(struct ecore_dev *p_dev,
4413 struct ecore_hw_prepare_params *p_params)
4414{
4415 struct ecore_hwfn *p_hwfn = ECORE_LEADING_HWFN(p_dev);
4416 enum _ecore_status_t rc;
4417
4418 p_dev->chk_reg_fifo = p_params->chk_reg_fifo;
4419 p_dev->allow_mdump = p_params->allow_mdump;
4420
4421 if (p_params->b_relaxed_probe)
4422 p_params->p_relaxed_res = ECORE_HW_PREPARE_SUCCESS;
4423
4424 /* Store the precompiled init data ptrs */
4425 if (IS_PF(p_dev))
4426 ecore_init_iro_array(p_dev);
4427
4428 /* Initialize the first hwfn - will learn number of hwfns */
4429 rc = ecore_hw_prepare_single(p_hwfn,
4430 p_dev->regview,
4431 p_dev->doorbells, p_params);
4432 if (rc != ECORE_SUCCESS)
4433 return rc;
4434
4435 p_params->personality = p_hwfn->hw_info.personality;
4436
4437 /* initilalize 2nd hwfn if necessary */
4438 if (p_dev->num_hwfns > 1) {
4439 void OSAL_IOMEM *p_regview, *p_doorbell;
4440 u8 OSAL_IOMEM *addr;
4441
4442 /* adjust bar offset for second engine */
4443 addr = (u8 OSAL_IOMEM *)p_dev->regview +
4106 ecore_hw_bar_size(p_hwfn, BAR_ID_0) / 2;
4444 ecore_hw_bar_size(p_hwfn,
4445 p_hwfn->p_main_ptt,
4446 BAR_ID_0) / 2;
4107 p_regview = (void OSAL_IOMEM *)addr;
4108
4109 addr = (u8 OSAL_IOMEM *)p_dev->doorbells +
4447 p_regview = (void OSAL_IOMEM *)addr;
4448
4449 addr = (u8 OSAL_IOMEM *)p_dev->doorbells +
4110 ecore_hw_bar_size(p_hwfn, BAR_ID_1) / 2;
4450 ecore_hw_bar_size(p_hwfn,
4451 p_hwfn->p_main_ptt,
4452 BAR_ID_1) / 2;
4111 p_doorbell = (void OSAL_IOMEM *)addr;
4112
4113 /* prepare second hw function */
4114 rc = ecore_hw_prepare_single(&p_dev->hwfns[1], p_regview,
4115 p_doorbell, p_params);
4116
4117 /* in case of error, need to free the previously
4118 * initiliazed hwfn 0.
4119 */
4120 if (rc != ECORE_SUCCESS) {
4121 if (p_params->b_relaxed_probe)
4122 p_params->p_relaxed_res =
4123 ECORE_HW_PREPARE_FAILED_ENG2;
4124
4125 if (IS_PF(p_dev)) {
4126 ecore_init_free(p_hwfn);
4127 ecore_mcp_free(p_hwfn);
4128 ecore_hw_hwfn_free(p_hwfn);
4129 } else {
4130 DP_NOTICE(p_dev, true, "What do we need to free when VF hwfn1 init fails\n");
4131 }
4132 return rc;
4133 }
4134 }
4135
4136 return rc;
4137}
4138
4139void ecore_hw_remove(struct ecore_dev *p_dev)
4140{
4141 struct ecore_hwfn *p_hwfn = ECORE_LEADING_HWFN(p_dev);
4142 int i;
4143
4144 if (IS_PF(p_dev))
4145 ecore_mcp_ov_update_driver_state(p_hwfn, p_hwfn->p_main_ptt,
4146 ECORE_OV_DRIVER_STATE_NOT_LOADED);
4147
4148 for_each_hwfn(p_dev, i) {
4149 struct ecore_hwfn *p_hwfn = &p_dev->hwfns[i];
4150
4151 if (IS_VF(p_dev)) {
4152 ecore_vf_pf_release(p_hwfn);
4153 continue;
4154 }
4155
4156 ecore_init_free(p_hwfn);
4157 ecore_hw_hwfn_free(p_hwfn);
4158 ecore_mcp_free(p_hwfn);
4159
4453 p_doorbell = (void OSAL_IOMEM *)addr;
4454
4455 /* prepare second hw function */
4456 rc = ecore_hw_prepare_single(&p_dev->hwfns[1], p_regview,
4457 p_doorbell, p_params);
4458
4459 /* in case of error, need to free the previously
4460 * initiliazed hwfn 0.
4461 */
4462 if (rc != ECORE_SUCCESS) {
4463 if (p_params->b_relaxed_probe)
4464 p_params->p_relaxed_res =
4465 ECORE_HW_PREPARE_FAILED_ENG2;
4466
4467 if (IS_PF(p_dev)) {
4468 ecore_init_free(p_hwfn);
4469 ecore_mcp_free(p_hwfn);
4470 ecore_hw_hwfn_free(p_hwfn);
4471 } else {
4472 DP_NOTICE(p_dev, true, "What do we need to free when VF hwfn1 init fails\n");
4473 }
4474 return rc;
4475 }
4476 }
4477
4478 return rc;
4479}
4480
4481void ecore_hw_remove(struct ecore_dev *p_dev)
4482{
4483 struct ecore_hwfn *p_hwfn = ECORE_LEADING_HWFN(p_dev);
4484 int i;
4485
4486 if (IS_PF(p_dev))
4487 ecore_mcp_ov_update_driver_state(p_hwfn, p_hwfn->p_main_ptt,
4488 ECORE_OV_DRIVER_STATE_NOT_LOADED);
4489
4490 for_each_hwfn(p_dev, i) {
4491 struct ecore_hwfn *p_hwfn = &p_dev->hwfns[i];
4492
4493 if (IS_VF(p_dev)) {
4494 ecore_vf_pf_release(p_hwfn);
4495 continue;
4496 }
4497
4498 ecore_init_free(p_hwfn);
4499 ecore_hw_hwfn_free(p_hwfn);
4500 ecore_mcp_free(p_hwfn);
4501
4502#ifdef CONFIG_ECORE_LOCK_ALLOC
4160 OSAL_MUTEX_DEALLOC(&p_hwfn->dmae_info.mutex);
4503 OSAL_MUTEX_DEALLOC(&p_hwfn->dmae_info.mutex);
4504#endif
4161 }
4162
4163 ecore_iov_free_hw_info(p_dev);
4164}
4165
4166static void ecore_chain_free_next_ptr(struct ecore_dev *p_dev,
4167 struct ecore_chain *p_chain)
4168{
4169 void *p_virt = p_chain->p_virt_addr, *p_virt_next = OSAL_NULL;
4170 dma_addr_t p_phys = p_chain->p_phys_addr, p_phys_next = 0;
4171 struct ecore_chain_next *p_next;
4172 u32 size, i;
4173
4174 if (!p_virt)
4175 return;
4176
4177 size = p_chain->elem_size * p_chain->usable_per_page;
4178
4179 for (i = 0; i < p_chain->page_cnt; i++) {
4180 if (!p_virt)
4181 break;
4182
4183 p_next = (struct ecore_chain_next *)((u8 *)p_virt + size);
4184 p_virt_next = p_next->next_virt;
4185 p_phys_next = HILO_DMA_REGPAIR(p_next->next_phys);
4186
4187 OSAL_DMA_FREE_COHERENT(p_dev, p_virt, p_phys,
4188 ECORE_CHAIN_PAGE_SIZE);
4189
4190 p_virt = p_virt_next;
4191 p_phys = p_phys_next;
4192 }
4193}
4194
4195static void ecore_chain_free_single(struct ecore_dev *p_dev,
4196 struct ecore_chain *p_chain)
4197{
4198 if (!p_chain->p_virt_addr)
4199 return;
4200
4201 OSAL_DMA_FREE_COHERENT(p_dev, p_chain->p_virt_addr,
4202 p_chain->p_phys_addr, ECORE_CHAIN_PAGE_SIZE);
4203}
4204
4205static void ecore_chain_free_pbl(struct ecore_dev *p_dev,
4206 struct ecore_chain *p_chain)
4207{
4208 void **pp_virt_addr_tbl = p_chain->pbl.pp_virt_addr_tbl;
4209 u8 *p_pbl_virt = (u8 *)p_chain->pbl_sp.p_virt_table;
4210 u32 page_cnt = p_chain->page_cnt, i, pbl_size;
4211
4212 if (!pp_virt_addr_tbl)
4213 return;
4214
4215 if (!p_pbl_virt)
4216 goto out;
4217
4218 for (i = 0; i < page_cnt; i++) {
4219 if (!pp_virt_addr_tbl[i])
4220 break;
4221
4222 OSAL_DMA_FREE_COHERENT(p_dev, pp_virt_addr_tbl[i],
4223 *(dma_addr_t *)p_pbl_virt,
4224 ECORE_CHAIN_PAGE_SIZE);
4225
4226 p_pbl_virt += ECORE_CHAIN_PBL_ENTRY_SIZE;
4227 }
4228
4229 pbl_size = page_cnt * ECORE_CHAIN_PBL_ENTRY_SIZE;
4230
4231 if (!p_chain->b_external_pbl) {
4232 OSAL_DMA_FREE_COHERENT(p_dev, p_chain->pbl_sp.p_virt_table,
4233 p_chain->pbl_sp.p_phys_table, pbl_size);
4234 }
4235out:
4236 OSAL_VFREE(p_dev, p_chain->pbl.pp_virt_addr_tbl);
4237 p_chain->pbl.pp_virt_addr_tbl = OSAL_NULL;
4238}
4239
4240void ecore_chain_free(struct ecore_dev *p_dev,
4241 struct ecore_chain *p_chain)
4242{
4243 switch (p_chain->mode) {
4244 case ECORE_CHAIN_MODE_NEXT_PTR:
4245 ecore_chain_free_next_ptr(p_dev, p_chain);
4246 break;
4247 case ECORE_CHAIN_MODE_SINGLE:
4248 ecore_chain_free_single(p_dev, p_chain);
4249 break;
4250 case ECORE_CHAIN_MODE_PBL:
4251 ecore_chain_free_pbl(p_dev, p_chain);
4252 break;
4253 }
4254}
4255
4256static enum _ecore_status_t
4257ecore_chain_alloc_sanity_check(struct ecore_dev *p_dev,
4258 enum ecore_chain_cnt_type cnt_type,
4259 osal_size_t elem_size, u32 page_cnt)
4260{
4261 u64 chain_size = ELEMS_PER_PAGE(elem_size) * page_cnt;
4262
4263 /* The actual chain size can be larger than the maximal possible value
4264 * after rounding up the requested elements number to pages, and after
4265 * taking into acount the unusuable elements (next-ptr elements).
4266 * The size of a "u16" chain can be (U16_MAX + 1) since the chain
4267 * size/capacity fields are of a u32 type.
4268 */
4269 if ((cnt_type == ECORE_CHAIN_CNT_TYPE_U16 &&
4270 chain_size > ((u32)ECORE_U16_MAX + 1)) ||
4271 (cnt_type == ECORE_CHAIN_CNT_TYPE_U32 &&
4272 chain_size > ECORE_U32_MAX)) {
4273 DP_NOTICE(p_dev, true,
4274 "The actual chain size (0x%llx) is larger than the maximal possible value\n",
4275 (unsigned long long)chain_size);
4276 return ECORE_INVAL;
4277 }
4278
4279 return ECORE_SUCCESS;
4280}
4281
4282static enum _ecore_status_t
4283ecore_chain_alloc_next_ptr(struct ecore_dev *p_dev, struct ecore_chain *p_chain)
4284{
4285 void *p_virt = OSAL_NULL, *p_virt_prev = OSAL_NULL;
4286 dma_addr_t p_phys = 0;
4287 u32 i;
4288
4289 for (i = 0; i < p_chain->page_cnt; i++) {
4290 p_virt = OSAL_DMA_ALLOC_COHERENT(p_dev, &p_phys,
4291 ECORE_CHAIN_PAGE_SIZE);
4292 if (!p_virt) {
4293 DP_NOTICE(p_dev, true,
4294 "Failed to allocate chain memory\n");
4295 return ECORE_NOMEM;
4296 }
4297
4298 if (i == 0) {
4299 ecore_chain_init_mem(p_chain, p_virt, p_phys);
4300 ecore_chain_reset(p_chain);
4301 } else {
4302 ecore_chain_init_next_ptr_elem(p_chain, p_virt_prev,
4303 p_virt, p_phys);
4304 }
4305
4306 p_virt_prev = p_virt;
4307 }
4308 /* Last page's next element should point to the beginning of the
4309 * chain.
4310 */
4311 ecore_chain_init_next_ptr_elem(p_chain, p_virt_prev,
4312 p_chain->p_virt_addr,
4313 p_chain->p_phys_addr);
4314
4315 return ECORE_SUCCESS;
4316}
4317
4318static enum _ecore_status_t
4319ecore_chain_alloc_single(struct ecore_dev *p_dev, struct ecore_chain *p_chain)
4320{
4321 dma_addr_t p_phys = 0;
4322 void *p_virt = OSAL_NULL;
4323
4324 p_virt = OSAL_DMA_ALLOC_COHERENT(p_dev, &p_phys, ECORE_CHAIN_PAGE_SIZE);
4325 if (!p_virt) {
4326 DP_NOTICE(p_dev, true, "Failed to allocate chain memory\n");
4327 return ECORE_NOMEM;
4328 }
4329
4330 ecore_chain_init_mem(p_chain, p_virt, p_phys);
4331 ecore_chain_reset(p_chain);
4332
4333 return ECORE_SUCCESS;
4334}
4335
4336static enum _ecore_status_t
4337ecore_chain_alloc_pbl(struct ecore_dev *p_dev,
4338 struct ecore_chain *p_chain,
4339 struct ecore_chain_ext_pbl *ext_pbl)
4340{
4505 }
4506
4507 ecore_iov_free_hw_info(p_dev);
4508}
4509
4510static void ecore_chain_free_next_ptr(struct ecore_dev *p_dev,
4511 struct ecore_chain *p_chain)
4512{
4513 void *p_virt = p_chain->p_virt_addr, *p_virt_next = OSAL_NULL;
4514 dma_addr_t p_phys = p_chain->p_phys_addr, p_phys_next = 0;
4515 struct ecore_chain_next *p_next;
4516 u32 size, i;
4517
4518 if (!p_virt)
4519 return;
4520
4521 size = p_chain->elem_size * p_chain->usable_per_page;
4522
4523 for (i = 0; i < p_chain->page_cnt; i++) {
4524 if (!p_virt)
4525 break;
4526
4527 p_next = (struct ecore_chain_next *)((u8 *)p_virt + size);
4528 p_virt_next = p_next->next_virt;
4529 p_phys_next = HILO_DMA_REGPAIR(p_next->next_phys);
4530
4531 OSAL_DMA_FREE_COHERENT(p_dev, p_virt, p_phys,
4532 ECORE_CHAIN_PAGE_SIZE);
4533
4534 p_virt = p_virt_next;
4535 p_phys = p_phys_next;
4536 }
4537}
4538
4539static void ecore_chain_free_single(struct ecore_dev *p_dev,
4540 struct ecore_chain *p_chain)
4541{
4542 if (!p_chain->p_virt_addr)
4543 return;
4544
4545 OSAL_DMA_FREE_COHERENT(p_dev, p_chain->p_virt_addr,
4546 p_chain->p_phys_addr, ECORE_CHAIN_PAGE_SIZE);
4547}
4548
4549static void ecore_chain_free_pbl(struct ecore_dev *p_dev,
4550 struct ecore_chain *p_chain)
4551{
4552 void **pp_virt_addr_tbl = p_chain->pbl.pp_virt_addr_tbl;
4553 u8 *p_pbl_virt = (u8 *)p_chain->pbl_sp.p_virt_table;
4554 u32 page_cnt = p_chain->page_cnt, i, pbl_size;
4555
4556 if (!pp_virt_addr_tbl)
4557 return;
4558
4559 if (!p_pbl_virt)
4560 goto out;
4561
4562 for (i = 0; i < page_cnt; i++) {
4563 if (!pp_virt_addr_tbl[i])
4564 break;
4565
4566 OSAL_DMA_FREE_COHERENT(p_dev, pp_virt_addr_tbl[i],
4567 *(dma_addr_t *)p_pbl_virt,
4568 ECORE_CHAIN_PAGE_SIZE);
4569
4570 p_pbl_virt += ECORE_CHAIN_PBL_ENTRY_SIZE;
4571 }
4572
4573 pbl_size = page_cnt * ECORE_CHAIN_PBL_ENTRY_SIZE;
4574
4575 if (!p_chain->b_external_pbl) {
4576 OSAL_DMA_FREE_COHERENT(p_dev, p_chain->pbl_sp.p_virt_table,
4577 p_chain->pbl_sp.p_phys_table, pbl_size);
4578 }
4579out:
4580 OSAL_VFREE(p_dev, p_chain->pbl.pp_virt_addr_tbl);
4581 p_chain->pbl.pp_virt_addr_tbl = OSAL_NULL;
4582}
4583
4584void ecore_chain_free(struct ecore_dev *p_dev,
4585 struct ecore_chain *p_chain)
4586{
4587 switch (p_chain->mode) {
4588 case ECORE_CHAIN_MODE_NEXT_PTR:
4589 ecore_chain_free_next_ptr(p_dev, p_chain);
4590 break;
4591 case ECORE_CHAIN_MODE_SINGLE:
4592 ecore_chain_free_single(p_dev, p_chain);
4593 break;
4594 case ECORE_CHAIN_MODE_PBL:
4595 ecore_chain_free_pbl(p_dev, p_chain);
4596 break;
4597 }
4598}
4599
4600static enum _ecore_status_t
4601ecore_chain_alloc_sanity_check(struct ecore_dev *p_dev,
4602 enum ecore_chain_cnt_type cnt_type,
4603 osal_size_t elem_size, u32 page_cnt)
4604{
4605 u64 chain_size = ELEMS_PER_PAGE(elem_size) * page_cnt;
4606
4607 /* The actual chain size can be larger than the maximal possible value
4608 * after rounding up the requested elements number to pages, and after
4609 * taking into acount the unusuable elements (next-ptr elements).
4610 * The size of a "u16" chain can be (U16_MAX + 1) since the chain
4611 * size/capacity fields are of a u32 type.
4612 */
4613 if ((cnt_type == ECORE_CHAIN_CNT_TYPE_U16 &&
4614 chain_size > ((u32)ECORE_U16_MAX + 1)) ||
4615 (cnt_type == ECORE_CHAIN_CNT_TYPE_U32 &&
4616 chain_size > ECORE_U32_MAX)) {
4617 DP_NOTICE(p_dev, true,
4618 "The actual chain size (0x%llx) is larger than the maximal possible value\n",
4619 (unsigned long long)chain_size);
4620 return ECORE_INVAL;
4621 }
4622
4623 return ECORE_SUCCESS;
4624}
4625
4626static enum _ecore_status_t
4627ecore_chain_alloc_next_ptr(struct ecore_dev *p_dev, struct ecore_chain *p_chain)
4628{
4629 void *p_virt = OSAL_NULL, *p_virt_prev = OSAL_NULL;
4630 dma_addr_t p_phys = 0;
4631 u32 i;
4632
4633 for (i = 0; i < p_chain->page_cnt; i++) {
4634 p_virt = OSAL_DMA_ALLOC_COHERENT(p_dev, &p_phys,
4635 ECORE_CHAIN_PAGE_SIZE);
4636 if (!p_virt) {
4637 DP_NOTICE(p_dev, true,
4638 "Failed to allocate chain memory\n");
4639 return ECORE_NOMEM;
4640 }
4641
4642 if (i == 0) {
4643 ecore_chain_init_mem(p_chain, p_virt, p_phys);
4644 ecore_chain_reset(p_chain);
4645 } else {
4646 ecore_chain_init_next_ptr_elem(p_chain, p_virt_prev,
4647 p_virt, p_phys);
4648 }
4649
4650 p_virt_prev = p_virt;
4651 }
4652 /* Last page's next element should point to the beginning of the
4653 * chain.
4654 */
4655 ecore_chain_init_next_ptr_elem(p_chain, p_virt_prev,
4656 p_chain->p_virt_addr,
4657 p_chain->p_phys_addr);
4658
4659 return ECORE_SUCCESS;
4660}
4661
4662static enum _ecore_status_t
4663ecore_chain_alloc_single(struct ecore_dev *p_dev, struct ecore_chain *p_chain)
4664{
4665 dma_addr_t p_phys = 0;
4666 void *p_virt = OSAL_NULL;
4667
4668 p_virt = OSAL_DMA_ALLOC_COHERENT(p_dev, &p_phys, ECORE_CHAIN_PAGE_SIZE);
4669 if (!p_virt) {
4670 DP_NOTICE(p_dev, true, "Failed to allocate chain memory\n");
4671 return ECORE_NOMEM;
4672 }
4673
4674 ecore_chain_init_mem(p_chain, p_virt, p_phys);
4675 ecore_chain_reset(p_chain);
4676
4677 return ECORE_SUCCESS;
4678}
4679
4680static enum _ecore_status_t
4681ecore_chain_alloc_pbl(struct ecore_dev *p_dev,
4682 struct ecore_chain *p_chain,
4683 struct ecore_chain_ext_pbl *ext_pbl)
4684{
4341 void *p_virt = OSAL_NULL;
4342 u8 *p_pbl_virt = OSAL_NULL;
4343 void **pp_virt_addr_tbl = OSAL_NULL;
4344 dma_addr_t p_phys = 0, p_pbl_phys = 0;
4345 u32 page_cnt = p_chain->page_cnt, size, i;
4685 u32 page_cnt = p_chain->page_cnt, size, i;
4686 dma_addr_t p_phys = 0, p_pbl_phys = 0;
4687 void **pp_virt_addr_tbl = OSAL_NULL;
4688 u8 *p_pbl_virt = OSAL_NULL;
4689 void *p_virt = OSAL_NULL;
4346
4347 size = page_cnt * sizeof(*pp_virt_addr_tbl);
4348 pp_virt_addr_tbl = (void **)OSAL_VZALLOC(p_dev, size);
4349 if (!pp_virt_addr_tbl) {
4350 DP_NOTICE(p_dev, true,
4351 "Failed to allocate memory for the chain virtual addresses table\n");
4352 return ECORE_NOMEM;
4353 }
4354
4355 /* The allocation of the PBL table is done with its full size, since it
4356 * is expected to be successive.
4357 * ecore_chain_init_pbl_mem() is called even in a case of an allocation
4358 * failure, since pp_virt_addr_tbl was previously allocated, and it
4359 * should be saved to allow its freeing during the error flow.
4360 */
4361 size = page_cnt * ECORE_CHAIN_PBL_ENTRY_SIZE;
4362
4363 if (ext_pbl == OSAL_NULL) {
4364 p_pbl_virt = OSAL_DMA_ALLOC_COHERENT(p_dev, &p_pbl_phys, size);
4365 } else {
4366 p_pbl_virt = ext_pbl->p_pbl_virt;
4367 p_pbl_phys = ext_pbl->p_pbl_phys;
4368 p_chain->b_external_pbl = true;
4369 }
4370
4371 ecore_chain_init_pbl_mem(p_chain, p_pbl_virt, p_pbl_phys,
4372 pp_virt_addr_tbl);
4373 if (!p_pbl_virt) {
4374 DP_NOTICE(p_dev, true, "Failed to allocate chain pbl memory\n");
4375 return ECORE_NOMEM;
4376 }
4377
4378 for (i = 0; i < page_cnt; i++) {
4379 p_virt = OSAL_DMA_ALLOC_COHERENT(p_dev, &p_phys,
4380 ECORE_CHAIN_PAGE_SIZE);
4381 if (!p_virt) {
4382 DP_NOTICE(p_dev, true,
4383 "Failed to allocate chain memory\n");
4384 return ECORE_NOMEM;
4385 }
4386
4387 if (i == 0) {
4388 ecore_chain_init_mem(p_chain, p_virt, p_phys);
4389 ecore_chain_reset(p_chain);
4390 }
4391
4392 /* Fill the PBL table with the physical address of the page */
4393 *(dma_addr_t *)p_pbl_virt = p_phys;
4394 /* Keep the virtual address of the page */
4395 p_chain->pbl.pp_virt_addr_tbl[i] = p_virt;
4396
4397 p_pbl_virt += ECORE_CHAIN_PBL_ENTRY_SIZE;
4398 }
4399
4400 return ECORE_SUCCESS;
4401}
4402
4403enum _ecore_status_t ecore_chain_alloc(struct ecore_dev *p_dev,
4404 enum ecore_chain_use_mode intended_use,
4405 enum ecore_chain_mode mode,
4406 enum ecore_chain_cnt_type cnt_type,
4407 u32 num_elems, osal_size_t elem_size,
4408 struct ecore_chain *p_chain,
4409 struct ecore_chain_ext_pbl *ext_pbl)
4410{
4411 u32 page_cnt;
4412 enum _ecore_status_t rc = ECORE_SUCCESS;
4413
4414 if (mode == ECORE_CHAIN_MODE_SINGLE)
4415 page_cnt = 1;
4416 else
4417 page_cnt = ECORE_CHAIN_PAGE_CNT(num_elems, elem_size, mode);
4418
4419 rc = ecore_chain_alloc_sanity_check(p_dev, cnt_type, elem_size,
4420 page_cnt);
4421 if (rc) {
4422 DP_NOTICE(p_dev, true,
4423 "Cannot allocate a chain with the given arguments:\n"
4424 "[use_mode %d, mode %d, cnt_type %d, num_elems %d, elem_size %zu]\n",
4425 intended_use, mode, cnt_type, num_elems, elem_size);
4426 return rc;
4427 }
4428
4429 ecore_chain_init_params(p_chain, page_cnt, (u8)elem_size, intended_use,
4430 mode, cnt_type, p_dev->dp_ctx);
4431
4432 switch (mode) {
4433 case ECORE_CHAIN_MODE_NEXT_PTR:
4434 rc = ecore_chain_alloc_next_ptr(p_dev, p_chain);
4435 break;
4436 case ECORE_CHAIN_MODE_SINGLE:
4437 rc = ecore_chain_alloc_single(p_dev, p_chain);
4438 break;
4439 case ECORE_CHAIN_MODE_PBL:
4440 rc = ecore_chain_alloc_pbl(p_dev, p_chain, ext_pbl);
4441 break;
4442 }
4443 if (rc)
4444 goto nomem;
4445
4446 return ECORE_SUCCESS;
4447
4448nomem:
4449 ecore_chain_free(p_dev, p_chain);
4450 return rc;
4451}
4452
4453enum _ecore_status_t ecore_fw_l2_queue(struct ecore_hwfn *p_hwfn,
4454 u16 src_id, u16 *dst_id)
4455{
4456 if (src_id >= RESC_NUM(p_hwfn, ECORE_L2_QUEUE)) {
4457 u16 min, max;
4458
4459 min = (u16)RESC_START(p_hwfn, ECORE_L2_QUEUE);
4460 max = min + RESC_NUM(p_hwfn, ECORE_L2_QUEUE);
4461 DP_NOTICE(p_hwfn, true, "l2_queue id [%d] is not valid, available indices [%d - %d]\n",
4462 src_id, min, max);
4463
4464 return ECORE_INVAL;
4465 }
4466
4467 *dst_id = RESC_START(p_hwfn, ECORE_L2_QUEUE) + src_id;
4468
4469 return ECORE_SUCCESS;
4470}
4471
4472enum _ecore_status_t ecore_fw_vport(struct ecore_hwfn *p_hwfn,
4473 u8 src_id, u8 *dst_id)
4474{
4475 if (src_id >= RESC_NUM(p_hwfn, ECORE_VPORT)) {
4476 u8 min, max;
4477
4478 min = (u8)RESC_START(p_hwfn, ECORE_VPORT);
4479 max = min + RESC_NUM(p_hwfn, ECORE_VPORT);
4480 DP_NOTICE(p_hwfn, true, "vport id [%d] is not valid, available indices [%d - %d]\n",
4481 src_id, min, max);
4482
4483 return ECORE_INVAL;
4484 }
4485
4486 *dst_id = RESC_START(p_hwfn, ECORE_VPORT) + src_id;
4487
4488 return ECORE_SUCCESS;
4489}
4490
4491enum _ecore_status_t ecore_fw_rss_eng(struct ecore_hwfn *p_hwfn,
4492 u8 src_id, u8 *dst_id)
4493{
4494 if (src_id >= RESC_NUM(p_hwfn, ECORE_RSS_ENG)) {
4495 u8 min, max;
4496
4497 min = (u8)RESC_START(p_hwfn, ECORE_RSS_ENG);
4498 max = min + RESC_NUM(p_hwfn, ECORE_RSS_ENG);
4499 DP_NOTICE(p_hwfn, true, "rss_eng id [%d] is not valid, available indices [%d - %d]\n",
4500 src_id, min, max);
4501
4502 return ECORE_INVAL;
4503 }
4504
4505 *dst_id = RESC_START(p_hwfn, ECORE_RSS_ENG) + src_id;
4506
4507 return ECORE_SUCCESS;
4508}
4509
4510static enum _ecore_status_t
4511ecore_llh_add_mac_filter_bb_ah(struct ecore_hwfn *p_hwfn,
4512 struct ecore_ptt *p_ptt, u32 high, u32 low,
4513 u32 *p_entry_num)
4514{
4515 u32 en;
4516 int i;
4517
4518 /* Find a free entry and utilize it */
4519 for (i = 0; i < NIG_REG_LLH_FUNC_FILTER_EN_SIZE; i++) {
4520 en = ecore_rd(p_hwfn, p_ptt,
4521 NIG_REG_LLH_FUNC_FILTER_EN_BB_K2 +
4522 i * sizeof(u32));
4523 if (en)
4524 continue;
4525 ecore_wr(p_hwfn, p_ptt,
4526 NIG_REG_LLH_FUNC_FILTER_VALUE_BB_K2 +
4527 2 * i * sizeof(u32), low);
4528 ecore_wr(p_hwfn, p_ptt,
4529 NIG_REG_LLH_FUNC_FILTER_VALUE_BB_K2 +
4530 (2 * i + 1) * sizeof(u32), high);
4531 ecore_wr(p_hwfn, p_ptt,
4532 NIG_REG_LLH_FUNC_FILTER_MODE_BB_K2 +
4533 i * sizeof(u32), 0);
4534 ecore_wr(p_hwfn, p_ptt,
4535 NIG_REG_LLH_FUNC_FILTER_PROTOCOL_TYPE_BB_K2 +
4536 i * sizeof(u32), 0);
4537 ecore_wr(p_hwfn, p_ptt,
4538 NIG_REG_LLH_FUNC_FILTER_EN_BB_K2 +
4539 i * sizeof(u32), 1);
4540 break;
4541 }
4542
4543 if (i >= NIG_REG_LLH_FUNC_FILTER_EN_SIZE)
4544 return ECORE_NORESOURCES;
4545
4546 *p_entry_num = i;
4547
4548 return ECORE_SUCCESS;
4549}
4550
4690
4691 size = page_cnt * sizeof(*pp_virt_addr_tbl);
4692 pp_virt_addr_tbl = (void **)OSAL_VZALLOC(p_dev, size);
4693 if (!pp_virt_addr_tbl) {
4694 DP_NOTICE(p_dev, true,
4695 "Failed to allocate memory for the chain virtual addresses table\n");
4696 return ECORE_NOMEM;
4697 }
4698
4699 /* The allocation of the PBL table is done with its full size, since it
4700 * is expected to be successive.
4701 * ecore_chain_init_pbl_mem() is called even in a case of an allocation
4702 * failure, since pp_virt_addr_tbl was previously allocated, and it
4703 * should be saved to allow its freeing during the error flow.
4704 */
4705 size = page_cnt * ECORE_CHAIN_PBL_ENTRY_SIZE;
4706
4707 if (ext_pbl == OSAL_NULL) {
4708 p_pbl_virt = OSAL_DMA_ALLOC_COHERENT(p_dev, &p_pbl_phys, size);
4709 } else {
4710 p_pbl_virt = ext_pbl->p_pbl_virt;
4711 p_pbl_phys = ext_pbl->p_pbl_phys;
4712 p_chain->b_external_pbl = true;
4713 }
4714
4715 ecore_chain_init_pbl_mem(p_chain, p_pbl_virt, p_pbl_phys,
4716 pp_virt_addr_tbl);
4717 if (!p_pbl_virt) {
4718 DP_NOTICE(p_dev, true, "Failed to allocate chain pbl memory\n");
4719 return ECORE_NOMEM;
4720 }
4721
4722 for (i = 0; i < page_cnt; i++) {
4723 p_virt = OSAL_DMA_ALLOC_COHERENT(p_dev, &p_phys,
4724 ECORE_CHAIN_PAGE_SIZE);
4725 if (!p_virt) {
4726 DP_NOTICE(p_dev, true,
4727 "Failed to allocate chain memory\n");
4728 return ECORE_NOMEM;
4729 }
4730
4731 if (i == 0) {
4732 ecore_chain_init_mem(p_chain, p_virt, p_phys);
4733 ecore_chain_reset(p_chain);
4734 }
4735
4736 /* Fill the PBL table with the physical address of the page */
4737 *(dma_addr_t *)p_pbl_virt = p_phys;
4738 /* Keep the virtual address of the page */
4739 p_chain->pbl.pp_virt_addr_tbl[i] = p_virt;
4740
4741 p_pbl_virt += ECORE_CHAIN_PBL_ENTRY_SIZE;
4742 }
4743
4744 return ECORE_SUCCESS;
4745}
4746
4747enum _ecore_status_t ecore_chain_alloc(struct ecore_dev *p_dev,
4748 enum ecore_chain_use_mode intended_use,
4749 enum ecore_chain_mode mode,
4750 enum ecore_chain_cnt_type cnt_type,
4751 u32 num_elems, osal_size_t elem_size,
4752 struct ecore_chain *p_chain,
4753 struct ecore_chain_ext_pbl *ext_pbl)
4754{
4755 u32 page_cnt;
4756 enum _ecore_status_t rc = ECORE_SUCCESS;
4757
4758 if (mode == ECORE_CHAIN_MODE_SINGLE)
4759 page_cnt = 1;
4760 else
4761 page_cnt = ECORE_CHAIN_PAGE_CNT(num_elems, elem_size, mode);
4762
4763 rc = ecore_chain_alloc_sanity_check(p_dev, cnt_type, elem_size,
4764 page_cnt);
4765 if (rc) {
4766 DP_NOTICE(p_dev, true,
4767 "Cannot allocate a chain with the given arguments:\n"
4768 "[use_mode %d, mode %d, cnt_type %d, num_elems %d, elem_size %zu]\n",
4769 intended_use, mode, cnt_type, num_elems, elem_size);
4770 return rc;
4771 }
4772
4773 ecore_chain_init_params(p_chain, page_cnt, (u8)elem_size, intended_use,
4774 mode, cnt_type, p_dev->dp_ctx);
4775
4776 switch (mode) {
4777 case ECORE_CHAIN_MODE_NEXT_PTR:
4778 rc = ecore_chain_alloc_next_ptr(p_dev, p_chain);
4779 break;
4780 case ECORE_CHAIN_MODE_SINGLE:
4781 rc = ecore_chain_alloc_single(p_dev, p_chain);
4782 break;
4783 case ECORE_CHAIN_MODE_PBL:
4784 rc = ecore_chain_alloc_pbl(p_dev, p_chain, ext_pbl);
4785 break;
4786 }
4787 if (rc)
4788 goto nomem;
4789
4790 return ECORE_SUCCESS;
4791
4792nomem:
4793 ecore_chain_free(p_dev, p_chain);
4794 return rc;
4795}
4796
4797enum _ecore_status_t ecore_fw_l2_queue(struct ecore_hwfn *p_hwfn,
4798 u16 src_id, u16 *dst_id)
4799{
4800 if (src_id >= RESC_NUM(p_hwfn, ECORE_L2_QUEUE)) {
4801 u16 min, max;
4802
4803 min = (u16)RESC_START(p_hwfn, ECORE_L2_QUEUE);
4804 max = min + RESC_NUM(p_hwfn, ECORE_L2_QUEUE);
4805 DP_NOTICE(p_hwfn, true, "l2_queue id [%d] is not valid, available indices [%d - %d]\n",
4806 src_id, min, max);
4807
4808 return ECORE_INVAL;
4809 }
4810
4811 *dst_id = RESC_START(p_hwfn, ECORE_L2_QUEUE) + src_id;
4812
4813 return ECORE_SUCCESS;
4814}
4815
4816enum _ecore_status_t ecore_fw_vport(struct ecore_hwfn *p_hwfn,
4817 u8 src_id, u8 *dst_id)
4818{
4819 if (src_id >= RESC_NUM(p_hwfn, ECORE_VPORT)) {
4820 u8 min, max;
4821
4822 min = (u8)RESC_START(p_hwfn, ECORE_VPORT);
4823 max = min + RESC_NUM(p_hwfn, ECORE_VPORT);
4824 DP_NOTICE(p_hwfn, true, "vport id [%d] is not valid, available indices [%d - %d]\n",
4825 src_id, min, max);
4826
4827 return ECORE_INVAL;
4828 }
4829
4830 *dst_id = RESC_START(p_hwfn, ECORE_VPORT) + src_id;
4831
4832 return ECORE_SUCCESS;
4833}
4834
4835enum _ecore_status_t ecore_fw_rss_eng(struct ecore_hwfn *p_hwfn,
4836 u8 src_id, u8 *dst_id)
4837{
4838 if (src_id >= RESC_NUM(p_hwfn, ECORE_RSS_ENG)) {
4839 u8 min, max;
4840
4841 min = (u8)RESC_START(p_hwfn, ECORE_RSS_ENG);
4842 max = min + RESC_NUM(p_hwfn, ECORE_RSS_ENG);
4843 DP_NOTICE(p_hwfn, true, "rss_eng id [%d] is not valid, available indices [%d - %d]\n",
4844 src_id, min, max);
4845
4846 return ECORE_INVAL;
4847 }
4848
4849 *dst_id = RESC_START(p_hwfn, ECORE_RSS_ENG) + src_id;
4850
4851 return ECORE_SUCCESS;
4852}
4853
4854static enum _ecore_status_t
4855ecore_llh_add_mac_filter_bb_ah(struct ecore_hwfn *p_hwfn,
4856 struct ecore_ptt *p_ptt, u32 high, u32 low,
4857 u32 *p_entry_num)
4858{
4859 u32 en;
4860 int i;
4861
4862 /* Find a free entry and utilize it */
4863 for (i = 0; i < NIG_REG_LLH_FUNC_FILTER_EN_SIZE; i++) {
4864 en = ecore_rd(p_hwfn, p_ptt,
4865 NIG_REG_LLH_FUNC_FILTER_EN_BB_K2 +
4866 i * sizeof(u32));
4867 if (en)
4868 continue;
4869 ecore_wr(p_hwfn, p_ptt,
4870 NIG_REG_LLH_FUNC_FILTER_VALUE_BB_K2 +
4871 2 * i * sizeof(u32), low);
4872 ecore_wr(p_hwfn, p_ptt,
4873 NIG_REG_LLH_FUNC_FILTER_VALUE_BB_K2 +
4874 (2 * i + 1) * sizeof(u32), high);
4875 ecore_wr(p_hwfn, p_ptt,
4876 NIG_REG_LLH_FUNC_FILTER_MODE_BB_K2 +
4877 i * sizeof(u32), 0);
4878 ecore_wr(p_hwfn, p_ptt,
4879 NIG_REG_LLH_FUNC_FILTER_PROTOCOL_TYPE_BB_K2 +
4880 i * sizeof(u32), 0);
4881 ecore_wr(p_hwfn, p_ptt,
4882 NIG_REG_LLH_FUNC_FILTER_EN_BB_K2 +
4883 i * sizeof(u32), 1);
4884 break;
4885 }
4886
4887 if (i >= NIG_REG_LLH_FUNC_FILTER_EN_SIZE)
4888 return ECORE_NORESOURCES;
4889
4890 *p_entry_num = i;
4891
4892 return ECORE_SUCCESS;
4893}
4894
4895/* OSAL_UNUSED is temporary used to avoid unused-parameter compilation warnings.
4896 * Should be removed when the function is implemented.
4897 */
4551static enum _ecore_status_t
4898static enum _ecore_status_t
4552ecore_llh_add_mac_filter_e5(struct ecore_hwfn *p_hwfn, struct ecore_ptt *p_ptt,
4553 u32 high, u32 low, u32 *p_entry_num)
4899ecore_llh_add_mac_filter_e5(struct ecore_hwfn OSAL_UNUSED *p_hwfn,
4900 struct ecore_ptt OSAL_UNUSED *p_ptt,
4901 u32 OSAL_UNUSED high, u32 OSAL_UNUSED low,
4902 u32 OSAL_UNUSED *p_entry_num)
4554{
4555 ECORE_E5_MISSING_CODE;
4556
4557 return ECORE_NOTIMPL;
4558}
4559
4560enum _ecore_status_t ecore_llh_add_mac_filter(struct ecore_hwfn *p_hwfn,
4561 struct ecore_ptt *p_ptt, u8 *p_filter)
4562{
4563 u32 high, low, entry_num;
4564 enum _ecore_status_t rc;
4565
4566 if (!(IS_MF_SI(p_hwfn) || IS_MF_DEFAULT(p_hwfn)))
4567 return ECORE_SUCCESS;
4568
4569 high = p_filter[1] | (p_filter[0] << 8);
4570 low = p_filter[5] | (p_filter[4] << 8) |
4571 (p_filter[3] << 16) | (p_filter[2] << 24);
4572
4573 if (ECORE_IS_BB(p_hwfn->p_dev) || ECORE_IS_AH(p_hwfn->p_dev))
4574 rc = ecore_llh_add_mac_filter_bb_ah(p_hwfn, p_ptt, high, low,
4575 &entry_num);
4576 else /* E5 */
4577 rc = ecore_llh_add_mac_filter_e5(p_hwfn, p_ptt, high, low,
4578 &entry_num);
4579 if (rc != ECORE_SUCCESS) {
4580 DP_NOTICE(p_hwfn, false,
4581 "Failed to find an empty LLH filter to utilize\n");
4582 return rc;
4583 }
4584
4585 DP_VERBOSE(p_hwfn, ECORE_MSG_HW,
4586 "MAC: %02hhx:%02hhx:%02hhx:%02hhx:%02hhx:%02hhx is added at LLH entry %d\n",
4587 p_filter[0], p_filter[1], p_filter[2], p_filter[3],
4588 p_filter[4], p_filter[5], entry_num);
4589
4590 return ECORE_SUCCESS;
4591}
4592
4593static enum _ecore_status_t
4594ecore_llh_remove_mac_filter_bb_ah(struct ecore_hwfn *p_hwfn,
4595 struct ecore_ptt *p_ptt, u32 high, u32 low,
4596 u32 *p_entry_num)
4597{
4598 int i;
4599
4600 /* Find the entry and clean it */
4601 for (i = 0; i < NIG_REG_LLH_FUNC_FILTER_EN_SIZE; i++) {
4602 if (ecore_rd(p_hwfn, p_ptt,
4603 NIG_REG_LLH_FUNC_FILTER_VALUE_BB_K2 +
4604 2 * i * sizeof(u32)) != low)
4605 continue;
4606 if (ecore_rd(p_hwfn, p_ptt,
4607 NIG_REG_LLH_FUNC_FILTER_VALUE_BB_K2 +
4608 (2 * i + 1) * sizeof(u32)) != high)
4609 continue;
4610
4611 ecore_wr(p_hwfn, p_ptt,
4612 NIG_REG_LLH_FUNC_FILTER_EN_BB_K2 + i * sizeof(u32), 0);
4613 ecore_wr(p_hwfn, p_ptt,
4614 NIG_REG_LLH_FUNC_FILTER_VALUE_BB_K2 +
4615 2 * i * sizeof(u32), 0);
4616 ecore_wr(p_hwfn, p_ptt,
4617 NIG_REG_LLH_FUNC_FILTER_VALUE_BB_K2 +
4618 (2 * i + 1) * sizeof(u32), 0);
4619 break;
4620 }
4621
4622 if (i >= NIG_REG_LLH_FUNC_FILTER_EN_SIZE)
4623 return ECORE_INVAL;
4624
4625 *p_entry_num = i;
4626
4627 return ECORE_SUCCESS;
4628}
4629
4903{
4904 ECORE_E5_MISSING_CODE;
4905
4906 return ECORE_NOTIMPL;
4907}
4908
4909enum _ecore_status_t ecore_llh_add_mac_filter(struct ecore_hwfn *p_hwfn,
4910 struct ecore_ptt *p_ptt, u8 *p_filter)
4911{
4912 u32 high, low, entry_num;
4913 enum _ecore_status_t rc;
4914
4915 if (!(IS_MF_SI(p_hwfn) || IS_MF_DEFAULT(p_hwfn)))
4916 return ECORE_SUCCESS;
4917
4918 high = p_filter[1] | (p_filter[0] << 8);
4919 low = p_filter[5] | (p_filter[4] << 8) |
4920 (p_filter[3] << 16) | (p_filter[2] << 24);
4921
4922 if (ECORE_IS_BB(p_hwfn->p_dev) || ECORE_IS_AH(p_hwfn->p_dev))
4923 rc = ecore_llh_add_mac_filter_bb_ah(p_hwfn, p_ptt, high, low,
4924 &entry_num);
4925 else /* E5 */
4926 rc = ecore_llh_add_mac_filter_e5(p_hwfn, p_ptt, high, low,
4927 &entry_num);
4928 if (rc != ECORE_SUCCESS) {
4929 DP_NOTICE(p_hwfn, false,
4930 "Failed to find an empty LLH filter to utilize\n");
4931 return rc;
4932 }
4933
4934 DP_VERBOSE(p_hwfn, ECORE_MSG_HW,
4935 "MAC: %02hhx:%02hhx:%02hhx:%02hhx:%02hhx:%02hhx is added at LLH entry %d\n",
4936 p_filter[0], p_filter[1], p_filter[2], p_filter[3],
4937 p_filter[4], p_filter[5], entry_num);
4938
4939 return ECORE_SUCCESS;
4940}
4941
4942static enum _ecore_status_t
4943ecore_llh_remove_mac_filter_bb_ah(struct ecore_hwfn *p_hwfn,
4944 struct ecore_ptt *p_ptt, u32 high, u32 low,
4945 u32 *p_entry_num)
4946{
4947 int i;
4948
4949 /* Find the entry and clean it */
4950 for (i = 0; i < NIG_REG_LLH_FUNC_FILTER_EN_SIZE; i++) {
4951 if (ecore_rd(p_hwfn, p_ptt,
4952 NIG_REG_LLH_FUNC_FILTER_VALUE_BB_K2 +
4953 2 * i * sizeof(u32)) != low)
4954 continue;
4955 if (ecore_rd(p_hwfn, p_ptt,
4956 NIG_REG_LLH_FUNC_FILTER_VALUE_BB_K2 +
4957 (2 * i + 1) * sizeof(u32)) != high)
4958 continue;
4959
4960 ecore_wr(p_hwfn, p_ptt,
4961 NIG_REG_LLH_FUNC_FILTER_EN_BB_K2 + i * sizeof(u32), 0);
4962 ecore_wr(p_hwfn, p_ptt,
4963 NIG_REG_LLH_FUNC_FILTER_VALUE_BB_K2 +
4964 2 * i * sizeof(u32), 0);
4965 ecore_wr(p_hwfn, p_ptt,
4966 NIG_REG_LLH_FUNC_FILTER_VALUE_BB_K2 +
4967 (2 * i + 1) * sizeof(u32), 0);
4968 break;
4969 }
4970
4971 if (i >= NIG_REG_LLH_FUNC_FILTER_EN_SIZE)
4972 return ECORE_INVAL;
4973
4974 *p_entry_num = i;
4975
4976 return ECORE_SUCCESS;
4977}
4978
4979/* OSAL_UNUSED is temporary used to avoid unused-parameter compilation warnings.
4980 * Should be removed when the function is implemented.
4981 */
4630static enum _ecore_status_t
4982static enum _ecore_status_t
4631ecore_llh_remove_mac_filter_e5(struct ecore_hwfn *p_hwfn,
4632 struct ecore_ptt *p_ptt, u32 high, u32 low,
4633 u32 *p_entry_num)
4983ecore_llh_remove_mac_filter_e5(struct ecore_hwfn OSAL_UNUSED *p_hwfn,
4984 struct ecore_ptt OSAL_UNUSED *p_ptt,
4985 u32 OSAL_UNUSED high, u32 OSAL_UNUSED low,
4986 u32 OSAL_UNUSED *p_entry_num)
4634{
4635 ECORE_E5_MISSING_CODE;
4636
4637 return ECORE_NOTIMPL;
4638}
4639
4640void ecore_llh_remove_mac_filter(struct ecore_hwfn *p_hwfn,
4641 struct ecore_ptt *p_ptt, u8 *p_filter)
4642{
4643 u32 high, low, entry_num;
4644 enum _ecore_status_t rc;
4645
4646 if (!(IS_MF_SI(p_hwfn) || IS_MF_DEFAULT(p_hwfn)))
4647 return;
4648
4649 high = p_filter[1] | (p_filter[0] << 8);
4650 low = p_filter[5] | (p_filter[4] << 8) |
4651 (p_filter[3] << 16) | (p_filter[2] << 24);
4652
4653 if (ECORE_IS_BB(p_hwfn->p_dev) || ECORE_IS_AH(p_hwfn->p_dev))
4654 rc = ecore_llh_remove_mac_filter_bb_ah(p_hwfn, p_ptt, high,
4655 low, &entry_num);
4656 else /* E5 */
4657 rc = ecore_llh_remove_mac_filter_e5(p_hwfn, p_ptt, high, low,
4658 &entry_num);
4659 if (rc != ECORE_SUCCESS) {
4660 DP_NOTICE(p_hwfn, false,
4661 "Tried to remove a non-configured filter [MAC %02hhx:%02hhx:%02hhx:%02hhx:%02hhx:%02hhx]\n",
4662 p_filter[0], p_filter[1], p_filter[2], p_filter[3],
4663 p_filter[4], p_filter[5]);
4664 return;
4665 }
4666
4667 DP_VERBOSE(p_hwfn, ECORE_MSG_HW,
4668 "MAC: %02hhx:%02hhx:%02hhx:%02hhx:%02hhx:%02hhx was removed from LLH entry %d\n",
4669 p_filter[0], p_filter[1], p_filter[2], p_filter[3],
4670 p_filter[4], p_filter[5], entry_num);
4671}
4672
4673static enum _ecore_status_t
4674ecore_llh_add_protocol_filter_bb_ah(struct ecore_hwfn *p_hwfn,
4675 struct ecore_ptt *p_ptt,
4676 enum ecore_llh_port_filter_type_t type,
4677 u32 high, u32 low, u32 *p_entry_num)
4678{
4679 u32 en;
4680 int i;
4681
4682 /* Find a free entry and utilize it */
4683 for (i = 0; i < NIG_REG_LLH_FUNC_FILTER_EN_SIZE; i++) {
4684 en = ecore_rd(p_hwfn, p_ptt,
4685 NIG_REG_LLH_FUNC_FILTER_EN_BB_K2 +
4686 i * sizeof(u32));
4687 if (en)
4688 continue;
4689 ecore_wr(p_hwfn, p_ptt,
4690 NIG_REG_LLH_FUNC_FILTER_VALUE_BB_K2 +
4691 2 * i * sizeof(u32), low);
4692 ecore_wr(p_hwfn, p_ptt,
4693 NIG_REG_LLH_FUNC_FILTER_VALUE_BB_K2 +
4694 (2 * i + 1) * sizeof(u32), high);
4695 ecore_wr(p_hwfn, p_ptt,
4696 NIG_REG_LLH_FUNC_FILTER_MODE_BB_K2 +
4697 i * sizeof(u32), 1);
4698 ecore_wr(p_hwfn, p_ptt,
4699 NIG_REG_LLH_FUNC_FILTER_PROTOCOL_TYPE_BB_K2 +
4700 i * sizeof(u32), 1 << type);
4701 ecore_wr(p_hwfn, p_ptt,
4702 NIG_REG_LLH_FUNC_FILTER_EN_BB_K2 + i * sizeof(u32), 1);
4703 break;
4704 }
4705
4706 if (i >= NIG_REG_LLH_FUNC_FILTER_EN_SIZE)
4707 return ECORE_NORESOURCES;
4708
4709 *p_entry_num = i;
4710
4711 return ECORE_SUCCESS;
4712}
4713
4987{
4988 ECORE_E5_MISSING_CODE;
4989
4990 return ECORE_NOTIMPL;
4991}
4992
4993void ecore_llh_remove_mac_filter(struct ecore_hwfn *p_hwfn,
4994 struct ecore_ptt *p_ptt, u8 *p_filter)
4995{
4996 u32 high, low, entry_num;
4997 enum _ecore_status_t rc;
4998
4999 if (!(IS_MF_SI(p_hwfn) || IS_MF_DEFAULT(p_hwfn)))
5000 return;
5001
5002 high = p_filter[1] | (p_filter[0] << 8);
5003 low = p_filter[5] | (p_filter[4] << 8) |
5004 (p_filter[3] << 16) | (p_filter[2] << 24);
5005
5006 if (ECORE_IS_BB(p_hwfn->p_dev) || ECORE_IS_AH(p_hwfn->p_dev))
5007 rc = ecore_llh_remove_mac_filter_bb_ah(p_hwfn, p_ptt, high,
5008 low, &entry_num);
5009 else /* E5 */
5010 rc = ecore_llh_remove_mac_filter_e5(p_hwfn, p_ptt, high, low,
5011 &entry_num);
5012 if (rc != ECORE_SUCCESS) {
5013 DP_NOTICE(p_hwfn, false,
5014 "Tried to remove a non-configured filter [MAC %02hhx:%02hhx:%02hhx:%02hhx:%02hhx:%02hhx]\n",
5015 p_filter[0], p_filter[1], p_filter[2], p_filter[3],
5016 p_filter[4], p_filter[5]);
5017 return;
5018 }
5019
5020 DP_VERBOSE(p_hwfn, ECORE_MSG_HW,
5021 "MAC: %02hhx:%02hhx:%02hhx:%02hhx:%02hhx:%02hhx was removed from LLH entry %d\n",
5022 p_filter[0], p_filter[1], p_filter[2], p_filter[3],
5023 p_filter[4], p_filter[5], entry_num);
5024}
5025
5026static enum _ecore_status_t
5027ecore_llh_add_protocol_filter_bb_ah(struct ecore_hwfn *p_hwfn,
5028 struct ecore_ptt *p_ptt,
5029 enum ecore_llh_port_filter_type_t type,
5030 u32 high, u32 low, u32 *p_entry_num)
5031{
5032 u32 en;
5033 int i;
5034
5035 /* Find a free entry and utilize it */
5036 for (i = 0; i < NIG_REG_LLH_FUNC_FILTER_EN_SIZE; i++) {
5037 en = ecore_rd(p_hwfn, p_ptt,
5038 NIG_REG_LLH_FUNC_FILTER_EN_BB_K2 +
5039 i * sizeof(u32));
5040 if (en)
5041 continue;
5042 ecore_wr(p_hwfn, p_ptt,
5043 NIG_REG_LLH_FUNC_FILTER_VALUE_BB_K2 +
5044 2 * i * sizeof(u32), low);
5045 ecore_wr(p_hwfn, p_ptt,
5046 NIG_REG_LLH_FUNC_FILTER_VALUE_BB_K2 +
5047 (2 * i + 1) * sizeof(u32), high);
5048 ecore_wr(p_hwfn, p_ptt,
5049 NIG_REG_LLH_FUNC_FILTER_MODE_BB_K2 +
5050 i * sizeof(u32), 1);
5051 ecore_wr(p_hwfn, p_ptt,
5052 NIG_REG_LLH_FUNC_FILTER_PROTOCOL_TYPE_BB_K2 +
5053 i * sizeof(u32), 1 << type);
5054 ecore_wr(p_hwfn, p_ptt,
5055 NIG_REG_LLH_FUNC_FILTER_EN_BB_K2 + i * sizeof(u32), 1);
5056 break;
5057 }
5058
5059 if (i >= NIG_REG_LLH_FUNC_FILTER_EN_SIZE)
5060 return ECORE_NORESOURCES;
5061
5062 *p_entry_num = i;
5063
5064 return ECORE_SUCCESS;
5065}
5066
5067/* OSAL_UNUSED is temporary used to avoid unused-parameter compilation warnings.
5068 * Should be removed when the function is implemented.
5069 */
4714static enum _ecore_status_t
5070static enum _ecore_status_t
4715ecore_llh_add_protocol_filter_e5(struct ecore_hwfn *p_hwfn,
4716 struct ecore_ptt *p_ptt,
4717 enum ecore_llh_port_filter_type_t type,
4718 u32 high, u32 low, u32 *p_entry_num)
5071ecore_llh_add_protocol_filter_e5(struct ecore_hwfn OSAL_UNUSED *p_hwfn,
5072 struct ecore_ptt OSAL_UNUSED *p_ptt,
5073 enum ecore_llh_port_filter_type_t OSAL_UNUSED type,
5074 u32 OSAL_UNUSED high, u32 OSAL_UNUSED low,
5075 u32 OSAL_UNUSED *p_entry_num)
4719{
4720 ECORE_E5_MISSING_CODE;
4721
4722 return ECORE_NOTIMPL;
4723}
4724
4725enum _ecore_status_t
4726ecore_llh_add_protocol_filter(struct ecore_hwfn *p_hwfn,
4727 struct ecore_ptt *p_ptt,
4728 u16 source_port_or_eth_type,
4729 u16 dest_port,
4730 enum ecore_llh_port_filter_type_t type)
4731{
4732 u32 high, low, entry_num;
4733 enum _ecore_status_t rc;
4734
4735 if (!(IS_MF_SI(p_hwfn) || IS_MF_DEFAULT(p_hwfn)))
4736 return ECORE_SUCCESS;
4737
4738 high = 0;
4739 low = 0;
4740 switch (type) {
4741 case ECORE_LLH_FILTER_ETHERTYPE:
4742 high = source_port_or_eth_type;
4743 break;
4744 case ECORE_LLH_FILTER_TCP_SRC_PORT:
4745 case ECORE_LLH_FILTER_UDP_SRC_PORT:
4746 low = source_port_or_eth_type << 16;
4747 break;
4748 case ECORE_LLH_FILTER_TCP_DEST_PORT:
4749 case ECORE_LLH_FILTER_UDP_DEST_PORT:
4750 low = dest_port;
4751 break;
4752 case ECORE_LLH_FILTER_TCP_SRC_AND_DEST_PORT:
4753 case ECORE_LLH_FILTER_UDP_SRC_AND_DEST_PORT:
4754 low = (source_port_or_eth_type << 16) | dest_port;
4755 break;
4756 default:
4757 DP_NOTICE(p_hwfn, true,
4758 "Non valid LLH protocol filter type %d\n", type);
4759 return ECORE_INVAL;
4760 }
4761
4762 if (ECORE_IS_BB(p_hwfn->p_dev) || ECORE_IS_AH(p_hwfn->p_dev))
4763 rc = ecore_llh_add_protocol_filter_bb_ah(p_hwfn, p_ptt, type,
4764 high, low, &entry_num);
4765 else /* E5 */
4766 rc = ecore_llh_add_protocol_filter_e5(p_hwfn, p_ptt, type, high,
4767 low, &entry_num);
4768 if (rc != ECORE_SUCCESS) {
4769 DP_NOTICE(p_hwfn, false,
4770 "Failed to find an empty LLH filter to utilize\n");
4771 return rc;
4772 }
4773
4774 switch (type) {
4775 case ECORE_LLH_FILTER_ETHERTYPE:
4776 DP_VERBOSE(p_hwfn, ECORE_MSG_HW,
4777 "ETH type %x is added at LLH entry %d\n",
4778 source_port_or_eth_type, entry_num);
4779 break;
4780 case ECORE_LLH_FILTER_TCP_SRC_PORT:
4781 DP_VERBOSE(p_hwfn, ECORE_MSG_HW,
4782 "TCP src port %x is added at LLH entry %d\n",
4783 source_port_or_eth_type, entry_num);
4784 break;
4785 case ECORE_LLH_FILTER_UDP_SRC_PORT:
4786 DP_VERBOSE(p_hwfn, ECORE_MSG_HW,
4787 "UDP src port %x is added at LLH entry %d\n",
4788 source_port_or_eth_type, entry_num);
4789 break;
4790 case ECORE_LLH_FILTER_TCP_DEST_PORT:
4791 DP_VERBOSE(p_hwfn, ECORE_MSG_HW,
4792 "TCP dst port %x is added at LLH entry %d\n",
4793 dest_port, entry_num);
4794 break;
4795 case ECORE_LLH_FILTER_UDP_DEST_PORT:
4796 DP_VERBOSE(p_hwfn, ECORE_MSG_HW,
4797 "UDP dst port %x is added at LLH entry %d\n",
4798 dest_port, entry_num);
4799 break;
4800 case ECORE_LLH_FILTER_TCP_SRC_AND_DEST_PORT:
4801 DP_VERBOSE(p_hwfn, ECORE_MSG_HW,
4802 "TCP src/dst ports %x/%x are added at LLH entry %d\n",
4803 source_port_or_eth_type, dest_port, entry_num);
4804 break;
4805 case ECORE_LLH_FILTER_UDP_SRC_AND_DEST_PORT:
4806 DP_VERBOSE(p_hwfn, ECORE_MSG_HW,
4807 "UDP src/dst ports %x/%x are added at LLH entry %d\n",
4808 source_port_or_eth_type, dest_port, entry_num);
4809 break;
4810 }
4811
4812 return ECORE_SUCCESS;
4813}
4814
4815static enum _ecore_status_t
4816ecore_llh_remove_protocol_filter_bb_ah(struct ecore_hwfn *p_hwfn,
4817 struct ecore_ptt *p_ptt,
4818 enum ecore_llh_port_filter_type_t type,
4819 u32 high, u32 low, u32 *p_entry_num)
4820{
4821 int i;
4822
4823 /* Find the entry and clean it */
4824 for (i = 0; i < NIG_REG_LLH_FUNC_FILTER_EN_SIZE; i++) {
4825 if (!ecore_rd(p_hwfn, p_ptt,
4826 NIG_REG_LLH_FUNC_FILTER_EN_BB_K2 +
4827 i * sizeof(u32)))
4828 continue;
4829 if (!ecore_rd(p_hwfn, p_ptt,
4830 NIG_REG_LLH_FUNC_FILTER_MODE_BB_K2 +
4831 i * sizeof(u32)))
4832 continue;
4833 if (!(ecore_rd(p_hwfn, p_ptt,
4834 NIG_REG_LLH_FUNC_FILTER_PROTOCOL_TYPE_BB_K2 +
4835 i * sizeof(u32)) & (1 << type)))
4836 continue;
4837 if (ecore_rd(p_hwfn, p_ptt,
4838 NIG_REG_LLH_FUNC_FILTER_VALUE_BB_K2 +
4839 2 * i * sizeof(u32)) != low)
4840 continue;
4841 if (ecore_rd(p_hwfn, p_ptt,
4842 NIG_REG_LLH_FUNC_FILTER_VALUE_BB_K2 +
4843 (2 * i + 1) * sizeof(u32)) != high)
4844 continue;
4845
4846 ecore_wr(p_hwfn, p_ptt,
4847 NIG_REG_LLH_FUNC_FILTER_EN_BB_K2 + i * sizeof(u32), 0);
4848 ecore_wr(p_hwfn, p_ptt,
4849 NIG_REG_LLH_FUNC_FILTER_MODE_BB_K2 +
4850 i * sizeof(u32), 0);
4851 ecore_wr(p_hwfn, p_ptt,
4852 NIG_REG_LLH_FUNC_FILTER_PROTOCOL_TYPE_BB_K2 +
4853 i * sizeof(u32), 0);
4854 ecore_wr(p_hwfn, p_ptt,
4855 NIG_REG_LLH_FUNC_FILTER_VALUE_BB_K2 +
4856 2 * i * sizeof(u32), 0);
4857 ecore_wr(p_hwfn, p_ptt,
4858 NIG_REG_LLH_FUNC_FILTER_VALUE_BB_K2 +
4859 (2 * i + 1) * sizeof(u32), 0);
4860 break;
4861 }
4862
4863 if (i >= NIG_REG_LLH_FUNC_FILTER_EN_SIZE)
4864 return ECORE_INVAL;
4865
4866 *p_entry_num = i;
4867
4868 return ECORE_SUCCESS;
4869}
4870
5076{
5077 ECORE_E5_MISSING_CODE;
5078
5079 return ECORE_NOTIMPL;
5080}
5081
5082enum _ecore_status_t
5083ecore_llh_add_protocol_filter(struct ecore_hwfn *p_hwfn,
5084 struct ecore_ptt *p_ptt,
5085 u16 source_port_or_eth_type,
5086 u16 dest_port,
5087 enum ecore_llh_port_filter_type_t type)
5088{
5089 u32 high, low, entry_num;
5090 enum _ecore_status_t rc;
5091
5092 if (!(IS_MF_SI(p_hwfn) || IS_MF_DEFAULT(p_hwfn)))
5093 return ECORE_SUCCESS;
5094
5095 high = 0;
5096 low = 0;
5097 switch (type) {
5098 case ECORE_LLH_FILTER_ETHERTYPE:
5099 high = source_port_or_eth_type;
5100 break;
5101 case ECORE_LLH_FILTER_TCP_SRC_PORT:
5102 case ECORE_LLH_FILTER_UDP_SRC_PORT:
5103 low = source_port_or_eth_type << 16;
5104 break;
5105 case ECORE_LLH_FILTER_TCP_DEST_PORT:
5106 case ECORE_LLH_FILTER_UDP_DEST_PORT:
5107 low = dest_port;
5108 break;
5109 case ECORE_LLH_FILTER_TCP_SRC_AND_DEST_PORT:
5110 case ECORE_LLH_FILTER_UDP_SRC_AND_DEST_PORT:
5111 low = (source_port_or_eth_type << 16) | dest_port;
5112 break;
5113 default:
5114 DP_NOTICE(p_hwfn, true,
5115 "Non valid LLH protocol filter type %d\n", type);
5116 return ECORE_INVAL;
5117 }
5118
5119 if (ECORE_IS_BB(p_hwfn->p_dev) || ECORE_IS_AH(p_hwfn->p_dev))
5120 rc = ecore_llh_add_protocol_filter_bb_ah(p_hwfn, p_ptt, type,
5121 high, low, &entry_num);
5122 else /* E5 */
5123 rc = ecore_llh_add_protocol_filter_e5(p_hwfn, p_ptt, type, high,
5124 low, &entry_num);
5125 if (rc != ECORE_SUCCESS) {
5126 DP_NOTICE(p_hwfn, false,
5127 "Failed to find an empty LLH filter to utilize\n");
5128 return rc;
5129 }
5130
5131 switch (type) {
5132 case ECORE_LLH_FILTER_ETHERTYPE:
5133 DP_VERBOSE(p_hwfn, ECORE_MSG_HW,
5134 "ETH type %x is added at LLH entry %d\n",
5135 source_port_or_eth_type, entry_num);
5136 break;
5137 case ECORE_LLH_FILTER_TCP_SRC_PORT:
5138 DP_VERBOSE(p_hwfn, ECORE_MSG_HW,
5139 "TCP src port %x is added at LLH entry %d\n",
5140 source_port_or_eth_type, entry_num);
5141 break;
5142 case ECORE_LLH_FILTER_UDP_SRC_PORT:
5143 DP_VERBOSE(p_hwfn, ECORE_MSG_HW,
5144 "UDP src port %x is added at LLH entry %d\n",
5145 source_port_or_eth_type, entry_num);
5146 break;
5147 case ECORE_LLH_FILTER_TCP_DEST_PORT:
5148 DP_VERBOSE(p_hwfn, ECORE_MSG_HW,
5149 "TCP dst port %x is added at LLH entry %d\n",
5150 dest_port, entry_num);
5151 break;
5152 case ECORE_LLH_FILTER_UDP_DEST_PORT:
5153 DP_VERBOSE(p_hwfn, ECORE_MSG_HW,
5154 "UDP dst port %x is added at LLH entry %d\n",
5155 dest_port, entry_num);
5156 break;
5157 case ECORE_LLH_FILTER_TCP_SRC_AND_DEST_PORT:
5158 DP_VERBOSE(p_hwfn, ECORE_MSG_HW,
5159 "TCP src/dst ports %x/%x are added at LLH entry %d\n",
5160 source_port_or_eth_type, dest_port, entry_num);
5161 break;
5162 case ECORE_LLH_FILTER_UDP_SRC_AND_DEST_PORT:
5163 DP_VERBOSE(p_hwfn, ECORE_MSG_HW,
5164 "UDP src/dst ports %x/%x are added at LLH entry %d\n",
5165 source_port_or_eth_type, dest_port, entry_num);
5166 break;
5167 }
5168
5169 return ECORE_SUCCESS;
5170}
5171
5172static enum _ecore_status_t
5173ecore_llh_remove_protocol_filter_bb_ah(struct ecore_hwfn *p_hwfn,
5174 struct ecore_ptt *p_ptt,
5175 enum ecore_llh_port_filter_type_t type,
5176 u32 high, u32 low, u32 *p_entry_num)
5177{
5178 int i;
5179
5180 /* Find the entry and clean it */
5181 for (i = 0; i < NIG_REG_LLH_FUNC_FILTER_EN_SIZE; i++) {
5182 if (!ecore_rd(p_hwfn, p_ptt,
5183 NIG_REG_LLH_FUNC_FILTER_EN_BB_K2 +
5184 i * sizeof(u32)))
5185 continue;
5186 if (!ecore_rd(p_hwfn, p_ptt,
5187 NIG_REG_LLH_FUNC_FILTER_MODE_BB_K2 +
5188 i * sizeof(u32)))
5189 continue;
5190 if (!(ecore_rd(p_hwfn, p_ptt,
5191 NIG_REG_LLH_FUNC_FILTER_PROTOCOL_TYPE_BB_K2 +
5192 i * sizeof(u32)) & (1 << type)))
5193 continue;
5194 if (ecore_rd(p_hwfn, p_ptt,
5195 NIG_REG_LLH_FUNC_FILTER_VALUE_BB_K2 +
5196 2 * i * sizeof(u32)) != low)
5197 continue;
5198 if (ecore_rd(p_hwfn, p_ptt,
5199 NIG_REG_LLH_FUNC_FILTER_VALUE_BB_K2 +
5200 (2 * i + 1) * sizeof(u32)) != high)
5201 continue;
5202
5203 ecore_wr(p_hwfn, p_ptt,
5204 NIG_REG_LLH_FUNC_FILTER_EN_BB_K2 + i * sizeof(u32), 0);
5205 ecore_wr(p_hwfn, p_ptt,
5206 NIG_REG_LLH_FUNC_FILTER_MODE_BB_K2 +
5207 i * sizeof(u32), 0);
5208 ecore_wr(p_hwfn, p_ptt,
5209 NIG_REG_LLH_FUNC_FILTER_PROTOCOL_TYPE_BB_K2 +
5210 i * sizeof(u32), 0);
5211 ecore_wr(p_hwfn, p_ptt,
5212 NIG_REG_LLH_FUNC_FILTER_VALUE_BB_K2 +
5213 2 * i * sizeof(u32), 0);
5214 ecore_wr(p_hwfn, p_ptt,
5215 NIG_REG_LLH_FUNC_FILTER_VALUE_BB_K2 +
5216 (2 * i + 1) * sizeof(u32), 0);
5217 break;
5218 }
5219
5220 if (i >= NIG_REG_LLH_FUNC_FILTER_EN_SIZE)
5221 return ECORE_INVAL;
5222
5223 *p_entry_num = i;
5224
5225 return ECORE_SUCCESS;
5226}
5227
5228/* OSAL_UNUSED is temporary used to avoid unused-parameter compilation warnings.
5229 * Should be removed when the function is implemented.
5230 */
4871static enum _ecore_status_t
5231static enum _ecore_status_t
4872ecore_llh_remove_protocol_filter_e5(struct ecore_hwfn *p_hwfn,
4873 struct ecore_ptt *p_ptt,
4874 enum ecore_llh_port_filter_type_t type,
4875 u32 high, u32 low, u32 *p_entry_num)
5232ecore_llh_remove_protocol_filter_e5(struct ecore_hwfn OSAL_UNUSED *p_hwfn,
5233 struct ecore_ptt OSAL_UNUSED *p_ptt,
5234 enum ecore_llh_port_filter_type_t OSAL_UNUSED type,
5235 u32 OSAL_UNUSED high, u32 OSAL_UNUSED low,
5236 u32 OSAL_UNUSED *p_entry_num)
4876{
4877 ECORE_E5_MISSING_CODE;
4878
4879 return ECORE_NOTIMPL;
4880}
4881
4882void
4883ecore_llh_remove_protocol_filter(struct ecore_hwfn *p_hwfn,
4884 struct ecore_ptt *p_ptt,
4885 u16 source_port_or_eth_type,
4886 u16 dest_port,
4887 enum ecore_llh_port_filter_type_t type)
4888{
4889 u32 high, low, entry_num;
4890 enum _ecore_status_t rc;
4891
4892 if (!(IS_MF_SI(p_hwfn) || IS_MF_DEFAULT(p_hwfn)))
4893 return;
4894
4895 high = 0;
4896 low = 0;
4897 switch (type) {
4898 case ECORE_LLH_FILTER_ETHERTYPE:
4899 high = source_port_or_eth_type;
4900 break;
4901 case ECORE_LLH_FILTER_TCP_SRC_PORT:
4902 case ECORE_LLH_FILTER_UDP_SRC_PORT:
4903 low = source_port_or_eth_type << 16;
4904 break;
4905 case ECORE_LLH_FILTER_TCP_DEST_PORT:
4906 case ECORE_LLH_FILTER_UDP_DEST_PORT:
4907 low = dest_port;
4908 break;
4909 case ECORE_LLH_FILTER_TCP_SRC_AND_DEST_PORT:
4910 case ECORE_LLH_FILTER_UDP_SRC_AND_DEST_PORT:
4911 low = (source_port_or_eth_type << 16) | dest_port;
4912 break;
4913 default:
4914 DP_NOTICE(p_hwfn, true,
4915 "Non valid LLH protocol filter type %d\n", type);
4916 return;
4917 }
4918
4919 if (ECORE_IS_BB(p_hwfn->p_dev) || ECORE_IS_AH(p_hwfn->p_dev))
4920 rc = ecore_llh_remove_protocol_filter_bb_ah(p_hwfn, p_ptt, type,
4921 high, low,
4922 &entry_num);
4923 else /* E5 */
4924 rc = ecore_llh_remove_protocol_filter_e5(p_hwfn, p_ptt, type,
4925 high, low, &entry_num);
4926 if (rc != ECORE_SUCCESS) {
4927 DP_NOTICE(p_hwfn, false,
4928 "Tried to remove a non-configured filter [type %d, source_port_or_eth_type 0x%x, dest_port 0x%x]\n",
4929 type, source_port_or_eth_type, dest_port);
4930 return;
4931 }
4932
4933 DP_VERBOSE(p_hwfn, ECORE_MSG_HW,
4934 "Protocol filter [type %d, source_port_or_eth_type 0x%x, dest_port 0x%x] was removed from LLH entry %d\n",
4935 type, source_port_or_eth_type, dest_port, entry_num);
4936}
4937
4938static void ecore_llh_clear_all_filters_bb_ah(struct ecore_hwfn *p_hwfn,
4939 struct ecore_ptt *p_ptt)
4940{
4941 int i;
4942
4943 for (i = 0; i < NIG_REG_LLH_FUNC_FILTER_EN_SIZE; i++) {
4944 ecore_wr(p_hwfn, p_ptt,
4945 NIG_REG_LLH_FUNC_FILTER_EN_BB_K2 +
4946 i * sizeof(u32), 0);
4947 ecore_wr(p_hwfn, p_ptt,
4948 NIG_REG_LLH_FUNC_FILTER_VALUE_BB_K2 +
4949 2 * i * sizeof(u32), 0);
4950 ecore_wr(p_hwfn, p_ptt,
4951 NIG_REG_LLH_FUNC_FILTER_VALUE_BB_K2 +
4952 (2 * i + 1) * sizeof(u32), 0);
4953 }
4954}
4955
5237{
5238 ECORE_E5_MISSING_CODE;
5239
5240 return ECORE_NOTIMPL;
5241}
5242
5243void
5244ecore_llh_remove_protocol_filter(struct ecore_hwfn *p_hwfn,
5245 struct ecore_ptt *p_ptt,
5246 u16 source_port_or_eth_type,
5247 u16 dest_port,
5248 enum ecore_llh_port_filter_type_t type)
5249{
5250 u32 high, low, entry_num;
5251 enum _ecore_status_t rc;
5252
5253 if (!(IS_MF_SI(p_hwfn) || IS_MF_DEFAULT(p_hwfn)))
5254 return;
5255
5256 high = 0;
5257 low = 0;
5258 switch (type) {
5259 case ECORE_LLH_FILTER_ETHERTYPE:
5260 high = source_port_or_eth_type;
5261 break;
5262 case ECORE_LLH_FILTER_TCP_SRC_PORT:
5263 case ECORE_LLH_FILTER_UDP_SRC_PORT:
5264 low = source_port_or_eth_type << 16;
5265 break;
5266 case ECORE_LLH_FILTER_TCP_DEST_PORT:
5267 case ECORE_LLH_FILTER_UDP_DEST_PORT:
5268 low = dest_port;
5269 break;
5270 case ECORE_LLH_FILTER_TCP_SRC_AND_DEST_PORT:
5271 case ECORE_LLH_FILTER_UDP_SRC_AND_DEST_PORT:
5272 low = (source_port_or_eth_type << 16) | dest_port;
5273 break;
5274 default:
5275 DP_NOTICE(p_hwfn, true,
5276 "Non valid LLH protocol filter type %d\n", type);
5277 return;
5278 }
5279
5280 if (ECORE_IS_BB(p_hwfn->p_dev) || ECORE_IS_AH(p_hwfn->p_dev))
5281 rc = ecore_llh_remove_protocol_filter_bb_ah(p_hwfn, p_ptt, type,
5282 high, low,
5283 &entry_num);
5284 else /* E5 */
5285 rc = ecore_llh_remove_protocol_filter_e5(p_hwfn, p_ptt, type,
5286 high, low, &entry_num);
5287 if (rc != ECORE_SUCCESS) {
5288 DP_NOTICE(p_hwfn, false,
5289 "Tried to remove a non-configured filter [type %d, source_port_or_eth_type 0x%x, dest_port 0x%x]\n",
5290 type, source_port_or_eth_type, dest_port);
5291 return;
5292 }
5293
5294 DP_VERBOSE(p_hwfn, ECORE_MSG_HW,
5295 "Protocol filter [type %d, source_port_or_eth_type 0x%x, dest_port 0x%x] was removed from LLH entry %d\n",
5296 type, source_port_or_eth_type, dest_port, entry_num);
5297}
5298
5299static void ecore_llh_clear_all_filters_bb_ah(struct ecore_hwfn *p_hwfn,
5300 struct ecore_ptt *p_ptt)
5301{
5302 int i;
5303
5304 for (i = 0; i < NIG_REG_LLH_FUNC_FILTER_EN_SIZE; i++) {
5305 ecore_wr(p_hwfn, p_ptt,
5306 NIG_REG_LLH_FUNC_FILTER_EN_BB_K2 +
5307 i * sizeof(u32), 0);
5308 ecore_wr(p_hwfn, p_ptt,
5309 NIG_REG_LLH_FUNC_FILTER_VALUE_BB_K2 +
5310 2 * i * sizeof(u32), 0);
5311 ecore_wr(p_hwfn, p_ptt,
5312 NIG_REG_LLH_FUNC_FILTER_VALUE_BB_K2 +
5313 (2 * i + 1) * sizeof(u32), 0);
5314 }
5315}
5316
4956static void ecore_llh_clear_all_filters_e5(struct ecore_hwfn *p_hwfn,
4957 struct ecore_ptt *p_ptt)
5317/* OSAL_UNUSED is temporary used to avoid unused-parameter compilation warnings.
5318 * Should be removed when the function is implemented.
5319 */
5320static void ecore_llh_clear_all_filters_e5(struct ecore_hwfn OSAL_UNUSED *p_hwfn,
5321 struct ecore_ptt OSAL_UNUSED *p_ptt)
4958{
4959 ECORE_E5_MISSING_CODE;
4960}
4961
4962void ecore_llh_clear_all_filters(struct ecore_hwfn *p_hwfn,
4963 struct ecore_ptt *p_ptt)
4964{
4965 if (!(IS_MF_SI(p_hwfn) || IS_MF_DEFAULT(p_hwfn)))
4966 return;
4967
4968 if (ECORE_IS_BB(p_hwfn->p_dev) || ECORE_IS_AH(p_hwfn->p_dev))
4969 ecore_llh_clear_all_filters_bb_ah(p_hwfn, p_ptt);
4970 else /* E5 */
4971 ecore_llh_clear_all_filters_e5(p_hwfn, p_ptt);
4972}
4973
4974enum _ecore_status_t
4975ecore_llh_set_function_as_default(struct ecore_hwfn *p_hwfn,
4976 struct ecore_ptt *p_ptt)
4977{
4978 if (IS_MF_DEFAULT(p_hwfn) && ECORE_IS_BB(p_hwfn->p_dev)) {
4979 ecore_wr(p_hwfn, p_ptt,
4980 NIG_REG_LLH_TAGMAC_DEF_PF_VECTOR,
4981 1 << p_hwfn->abs_pf_id / 2);
4982 ecore_wr(p_hwfn, p_ptt, PRS_REG_MSG_INFO, 0);
4983 return ECORE_SUCCESS;
4984 } else {
4985 DP_NOTICE(p_hwfn, false,
4986 "This function can't be set as default\n");
4987 return ECORE_INVAL;
4988 }
4989}
4990
4991static enum _ecore_status_t ecore_set_coalesce(struct ecore_hwfn *p_hwfn,
4992 struct ecore_ptt *p_ptt,
4993 u32 hw_addr, void *p_eth_qzone,
4994 osal_size_t eth_qzone_size,
4995 u8 timeset)
4996{
4997 struct coalescing_timeset *p_coal_timeset;
4998
4999 if (p_hwfn->p_dev->int_coalescing_mode != ECORE_COAL_MODE_ENABLE) {
5000 DP_NOTICE(p_hwfn, true,
5001 "Coalescing configuration not enabled\n");
5002 return ECORE_INVAL;
5003 }
5004
5005 p_coal_timeset = p_eth_qzone;
5006 OSAL_MEMSET(p_eth_qzone, 0, eth_qzone_size);
5007 SET_FIELD(p_coal_timeset->value, COALESCING_TIMESET_TIMESET, timeset);
5008 SET_FIELD(p_coal_timeset->value, COALESCING_TIMESET_VALID, 1);
5009 ecore_memcpy_to(p_hwfn, p_ptt, hw_addr, p_eth_qzone, eth_qzone_size);
5010
5011 return ECORE_SUCCESS;
5012}
5013
5014enum _ecore_status_t ecore_set_queue_coalesce(struct ecore_hwfn *p_hwfn,
5015 u16 rx_coal, u16 tx_coal,
5016 void *p_handle)
5017{
5018 struct ecore_queue_cid *p_cid = (struct ecore_queue_cid *)p_handle;
5019 enum _ecore_status_t rc = ECORE_SUCCESS;
5020 struct ecore_ptt *p_ptt;
5021
5022 /* TODO - Configuring a single queue's coalescing but
5023 * claiming all queues are abiding same configuration
5024 * for PF and VF both.
5025 */
5026
5027#ifdef CONFIG_ECORE_SRIOV
5028 if (IS_VF(p_hwfn->p_dev))
5029 return ecore_vf_pf_set_coalesce(p_hwfn, rx_coal,
5030 tx_coal, p_cid);
5031#endif /* #ifdef CONFIG_ECORE_SRIOV */
5032
5033 p_ptt = ecore_ptt_acquire(p_hwfn);
5034 if (!p_ptt)
5035 return ECORE_AGAIN;
5036
5037 if (rx_coal) {
5038 rc = ecore_set_rxq_coalesce(p_hwfn, p_ptt, rx_coal, p_cid);
5039 if (rc)
5040 goto out;
5041 p_hwfn->p_dev->rx_coalesce_usecs = rx_coal;
5042 }
5043
5044 if (tx_coal) {
5045 rc = ecore_set_txq_coalesce(p_hwfn, p_ptt, tx_coal, p_cid);
5046 if (rc)
5047 goto out;
5048 p_hwfn->p_dev->tx_coalesce_usecs = tx_coal;
5049 }
5050out:
5051 ecore_ptt_release(p_hwfn, p_ptt);
5052
5053 return rc;
5054}
5055
5056enum _ecore_status_t ecore_set_rxq_coalesce(struct ecore_hwfn *p_hwfn,
5057 struct ecore_ptt *p_ptt,
5058 u16 coalesce,
5059 struct ecore_queue_cid *p_cid)
5060{
5061 struct ustorm_eth_queue_zone eth_qzone;
5062 u8 timeset, timer_res;
5063 u32 address;
5064 enum _ecore_status_t rc;
5065
5066 /* Coalesce = (timeset << timer-resolution), timeset is 7bit wide */
5067 if (coalesce <= 0x7F)
5068 timer_res = 0;
5069 else if (coalesce <= 0xFF)
5070 timer_res = 1;
5071 else if (coalesce <= 0x1FF)
5072 timer_res = 2;
5073 else {
5074 DP_ERR(p_hwfn, "Invalid coalesce value - %d\n", coalesce);
5075 return ECORE_INVAL;
5076 }
5077 timeset = (u8)(coalesce >> timer_res);
5078
5079 rc = ecore_int_set_timer_res(p_hwfn, p_ptt, timer_res,
5080 p_cid->sb_igu_id, false);
5081 if (rc != ECORE_SUCCESS)
5082 goto out;
5083
5084 address = BAR0_MAP_REG_USDM_RAM +
5085 USTORM_ETH_QUEUE_ZONE_OFFSET(p_cid->abs.queue_id);
5086
5087 rc = ecore_set_coalesce(p_hwfn, p_ptt, address, &eth_qzone,
5088 sizeof(struct ustorm_eth_queue_zone), timeset);
5089 if (rc != ECORE_SUCCESS)
5090 goto out;
5091
5092out:
5093 return rc;
5094}
5095
5096enum _ecore_status_t ecore_set_txq_coalesce(struct ecore_hwfn *p_hwfn,
5097 struct ecore_ptt *p_ptt,
5098 u16 coalesce,
5099 struct ecore_queue_cid *p_cid)
5100{
5101 struct xstorm_eth_queue_zone eth_qzone;
5102 u8 timeset, timer_res;
5103 u32 address;
5104 enum _ecore_status_t rc;
5105
5106 /* Coalesce = (timeset << timer-resolution), timeset is 7bit wide */
5107 if (coalesce <= 0x7F)
5108 timer_res = 0;
5109 else if (coalesce <= 0xFF)
5110 timer_res = 1;
5111 else if (coalesce <= 0x1FF)
5112 timer_res = 2;
5113 else {
5114 DP_ERR(p_hwfn, "Invalid coalesce value - %d\n", coalesce);
5115 return ECORE_INVAL;
5116 }
5117 timeset = (u8)(coalesce >> timer_res);
5118
5119 rc = ecore_int_set_timer_res(p_hwfn, p_ptt, timer_res,
5120 p_cid->sb_igu_id, true);
5121 if (rc != ECORE_SUCCESS)
5122 goto out;
5123
5124 address = BAR0_MAP_REG_XSDM_RAM +
5125 XSTORM_ETH_QUEUE_ZONE_OFFSET(p_cid->abs.queue_id);
5126
5127 rc = ecore_set_coalesce(p_hwfn, p_ptt, address, &eth_qzone,
5128 sizeof(struct xstorm_eth_queue_zone), timeset);
5129out:
5130 return rc;
5131}
5132
5133/* Calculate final WFQ values for all vports and configure it.
5134 * After this configuration each vport must have
5135 * approx min rate = vport_wfq * min_pf_rate / ECORE_WFQ_UNIT
5136 */
5137static void ecore_configure_wfq_for_all_vports(struct ecore_hwfn *p_hwfn,
5138 struct ecore_ptt *p_ptt,
5139 u32 min_pf_rate)
5140{
5141 struct init_qm_vport_params *vport_params;
5142 int i;
5143
5144 vport_params = p_hwfn->qm_info.qm_vport_params;
5145
5146 for (i = 0; i < p_hwfn->qm_info.num_vports; i++) {
5147 u32 wfq_speed = p_hwfn->qm_info.wfq_data[i].min_speed;
5148
5149 vport_params[i].vport_wfq = (wfq_speed * ECORE_WFQ_UNIT) /
5150 min_pf_rate;
5151 ecore_init_vport_wfq(p_hwfn, p_ptt,
5152 vport_params[i].first_tx_pq_id,
5153 vport_params[i].vport_wfq);
5154 }
5155}
5156
5322{
5323 ECORE_E5_MISSING_CODE;
5324}
5325
5326void ecore_llh_clear_all_filters(struct ecore_hwfn *p_hwfn,
5327 struct ecore_ptt *p_ptt)
5328{
5329 if (!(IS_MF_SI(p_hwfn) || IS_MF_DEFAULT(p_hwfn)))
5330 return;
5331
5332 if (ECORE_IS_BB(p_hwfn->p_dev) || ECORE_IS_AH(p_hwfn->p_dev))
5333 ecore_llh_clear_all_filters_bb_ah(p_hwfn, p_ptt);
5334 else /* E5 */
5335 ecore_llh_clear_all_filters_e5(p_hwfn, p_ptt);
5336}
5337
5338enum _ecore_status_t
5339ecore_llh_set_function_as_default(struct ecore_hwfn *p_hwfn,
5340 struct ecore_ptt *p_ptt)
5341{
5342 if (IS_MF_DEFAULT(p_hwfn) && ECORE_IS_BB(p_hwfn->p_dev)) {
5343 ecore_wr(p_hwfn, p_ptt,
5344 NIG_REG_LLH_TAGMAC_DEF_PF_VECTOR,
5345 1 << p_hwfn->abs_pf_id / 2);
5346 ecore_wr(p_hwfn, p_ptt, PRS_REG_MSG_INFO, 0);
5347 return ECORE_SUCCESS;
5348 } else {
5349 DP_NOTICE(p_hwfn, false,
5350 "This function can't be set as default\n");
5351 return ECORE_INVAL;
5352 }
5353}
5354
5355static enum _ecore_status_t ecore_set_coalesce(struct ecore_hwfn *p_hwfn,
5356 struct ecore_ptt *p_ptt,
5357 u32 hw_addr, void *p_eth_qzone,
5358 osal_size_t eth_qzone_size,
5359 u8 timeset)
5360{
5361 struct coalescing_timeset *p_coal_timeset;
5362
5363 if (p_hwfn->p_dev->int_coalescing_mode != ECORE_COAL_MODE_ENABLE) {
5364 DP_NOTICE(p_hwfn, true,
5365 "Coalescing configuration not enabled\n");
5366 return ECORE_INVAL;
5367 }
5368
5369 p_coal_timeset = p_eth_qzone;
5370 OSAL_MEMSET(p_eth_qzone, 0, eth_qzone_size);
5371 SET_FIELD(p_coal_timeset->value, COALESCING_TIMESET_TIMESET, timeset);
5372 SET_FIELD(p_coal_timeset->value, COALESCING_TIMESET_VALID, 1);
5373 ecore_memcpy_to(p_hwfn, p_ptt, hw_addr, p_eth_qzone, eth_qzone_size);
5374
5375 return ECORE_SUCCESS;
5376}
5377
5378enum _ecore_status_t ecore_set_queue_coalesce(struct ecore_hwfn *p_hwfn,
5379 u16 rx_coal, u16 tx_coal,
5380 void *p_handle)
5381{
5382 struct ecore_queue_cid *p_cid = (struct ecore_queue_cid *)p_handle;
5383 enum _ecore_status_t rc = ECORE_SUCCESS;
5384 struct ecore_ptt *p_ptt;
5385
5386 /* TODO - Configuring a single queue's coalescing but
5387 * claiming all queues are abiding same configuration
5388 * for PF and VF both.
5389 */
5390
5391#ifdef CONFIG_ECORE_SRIOV
5392 if (IS_VF(p_hwfn->p_dev))
5393 return ecore_vf_pf_set_coalesce(p_hwfn, rx_coal,
5394 tx_coal, p_cid);
5395#endif /* #ifdef CONFIG_ECORE_SRIOV */
5396
5397 p_ptt = ecore_ptt_acquire(p_hwfn);
5398 if (!p_ptt)
5399 return ECORE_AGAIN;
5400
5401 if (rx_coal) {
5402 rc = ecore_set_rxq_coalesce(p_hwfn, p_ptt, rx_coal, p_cid);
5403 if (rc)
5404 goto out;
5405 p_hwfn->p_dev->rx_coalesce_usecs = rx_coal;
5406 }
5407
5408 if (tx_coal) {
5409 rc = ecore_set_txq_coalesce(p_hwfn, p_ptt, tx_coal, p_cid);
5410 if (rc)
5411 goto out;
5412 p_hwfn->p_dev->tx_coalesce_usecs = tx_coal;
5413 }
5414out:
5415 ecore_ptt_release(p_hwfn, p_ptt);
5416
5417 return rc;
5418}
5419
5420enum _ecore_status_t ecore_set_rxq_coalesce(struct ecore_hwfn *p_hwfn,
5421 struct ecore_ptt *p_ptt,
5422 u16 coalesce,
5423 struct ecore_queue_cid *p_cid)
5424{
5425 struct ustorm_eth_queue_zone eth_qzone;
5426 u8 timeset, timer_res;
5427 u32 address;
5428 enum _ecore_status_t rc;
5429
5430 /* Coalesce = (timeset << timer-resolution), timeset is 7bit wide */
5431 if (coalesce <= 0x7F)
5432 timer_res = 0;
5433 else if (coalesce <= 0xFF)
5434 timer_res = 1;
5435 else if (coalesce <= 0x1FF)
5436 timer_res = 2;
5437 else {
5438 DP_ERR(p_hwfn, "Invalid coalesce value - %d\n", coalesce);
5439 return ECORE_INVAL;
5440 }
5441 timeset = (u8)(coalesce >> timer_res);
5442
5443 rc = ecore_int_set_timer_res(p_hwfn, p_ptt, timer_res,
5444 p_cid->sb_igu_id, false);
5445 if (rc != ECORE_SUCCESS)
5446 goto out;
5447
5448 address = BAR0_MAP_REG_USDM_RAM +
5449 USTORM_ETH_QUEUE_ZONE_OFFSET(p_cid->abs.queue_id);
5450
5451 rc = ecore_set_coalesce(p_hwfn, p_ptt, address, &eth_qzone,
5452 sizeof(struct ustorm_eth_queue_zone), timeset);
5453 if (rc != ECORE_SUCCESS)
5454 goto out;
5455
5456out:
5457 return rc;
5458}
5459
5460enum _ecore_status_t ecore_set_txq_coalesce(struct ecore_hwfn *p_hwfn,
5461 struct ecore_ptt *p_ptt,
5462 u16 coalesce,
5463 struct ecore_queue_cid *p_cid)
5464{
5465 struct xstorm_eth_queue_zone eth_qzone;
5466 u8 timeset, timer_res;
5467 u32 address;
5468 enum _ecore_status_t rc;
5469
5470 /* Coalesce = (timeset << timer-resolution), timeset is 7bit wide */
5471 if (coalesce <= 0x7F)
5472 timer_res = 0;
5473 else if (coalesce <= 0xFF)
5474 timer_res = 1;
5475 else if (coalesce <= 0x1FF)
5476 timer_res = 2;
5477 else {
5478 DP_ERR(p_hwfn, "Invalid coalesce value - %d\n", coalesce);
5479 return ECORE_INVAL;
5480 }
5481 timeset = (u8)(coalesce >> timer_res);
5482
5483 rc = ecore_int_set_timer_res(p_hwfn, p_ptt, timer_res,
5484 p_cid->sb_igu_id, true);
5485 if (rc != ECORE_SUCCESS)
5486 goto out;
5487
5488 address = BAR0_MAP_REG_XSDM_RAM +
5489 XSTORM_ETH_QUEUE_ZONE_OFFSET(p_cid->abs.queue_id);
5490
5491 rc = ecore_set_coalesce(p_hwfn, p_ptt, address, &eth_qzone,
5492 sizeof(struct xstorm_eth_queue_zone), timeset);
5493out:
5494 return rc;
5495}
5496
5497/* Calculate final WFQ values for all vports and configure it.
5498 * After this configuration each vport must have
5499 * approx min rate = vport_wfq * min_pf_rate / ECORE_WFQ_UNIT
5500 */
5501static void ecore_configure_wfq_for_all_vports(struct ecore_hwfn *p_hwfn,
5502 struct ecore_ptt *p_ptt,
5503 u32 min_pf_rate)
5504{
5505 struct init_qm_vport_params *vport_params;
5506 int i;
5507
5508 vport_params = p_hwfn->qm_info.qm_vport_params;
5509
5510 for (i = 0; i < p_hwfn->qm_info.num_vports; i++) {
5511 u32 wfq_speed = p_hwfn->qm_info.wfq_data[i].min_speed;
5512
5513 vport_params[i].vport_wfq = (wfq_speed * ECORE_WFQ_UNIT) /
5514 min_pf_rate;
5515 ecore_init_vport_wfq(p_hwfn, p_ptt,
5516 vport_params[i].first_tx_pq_id,
5517 vport_params[i].vport_wfq);
5518 }
5519}
5520
5157static void
5158ecore_init_wfq_default_param(struct ecore_hwfn *p_hwfn, u32 min_pf_rate)
5521static void ecore_init_wfq_default_param(struct ecore_hwfn *p_hwfn)
5159
5160{
5161 int i;
5162
5163 for (i = 0; i < p_hwfn->qm_info.num_vports; i++)
5164 p_hwfn->qm_info.qm_vport_params[i].vport_wfq = 1;
5165}
5166
5167static void ecore_disable_wfq_for_all_vports(struct ecore_hwfn *p_hwfn,
5522
5523{
5524 int i;
5525
5526 for (i = 0; i < p_hwfn->qm_info.num_vports; i++)
5527 p_hwfn->qm_info.qm_vport_params[i].vport_wfq = 1;
5528}
5529
5530static void ecore_disable_wfq_for_all_vports(struct ecore_hwfn *p_hwfn,
5168 struct ecore_ptt *p_ptt,
5169 u32 min_pf_rate)
5531 struct ecore_ptt *p_ptt)
5170{
5171 struct init_qm_vport_params *vport_params;
5172 int i;
5173
5174 vport_params = p_hwfn->qm_info.qm_vport_params;
5175
5176 for (i = 0; i < p_hwfn->qm_info.num_vports; i++) {
5532{
5533 struct init_qm_vport_params *vport_params;
5534 int i;
5535
5536 vport_params = p_hwfn->qm_info.qm_vport_params;
5537
5538 for (i = 0; i < p_hwfn->qm_info.num_vports; i++) {
5177 ecore_init_wfq_default_param(p_hwfn, min_pf_rate);
5539 ecore_init_wfq_default_param(p_hwfn);
5178 ecore_init_vport_wfq(p_hwfn, p_ptt,
5179 vport_params[i].first_tx_pq_id,
5180 vport_params[i].vport_wfq);
5181 }
5182}
5183
5184/* This function performs several validations for WFQ
5185 * configuration and required min rate for a given vport
5186 * 1. req_rate must be greater than one percent of min_pf_rate.
5187 * 2. req_rate should not cause other vports [not configured for WFQ explicitly]
5188 * rates to get less than one percent of min_pf_rate.
5189 * 3. total_req_min_rate [all vports min rate sum] shouldn't exceed min_pf_rate.
5190 */
5191static enum _ecore_status_t ecore_init_wfq_param(struct ecore_hwfn *p_hwfn,
5192 u16 vport_id, u32 req_rate,
5193 u32 min_pf_rate)
5194{
5195 u32 total_req_min_rate = 0, total_left_rate = 0, left_rate_per_vp = 0;
5196 int non_requested_count = 0, req_count = 0, i, num_vports;
5197
5198 num_vports = p_hwfn->qm_info.num_vports;
5199
5200 /* Accounting for the vports which are configured for WFQ explicitly */
5201 for (i = 0; i < num_vports; i++) {
5202 u32 tmp_speed;
5203
5204 if ((i != vport_id) && p_hwfn->qm_info.wfq_data[i].configured) {
5205 req_count++;
5206 tmp_speed = p_hwfn->qm_info.wfq_data[i].min_speed;
5207 total_req_min_rate += tmp_speed;
5208 }
5209 }
5210
5211 /* Include current vport data as well */
5212 req_count++;
5213 total_req_min_rate += req_rate;
5214 non_requested_count = num_vports - req_count;
5215
5216 /* validate possible error cases */
5540 ecore_init_vport_wfq(p_hwfn, p_ptt,
5541 vport_params[i].first_tx_pq_id,
5542 vport_params[i].vport_wfq);
5543 }
5544}
5545
5546/* This function performs several validations for WFQ
5547 * configuration and required min rate for a given vport
5548 * 1. req_rate must be greater than one percent of min_pf_rate.
5549 * 2. req_rate should not cause other vports [not configured for WFQ explicitly]
5550 * rates to get less than one percent of min_pf_rate.
5551 * 3. total_req_min_rate [all vports min rate sum] shouldn't exceed min_pf_rate.
5552 */
5553static enum _ecore_status_t ecore_init_wfq_param(struct ecore_hwfn *p_hwfn,
5554 u16 vport_id, u32 req_rate,
5555 u32 min_pf_rate)
5556{
5557 u32 total_req_min_rate = 0, total_left_rate = 0, left_rate_per_vp = 0;
5558 int non_requested_count = 0, req_count = 0, i, num_vports;
5559
5560 num_vports = p_hwfn->qm_info.num_vports;
5561
5562 /* Accounting for the vports which are configured for WFQ explicitly */
5563 for (i = 0; i < num_vports; i++) {
5564 u32 tmp_speed;
5565
5566 if ((i != vport_id) && p_hwfn->qm_info.wfq_data[i].configured) {
5567 req_count++;
5568 tmp_speed = p_hwfn->qm_info.wfq_data[i].min_speed;
5569 total_req_min_rate += tmp_speed;
5570 }
5571 }
5572
5573 /* Include current vport data as well */
5574 req_count++;
5575 total_req_min_rate += req_rate;
5576 non_requested_count = num_vports - req_count;
5577
5578 /* validate possible error cases */
5217 if (req_rate > min_pf_rate) {
5218 DP_VERBOSE(p_hwfn, ECORE_MSG_LINK,
5219 "Vport [%d] - Requested rate[%d Mbps] is greater than configured PF min rate[%d Mbps]\n",
5220 vport_id, req_rate, min_pf_rate);
5221 return ECORE_INVAL;
5222 }
5223
5224 if (req_rate < min_pf_rate / ECORE_WFQ_UNIT) {
5225 DP_VERBOSE(p_hwfn, ECORE_MSG_LINK,
5226 "Vport [%d] - Requested rate[%d Mbps] is less than one percent of configured PF min rate[%d Mbps]\n",
5227 vport_id, req_rate, min_pf_rate);
5228 return ECORE_INVAL;
5229 }
5230
5231 /* TBD - for number of vports greater than 100 */
5232 if (num_vports > ECORE_WFQ_UNIT) {
5233 DP_VERBOSE(p_hwfn, ECORE_MSG_LINK,
5234 "Number of vports is greater than %d\n",
5235 ECORE_WFQ_UNIT);
5236 return ECORE_INVAL;
5237 }
5238
5239 if (total_req_min_rate > min_pf_rate) {
5240 DP_VERBOSE(p_hwfn, ECORE_MSG_LINK,
5241 "Total requested min rate for all vports[%d Mbps] is greater than configured PF min rate[%d Mbps]\n",
5242 total_req_min_rate, min_pf_rate);
5243 return ECORE_INVAL;
5244 }
5245
5246 /* Data left for non requested vports */
5247 total_left_rate = min_pf_rate - total_req_min_rate;
5248 left_rate_per_vp = total_left_rate / non_requested_count;
5249
5250 /* validate if non requested get < 1% of min bw */
5251 if (left_rate_per_vp < min_pf_rate / ECORE_WFQ_UNIT) {
5252 DP_VERBOSE(p_hwfn, ECORE_MSG_LINK,
5253 "Non WFQ configured vports rate [%d Mbps] is less than one percent of configured PF min rate[%d Mbps]\n",
5254 left_rate_per_vp, min_pf_rate);
5255 return ECORE_INVAL;
5256 }
5257
5258 /* now req_rate for given vport passes all scenarios.
5259 * assign final wfq rates to all vports.
5260 */
5261 p_hwfn->qm_info.wfq_data[vport_id].min_speed = req_rate;
5262 p_hwfn->qm_info.wfq_data[vport_id].configured = true;
5263
5264 for (i = 0; i < num_vports; i++) {
5265 if (p_hwfn->qm_info.wfq_data[i].configured)
5266 continue;
5267
5268 p_hwfn->qm_info.wfq_data[i].min_speed = left_rate_per_vp;
5269 }
5270
5271 return ECORE_SUCCESS;
5272}
5273
5274static int __ecore_configure_vport_wfq(struct ecore_hwfn *p_hwfn,
5275 struct ecore_ptt *p_ptt,
5276 u16 vp_id, u32 rate)
5277{
5278 struct ecore_mcp_link_state *p_link;
5279 int rc = ECORE_SUCCESS;
5280
5281 p_link = &p_hwfn->p_dev->hwfns[0].mcp_info->link_output;
5282
5283 if (!p_link->min_pf_rate) {
5284 p_hwfn->qm_info.wfq_data[vp_id].min_speed = rate;
5285 p_hwfn->qm_info.wfq_data[vp_id].configured = true;
5286 return rc;
5287 }
5288
5289 rc = ecore_init_wfq_param(p_hwfn, vp_id, rate, p_link->min_pf_rate);
5290
5291 if (rc == ECORE_SUCCESS)
5292 ecore_configure_wfq_for_all_vports(p_hwfn, p_ptt,
5293 p_link->min_pf_rate);
5294 else
5295 DP_NOTICE(p_hwfn, false,
5296 "Validation failed while configuring min rate\n");
5297
5298 return rc;
5299}
5300
5301static int __ecore_configure_vp_wfq_on_link_change(struct ecore_hwfn *p_hwfn,
5302 struct ecore_ptt *p_ptt,
5303 u32 min_pf_rate)
5304{
5305 bool use_wfq = false;
5306 int rc = ECORE_SUCCESS;
5307 u16 i;
5308
5309 /* Validate all pre configured vports for wfq */
5310 for (i = 0; i < p_hwfn->qm_info.num_vports; i++) {
5311 u32 rate;
5312
5313 if (!p_hwfn->qm_info.wfq_data[i].configured)
5314 continue;
5315
5316 rate = p_hwfn->qm_info.wfq_data[i].min_speed;
5317 use_wfq = true;
5318
5319 rc = ecore_init_wfq_param(p_hwfn, i, rate, min_pf_rate);
5320 if (rc != ECORE_SUCCESS) {
5321 DP_NOTICE(p_hwfn, false,
5322 "WFQ validation failed while configuring min rate\n");
5323 break;
5324 }
5325 }
5326
5327 if (rc == ECORE_SUCCESS && use_wfq)
5328 ecore_configure_wfq_for_all_vports(p_hwfn, p_ptt, min_pf_rate);
5329 else
5579 if (req_rate < min_pf_rate / ECORE_WFQ_UNIT) {
5580 DP_VERBOSE(p_hwfn, ECORE_MSG_LINK,
5581 "Vport [%d] - Requested rate[%d Mbps] is less than one percent of configured PF min rate[%d Mbps]\n",
5582 vport_id, req_rate, min_pf_rate);
5583 return ECORE_INVAL;
5584 }
5585
5586 /* TBD - for number of vports greater than 100 */
5587 if (num_vports > ECORE_WFQ_UNIT) {
5588 DP_VERBOSE(p_hwfn, ECORE_MSG_LINK,
5589 "Number of vports is greater than %d\n",
5590 ECORE_WFQ_UNIT);
5591 return ECORE_INVAL;
5592 }
5593
5594 if (total_req_min_rate > min_pf_rate) {
5595 DP_VERBOSE(p_hwfn, ECORE_MSG_LINK,
5596 "Total requested min rate for all vports[%d Mbps] is greater than configured PF min rate[%d Mbps]\n",
5597 total_req_min_rate, min_pf_rate);
5598 return ECORE_INVAL;
5599 }
5600
5601 /* Data left for non requested vports */
5602 total_left_rate = min_pf_rate - total_req_min_rate;
5603 left_rate_per_vp = total_left_rate / non_requested_count;
5604
5605 /* validate if non requested get < 1% of min bw */
5606 if (left_rate_per_vp < min_pf_rate / ECORE_WFQ_UNIT) {
5607 DP_VERBOSE(p_hwfn, ECORE_MSG_LINK,
5608 "Non WFQ configured vports rate [%d Mbps] is less than one percent of configured PF min rate[%d Mbps]\n",
5609 left_rate_per_vp, min_pf_rate);
5610 return ECORE_INVAL;
5611 }
5612
5613 /* now req_rate for given vport passes all scenarios.
5614 * assign final wfq rates to all vports.
5615 */
5616 p_hwfn->qm_info.wfq_data[vport_id].min_speed = req_rate;
5617 p_hwfn->qm_info.wfq_data[vport_id].configured = true;
5618
5619 for (i = 0; i < num_vports; i++) {
5620 if (p_hwfn->qm_info.wfq_data[i].configured)
5621 continue;
5622
5623 p_hwfn->qm_info.wfq_data[i].min_speed = left_rate_per_vp;
5624 }
5625
5626 return ECORE_SUCCESS;
5627}
5628
5629static int __ecore_configure_vport_wfq(struct ecore_hwfn *p_hwfn,
5630 struct ecore_ptt *p_ptt,
5631 u16 vp_id, u32 rate)
5632{
5633 struct ecore_mcp_link_state *p_link;
5634 int rc = ECORE_SUCCESS;
5635
5636 p_link = &p_hwfn->p_dev->hwfns[0].mcp_info->link_output;
5637
5638 if (!p_link->min_pf_rate) {
5639 p_hwfn->qm_info.wfq_data[vp_id].min_speed = rate;
5640 p_hwfn->qm_info.wfq_data[vp_id].configured = true;
5641 return rc;
5642 }
5643
5644 rc = ecore_init_wfq_param(p_hwfn, vp_id, rate, p_link->min_pf_rate);
5645
5646 if (rc == ECORE_SUCCESS)
5647 ecore_configure_wfq_for_all_vports(p_hwfn, p_ptt,
5648 p_link->min_pf_rate);
5649 else
5650 DP_NOTICE(p_hwfn, false,
5651 "Validation failed while configuring min rate\n");
5652
5653 return rc;
5654}
5655
5656static int __ecore_configure_vp_wfq_on_link_change(struct ecore_hwfn *p_hwfn,
5657 struct ecore_ptt *p_ptt,
5658 u32 min_pf_rate)
5659{
5660 bool use_wfq = false;
5661 int rc = ECORE_SUCCESS;
5662 u16 i;
5663
5664 /* Validate all pre configured vports for wfq */
5665 for (i = 0; i < p_hwfn->qm_info.num_vports; i++) {
5666 u32 rate;
5667
5668 if (!p_hwfn->qm_info.wfq_data[i].configured)
5669 continue;
5670
5671 rate = p_hwfn->qm_info.wfq_data[i].min_speed;
5672 use_wfq = true;
5673
5674 rc = ecore_init_wfq_param(p_hwfn, i, rate, min_pf_rate);
5675 if (rc != ECORE_SUCCESS) {
5676 DP_NOTICE(p_hwfn, false,
5677 "WFQ validation failed while configuring min rate\n");
5678 break;
5679 }
5680 }
5681
5682 if (rc == ECORE_SUCCESS && use_wfq)
5683 ecore_configure_wfq_for_all_vports(p_hwfn, p_ptt, min_pf_rate);
5684 else
5330 ecore_disable_wfq_for_all_vports(p_hwfn, p_ptt, min_pf_rate);
5685 ecore_disable_wfq_for_all_vports(p_hwfn, p_ptt);
5331
5332 return rc;
5333}
5334
5335/* Main API for ecore clients to configure vport min rate.
5336 * vp_id - vport id in PF Range[0 - (total_num_vports_per_pf - 1)]
5337 * rate - Speed in Mbps needs to be assigned to a given vport.
5338 */
5339int ecore_configure_vport_wfq(struct ecore_dev *p_dev, u16 vp_id, u32 rate)
5340{
5341 int i, rc = ECORE_INVAL;
5342
5343 /* TBD - for multiple hardware functions - that is 100 gig */
5344 if (p_dev->num_hwfns > 1) {
5345 DP_NOTICE(p_dev, false,
5346 "WFQ configuration is not supported for this device\n");
5347 return rc;
5348 }
5349
5350 for_each_hwfn(p_dev, i) {
5351 struct ecore_hwfn *p_hwfn = &p_dev->hwfns[i];
5352 struct ecore_ptt *p_ptt;
5353
5354 p_ptt = ecore_ptt_acquire(p_hwfn);
5355 if (!p_ptt)
5356 return ECORE_TIMEOUT;
5357
5358 rc = __ecore_configure_vport_wfq(p_hwfn, p_ptt, vp_id, rate);
5359
5360 if (rc != ECORE_SUCCESS) {
5361 ecore_ptt_release(p_hwfn, p_ptt);
5362 return rc;
5363 }
5364
5365 ecore_ptt_release(p_hwfn, p_ptt);
5366 }
5367
5368 return rc;
5369}
5370
5371/* API to configure WFQ from mcp link change */
5372void ecore_configure_vp_wfq_on_link_change(struct ecore_dev *p_dev,
5373 struct ecore_ptt *p_ptt,
5374 u32 min_pf_rate)
5375{
5376 int i;
5377
5378 /* TBD - for multiple hardware functions - that is 100 gig */
5379 if (p_dev->num_hwfns > 1) {
5380 DP_VERBOSE(p_dev, ECORE_MSG_LINK,
5381 "WFQ configuration is not supported for this device\n");
5382 return;
5383 }
5384
5385 for_each_hwfn(p_dev, i) {
5386 struct ecore_hwfn *p_hwfn = &p_dev->hwfns[i];
5387
5388 __ecore_configure_vp_wfq_on_link_change(p_hwfn, p_ptt,
5389 min_pf_rate);
5390 }
5391}
5392
5393int __ecore_configure_pf_max_bandwidth(struct ecore_hwfn *p_hwfn,
5394 struct ecore_ptt *p_ptt,
5395 struct ecore_mcp_link_state *p_link,
5396 u8 max_bw)
5397{
5398 int rc = ECORE_SUCCESS;
5399
5400 p_hwfn->mcp_info->func_info.bandwidth_max = max_bw;
5401
5402 if (!p_link->line_speed && (max_bw != 100))
5403 return rc;
5404
5405 p_link->speed = (p_link->line_speed * max_bw) / 100;
5406 p_hwfn->qm_info.pf_rl = p_link->speed;
5407
5408 /* Since the limiter also affects Tx-switched traffic, we don't want it
5409 * to limit such traffic in case there's no actual limit.
5410 * In that case, set limit to imaginary high boundary.
5411 */
5412 if (max_bw == 100)
5413 p_hwfn->qm_info.pf_rl = 100000;
5414
5415 rc = ecore_init_pf_rl(p_hwfn, p_ptt, p_hwfn->rel_pf_id,
5416 p_hwfn->qm_info.pf_rl);
5417
5418 DP_VERBOSE(p_hwfn, ECORE_MSG_LINK,
5419 "Configured MAX bandwidth to be %08x Mb/sec\n",
5420 p_link->speed);
5421
5422 return rc;
5423}
5424
5425/* Main API to configure PF max bandwidth where bw range is [1 - 100] */
5426int ecore_configure_pf_max_bandwidth(struct ecore_dev *p_dev, u8 max_bw)
5427{
5428 int i, rc = ECORE_INVAL;
5429
5430 if (max_bw < 1 || max_bw > 100) {
5431 DP_NOTICE(p_dev, false, "PF max bw valid range is [1-100]\n");
5432 return rc;
5433 }
5434
5435 for_each_hwfn(p_dev, i) {
5436 struct ecore_hwfn *p_hwfn = &p_dev->hwfns[i];
5437 struct ecore_hwfn *p_lead = ECORE_LEADING_HWFN(p_dev);
5438 struct ecore_mcp_link_state *p_link;
5439 struct ecore_ptt *p_ptt;
5440
5441 p_link = &p_lead->mcp_info->link_output;
5442
5443 p_ptt = ecore_ptt_acquire(p_hwfn);
5444 if (!p_ptt)
5445 return ECORE_TIMEOUT;
5446
5447 rc = __ecore_configure_pf_max_bandwidth(p_hwfn, p_ptt,
5448 p_link, max_bw);
5449
5450 ecore_ptt_release(p_hwfn, p_ptt);
5451
5452 if (rc != ECORE_SUCCESS)
5453 break;
5454 }
5455
5456 return rc;
5457}
5458
5459int __ecore_configure_pf_min_bandwidth(struct ecore_hwfn *p_hwfn,
5460 struct ecore_ptt *p_ptt,
5461 struct ecore_mcp_link_state *p_link,
5462 u8 min_bw)
5463{
5464 int rc = ECORE_SUCCESS;
5465
5466 p_hwfn->mcp_info->func_info.bandwidth_min = min_bw;
5467 p_hwfn->qm_info.pf_wfq = min_bw;
5468
5469 if (!p_link->line_speed)
5470 return rc;
5471
5472 p_link->min_pf_rate = (p_link->line_speed * min_bw) / 100;
5473
5474 rc = ecore_init_pf_wfq(p_hwfn, p_ptt, p_hwfn->rel_pf_id, min_bw);
5475
5476 DP_VERBOSE(p_hwfn, ECORE_MSG_LINK,
5477 "Configured MIN bandwidth to be %d Mb/sec\n",
5478 p_link->min_pf_rate);
5479
5480 return rc;
5481}
5482
5483/* Main API to configure PF min bandwidth where bw range is [1-100] */
5484int ecore_configure_pf_min_bandwidth(struct ecore_dev *p_dev, u8 min_bw)
5485{
5486 int i, rc = ECORE_INVAL;
5487
5488 if (min_bw < 1 || min_bw > 100) {
5489 DP_NOTICE(p_dev, false, "PF min bw valid range is [1-100]\n");
5490 return rc;
5491 }
5492
5493 for_each_hwfn(p_dev, i) {
5494 struct ecore_hwfn *p_hwfn = &p_dev->hwfns[i];
5495 struct ecore_hwfn *p_lead = ECORE_LEADING_HWFN(p_dev);
5496 struct ecore_mcp_link_state *p_link;
5497 struct ecore_ptt *p_ptt;
5498
5499 p_link = &p_lead->mcp_info->link_output;
5500
5501 p_ptt = ecore_ptt_acquire(p_hwfn);
5502 if (!p_ptt)
5503 return ECORE_TIMEOUT;
5504
5505 rc = __ecore_configure_pf_min_bandwidth(p_hwfn, p_ptt,
5506 p_link, min_bw);
5507 if (rc != ECORE_SUCCESS) {
5508 ecore_ptt_release(p_hwfn, p_ptt);
5509 return rc;
5510 }
5511
5512 if (p_link->min_pf_rate) {
5513 u32 min_rate = p_link->min_pf_rate;
5514
5515 rc = __ecore_configure_vp_wfq_on_link_change(p_hwfn,
5516 p_ptt,
5517 min_rate);
5518 }
5519
5520 ecore_ptt_release(p_hwfn, p_ptt);
5521 }
5522
5523 return rc;
5524}
5525
5526void ecore_clean_wfq_db(struct ecore_hwfn *p_hwfn, struct ecore_ptt *p_ptt)
5527{
5528 struct ecore_mcp_link_state *p_link;
5529
5530 p_link = &p_hwfn->mcp_info->link_output;
5531
5532 if (p_link->min_pf_rate)
5686
5687 return rc;
5688}
5689
5690/* Main API for ecore clients to configure vport min rate.
5691 * vp_id - vport id in PF Range[0 - (total_num_vports_per_pf - 1)]
5692 * rate - Speed in Mbps needs to be assigned to a given vport.
5693 */
5694int ecore_configure_vport_wfq(struct ecore_dev *p_dev, u16 vp_id, u32 rate)
5695{
5696 int i, rc = ECORE_INVAL;
5697
5698 /* TBD - for multiple hardware functions - that is 100 gig */
5699 if (p_dev->num_hwfns > 1) {
5700 DP_NOTICE(p_dev, false,
5701 "WFQ configuration is not supported for this device\n");
5702 return rc;
5703 }
5704
5705 for_each_hwfn(p_dev, i) {
5706 struct ecore_hwfn *p_hwfn = &p_dev->hwfns[i];
5707 struct ecore_ptt *p_ptt;
5708
5709 p_ptt = ecore_ptt_acquire(p_hwfn);
5710 if (!p_ptt)
5711 return ECORE_TIMEOUT;
5712
5713 rc = __ecore_configure_vport_wfq(p_hwfn, p_ptt, vp_id, rate);
5714
5715 if (rc != ECORE_SUCCESS) {
5716 ecore_ptt_release(p_hwfn, p_ptt);
5717 return rc;
5718 }
5719
5720 ecore_ptt_release(p_hwfn, p_ptt);
5721 }
5722
5723 return rc;
5724}
5725
5726/* API to configure WFQ from mcp link change */
5727void ecore_configure_vp_wfq_on_link_change(struct ecore_dev *p_dev,
5728 struct ecore_ptt *p_ptt,
5729 u32 min_pf_rate)
5730{
5731 int i;
5732
5733 /* TBD - for multiple hardware functions - that is 100 gig */
5734 if (p_dev->num_hwfns > 1) {
5735 DP_VERBOSE(p_dev, ECORE_MSG_LINK,
5736 "WFQ configuration is not supported for this device\n");
5737 return;
5738 }
5739
5740 for_each_hwfn(p_dev, i) {
5741 struct ecore_hwfn *p_hwfn = &p_dev->hwfns[i];
5742
5743 __ecore_configure_vp_wfq_on_link_change(p_hwfn, p_ptt,
5744 min_pf_rate);
5745 }
5746}
5747
5748int __ecore_configure_pf_max_bandwidth(struct ecore_hwfn *p_hwfn,
5749 struct ecore_ptt *p_ptt,
5750 struct ecore_mcp_link_state *p_link,
5751 u8 max_bw)
5752{
5753 int rc = ECORE_SUCCESS;
5754
5755 p_hwfn->mcp_info->func_info.bandwidth_max = max_bw;
5756
5757 if (!p_link->line_speed && (max_bw != 100))
5758 return rc;
5759
5760 p_link->speed = (p_link->line_speed * max_bw) / 100;
5761 p_hwfn->qm_info.pf_rl = p_link->speed;
5762
5763 /* Since the limiter also affects Tx-switched traffic, we don't want it
5764 * to limit such traffic in case there's no actual limit.
5765 * In that case, set limit to imaginary high boundary.
5766 */
5767 if (max_bw == 100)
5768 p_hwfn->qm_info.pf_rl = 100000;
5769
5770 rc = ecore_init_pf_rl(p_hwfn, p_ptt, p_hwfn->rel_pf_id,
5771 p_hwfn->qm_info.pf_rl);
5772
5773 DP_VERBOSE(p_hwfn, ECORE_MSG_LINK,
5774 "Configured MAX bandwidth to be %08x Mb/sec\n",
5775 p_link->speed);
5776
5777 return rc;
5778}
5779
5780/* Main API to configure PF max bandwidth where bw range is [1 - 100] */
5781int ecore_configure_pf_max_bandwidth(struct ecore_dev *p_dev, u8 max_bw)
5782{
5783 int i, rc = ECORE_INVAL;
5784
5785 if (max_bw < 1 || max_bw > 100) {
5786 DP_NOTICE(p_dev, false, "PF max bw valid range is [1-100]\n");
5787 return rc;
5788 }
5789
5790 for_each_hwfn(p_dev, i) {
5791 struct ecore_hwfn *p_hwfn = &p_dev->hwfns[i];
5792 struct ecore_hwfn *p_lead = ECORE_LEADING_HWFN(p_dev);
5793 struct ecore_mcp_link_state *p_link;
5794 struct ecore_ptt *p_ptt;
5795
5796 p_link = &p_lead->mcp_info->link_output;
5797
5798 p_ptt = ecore_ptt_acquire(p_hwfn);
5799 if (!p_ptt)
5800 return ECORE_TIMEOUT;
5801
5802 rc = __ecore_configure_pf_max_bandwidth(p_hwfn, p_ptt,
5803 p_link, max_bw);
5804
5805 ecore_ptt_release(p_hwfn, p_ptt);
5806
5807 if (rc != ECORE_SUCCESS)
5808 break;
5809 }
5810
5811 return rc;
5812}
5813
5814int __ecore_configure_pf_min_bandwidth(struct ecore_hwfn *p_hwfn,
5815 struct ecore_ptt *p_ptt,
5816 struct ecore_mcp_link_state *p_link,
5817 u8 min_bw)
5818{
5819 int rc = ECORE_SUCCESS;
5820
5821 p_hwfn->mcp_info->func_info.bandwidth_min = min_bw;
5822 p_hwfn->qm_info.pf_wfq = min_bw;
5823
5824 if (!p_link->line_speed)
5825 return rc;
5826
5827 p_link->min_pf_rate = (p_link->line_speed * min_bw) / 100;
5828
5829 rc = ecore_init_pf_wfq(p_hwfn, p_ptt, p_hwfn->rel_pf_id, min_bw);
5830
5831 DP_VERBOSE(p_hwfn, ECORE_MSG_LINK,
5832 "Configured MIN bandwidth to be %d Mb/sec\n",
5833 p_link->min_pf_rate);
5834
5835 return rc;
5836}
5837
5838/* Main API to configure PF min bandwidth where bw range is [1-100] */
5839int ecore_configure_pf_min_bandwidth(struct ecore_dev *p_dev, u8 min_bw)
5840{
5841 int i, rc = ECORE_INVAL;
5842
5843 if (min_bw < 1 || min_bw > 100) {
5844 DP_NOTICE(p_dev, false, "PF min bw valid range is [1-100]\n");
5845 return rc;
5846 }
5847
5848 for_each_hwfn(p_dev, i) {
5849 struct ecore_hwfn *p_hwfn = &p_dev->hwfns[i];
5850 struct ecore_hwfn *p_lead = ECORE_LEADING_HWFN(p_dev);
5851 struct ecore_mcp_link_state *p_link;
5852 struct ecore_ptt *p_ptt;
5853
5854 p_link = &p_lead->mcp_info->link_output;
5855
5856 p_ptt = ecore_ptt_acquire(p_hwfn);
5857 if (!p_ptt)
5858 return ECORE_TIMEOUT;
5859
5860 rc = __ecore_configure_pf_min_bandwidth(p_hwfn, p_ptt,
5861 p_link, min_bw);
5862 if (rc != ECORE_SUCCESS) {
5863 ecore_ptt_release(p_hwfn, p_ptt);
5864 return rc;
5865 }
5866
5867 if (p_link->min_pf_rate) {
5868 u32 min_rate = p_link->min_pf_rate;
5869
5870 rc = __ecore_configure_vp_wfq_on_link_change(p_hwfn,
5871 p_ptt,
5872 min_rate);
5873 }
5874
5875 ecore_ptt_release(p_hwfn, p_ptt);
5876 }
5877
5878 return rc;
5879}
5880
5881void ecore_clean_wfq_db(struct ecore_hwfn *p_hwfn, struct ecore_ptt *p_ptt)
5882{
5883 struct ecore_mcp_link_state *p_link;
5884
5885 p_link = &p_hwfn->mcp_info->link_output;
5886
5887 if (p_link->min_pf_rate)
5533 ecore_disable_wfq_for_all_vports(p_hwfn, p_ptt,
5534 p_link->min_pf_rate);
5888 ecore_disable_wfq_for_all_vports(p_hwfn, p_ptt);
5535
5536 OSAL_MEMSET(p_hwfn->qm_info.wfq_data, 0,
5537 sizeof(*p_hwfn->qm_info.wfq_data) *
5538 p_hwfn->qm_info.num_vports);
5539}
5540
5541int ecore_device_num_engines(struct ecore_dev *p_dev)
5542{
5543 return ECORE_IS_BB(p_dev) ? 2 : 1;
5544}
5545
5546int ecore_device_num_ports(struct ecore_dev *p_dev)
5547{
5548 /* in CMT always only one port */
5549 if (p_dev->num_hwfns > 1)
5550 return 1;
5551
5889
5890 OSAL_MEMSET(p_hwfn->qm_info.wfq_data, 0,
5891 sizeof(*p_hwfn->qm_info.wfq_data) *
5892 p_hwfn->qm_info.num_vports);
5893}
5894
5895int ecore_device_num_engines(struct ecore_dev *p_dev)
5896{
5897 return ECORE_IS_BB(p_dev) ? 2 : 1;
5898}
5899
5900int ecore_device_num_ports(struct ecore_dev *p_dev)
5901{
5902 /* in CMT always only one port */
5903 if (p_dev->num_hwfns > 1)
5904 return 1;
5905
5552 return p_dev->num_ports_in_engines * ecore_device_num_engines(p_dev);
5906 return p_dev->num_ports_in_engine * ecore_device_num_engines(p_dev);
5553}
5554
5907}
5908
5909int ecore_device_get_port_id(struct ecore_dev *p_dev)
5910{
5911 return (ECORE_LEADING_HWFN(p_dev)->abs_pf_id) %
5912 ecore_device_num_ports(p_dev);
5913}
5914
5555void ecore_set_fw_mac_addr(__le16 *fw_msb,
5556 __le16 *fw_mid,
5557 __le16 *fw_lsb,
5558 u8 *mac)
5559{
5560 ((u8 *)fw_msb)[0] = mac[1];
5561 ((u8 *)fw_msb)[1] = mac[0];
5562 ((u8 *)fw_mid)[0] = mac[3];
5563 ((u8 *)fw_mid)[1] = mac[2];
5564 ((u8 *)fw_lsb)[0] = mac[5];
5565 ((u8 *)fw_lsb)[1] = mac[4];
5566}
5915void ecore_set_fw_mac_addr(__le16 *fw_msb,
5916 __le16 *fw_mid,
5917 __le16 *fw_lsb,
5918 u8 *mac)
5919{
5920 ((u8 *)fw_msb)[0] = mac[1];
5921 ((u8 *)fw_msb)[1] = mac[0];
5922 ((u8 *)fw_mid)[0] = mac[3];
5923 ((u8 *)fw_mid)[1] = mac[2];
5924 ((u8 *)fw_lsb)[0] = mac[5];
5925 ((u8 *)fw_lsb)[1] = mac[4];
5926}