1 /* Copyright 2008 - 2016 Freescale Semiconductor, Inc.
3 * Redistribution and use in source and binary forms, with or without
4 * modification, are permitted provided that the following conditions are met:
5 * * Redistributions of source code must retain the above copyright
6 * notice, this list of conditions and the following disclaimer.
7 * * Redistributions in binary form must reproduce the above copyright
8 * notice, this list of conditions and the following disclaimer in the
9 * documentation and/or other materials provided with the distribution.
10 * * Neither the name of Freescale Semiconductor nor the
11 * names of its contributors may be used to endorse or promote products
12 * derived from this software without specific prior written permission.
14 * ALTERNATIVELY, this software may be distributed under the terms of the
15 * GNU General Public License ("GPL") as published by the Free Software
16 * Foundation, either version 2 of that License or (at your option) any
19 * THIS SOFTWARE IS PROVIDED BY Freescale Semiconductor ``AS IS'' AND ANY
20 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
21 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
22 * DISCLAIMED. IN NO EVENT SHALL Freescale Semiconductor BE LIABLE FOR ANY
23 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
24 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
25 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
26 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
28 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31 #include "qman_priv.h"
33 #define DQRR_MAXFILL 15
34 #define EQCR_ITHRESH 4 /* if EQCR congests, interrupt threshold */
35 #define IRQNAME "QMan portal %d"
36 #define MAX_IRQNAME 16 /* big enough for "QMan portal %d" */
37 #define QMAN_POLL_LIMIT 32
38 #define QMAN_PIRQ_DQRR_ITHRESH 12
39 #define QMAN_PIRQ_MR_ITHRESH 4
40 #define QMAN_PIRQ_IPERIOD 100
42 /* Portal register assists */
44 /* Cache-inhibited register offsets */
45 #define QM_REG_EQCR_PI_CINH 0x0000
46 #define QM_REG_EQCR_CI_CINH 0x0004
47 #define QM_REG_EQCR_ITR 0x0008
48 #define QM_REG_DQRR_PI_CINH 0x0040
49 #define QM_REG_DQRR_CI_CINH 0x0044
50 #define QM_REG_DQRR_ITR 0x0048
51 #define QM_REG_DQRR_DCAP 0x0050
52 #define QM_REG_DQRR_SDQCR 0x0054
53 #define QM_REG_DQRR_VDQCR 0x0058
54 #define QM_REG_DQRR_PDQCR 0x005c
55 #define QM_REG_MR_PI_CINH 0x0080
56 #define QM_REG_MR_CI_CINH 0x0084
57 #define QM_REG_MR_ITR 0x0088
58 #define QM_REG_CFG 0x0100
59 #define QM_REG_ISR 0x0e00
60 #define QM_REG_IER 0x0e04
61 #define QM_REG_ISDR 0x0e08
62 #define QM_REG_IIR 0x0e0c
63 #define QM_REG_ITPR 0x0e14
65 /* Cache-enabled register offsets */
66 #define QM_CL_EQCR 0x0000
67 #define QM_CL_DQRR 0x1000
68 #define QM_CL_MR 0x2000
69 #define QM_CL_EQCR_PI_CENA 0x3000
70 #define QM_CL_EQCR_CI_CENA 0x3100
71 #define QM_CL_DQRR_PI_CENA 0x3200
72 #define QM_CL_DQRR_CI_CENA 0x3300
73 #define QM_CL_MR_PI_CENA 0x3400
74 #define QM_CL_MR_CI_CENA 0x3500
75 #define QM_CL_CR 0x3800
76 #define QM_CL_RR0 0x3900
77 #define QM_CL_RR1 0x3940
80 * BTW, the drivers (and h/w programming model) already obtain the required
81 * synchronisation for portal accesses and data-dependencies. Use of barrier()s
82 * or other order-preserving primitives simply degrade performance. Hence the
83 * use of the __raw_*() interfaces, which simply ensure that the compiler treats
84 * the portal registers as volatile
87 /* Cache-enabled ring access */
88 #define qm_cl(base, idx) ((void *)base + ((idx) << 6))
93 * pmode == production mode
94 * cmode == consumption mode,
95 * dmode == h/w dequeue mode.
96 * Enum values use 3 letter codes. First letter matches the portal mode,
97 * remaining two letters indicate;
98 * ci == cache-inhibited portal register
99 * ce == cache-enabled portal register
100 * vb == in-band valid-bit (cache-enabled)
101 * dc == DCA (Discrete Consumption Acknowledgment), DQRR-only
102 * As for "enum qm_dqrr_dmode", it should be self-explanatory.
104 enum qm_eqcr_pmode
{ /* matches QCSP_CFG::EPM */
105 qm_eqcr_pci
= 0, /* PI index, cache-inhibited */
106 qm_eqcr_pce
= 1, /* PI index, cache-enabled */
107 qm_eqcr_pvb
= 2 /* valid-bit */
109 enum qm_dqrr_dmode
{ /* matches QCSP_CFG::DP */
110 qm_dqrr_dpush
= 0, /* SDQCR + VDQCR */
111 qm_dqrr_dpull
= 1 /* PDQCR */
113 enum qm_dqrr_pmode
{ /* s/w-only */
114 qm_dqrr_pci
, /* reads DQRR_PI_CINH */
115 qm_dqrr_pce
, /* reads DQRR_PI_CENA */
116 qm_dqrr_pvb
/* reads valid-bit */
118 enum qm_dqrr_cmode
{ /* matches QCSP_CFG::DCM */
119 qm_dqrr_cci
= 0, /* CI index, cache-inhibited */
120 qm_dqrr_cce
= 1, /* CI index, cache-enabled */
121 qm_dqrr_cdc
= 2 /* Discrete Consumption Acknowledgment */
123 enum qm_mr_pmode
{ /* s/w-only */
124 qm_mr_pci
, /* reads MR_PI_CINH */
125 qm_mr_pce
, /* reads MR_PI_CENA */
126 qm_mr_pvb
/* reads valid-bit */
128 enum qm_mr_cmode
{ /* matches QCSP_CFG::MM */
129 qm_mr_cci
= 0, /* CI index, cache-inhibited */
130 qm_mr_cce
= 1 /* CI index, cache-enabled */
133 /* --- Portal structures --- */
135 #define QM_EQCR_SIZE 8
136 #define QM_DQRR_SIZE 16
139 /* "Enqueue Command" */
140 struct qm_eqcr_entry
{
141 u8 _ncw_verb
; /* writes to this are non-coherent */
145 __be32 fqid
; /* 24-bit */
150 #define QM_EQCR_VERB_VBIT 0x80
151 #define QM_EQCR_VERB_CMD_MASK 0x61 /* but only one value; */
152 #define QM_EQCR_VERB_CMD_ENQUEUE 0x01
153 #define QM_EQCR_SEQNUM_NESN 0x8000 /* Advance NESN */
154 #define QM_EQCR_SEQNUM_NLIS 0x4000 /* More fragments to come */
155 #define QM_EQCR_SEQNUM_SEQMASK 0x3fff /* sequence number goes here */
158 struct qm_eqcr_entry
*ring
, *cursor
;
159 u8 ci
, available
, ithresh
, vbit
;
160 #ifdef CONFIG_FSL_DPAA_CHECKING
162 enum qm_eqcr_pmode pmode
;
167 const struct qm_dqrr_entry
*ring
, *cursor
;
168 u8 pi
, ci
, fill
, ithresh
, vbit
;
169 #ifdef CONFIG_FSL_DPAA_CHECKING
170 enum qm_dqrr_dmode dmode
;
171 enum qm_dqrr_pmode pmode
;
172 enum qm_dqrr_cmode cmode
;
177 union qm_mr_entry
*ring
, *cursor
;
178 u8 pi
, ci
, fill
, ithresh
, vbit
;
179 #ifdef CONFIG_FSL_DPAA_CHECKING
180 enum qm_mr_pmode pmode
;
181 enum qm_mr_cmode cmode
;
185 /* MC (Management Command) command */
186 /* "FQ" command layout */
190 __be32 fqid
; /* 24-bit */
194 /* "CGR" command layout */
202 #define QM_MCC_VERB_VBIT 0x80
203 #define QM_MCC_VERB_MASK 0x7f /* where the verb contains; */
204 #define QM_MCC_VERB_INITFQ_PARKED 0x40
205 #define QM_MCC_VERB_INITFQ_SCHED 0x41
206 #define QM_MCC_VERB_QUERYFQ 0x44
207 #define QM_MCC_VERB_QUERYFQ_NP 0x45 /* "non-programmable" fields */
208 #define QM_MCC_VERB_QUERYWQ 0x46
209 #define QM_MCC_VERB_QUERYWQ_DEDICATED 0x47
210 #define QM_MCC_VERB_ALTER_SCHED 0x48 /* Schedule FQ */
211 #define QM_MCC_VERB_ALTER_FE 0x49 /* Force Eligible FQ */
212 #define QM_MCC_VERB_ALTER_RETIRE 0x4a /* Retire FQ */
213 #define QM_MCC_VERB_ALTER_OOS 0x4b /* Take FQ out of service */
214 #define QM_MCC_VERB_ALTER_FQXON 0x4d /* FQ XON */
215 #define QM_MCC_VERB_ALTER_FQXOFF 0x4e /* FQ XOFF */
216 #define QM_MCC_VERB_INITCGR 0x50
217 #define QM_MCC_VERB_MODIFYCGR 0x51
218 #define QM_MCC_VERB_CGRTESTWRITE 0x52
219 #define QM_MCC_VERB_QUERYCGR 0x58
220 #define QM_MCC_VERB_QUERYCONGESTION 0x59
221 union qm_mc_command
{
223 u8 _ncw_verb
; /* writes to this are non-coherent */
226 struct qm_mcc_initfq initfq
;
227 struct qm_mcc_initcgr initcgr
;
229 struct qm_mcc_cgr cgr
;
232 /* MC (Management Command) result */
234 struct qm_mcr_queryfq
{
238 struct qm_fqd fqd
; /* the FQD fields are here */
242 /* "Alter FQ State Commands" */
243 struct qm_mcr_alterfq
{
246 u8 fqs
; /* Frame Queue Status */
249 #define QM_MCR_VERB_RRID 0x80
250 #define QM_MCR_VERB_MASK QM_MCC_VERB_MASK
251 #define QM_MCR_VERB_INITFQ_PARKED QM_MCC_VERB_INITFQ_PARKED
252 #define QM_MCR_VERB_INITFQ_SCHED QM_MCC_VERB_INITFQ_SCHED
253 #define QM_MCR_VERB_QUERYFQ QM_MCC_VERB_QUERYFQ
254 #define QM_MCR_VERB_QUERYFQ_NP QM_MCC_VERB_QUERYFQ_NP
255 #define QM_MCR_VERB_QUERYWQ QM_MCC_VERB_QUERYWQ
256 #define QM_MCR_VERB_QUERYWQ_DEDICATED QM_MCC_VERB_QUERYWQ_DEDICATED
257 #define QM_MCR_VERB_ALTER_SCHED QM_MCC_VERB_ALTER_SCHED
258 #define QM_MCR_VERB_ALTER_FE QM_MCC_VERB_ALTER_FE
259 #define QM_MCR_VERB_ALTER_RETIRE QM_MCC_VERB_ALTER_RETIRE
260 #define QM_MCR_VERB_ALTER_OOS QM_MCC_VERB_ALTER_OOS
261 #define QM_MCR_RESULT_NULL 0x00
262 #define QM_MCR_RESULT_OK 0xf0
263 #define QM_MCR_RESULT_ERR_FQID 0xf1
264 #define QM_MCR_RESULT_ERR_FQSTATE 0xf2
265 #define QM_MCR_RESULT_ERR_NOTEMPTY 0xf3 /* OOS fails if FQ is !empty */
266 #define QM_MCR_RESULT_ERR_BADCHANNEL 0xf4
267 #define QM_MCR_RESULT_PENDING 0xf8
268 #define QM_MCR_RESULT_ERR_BADCOMMAND 0xff
269 #define QM_MCR_FQS_ORLPRESENT 0x02 /* ORL fragments to come */
270 #define QM_MCR_FQS_NOTEMPTY 0x01 /* FQ has enqueued frames */
271 #define QM_MCR_TIMEOUT 10000 /* us */
278 struct qm_mcr_queryfq queryfq
;
279 struct qm_mcr_alterfq alterfq
;
280 struct qm_mcr_querycgr querycgr
;
281 struct qm_mcr_querycongestion querycongestion
;
282 struct qm_mcr_querywq querywq
;
283 struct qm_mcr_queryfq_np queryfq_np
;
287 union qm_mc_command
*cr
;
288 union qm_mc_result
*rr
;
290 #ifdef CONFIG_FSL_DPAA_CHECKING
292 /* Can be _mc_start()ed */
294 /* Can be _mc_commit()ed or _mc_abort()ed */
296 /* Can only be _mc_retry()ed */
303 void __iomem
*ce
; /* cache-enabled */
304 void __iomem
*ci
; /* cache-inhibited */
309 * In the non-CONFIG_FSL_DPAA_CHECKING case, the following stuff up to
310 * and including 'mc' fits within a cacheline (yay!). The 'config' part
311 * is setup-only, so isn't a cause for a concern. In other words, don't
312 * rearrange this structure on a whim, there be dragons ...
319 } ____cacheline_aligned
;
321 /* Cache-inhibited register access. */
322 static inline u32
qm_in(struct qm_portal
*p
, u32 offset
)
324 return be32_to_cpu(__raw_readl(p
->addr
.ci
+ offset
));
327 static inline void qm_out(struct qm_portal
*p
, u32 offset
, u32 val
)
329 __raw_writel(cpu_to_be32(val
), p
->addr
.ci
+ offset
);
332 /* Cache Enabled Portal Access */
333 static inline void qm_cl_invalidate(struct qm_portal
*p
, u32 offset
)
335 dpaa_invalidate(p
->addr
.ce
+ offset
);
338 static inline void qm_cl_touch_ro(struct qm_portal
*p
, u32 offset
)
340 dpaa_touch_ro(p
->addr
.ce
+ offset
);
343 static inline u32
qm_ce_in(struct qm_portal
*p
, u32 offset
)
345 return be32_to_cpu(__raw_readl(p
->addr
.ce
+ offset
));
348 /* --- EQCR API --- */
350 #define EQCR_SHIFT ilog2(sizeof(struct qm_eqcr_entry))
351 #define EQCR_CARRY (uintptr_t)(QM_EQCR_SIZE << EQCR_SHIFT)
353 /* Bit-wise logic to wrap a ring pointer by clearing the "carry bit" */
354 static struct qm_eqcr_entry
*eqcr_carryclear(struct qm_eqcr_entry
*p
)
356 uintptr_t addr
= (uintptr_t)p
;
360 return (struct qm_eqcr_entry
*)addr
;
363 /* Bit-wise logic to convert a ring pointer to a ring index */
364 static int eqcr_ptr2idx(struct qm_eqcr_entry
*e
)
366 return ((uintptr_t)e
>> EQCR_SHIFT
) & (QM_EQCR_SIZE
- 1);
369 /* Increment the 'cursor' ring pointer, taking 'vbit' into account */
370 static inline void eqcr_inc(struct qm_eqcr
*eqcr
)
372 /* increment to the next EQCR pointer and handle overflow and 'vbit' */
373 struct qm_eqcr_entry
*partial
= eqcr
->cursor
+ 1;
375 eqcr
->cursor
= eqcr_carryclear(partial
);
376 if (partial
!= eqcr
->cursor
)
377 eqcr
->vbit
^= QM_EQCR_VERB_VBIT
;
380 static inline int qm_eqcr_init(struct qm_portal
*portal
,
381 enum qm_eqcr_pmode pmode
,
382 unsigned int eq_stash_thresh
,
385 struct qm_eqcr
*eqcr
= &portal
->eqcr
;
389 eqcr
->ring
= portal
->addr
.ce
+ QM_CL_EQCR
;
390 eqcr
->ci
= qm_in(portal
, QM_REG_EQCR_CI_CINH
) & (QM_EQCR_SIZE
- 1);
391 qm_cl_invalidate(portal
, QM_CL_EQCR_CI_CENA
);
392 pi
= qm_in(portal
, QM_REG_EQCR_PI_CINH
) & (QM_EQCR_SIZE
- 1);
393 eqcr
->cursor
= eqcr
->ring
+ pi
;
394 eqcr
->vbit
= (qm_in(portal
, QM_REG_EQCR_PI_CINH
) & QM_EQCR_SIZE
) ?
395 QM_EQCR_VERB_VBIT
: 0;
396 eqcr
->available
= QM_EQCR_SIZE
- 1 -
397 dpaa_cyc_diff(QM_EQCR_SIZE
, eqcr
->ci
, pi
);
398 eqcr
->ithresh
= qm_in(portal
, QM_REG_EQCR_ITR
);
399 #ifdef CONFIG_FSL_DPAA_CHECKING
403 cfg
= (qm_in(portal
, QM_REG_CFG
) & 0x00ffffff) |
404 (eq_stash_thresh
<< 28) | /* QCSP_CFG: EST */
405 (eq_stash_prio
<< 26) | /* QCSP_CFG: EP */
406 ((pmode
& 0x3) << 24); /* QCSP_CFG::EPM */
407 qm_out(portal
, QM_REG_CFG
, cfg
);
411 static inline unsigned int qm_eqcr_get_ci_stashing(struct qm_portal
*portal
)
413 return (qm_in(portal
, QM_REG_CFG
) >> 28) & 0x7;
416 static inline void qm_eqcr_finish(struct qm_portal
*portal
)
418 struct qm_eqcr
*eqcr
= &portal
->eqcr
;
419 u8 pi
= qm_in(portal
, QM_REG_EQCR_PI_CINH
) & (QM_EQCR_SIZE
- 1);
420 u8 ci
= qm_in(portal
, QM_REG_EQCR_CI_CINH
) & (QM_EQCR_SIZE
- 1);
422 DPAA_ASSERT(!eqcr
->busy
);
423 if (pi
!= eqcr_ptr2idx(eqcr
->cursor
))
424 pr_crit("losing uncommitted EQCR entries\n");
426 pr_crit("missing existing EQCR completions\n");
427 if (eqcr
->ci
!= eqcr_ptr2idx(eqcr
->cursor
))
428 pr_crit("EQCR destroyed unquiesced\n");
431 static inline struct qm_eqcr_entry
*qm_eqcr_start_no_stash(struct qm_portal
434 struct qm_eqcr
*eqcr
= &portal
->eqcr
;
436 DPAA_ASSERT(!eqcr
->busy
);
437 if (!eqcr
->available
)
440 #ifdef CONFIG_FSL_DPAA_CHECKING
443 dpaa_zero(eqcr
->cursor
);
447 static inline struct qm_eqcr_entry
*qm_eqcr_start_stash(struct qm_portal
450 struct qm_eqcr
*eqcr
= &portal
->eqcr
;
453 DPAA_ASSERT(!eqcr
->busy
);
454 if (!eqcr
->available
) {
456 eqcr
->ci
= qm_ce_in(portal
, QM_CL_EQCR_CI_CENA
) &
458 diff
= dpaa_cyc_diff(QM_EQCR_SIZE
, old_ci
, eqcr
->ci
);
459 eqcr
->available
+= diff
;
463 #ifdef CONFIG_FSL_DPAA_CHECKING
466 dpaa_zero(eqcr
->cursor
);
470 static inline void eqcr_commit_checks(struct qm_eqcr
*eqcr
)
472 DPAA_ASSERT(eqcr
->busy
);
473 DPAA_ASSERT(!(be32_to_cpu(eqcr
->cursor
->fqid
) & ~QM_FQID_MASK
));
474 DPAA_ASSERT(eqcr
->available
>= 1);
477 static inline void qm_eqcr_pvb_commit(struct qm_portal
*portal
, u8 myverb
)
479 struct qm_eqcr
*eqcr
= &portal
->eqcr
;
480 struct qm_eqcr_entry
*eqcursor
;
482 eqcr_commit_checks(eqcr
);
483 DPAA_ASSERT(eqcr
->pmode
== qm_eqcr_pvb
);
485 eqcursor
= eqcr
->cursor
;
486 eqcursor
->_ncw_verb
= myverb
| eqcr
->vbit
;
487 dpaa_flush(eqcursor
);
490 #ifdef CONFIG_FSL_DPAA_CHECKING
495 static inline void qm_eqcr_cce_prefetch(struct qm_portal
*portal
)
497 qm_cl_touch_ro(portal
, QM_CL_EQCR_CI_CENA
);
500 static inline u8
qm_eqcr_cce_update(struct qm_portal
*portal
)
502 struct qm_eqcr
*eqcr
= &portal
->eqcr
;
503 u8 diff
, old_ci
= eqcr
->ci
;
505 eqcr
->ci
= qm_ce_in(portal
, QM_CL_EQCR_CI_CENA
) & (QM_EQCR_SIZE
- 1);
506 qm_cl_invalidate(portal
, QM_CL_EQCR_CI_CENA
);
507 diff
= dpaa_cyc_diff(QM_EQCR_SIZE
, old_ci
, eqcr
->ci
);
508 eqcr
->available
+= diff
;
512 static inline void qm_eqcr_set_ithresh(struct qm_portal
*portal
, u8 ithresh
)
514 struct qm_eqcr
*eqcr
= &portal
->eqcr
;
516 eqcr
->ithresh
= ithresh
;
517 qm_out(portal
, QM_REG_EQCR_ITR
, ithresh
);
520 static inline u8
qm_eqcr_get_avail(struct qm_portal
*portal
)
522 struct qm_eqcr
*eqcr
= &portal
->eqcr
;
524 return eqcr
->available
;
527 static inline u8
qm_eqcr_get_fill(struct qm_portal
*portal
)
529 struct qm_eqcr
*eqcr
= &portal
->eqcr
;
531 return QM_EQCR_SIZE
- 1 - eqcr
->available
;
534 /* --- DQRR API --- */
536 #define DQRR_SHIFT ilog2(sizeof(struct qm_dqrr_entry))
537 #define DQRR_CARRY (uintptr_t)(QM_DQRR_SIZE << DQRR_SHIFT)
539 static const struct qm_dqrr_entry
*dqrr_carryclear(
540 const struct qm_dqrr_entry
*p
)
542 uintptr_t addr
= (uintptr_t)p
;
546 return (const struct qm_dqrr_entry
*)addr
;
549 static inline int dqrr_ptr2idx(const struct qm_dqrr_entry
*e
)
551 return ((uintptr_t)e
>> DQRR_SHIFT
) & (QM_DQRR_SIZE
- 1);
554 static const struct qm_dqrr_entry
*dqrr_inc(const struct qm_dqrr_entry
*e
)
556 return dqrr_carryclear(e
+ 1);
559 static inline void qm_dqrr_set_maxfill(struct qm_portal
*portal
, u8 mf
)
561 qm_out(portal
, QM_REG_CFG
, (qm_in(portal
, QM_REG_CFG
) & 0xff0fffff) |
562 ((mf
& (QM_DQRR_SIZE
- 1)) << 20));
565 static inline int qm_dqrr_init(struct qm_portal
*portal
,
566 const struct qm_portal_config
*config
,
567 enum qm_dqrr_dmode dmode
,
568 enum qm_dqrr_pmode pmode
,
569 enum qm_dqrr_cmode cmode
, u8 max_fill
)
571 struct qm_dqrr
*dqrr
= &portal
->dqrr
;
574 /* Make sure the DQRR will be idle when we enable */
575 qm_out(portal
, QM_REG_DQRR_SDQCR
, 0);
576 qm_out(portal
, QM_REG_DQRR_VDQCR
, 0);
577 qm_out(portal
, QM_REG_DQRR_PDQCR
, 0);
578 dqrr
->ring
= portal
->addr
.ce
+ QM_CL_DQRR
;
579 dqrr
->pi
= qm_in(portal
, QM_REG_DQRR_PI_CINH
) & (QM_DQRR_SIZE
- 1);
580 dqrr
->ci
= qm_in(portal
, QM_REG_DQRR_CI_CINH
) & (QM_DQRR_SIZE
- 1);
581 dqrr
->cursor
= dqrr
->ring
+ dqrr
->ci
;
582 dqrr
->fill
= dpaa_cyc_diff(QM_DQRR_SIZE
, dqrr
->ci
, dqrr
->pi
);
583 dqrr
->vbit
= (qm_in(portal
, QM_REG_DQRR_PI_CINH
) & QM_DQRR_SIZE
) ?
584 QM_DQRR_VERB_VBIT
: 0;
585 dqrr
->ithresh
= qm_in(portal
, QM_REG_DQRR_ITR
);
586 #ifdef CONFIG_FSL_DPAA_CHECKING
591 /* Invalidate every ring entry before beginning */
592 for (cfg
= 0; cfg
< QM_DQRR_SIZE
; cfg
++)
593 dpaa_invalidate(qm_cl(dqrr
->ring
, cfg
));
594 cfg
= (qm_in(portal
, QM_REG_CFG
) & 0xff000f00) |
595 ((max_fill
& (QM_DQRR_SIZE
- 1)) << 20) | /* DQRR_MF */
596 ((dmode
& 1) << 18) | /* DP */
597 ((cmode
& 3) << 16) | /* DCM */
599 (0 ? 0x40 : 0) | /* Ignore RP */
600 (0 ? 0x10 : 0); /* Ignore SP */
601 qm_out(portal
, QM_REG_CFG
, cfg
);
602 qm_dqrr_set_maxfill(portal
, max_fill
);
606 static inline void qm_dqrr_finish(struct qm_portal
*portal
)
608 #ifdef CONFIG_FSL_DPAA_CHECKING
609 struct qm_dqrr
*dqrr
= &portal
->dqrr
;
611 if (dqrr
->cmode
!= qm_dqrr_cdc
&&
612 dqrr
->ci
!= dqrr_ptr2idx(dqrr
->cursor
))
613 pr_crit("Ignoring completed DQRR entries\n");
617 static inline const struct qm_dqrr_entry
*qm_dqrr_current(
618 struct qm_portal
*portal
)
620 struct qm_dqrr
*dqrr
= &portal
->dqrr
;
627 static inline u8
qm_dqrr_next(struct qm_portal
*portal
)
629 struct qm_dqrr
*dqrr
= &portal
->dqrr
;
631 DPAA_ASSERT(dqrr
->fill
);
632 dqrr
->cursor
= dqrr_inc(dqrr
->cursor
);
636 static inline void qm_dqrr_pvb_update(struct qm_portal
*portal
)
638 struct qm_dqrr
*dqrr
= &portal
->dqrr
;
639 struct qm_dqrr_entry
*res
= qm_cl(dqrr
->ring
, dqrr
->pi
);
641 DPAA_ASSERT(dqrr
->pmode
== qm_dqrr_pvb
);
642 #ifndef CONFIG_FSL_PAMU
644 * If PAMU is not available we need to invalidate the cache.
645 * When PAMU is available the cache is updated by stash
647 dpaa_invalidate_touch_ro(res
);
650 * when accessing 'verb', use __raw_readb() to ensure that compiler
651 * inlining doesn't try to optimise out "excess reads".
653 if ((__raw_readb(&res
->verb
) & QM_DQRR_VERB_VBIT
) == dqrr
->vbit
) {
654 dqrr
->pi
= (dqrr
->pi
+ 1) & (QM_DQRR_SIZE
- 1);
656 dqrr
->vbit
^= QM_DQRR_VERB_VBIT
;
661 static inline void qm_dqrr_cdc_consume_1ptr(struct qm_portal
*portal
,
662 const struct qm_dqrr_entry
*dq
,
665 __maybe_unused
struct qm_dqrr
*dqrr
= &portal
->dqrr
;
666 int idx
= dqrr_ptr2idx(dq
);
668 DPAA_ASSERT(dqrr
->cmode
== qm_dqrr_cdc
);
669 DPAA_ASSERT((dqrr
->ring
+ idx
) == dq
);
670 DPAA_ASSERT(idx
< QM_DQRR_SIZE
);
671 qm_out(portal
, QM_REG_DQRR_DCAP
, (0 << 8) | /* DQRR_DCAP::S */
672 ((park
? 1 : 0) << 6) | /* DQRR_DCAP::PK */
673 idx
); /* DQRR_DCAP::DCAP_CI */
676 static inline void qm_dqrr_cdc_consume_n(struct qm_portal
*portal
, u32 bitmask
)
678 __maybe_unused
struct qm_dqrr
*dqrr
= &portal
->dqrr
;
680 DPAA_ASSERT(dqrr
->cmode
== qm_dqrr_cdc
);
681 qm_out(portal
, QM_REG_DQRR_DCAP
, (1 << 8) | /* DQRR_DCAP::S */
682 (bitmask
<< 16)); /* DQRR_DCAP::DCAP_CI */
685 static inline void qm_dqrr_sdqcr_set(struct qm_portal
*portal
, u32 sdqcr
)
687 qm_out(portal
, QM_REG_DQRR_SDQCR
, sdqcr
);
690 static inline void qm_dqrr_vdqcr_set(struct qm_portal
*portal
, u32 vdqcr
)
692 qm_out(portal
, QM_REG_DQRR_VDQCR
, vdqcr
);
695 static inline void qm_dqrr_set_ithresh(struct qm_portal
*portal
, u8 ithresh
)
697 qm_out(portal
, QM_REG_DQRR_ITR
, ithresh
);
702 #define MR_SHIFT ilog2(sizeof(union qm_mr_entry))
703 #define MR_CARRY (uintptr_t)(QM_MR_SIZE << MR_SHIFT)
705 static union qm_mr_entry
*mr_carryclear(union qm_mr_entry
*p
)
707 uintptr_t addr
= (uintptr_t)p
;
711 return (union qm_mr_entry
*)addr
;
714 static inline int mr_ptr2idx(const union qm_mr_entry
*e
)
716 return ((uintptr_t)e
>> MR_SHIFT
) & (QM_MR_SIZE
- 1);
719 static inline union qm_mr_entry
*mr_inc(union qm_mr_entry
*e
)
721 return mr_carryclear(e
+ 1);
724 static inline int qm_mr_init(struct qm_portal
*portal
, enum qm_mr_pmode pmode
,
725 enum qm_mr_cmode cmode
)
727 struct qm_mr
*mr
= &portal
->mr
;
730 mr
->ring
= portal
->addr
.ce
+ QM_CL_MR
;
731 mr
->pi
= qm_in(portal
, QM_REG_MR_PI_CINH
) & (QM_MR_SIZE
- 1);
732 mr
->ci
= qm_in(portal
, QM_REG_MR_CI_CINH
) & (QM_MR_SIZE
- 1);
733 mr
->cursor
= mr
->ring
+ mr
->ci
;
734 mr
->fill
= dpaa_cyc_diff(QM_MR_SIZE
, mr
->ci
, mr
->pi
);
735 mr
->vbit
= (qm_in(portal
, QM_REG_MR_PI_CINH
) & QM_MR_SIZE
)
736 ? QM_MR_VERB_VBIT
: 0;
737 mr
->ithresh
= qm_in(portal
, QM_REG_MR_ITR
);
738 #ifdef CONFIG_FSL_DPAA_CHECKING
742 cfg
= (qm_in(portal
, QM_REG_CFG
) & 0xfffff0ff) |
743 ((cmode
& 1) << 8); /* QCSP_CFG:MM */
744 qm_out(portal
, QM_REG_CFG
, cfg
);
748 static inline void qm_mr_finish(struct qm_portal
*portal
)
750 struct qm_mr
*mr
= &portal
->mr
;
752 if (mr
->ci
!= mr_ptr2idx(mr
->cursor
))
753 pr_crit("Ignoring completed MR entries\n");
756 static inline const union qm_mr_entry
*qm_mr_current(struct qm_portal
*portal
)
758 struct qm_mr
*mr
= &portal
->mr
;
765 static inline int qm_mr_next(struct qm_portal
*portal
)
767 struct qm_mr
*mr
= &portal
->mr
;
769 DPAA_ASSERT(mr
->fill
);
770 mr
->cursor
= mr_inc(mr
->cursor
);
774 static inline void qm_mr_pvb_update(struct qm_portal
*portal
)
776 struct qm_mr
*mr
= &portal
->mr
;
777 union qm_mr_entry
*res
= qm_cl(mr
->ring
, mr
->pi
);
779 DPAA_ASSERT(mr
->pmode
== qm_mr_pvb
);
781 * when accessing 'verb', use __raw_readb() to ensure that compiler
782 * inlining doesn't try to optimise out "excess reads".
784 if ((__raw_readb(&res
->verb
) & QM_MR_VERB_VBIT
) == mr
->vbit
) {
785 mr
->pi
= (mr
->pi
+ 1) & (QM_MR_SIZE
- 1);
787 mr
->vbit
^= QM_MR_VERB_VBIT
;
791 dpaa_invalidate_touch_ro(res
);
794 static inline void qm_mr_cci_consume(struct qm_portal
*portal
, u8 num
)
796 struct qm_mr
*mr
= &portal
->mr
;
798 DPAA_ASSERT(mr
->cmode
== qm_mr_cci
);
799 mr
->ci
= (mr
->ci
+ num
) & (QM_MR_SIZE
- 1);
800 qm_out(portal
, QM_REG_MR_CI_CINH
, mr
->ci
);
803 static inline void qm_mr_cci_consume_to_current(struct qm_portal
*portal
)
805 struct qm_mr
*mr
= &portal
->mr
;
807 DPAA_ASSERT(mr
->cmode
== qm_mr_cci
);
808 mr
->ci
= mr_ptr2idx(mr
->cursor
);
809 qm_out(portal
, QM_REG_MR_CI_CINH
, mr
->ci
);
812 static inline void qm_mr_set_ithresh(struct qm_portal
*portal
, u8 ithresh
)
814 qm_out(portal
, QM_REG_MR_ITR
, ithresh
);
817 /* --- Management command API --- */
819 static inline int qm_mc_init(struct qm_portal
*portal
)
821 struct qm_mc
*mc
= &portal
->mc
;
823 mc
->cr
= portal
->addr
.ce
+ QM_CL_CR
;
824 mc
->rr
= portal
->addr
.ce
+ QM_CL_RR0
;
825 mc
->rridx
= (__raw_readb(&mc
->cr
->_ncw_verb
) & QM_MCC_VERB_VBIT
)
827 mc
->vbit
= mc
->rridx
? QM_MCC_VERB_VBIT
: 0;
828 #ifdef CONFIG_FSL_DPAA_CHECKING
829 mc
->state
= qman_mc_idle
;
834 static inline void qm_mc_finish(struct qm_portal
*portal
)
836 #ifdef CONFIG_FSL_DPAA_CHECKING
837 struct qm_mc
*mc
= &portal
->mc
;
839 DPAA_ASSERT(mc
->state
== qman_mc_idle
);
840 if (mc
->state
!= qman_mc_idle
)
841 pr_crit("Losing incomplete MC command\n");
845 static inline union qm_mc_command
*qm_mc_start(struct qm_portal
*portal
)
847 struct qm_mc
*mc
= &portal
->mc
;
849 DPAA_ASSERT(mc
->state
== qman_mc_idle
);
850 #ifdef CONFIG_FSL_DPAA_CHECKING
851 mc
->state
= qman_mc_user
;
857 static inline void qm_mc_commit(struct qm_portal
*portal
, u8 myverb
)
859 struct qm_mc
*mc
= &portal
->mc
;
860 union qm_mc_result
*rr
= mc
->rr
+ mc
->rridx
;
862 DPAA_ASSERT(mc
->state
== qman_mc_user
);
864 mc
->cr
->_ncw_verb
= myverb
| mc
->vbit
;
866 dpaa_invalidate_touch_ro(rr
);
867 #ifdef CONFIG_FSL_DPAA_CHECKING
868 mc
->state
= qman_mc_hw
;
872 static inline union qm_mc_result
*qm_mc_result(struct qm_portal
*portal
)
874 struct qm_mc
*mc
= &portal
->mc
;
875 union qm_mc_result
*rr
= mc
->rr
+ mc
->rridx
;
877 DPAA_ASSERT(mc
->state
== qman_mc_hw
);
879 * The inactive response register's verb byte always returns zero until
880 * its command is submitted and completed. This includes the valid-bit,
881 * in case you were wondering...
883 if (!__raw_readb(&rr
->verb
)) {
884 dpaa_invalidate_touch_ro(rr
);
888 mc
->vbit
^= QM_MCC_VERB_VBIT
;
889 #ifdef CONFIG_FSL_DPAA_CHECKING
890 mc
->state
= qman_mc_idle
;
895 static inline int qm_mc_result_timeout(struct qm_portal
*portal
,
896 union qm_mc_result
**mcr
)
898 int timeout
= QM_MCR_TIMEOUT
;
901 *mcr
= qm_mc_result(portal
);
910 static inline void fq_set(struct qman_fq
*fq
, u32 mask
)
912 set_bits(mask
, &fq
->flags
);
915 static inline void fq_clear(struct qman_fq
*fq
, u32 mask
)
917 clear_bits(mask
, &fq
->flags
);
920 static inline int fq_isset(struct qman_fq
*fq
, u32 mask
)
922 return fq
->flags
& mask
;
925 static inline int fq_isclear(struct qman_fq
*fq
, u32 mask
)
927 return !(fq
->flags
& mask
);
932 /* PORTAL_BITS_*** - dynamic, strictly internal */
934 /* interrupt sources processed by portal_isr(), configurable */
935 unsigned long irq_sources
;
936 u32 use_eqcr_ci_stashing
;
937 /* only 1 volatile dequeue at a time */
938 struct qman_fq
*vdqcr_owned
;
940 /* probing time config params for cpu-affine portals */
941 const struct qm_portal_config
*config
;
942 /* 2-element array. cgrs[0] is mask, cgrs[1] is snapshot. */
943 struct qman_cgrs
*cgrs
;
944 /* linked-list of CSCN handlers. */
945 struct list_head cgr_cbs
;
948 struct work_struct congestion_work
;
949 struct work_struct mr_work
;
950 char irqname
[MAX_IRQNAME
];
953 static cpumask_t affine_mask
;
954 static DEFINE_SPINLOCK(affine_mask_lock
);
955 static u16 affine_channels
[NR_CPUS
];
956 static DEFINE_PER_CPU(struct qman_portal
, qman_affine_portal
);
957 struct qman_portal
*affine_portals
[NR_CPUS
];
959 static inline struct qman_portal
*get_affine_portal(void)
961 return &get_cpu_var(qman_affine_portal
);
964 static inline void put_affine_portal(void)
966 put_cpu_var(qman_affine_portal
);
969 static struct workqueue_struct
*qm_portal_wq
;
971 int qman_wq_alloc(void)
973 qm_portal_wq
= alloc_workqueue("qman_portal_wq", 0, 1);
980 * This is what everything can wait on, even if it migrates to a different cpu
981 * to the one whose affine portal it is waiting on.
983 static DECLARE_WAIT_QUEUE_HEAD(affine_queue
);
985 static struct qman_fq
**fq_table
;
986 static u32 num_fqids
;
988 int qman_alloc_fq_table(u32 _num_fqids
)
990 num_fqids
= _num_fqids
;
992 fq_table
= vzalloc(num_fqids
* 2 * sizeof(struct qman_fq
*));
996 pr_debug("Allocated fq lookup table at %p, entry count %u\n",
997 fq_table
, num_fqids
* 2);
1001 static struct qman_fq
*idx_to_fq(u32 idx
)
1005 #ifdef CONFIG_FSL_DPAA_CHECKING
1006 if (WARN_ON(idx
>= num_fqids
* 2))
1010 DPAA_ASSERT(!fq
|| idx
== fq
->idx
);
1016 * Only returns full-service fq objects, not enqueue-only
1017 * references (QMAN_FQ_FLAG_NO_MODIFY).
1019 static struct qman_fq
*fqid_to_fq(u32 fqid
)
1021 return idx_to_fq(fqid
* 2);
1024 static struct qman_fq
*tag_to_fq(u32 tag
)
1026 #if BITS_PER_LONG == 64
1027 return idx_to_fq(tag
);
1029 return (struct qman_fq
*)tag
;
1033 static u32
fq_to_tag(struct qman_fq
*fq
)
1035 #if BITS_PER_LONG == 64
1042 static u32
__poll_portal_slow(struct qman_portal
*p
, u32 is
);
1043 static inline unsigned int __poll_portal_fast(struct qman_portal
*p
,
1044 unsigned int poll_limit
);
1045 static void qm_congestion_task(struct work_struct
*work
);
1046 static void qm_mr_process_task(struct work_struct
*work
);
1048 static irqreturn_t
portal_isr(int irq
, void *ptr
)
1050 struct qman_portal
*p
= ptr
;
1052 u32 clear
= QM_DQAVAIL_MASK
| p
->irq_sources
;
1053 u32 is
= qm_in(&p
->p
, QM_REG_ISR
) & p
->irq_sources
;
1058 /* DQRR-handling if it's interrupt-driven */
1059 if (is
& QM_PIRQ_DQRI
)
1060 __poll_portal_fast(p
, QMAN_POLL_LIMIT
);
1061 /* Handling of anything else that's interrupt-driven */
1062 clear
|= __poll_portal_slow(p
, is
);
1063 qm_out(&p
->p
, QM_REG_ISR
, clear
);
1067 static int drain_mr_fqrni(struct qm_portal
*p
)
1069 const union qm_mr_entry
*msg
;
1071 msg
= qm_mr_current(p
);
1074 * if MR was full and h/w had other FQRNI entries to produce, we
1075 * need to allow it time to produce those entries once the
1076 * existing entries are consumed. A worst-case situation
1077 * (fully-loaded system) means h/w sequencers may have to do 3-4
1078 * other things before servicing the portal's MR pump, each of
1079 * which (if slow) may take ~50 qman cycles (which is ~200
1080 * processor cycles). So rounding up and then multiplying this
1081 * worst-case estimate by a factor of 10, just to be
1082 * ultra-paranoid, goes as high as 10,000 cycles. NB, we consume
1083 * one entry at a time, so h/w has an opportunity to produce new
1084 * entries well before the ring has been fully consumed, so
1085 * we're being *really* paranoid here.
1087 u64 now
, then
= jiffies
;
1091 } while ((then
+ 10000) > now
);
1092 msg
= qm_mr_current(p
);
1096 if ((msg
->verb
& QM_MR_VERB_TYPE_MASK
) != QM_MR_VERB_FQRNI
) {
1097 /* We aren't draining anything but FQRNIs */
1098 pr_err("Found verb 0x%x in MR\n", msg
->verb
);
1102 qm_mr_cci_consume(p
, 1);
1106 static int qman_create_portal(struct qman_portal
*portal
,
1107 const struct qm_portal_config
*c
,
1108 const struct qman_cgrs
*cgrs
)
1110 struct qm_portal
*p
;
1116 #ifdef CONFIG_FSL_PAMU
1117 /* PAMU is required for stashing */
1118 portal
->use_eqcr_ci_stashing
= ((qman_ip_rev
>= QMAN_REV30
) ? 1 : 0);
1120 portal
->use_eqcr_ci_stashing
= 0;
1123 * prep the low-level portal struct with the mapped addresses from the
1124 * config, everything that follows depends on it and "config" is more
1127 p
->addr
.ce
= c
->addr_virt
[DPAA_PORTAL_CE
];
1128 p
->addr
.ci
= c
->addr_virt
[DPAA_PORTAL_CI
];
1130 * If CI-stashing is used, the current defaults use a threshold of 3,
1131 * and stash with high-than-DQRR priority.
1133 if (qm_eqcr_init(p
, qm_eqcr_pvb
,
1134 portal
->use_eqcr_ci_stashing
? 3 : 0, 1)) {
1135 dev_err(c
->dev
, "EQCR initialisation failed\n");
1138 if (qm_dqrr_init(p
, c
, qm_dqrr_dpush
, qm_dqrr_pvb
,
1139 qm_dqrr_cdc
, DQRR_MAXFILL
)) {
1140 dev_err(c
->dev
, "DQRR initialisation failed\n");
1143 if (qm_mr_init(p
, qm_mr_pvb
, qm_mr_cci
)) {
1144 dev_err(c
->dev
, "MR initialisation failed\n");
1147 if (qm_mc_init(p
)) {
1148 dev_err(c
->dev
, "MC initialisation failed\n");
1151 /* static interrupt-gating controls */
1152 qm_dqrr_set_ithresh(p
, QMAN_PIRQ_DQRR_ITHRESH
);
1153 qm_mr_set_ithresh(p
, QMAN_PIRQ_MR_ITHRESH
);
1154 qm_out(p
, QM_REG_ITPR
, QMAN_PIRQ_IPERIOD
);
1155 portal
->cgrs
= kmalloc(2 * sizeof(*cgrs
), GFP_KERNEL
);
1158 /* initial snapshot is no-depletion */
1159 qman_cgrs_init(&portal
->cgrs
[1]);
1161 portal
->cgrs
[0] = *cgrs
;
1163 /* if the given mask is NULL, assume all CGRs can be seen */
1164 qman_cgrs_fill(&portal
->cgrs
[0]);
1165 INIT_LIST_HEAD(&portal
->cgr_cbs
);
1166 spin_lock_init(&portal
->cgr_lock
);
1167 INIT_WORK(&portal
->congestion_work
, qm_congestion_task
);
1168 INIT_WORK(&portal
->mr_work
, qm_mr_process_task
);
1170 portal
->sdqcr
= QM_SDQCR_SOURCE_CHANNELS
| QM_SDQCR_COUNT_UPTO3
|
1171 QM_SDQCR_DEDICATED_PRECEDENCE
| QM_SDQCR_TYPE_PRIO_QOS
|
1172 QM_SDQCR_TOKEN_SET(0xab) | QM_SDQCR_CHANNELS_DEDICATED
;
1174 qm_out(p
, QM_REG_ISDR
, isdr
);
1175 portal
->irq_sources
= 0;
1176 qm_out(p
, QM_REG_IER
, 0);
1177 qm_out(p
, QM_REG_ISR
, 0xffffffff);
1178 snprintf(portal
->irqname
, MAX_IRQNAME
, IRQNAME
, c
->cpu
);
1179 if (request_irq(c
->irq
, portal_isr
, 0, portal
->irqname
, portal
)) {
1180 dev_err(c
->dev
, "request_irq() failed\n");
1183 if (c
->cpu
!= -1 && irq_can_set_affinity(c
->irq
) &&
1184 irq_set_affinity(c
->irq
, cpumask_of(c
->cpu
))) {
1185 dev_err(c
->dev
, "irq_set_affinity() failed\n");
1189 /* Need EQCR to be empty before continuing */
1190 isdr
&= ~QM_PIRQ_EQCI
;
1191 qm_out(p
, QM_REG_ISDR
, isdr
);
1192 ret
= qm_eqcr_get_fill(p
);
1194 dev_err(c
->dev
, "EQCR unclean\n");
1195 goto fail_eqcr_empty
;
1197 isdr
&= ~(QM_PIRQ_DQRI
| QM_PIRQ_MRI
);
1198 qm_out(p
, QM_REG_ISDR
, isdr
);
1199 if (qm_dqrr_current(p
)) {
1200 dev_err(c
->dev
, "DQRR unclean\n");
1201 qm_dqrr_cdc_consume_n(p
, 0xffff);
1203 if (qm_mr_current(p
) && drain_mr_fqrni(p
)) {
1204 /* special handling, drain just in case it's a few FQRNIs */
1205 const union qm_mr_entry
*e
= qm_mr_current(p
);
1207 dev_err(c
->dev
, "MR dirty, VB 0x%x, rc 0x%x, addr 0x%llx\n",
1208 e
->verb
, e
->ern
.rc
, qm_fd_addr_get64(&e
->ern
.fd
));
1209 goto fail_dqrr_mr_empty
;
1213 qm_out(p
, QM_REG_ISDR
, 0);
1214 qm_out(p
, QM_REG_IIR
, 0);
1215 /* Write a sane SDQCR */
1216 qm_dqrr_sdqcr_set(p
, portal
->sdqcr
);
1222 free_irq(c
->irq
, portal
);
1224 kfree(portal
->cgrs
);
1237 struct qman_portal
*qman_create_affine_portal(const struct qm_portal_config
*c
,
1238 const struct qman_cgrs
*cgrs
)
1240 struct qman_portal
*portal
;
1243 portal
= &per_cpu(qman_affine_portal
, c
->cpu
);
1244 err
= qman_create_portal(portal
, c
, cgrs
);
1248 spin_lock(&affine_mask_lock
);
1249 cpumask_set_cpu(c
->cpu
, &affine_mask
);
1250 affine_channels
[c
->cpu
] = c
->channel
;
1251 affine_portals
[c
->cpu
] = portal
;
1252 spin_unlock(&affine_mask_lock
);
1257 static void qman_destroy_portal(struct qman_portal
*qm
)
1259 const struct qm_portal_config
*pcfg
;
1261 /* Stop dequeues on the portal */
1262 qm_dqrr_sdqcr_set(&qm
->p
, 0);
1265 * NB we do this to "quiesce" EQCR. If we add enqueue-completions or
1266 * something related to QM_PIRQ_EQCI, this may need fixing.
1267 * Also, due to the prefetching model used for CI updates in the enqueue
1268 * path, this update will only invalidate the CI cacheline *after*
1269 * working on it, so we need to call this twice to ensure a full update
1270 * irrespective of where the enqueue processing was at when the teardown
1273 qm_eqcr_cce_update(&qm
->p
);
1274 qm_eqcr_cce_update(&qm
->p
);
1277 free_irq(pcfg
->irq
, qm
);
1280 qm_mc_finish(&qm
->p
);
1281 qm_mr_finish(&qm
->p
);
1282 qm_dqrr_finish(&qm
->p
);
1283 qm_eqcr_finish(&qm
->p
);
1288 const struct qm_portal_config
*qman_destroy_affine_portal(void)
1290 struct qman_portal
*qm
= get_affine_portal();
1291 const struct qm_portal_config
*pcfg
;
1297 qman_destroy_portal(qm
);
1299 spin_lock(&affine_mask_lock
);
1300 cpumask_clear_cpu(cpu
, &affine_mask
);
1301 spin_unlock(&affine_mask_lock
);
1302 put_affine_portal();
1306 /* Inline helper to reduce nesting in __poll_portal_slow() */
1307 static inline void fq_state_change(struct qman_portal
*p
, struct qman_fq
*fq
,
1308 const union qm_mr_entry
*msg
, u8 verb
)
1311 case QM_MR_VERB_FQRL
:
1312 DPAA_ASSERT(fq_isset(fq
, QMAN_FQ_STATE_ORL
));
1313 fq_clear(fq
, QMAN_FQ_STATE_ORL
);
1315 case QM_MR_VERB_FQRN
:
1316 DPAA_ASSERT(fq
->state
== qman_fq_state_parked
||
1317 fq
->state
== qman_fq_state_sched
);
1318 DPAA_ASSERT(fq_isset(fq
, QMAN_FQ_STATE_CHANGING
));
1319 fq_clear(fq
, QMAN_FQ_STATE_CHANGING
);
1320 if (msg
->fq
.fqs
& QM_MR_FQS_NOTEMPTY
)
1321 fq_set(fq
, QMAN_FQ_STATE_NE
);
1322 if (msg
->fq
.fqs
& QM_MR_FQS_ORLPRESENT
)
1323 fq_set(fq
, QMAN_FQ_STATE_ORL
);
1324 fq
->state
= qman_fq_state_retired
;
1326 case QM_MR_VERB_FQPN
:
1327 DPAA_ASSERT(fq
->state
== qman_fq_state_sched
);
1328 DPAA_ASSERT(fq_isclear(fq
, QMAN_FQ_STATE_CHANGING
));
1329 fq
->state
= qman_fq_state_parked
;
1333 static void qm_congestion_task(struct work_struct
*work
)
1335 struct qman_portal
*p
= container_of(work
, struct qman_portal
,
1337 struct qman_cgrs rr
, c
;
1338 union qm_mc_result
*mcr
;
1339 struct qman_cgr
*cgr
;
1341 spin_lock(&p
->cgr_lock
);
1343 qm_mc_commit(&p
->p
, QM_MCC_VERB_QUERYCONGESTION
);
1344 if (!qm_mc_result_timeout(&p
->p
, &mcr
)) {
1345 spin_unlock(&p
->cgr_lock
);
1346 dev_crit(p
->config
->dev
, "QUERYCONGESTION timeout\n");
1349 /* mask out the ones I'm not interested in */
1350 qman_cgrs_and(&rr
, (struct qman_cgrs
*)&mcr
->querycongestion
.state
,
1352 /* check previous snapshot for delta, enter/exit congestion */
1353 qman_cgrs_xor(&c
, &rr
, &p
->cgrs
[1]);
1354 /* update snapshot */
1355 qman_cgrs_cp(&p
->cgrs
[1], &rr
);
1356 /* Invoke callback */
1357 list_for_each_entry(cgr
, &p
->cgr_cbs
, node
)
1358 if (cgr
->cb
&& qman_cgrs_get(&c
, cgr
->cgrid
))
1359 cgr
->cb(p
, cgr
, qman_cgrs_get(&rr
, cgr
->cgrid
));
1360 spin_unlock(&p
->cgr_lock
);
1363 static void qm_mr_process_task(struct work_struct
*work
)
1365 struct qman_portal
*p
= container_of(work
, struct qman_portal
,
1367 const union qm_mr_entry
*msg
;
1374 qm_mr_pvb_update(&p
->p
);
1375 msg
= qm_mr_current(&p
->p
);
1379 verb
= msg
->verb
& QM_MR_VERB_TYPE_MASK
;
1380 /* The message is a software ERN iff the 0x20 bit is clear */
1383 case QM_MR_VERB_FQRNI
:
1384 /* nada, we drop FQRNIs on the floor */
1386 case QM_MR_VERB_FQRN
:
1387 case QM_MR_VERB_FQRL
:
1388 /* Lookup in the retirement table */
1389 fq
= fqid_to_fq(qm_fqid_get(&msg
->fq
));
1392 fq_state_change(p
, fq
, msg
, verb
);
1394 fq
->cb
.fqs(p
, fq
, msg
);
1396 case QM_MR_VERB_FQPN
:
1398 fq
= tag_to_fq(be32_to_cpu(msg
->fq
.context_b
));
1399 fq_state_change(p
, fq
, msg
, verb
);
1401 fq
->cb
.fqs(p
, fq
, msg
);
1403 case QM_MR_VERB_DC_ERN
:
1405 pr_crit_once("Leaking DCP ERNs!\n");
1408 pr_crit("Invalid MR verb 0x%02x\n", verb
);
1411 /* Its a software ERN */
1412 fq
= tag_to_fq(be32_to_cpu(msg
->ern
.tag
));
1413 fq
->cb
.ern(p
, fq
, msg
);
1419 qm_mr_cci_consume(&p
->p
, num
);
1423 static u32
__poll_portal_slow(struct qman_portal
*p
, u32 is
)
1425 if (is
& QM_PIRQ_CSCI
) {
1426 queue_work_on(smp_processor_id(), qm_portal_wq
,
1427 &p
->congestion_work
);
1430 if (is
& QM_PIRQ_EQRI
) {
1431 qm_eqcr_cce_update(&p
->p
);
1432 qm_eqcr_set_ithresh(&p
->p
, 0);
1433 wake_up(&affine_queue
);
1436 if (is
& QM_PIRQ_MRI
) {
1437 queue_work_on(smp_processor_id(), qm_portal_wq
,
1445 * remove some slowish-path stuff from the "fast path" and make sure it isn't
1448 static noinline
void clear_vdqcr(struct qman_portal
*p
, struct qman_fq
*fq
)
1450 p
->vdqcr_owned
= NULL
;
1451 fq_clear(fq
, QMAN_FQ_STATE_VDQCR
);
1452 wake_up(&affine_queue
);
1456 * The only states that would conflict with other things if they ran at the
1457 * same time on the same cpu are:
1459 * (i) setting/clearing vdqcr_owned, and
1460 * (ii) clearing the NE (Not Empty) flag.
1462 * Both are safe. Because;
1464 * (i) this clearing can only occur after qman_volatile_dequeue() has set the
1465 * vdqcr_owned field (which it does before setting VDQCR), and
1466 * qman_volatile_dequeue() blocks interrupts and preemption while this is
1467 * done so that we can't interfere.
1468 * (ii) the NE flag is only cleared after qman_retire_fq() has set it, and as
1469 * with (i) that API prevents us from interfering until it's safe.
1471 * The good thing is that qman_volatile_dequeue() and qman_retire_fq() run far
1472 * less frequently (ie. per-FQ) than __poll_portal_fast() does, so the nett
1473 * advantage comes from this function not having to "lock" anything at all.
1475 * Note also that the callbacks are invoked at points which are safe against the
1476 * above potential conflicts, but that this function itself is not re-entrant
1477 * (this is because the function tracks one end of each FIFO in the portal and
1478 * we do *not* want to lock that). So the consequence is that it is safe for
1479 * user callbacks to call into any QMan API.
1481 static inline unsigned int __poll_portal_fast(struct qman_portal
*p
,
1482 unsigned int poll_limit
)
1484 const struct qm_dqrr_entry
*dq
;
1486 enum qman_cb_dqrr_result res
;
1487 unsigned int limit
= 0;
1490 qm_dqrr_pvb_update(&p
->p
);
1491 dq
= qm_dqrr_current(&p
->p
);
1495 if (dq
->stat
& QM_DQRR_STAT_UNSCHEDULED
) {
1497 * VDQCR: don't trust context_b as the FQ may have
1498 * been configured for h/w consumption and we're
1499 * draining it post-retirement.
1501 fq
= p
->vdqcr_owned
;
1503 * We only set QMAN_FQ_STATE_NE when retiring, so we
1504 * only need to check for clearing it when doing
1505 * volatile dequeues. It's one less thing to check
1506 * in the critical path (SDQCR).
1508 if (dq
->stat
& QM_DQRR_STAT_FQ_EMPTY
)
1509 fq_clear(fq
, QMAN_FQ_STATE_NE
);
1511 * This is duplicated from the SDQCR code, but we
1512 * have stuff to do before *and* after this callback,
1513 * and we don't want multiple if()s in the critical
1516 res
= fq
->cb
.dqrr(p
, fq
, dq
);
1517 if (res
== qman_cb_dqrr_stop
)
1519 /* Check for VDQCR completion */
1520 if (dq
->stat
& QM_DQRR_STAT_DQCR_EXPIRED
)
1523 /* SDQCR: context_b points to the FQ */
1524 fq
= tag_to_fq(be32_to_cpu(dq
->context_b
));
1525 /* Now let the callback do its stuff */
1526 res
= fq
->cb
.dqrr(p
, fq
, dq
);
1528 * The callback can request that we exit without
1529 * consuming this entry nor advancing;
1531 if (res
== qman_cb_dqrr_stop
)
1534 /* Interpret 'dq' from a driver perspective. */
1536 * Parking isn't possible unless HELDACTIVE was set. NB,
1537 * FORCEELIGIBLE implies HELDACTIVE, so we only need to
1538 * check for HELDACTIVE to cover both.
1540 DPAA_ASSERT((dq
->stat
& QM_DQRR_STAT_FQ_HELDACTIVE
) ||
1541 (res
!= qman_cb_dqrr_park
));
1542 /* just means "skip it, I'll consume it myself later on" */
1543 if (res
!= qman_cb_dqrr_defer
)
1544 qm_dqrr_cdc_consume_1ptr(&p
->p
, dq
,
1545 res
== qman_cb_dqrr_park
);
1547 qm_dqrr_next(&p
->p
);
1549 * Entry processed and consumed, increment our counter. The
1550 * callback can request that we exit after consuming the
1551 * entry, and we also exit if we reach our processing limit,
1552 * so loop back only if neither of these conditions is met.
1554 } while (++limit
< poll_limit
&& res
!= qman_cb_dqrr_consume_stop
);
1559 void qman_p_irqsource_add(struct qman_portal
*p
, u32 bits
)
1561 unsigned long irqflags
;
1563 local_irq_save(irqflags
);
1564 set_bits(bits
& QM_PIRQ_VISIBLE
, &p
->irq_sources
);
1565 qm_out(&p
->p
, QM_REG_IER
, p
->irq_sources
);
1566 local_irq_restore(irqflags
);
1568 EXPORT_SYMBOL(qman_p_irqsource_add
);
1570 void qman_p_irqsource_remove(struct qman_portal
*p
, u32 bits
)
1572 unsigned long irqflags
;
1576 * Our interrupt handler only processes+clears status register bits that
1577 * are in p->irq_sources. As we're trimming that mask, if one of them
1578 * were to assert in the status register just before we remove it from
1579 * the enable register, there would be an interrupt-storm when we
1580 * release the IRQ lock. So we wait for the enable register update to
1581 * take effect in h/w (by reading it back) and then clear all other bits
1582 * in the status register. Ie. we clear them from ISR once it's certain
1583 * IER won't allow them to reassert.
1585 local_irq_save(irqflags
);
1586 bits
&= QM_PIRQ_VISIBLE
;
1587 clear_bits(bits
, &p
->irq_sources
);
1588 qm_out(&p
->p
, QM_REG_IER
, p
->irq_sources
);
1589 ier
= qm_in(&p
->p
, QM_REG_IER
);
1591 * Using "~ier" (rather than "bits" or "~p->irq_sources") creates a
1592 * data-dependency, ie. to protect against re-ordering.
1594 qm_out(&p
->p
, QM_REG_ISR
, ~ier
);
1595 local_irq_restore(irqflags
);
1597 EXPORT_SYMBOL(qman_p_irqsource_remove
);
1599 const cpumask_t
*qman_affine_cpus(void)
1601 return &affine_mask
;
1603 EXPORT_SYMBOL(qman_affine_cpus
);
1605 u16
qman_affine_channel(int cpu
)
1608 struct qman_portal
*portal
= get_affine_portal();
1610 cpu
= portal
->config
->cpu
;
1611 put_affine_portal();
1613 WARN_ON(!cpumask_test_cpu(cpu
, &affine_mask
));
1614 return affine_channels
[cpu
];
1616 EXPORT_SYMBOL(qman_affine_channel
);
1618 struct qman_portal
*qman_get_affine_portal(int cpu
)
1620 return affine_portals
[cpu
];
1622 EXPORT_SYMBOL(qman_get_affine_portal
);
1624 int qman_p_poll_dqrr(struct qman_portal
*p
, unsigned int limit
)
1626 return __poll_portal_fast(p
, limit
);
1628 EXPORT_SYMBOL(qman_p_poll_dqrr
);
1630 void qman_p_static_dequeue_add(struct qman_portal
*p
, u32 pools
)
1632 unsigned long irqflags
;
1634 local_irq_save(irqflags
);
1635 pools
&= p
->config
->pools
;
1637 qm_dqrr_sdqcr_set(&p
->p
, p
->sdqcr
);
1638 local_irq_restore(irqflags
);
1640 EXPORT_SYMBOL(qman_p_static_dequeue_add
);
1642 /* Frame queue API */
1644 static const char *mcr_result_str(u8 result
)
1647 case QM_MCR_RESULT_NULL
:
1648 return "QM_MCR_RESULT_NULL";
1649 case QM_MCR_RESULT_OK
:
1650 return "QM_MCR_RESULT_OK";
1651 case QM_MCR_RESULT_ERR_FQID
:
1652 return "QM_MCR_RESULT_ERR_FQID";
1653 case QM_MCR_RESULT_ERR_FQSTATE
:
1654 return "QM_MCR_RESULT_ERR_FQSTATE";
1655 case QM_MCR_RESULT_ERR_NOTEMPTY
:
1656 return "QM_MCR_RESULT_ERR_NOTEMPTY";
1657 case QM_MCR_RESULT_PENDING
:
1658 return "QM_MCR_RESULT_PENDING";
1659 case QM_MCR_RESULT_ERR_BADCOMMAND
:
1660 return "QM_MCR_RESULT_ERR_BADCOMMAND";
1662 return "<unknown MCR result>";
1665 int qman_create_fq(u32 fqid
, u32 flags
, struct qman_fq
*fq
)
1667 if (flags
& QMAN_FQ_FLAG_DYNAMIC_FQID
) {
1668 int ret
= qman_alloc_fqid(&fqid
);
1675 fq
->state
= qman_fq_state_oos
;
1676 fq
->cgr_groupid
= 0;
1678 /* A context_b of 0 is allegedly special, so don't use that fqid */
1679 if (fqid
== 0 || fqid
>= num_fqids
) {
1680 WARN(1, "bad fqid %d\n", fqid
);
1685 if (flags
& QMAN_FQ_FLAG_NO_MODIFY
)
1688 WARN_ON(fq_table
[fq
->idx
]);
1689 fq_table
[fq
->idx
] = fq
;
1693 EXPORT_SYMBOL(qman_create_fq
);
1695 void qman_destroy_fq(struct qman_fq
*fq
)
1698 * We don't need to lock the FQ as it is a pre-condition that the FQ be
1699 * quiesced. Instead, run some checks.
1701 switch (fq
->state
) {
1702 case qman_fq_state_parked
:
1703 case qman_fq_state_oos
:
1704 if (fq_isset(fq
, QMAN_FQ_FLAG_DYNAMIC_FQID
))
1705 qman_release_fqid(fq
->fqid
);
1707 DPAA_ASSERT(fq_table
[fq
->idx
]);
1708 fq_table
[fq
->idx
] = NULL
;
1713 DPAA_ASSERT(NULL
== "qman_free_fq() on unquiesced FQ!");
1715 EXPORT_SYMBOL(qman_destroy_fq
);
1717 u32
qman_fq_fqid(struct qman_fq
*fq
)
1721 EXPORT_SYMBOL(qman_fq_fqid
);
1723 int qman_init_fq(struct qman_fq
*fq
, u32 flags
, struct qm_mcc_initfq
*opts
)
1725 union qm_mc_command
*mcc
;
1726 union qm_mc_result
*mcr
;
1727 struct qman_portal
*p
;
1731 myverb
= (flags
& QMAN_INITFQ_FLAG_SCHED
)
1732 ? QM_MCC_VERB_INITFQ_SCHED
: QM_MCC_VERB_INITFQ_PARKED
;
1734 if (fq
->state
!= qman_fq_state_oos
&&
1735 fq
->state
!= qman_fq_state_parked
)
1737 #ifdef CONFIG_FSL_DPAA_CHECKING
1738 if (fq_isset(fq
, QMAN_FQ_FLAG_NO_MODIFY
))
1741 if (opts
&& (be16_to_cpu(opts
->we_mask
) & QM_INITFQ_WE_OAC
)) {
1742 /* And can't be set at the same time as TDTHRESH */
1743 if (be16_to_cpu(opts
->we_mask
) & QM_INITFQ_WE_TDTHRESH
)
1746 /* Issue an INITFQ_[PARKED|SCHED] management command */
1747 p
= get_affine_portal();
1748 if (fq_isset(fq
, QMAN_FQ_STATE_CHANGING
) ||
1749 (fq
->state
!= qman_fq_state_oos
&&
1750 fq
->state
!= qman_fq_state_parked
)) {
1754 mcc
= qm_mc_start(&p
->p
);
1756 mcc
->initfq
= *opts
;
1757 qm_fqid_set(&mcc
->fq
, fq
->fqid
);
1758 mcc
->initfq
.count
= 0;
1760 * If the FQ does *not* have the TO_DCPORTAL flag, context_b is set as a
1761 * demux pointer. Otherwise, the caller-provided value is allowed to
1762 * stand, don't overwrite it.
1764 if (fq_isclear(fq
, QMAN_FQ_FLAG_TO_DCPORTAL
)) {
1767 mcc
->initfq
.we_mask
|= cpu_to_be16(QM_INITFQ_WE_CONTEXTB
);
1768 mcc
->initfq
.fqd
.context_b
= cpu_to_be32(fq_to_tag(fq
));
1770 * and the physical address - NB, if the user wasn't trying to
1771 * set CONTEXTA, clear the stashing settings.
1773 if (!(be16_to_cpu(mcc
->initfq
.we_mask
) &
1774 QM_INITFQ_WE_CONTEXTA
)) {
1775 mcc
->initfq
.we_mask
|=
1776 cpu_to_be16(QM_INITFQ_WE_CONTEXTA
);
1777 memset(&mcc
->initfq
.fqd
.context_a
, 0,
1778 sizeof(mcc
->initfq
.fqd
.context_a
));
1780 struct qman_portal
*p
= qman_dma_portal
;
1782 phys_fq
= dma_map_single(p
->config
->dev
, fq
,
1783 sizeof(*fq
), DMA_TO_DEVICE
);
1784 if (dma_mapping_error(p
->config
->dev
, phys_fq
)) {
1785 dev_err(p
->config
->dev
, "dma_mapping failed\n");
1790 qm_fqd_stashing_set64(&mcc
->initfq
.fqd
, phys_fq
);
1793 if (flags
& QMAN_INITFQ_FLAG_LOCAL
) {
1796 if (!(be16_to_cpu(mcc
->initfq
.we_mask
) &
1797 QM_INITFQ_WE_DESTWQ
)) {
1798 mcc
->initfq
.we_mask
|=
1799 cpu_to_be16(QM_INITFQ_WE_DESTWQ
);
1802 qm_fqd_set_destwq(&mcc
->initfq
.fqd
, p
->config
->channel
, wq
);
1804 qm_mc_commit(&p
->p
, myverb
);
1805 if (!qm_mc_result_timeout(&p
->p
, &mcr
)) {
1806 dev_err(p
->config
->dev
, "MCR timeout\n");
1811 DPAA_ASSERT((mcr
->verb
& QM_MCR_VERB_MASK
) == myverb
);
1813 if (res
!= QM_MCR_RESULT_OK
) {
1818 if (be16_to_cpu(opts
->we_mask
) & QM_INITFQ_WE_FQCTRL
) {
1819 if (be16_to_cpu(opts
->fqd
.fq_ctrl
) & QM_FQCTRL_CGE
)
1820 fq_set(fq
, QMAN_FQ_STATE_CGR_EN
);
1822 fq_clear(fq
, QMAN_FQ_STATE_CGR_EN
);
1824 if (be16_to_cpu(opts
->we_mask
) & QM_INITFQ_WE_CGID
)
1825 fq
->cgr_groupid
= opts
->fqd
.cgid
;
1827 fq
->state
= (flags
& QMAN_INITFQ_FLAG_SCHED
) ?
1828 qman_fq_state_sched
: qman_fq_state_parked
;
1831 put_affine_portal();
1834 EXPORT_SYMBOL(qman_init_fq
);
1836 int qman_schedule_fq(struct qman_fq
*fq
)
1838 union qm_mc_command
*mcc
;
1839 union qm_mc_result
*mcr
;
1840 struct qman_portal
*p
;
1843 if (fq
->state
!= qman_fq_state_parked
)
1845 #ifdef CONFIG_FSL_DPAA_CHECKING
1846 if (fq_isset(fq
, QMAN_FQ_FLAG_NO_MODIFY
))
1849 /* Issue a ALTERFQ_SCHED management command */
1850 p
= get_affine_portal();
1851 if (fq_isset(fq
, QMAN_FQ_STATE_CHANGING
) ||
1852 fq
->state
!= qman_fq_state_parked
) {
1856 mcc
= qm_mc_start(&p
->p
);
1857 qm_fqid_set(&mcc
->fq
, fq
->fqid
);
1858 qm_mc_commit(&p
->p
, QM_MCC_VERB_ALTER_SCHED
);
1859 if (!qm_mc_result_timeout(&p
->p
, &mcr
)) {
1860 dev_err(p
->config
->dev
, "ALTER_SCHED timeout\n");
1865 DPAA_ASSERT((mcr
->verb
& QM_MCR_VERB_MASK
) == QM_MCR_VERB_ALTER_SCHED
);
1866 if (mcr
->result
!= QM_MCR_RESULT_OK
) {
1870 fq
->state
= qman_fq_state_sched
;
1872 put_affine_portal();
1875 EXPORT_SYMBOL(qman_schedule_fq
);
1877 int qman_retire_fq(struct qman_fq
*fq
, u32
*flags
)
1879 union qm_mc_command
*mcc
;
1880 union qm_mc_result
*mcr
;
1881 struct qman_portal
*p
;
1885 if (fq
->state
!= qman_fq_state_parked
&&
1886 fq
->state
!= qman_fq_state_sched
)
1888 #ifdef CONFIG_FSL_DPAA_CHECKING
1889 if (fq_isset(fq
, QMAN_FQ_FLAG_NO_MODIFY
))
1892 p
= get_affine_portal();
1893 if (fq_isset(fq
, QMAN_FQ_STATE_CHANGING
) ||
1894 fq
->state
== qman_fq_state_retired
||
1895 fq
->state
== qman_fq_state_oos
) {
1899 mcc
= qm_mc_start(&p
->p
);
1900 qm_fqid_set(&mcc
->fq
, fq
->fqid
);
1901 qm_mc_commit(&p
->p
, QM_MCC_VERB_ALTER_RETIRE
);
1902 if (!qm_mc_result_timeout(&p
->p
, &mcr
)) {
1903 dev_crit(p
->config
->dev
, "ALTER_RETIRE timeout\n");
1908 DPAA_ASSERT((mcr
->verb
& QM_MCR_VERB_MASK
) == QM_MCR_VERB_ALTER_RETIRE
);
1911 * "Elegant" would be to treat OK/PENDING the same way; set CHANGING,
1912 * and defer the flags until FQRNI or FQRN (respectively) show up. But
1913 * "Friendly" is to process OK immediately, and not set CHANGING. We do
1914 * friendly, otherwise the caller doesn't necessarily have a fully
1915 * "retired" FQ on return even if the retirement was immediate. However
1916 * this does mean some code duplication between here and
1917 * fq_state_change().
1919 if (res
== QM_MCR_RESULT_OK
) {
1921 /* Process 'fq' right away, we'll ignore FQRNI */
1922 if (mcr
->alterfq
.fqs
& QM_MCR_FQS_NOTEMPTY
)
1923 fq_set(fq
, QMAN_FQ_STATE_NE
);
1924 if (mcr
->alterfq
.fqs
& QM_MCR_FQS_ORLPRESENT
)
1925 fq_set(fq
, QMAN_FQ_STATE_ORL
);
1928 fq
->state
= qman_fq_state_retired
;
1931 * Another issue with supporting "immediate" retirement
1932 * is that we're forced to drop FQRNIs, because by the
1933 * time they're seen it may already be "too late" (the
1934 * fq may have been OOS'd and free()'d already). But if
1935 * the upper layer wants a callback whether it's
1936 * immediate or not, we have to fake a "MR" entry to
1937 * look like an FQRNI...
1939 union qm_mr_entry msg
;
1941 msg
.verb
= QM_MR_VERB_FQRNI
;
1942 msg
.fq
.fqs
= mcr
->alterfq
.fqs
;
1943 qm_fqid_set(&msg
.fq
, fq
->fqid
);
1944 msg
.fq
.context_b
= cpu_to_be32(fq_to_tag(fq
));
1945 fq
->cb
.fqs(p
, fq
, &msg
);
1947 } else if (res
== QM_MCR_RESULT_PENDING
) {
1949 fq_set(fq
, QMAN_FQ_STATE_CHANGING
);
1954 put_affine_portal();
1957 EXPORT_SYMBOL(qman_retire_fq
);
1959 int qman_oos_fq(struct qman_fq
*fq
)
1961 union qm_mc_command
*mcc
;
1962 union qm_mc_result
*mcr
;
1963 struct qman_portal
*p
;
1966 if (fq
->state
!= qman_fq_state_retired
)
1968 #ifdef CONFIG_FSL_DPAA_CHECKING
1969 if (fq_isset(fq
, QMAN_FQ_FLAG_NO_MODIFY
))
1972 p
= get_affine_portal();
1973 if (fq_isset(fq
, QMAN_FQ_STATE_BLOCKOOS
) ||
1974 fq
->state
!= qman_fq_state_retired
) {
1978 mcc
= qm_mc_start(&p
->p
);
1979 qm_fqid_set(&mcc
->fq
, fq
->fqid
);
1980 qm_mc_commit(&p
->p
, QM_MCC_VERB_ALTER_OOS
);
1981 if (!qm_mc_result_timeout(&p
->p
, &mcr
)) {
1985 DPAA_ASSERT((mcr
->verb
& QM_MCR_VERB_MASK
) == QM_MCR_VERB_ALTER_OOS
);
1986 if (mcr
->result
!= QM_MCR_RESULT_OK
) {
1990 fq
->state
= qman_fq_state_oos
;
1992 put_affine_portal();
1995 EXPORT_SYMBOL(qman_oos_fq
);
1997 int qman_query_fq(struct qman_fq
*fq
, struct qm_fqd
*fqd
)
1999 union qm_mc_command
*mcc
;
2000 union qm_mc_result
*mcr
;
2001 struct qman_portal
*p
= get_affine_portal();
2004 mcc
= qm_mc_start(&p
->p
);
2005 qm_fqid_set(&mcc
->fq
, fq
->fqid
);
2006 qm_mc_commit(&p
->p
, QM_MCC_VERB_QUERYFQ
);
2007 if (!qm_mc_result_timeout(&p
->p
, &mcr
)) {
2012 DPAA_ASSERT((mcr
->verb
& QM_MCR_VERB_MASK
) == QM_MCR_VERB_QUERYFQ
);
2013 if (mcr
->result
== QM_MCR_RESULT_OK
)
2014 *fqd
= mcr
->queryfq
.fqd
;
2018 put_affine_portal();
2022 static int qman_query_fq_np(struct qman_fq
*fq
,
2023 struct qm_mcr_queryfq_np
*np
)
2025 union qm_mc_command
*mcc
;
2026 union qm_mc_result
*mcr
;
2027 struct qman_portal
*p
= get_affine_portal();
2030 mcc
= qm_mc_start(&p
->p
);
2031 qm_fqid_set(&mcc
->fq
, fq
->fqid
);
2032 qm_mc_commit(&p
->p
, QM_MCC_VERB_QUERYFQ_NP
);
2033 if (!qm_mc_result_timeout(&p
->p
, &mcr
)) {
2038 DPAA_ASSERT((mcr
->verb
& QM_MCR_VERB_MASK
) == QM_MCR_VERB_QUERYFQ_NP
);
2039 if (mcr
->result
== QM_MCR_RESULT_OK
)
2040 *np
= mcr
->queryfq_np
;
2041 else if (mcr
->result
== QM_MCR_RESULT_ERR_FQID
)
2046 put_affine_portal();
2050 static int qman_query_cgr(struct qman_cgr
*cgr
,
2051 struct qm_mcr_querycgr
*cgrd
)
2053 union qm_mc_command
*mcc
;
2054 union qm_mc_result
*mcr
;
2055 struct qman_portal
*p
= get_affine_portal();
2058 mcc
= qm_mc_start(&p
->p
);
2059 mcc
->cgr
.cgid
= cgr
->cgrid
;
2060 qm_mc_commit(&p
->p
, QM_MCC_VERB_QUERYCGR
);
2061 if (!qm_mc_result_timeout(&p
->p
, &mcr
)) {
2065 DPAA_ASSERT((mcr
->verb
& QM_MCR_VERB_MASK
) == QM_MCC_VERB_QUERYCGR
);
2066 if (mcr
->result
== QM_MCR_RESULT_OK
)
2067 *cgrd
= mcr
->querycgr
;
2069 dev_err(p
->config
->dev
, "QUERY_CGR failed: %s\n",
2070 mcr_result_str(mcr
->result
));
2074 put_affine_portal();
2078 int qman_query_cgr_congested(struct qman_cgr
*cgr
, bool *result
)
2080 struct qm_mcr_querycgr query_cgr
;
2083 err
= qman_query_cgr(cgr
, &query_cgr
);
2087 *result
= !!query_cgr
.cgr
.cs
;
2090 EXPORT_SYMBOL(qman_query_cgr_congested
);
2092 /* internal function used as a wait_event() expression */
2093 static int set_p_vdqcr(struct qman_portal
*p
, struct qman_fq
*fq
, u32 vdqcr
)
2095 unsigned long irqflags
;
2098 local_irq_save(irqflags
);
2101 if (fq_isset(fq
, QMAN_FQ_STATE_VDQCR
))
2104 fq_set(fq
, QMAN_FQ_STATE_VDQCR
);
2105 p
->vdqcr_owned
= fq
;
2106 qm_dqrr_vdqcr_set(&p
->p
, vdqcr
);
2109 local_irq_restore(irqflags
);
2113 static int set_vdqcr(struct qman_portal
**p
, struct qman_fq
*fq
, u32 vdqcr
)
2117 *p
= get_affine_portal();
2118 ret
= set_p_vdqcr(*p
, fq
, vdqcr
);
2119 put_affine_portal();
2123 static int wait_vdqcr_start(struct qman_portal
**p
, struct qman_fq
*fq
,
2124 u32 vdqcr
, u32 flags
)
2128 if (flags
& QMAN_VOLATILE_FLAG_WAIT_INT
)
2129 ret
= wait_event_interruptible(affine_queue
,
2130 !set_vdqcr(p
, fq
, vdqcr
));
2132 wait_event(affine_queue
, !set_vdqcr(p
, fq
, vdqcr
));
2136 int qman_volatile_dequeue(struct qman_fq
*fq
, u32 flags
, u32 vdqcr
)
2138 struct qman_portal
*p
;
2141 if (fq
->state
!= qman_fq_state_parked
&&
2142 fq
->state
!= qman_fq_state_retired
)
2144 if (vdqcr
& QM_VDQCR_FQID_MASK
)
2146 if (fq_isset(fq
, QMAN_FQ_STATE_VDQCR
))
2148 vdqcr
= (vdqcr
& ~QM_VDQCR_FQID_MASK
) | fq
->fqid
;
2149 if (flags
& QMAN_VOLATILE_FLAG_WAIT
)
2150 ret
= wait_vdqcr_start(&p
, fq
, vdqcr
, flags
);
2152 ret
= set_vdqcr(&p
, fq
, vdqcr
);
2156 if (flags
& QMAN_VOLATILE_FLAG_FINISH
) {
2157 if (flags
& QMAN_VOLATILE_FLAG_WAIT_INT
)
2159 * NB: don't propagate any error - the caller wouldn't
2160 * know whether the VDQCR was issued or not. A signal
2161 * could arrive after returning anyway, so the caller
2162 * can check signal_pending() if that's an issue.
2164 wait_event_interruptible(affine_queue
,
2165 !fq_isset(fq
, QMAN_FQ_STATE_VDQCR
));
2167 wait_event(affine_queue
,
2168 !fq_isset(fq
, QMAN_FQ_STATE_VDQCR
));
2172 EXPORT_SYMBOL(qman_volatile_dequeue
);
2174 static void update_eqcr_ci(struct qman_portal
*p
, u8 avail
)
2177 qm_eqcr_cce_prefetch(&p
->p
);
2179 qm_eqcr_cce_update(&p
->p
);
2182 int qman_enqueue(struct qman_fq
*fq
, const struct qm_fd
*fd
)
2184 struct qman_portal
*p
;
2185 struct qm_eqcr_entry
*eq
;
2186 unsigned long irqflags
;
2189 p
= get_affine_portal();
2190 local_irq_save(irqflags
);
2192 if (p
->use_eqcr_ci_stashing
) {
2194 * The stashing case is easy, only update if we need to in
2195 * order to try and liberate ring entries.
2197 eq
= qm_eqcr_start_stash(&p
->p
);
2200 * The non-stashing case is harder, need to prefetch ahead of
2203 avail
= qm_eqcr_get_avail(&p
->p
);
2205 update_eqcr_ci(p
, avail
);
2206 eq
= qm_eqcr_start_no_stash(&p
->p
);
2212 qm_fqid_set(eq
, fq
->fqid
);
2213 eq
->tag
= cpu_to_be32(fq_to_tag(fq
));
2216 qm_eqcr_pvb_commit(&p
->p
, QM_EQCR_VERB_CMD_ENQUEUE
);
2218 local_irq_restore(irqflags
);
2219 put_affine_portal();
2222 EXPORT_SYMBOL(qman_enqueue
);
2224 static int qm_modify_cgr(struct qman_cgr
*cgr
, u32 flags
,
2225 struct qm_mcc_initcgr
*opts
)
2227 union qm_mc_command
*mcc
;
2228 union qm_mc_result
*mcr
;
2229 struct qman_portal
*p
= get_affine_portal();
2230 u8 verb
= QM_MCC_VERB_MODIFYCGR
;
2233 mcc
= qm_mc_start(&p
->p
);
2235 mcc
->initcgr
= *opts
;
2236 mcc
->initcgr
.cgid
= cgr
->cgrid
;
2237 if (flags
& QMAN_CGR_FLAG_USE_INIT
)
2238 verb
= QM_MCC_VERB_INITCGR
;
2239 qm_mc_commit(&p
->p
, verb
);
2240 if (!qm_mc_result_timeout(&p
->p
, &mcr
)) {
2245 DPAA_ASSERT((mcr
->verb
& QM_MCR_VERB_MASK
) == verb
);
2246 if (mcr
->result
!= QM_MCR_RESULT_OK
)
2250 put_affine_portal();
2254 #define PORTAL_IDX(n) (n->config->channel - QM_CHANNEL_SWPORTAL0)
2256 /* congestion state change notification target update control */
2257 static void qm_cgr_cscn_targ_set(struct __qm_mc_cgr
*cgr
, int pi
, u32 val
)
2259 if (qman_ip_rev
>= QMAN_REV30
)
2260 cgr
->cscn_targ_upd_ctrl
= cpu_to_be16(pi
|
2261 QM_CGR_TARG_UDP_CTRL_WRITE_BIT
);
2263 cgr
->cscn_targ
= cpu_to_be32(val
| QM_CGR_TARG_PORTAL(pi
));
2266 static void qm_cgr_cscn_targ_clear(struct __qm_mc_cgr
*cgr
, int pi
, u32 val
)
2268 if (qman_ip_rev
>= QMAN_REV30
)
2269 cgr
->cscn_targ_upd_ctrl
= cpu_to_be16(pi
);
2271 cgr
->cscn_targ
= cpu_to_be32(val
& ~QM_CGR_TARG_PORTAL(pi
));
2274 static u8 qman_cgr_cpus
[CGR_NUM
];
2276 void qman_init_cgr_all(void)
2278 struct qman_cgr cgr
;
2281 for (cgr
.cgrid
= 0; cgr
.cgrid
< CGR_NUM
; cgr
.cgrid
++) {
2282 if (qm_modify_cgr(&cgr
, QMAN_CGR_FLAG_USE_INIT
, NULL
))
2287 pr_err("Warning: %d error%s while initialising CGR h/w\n",
2288 err_cnt
, (err_cnt
> 1) ? "s" : "");
2291 int qman_create_cgr(struct qman_cgr
*cgr
, u32 flags
,
2292 struct qm_mcc_initcgr
*opts
)
2294 struct qm_mcr_querycgr cgr_state
;
2296 struct qman_portal
*p
;
2299 * We have to check that the provided CGRID is within the limits of the
2300 * data-structures, for obvious reasons. However we'll let h/w take
2301 * care of determining whether it's within the limits of what exists on
2304 if (cgr
->cgrid
>= CGR_NUM
)
2308 p
= get_affine_portal();
2309 qman_cgr_cpus
[cgr
->cgrid
] = smp_processor_id();
2312 cgr
->chan
= p
->config
->channel
;
2313 spin_lock(&p
->cgr_lock
);
2316 struct qm_mcc_initcgr local_opts
= *opts
;
2318 ret
= qman_query_cgr(cgr
, &cgr_state
);
2322 qm_cgr_cscn_targ_set(&local_opts
.cgr
, PORTAL_IDX(p
),
2323 be32_to_cpu(cgr_state
.cgr
.cscn_targ
));
2324 local_opts
.we_mask
|= cpu_to_be16(QM_CGR_WE_CSCN_TARG
);
2326 /* send init if flags indicate so */
2327 if (flags
& QMAN_CGR_FLAG_USE_INIT
)
2328 ret
= qm_modify_cgr(cgr
, QMAN_CGR_FLAG_USE_INIT
,
2331 ret
= qm_modify_cgr(cgr
, 0, &local_opts
);
2336 list_add(&cgr
->node
, &p
->cgr_cbs
);
2338 /* Determine if newly added object requires its callback to be called */
2339 ret
= qman_query_cgr(cgr
, &cgr_state
);
2341 /* we can't go back, so proceed and return success */
2342 dev_err(p
->config
->dev
, "CGR HW state partially modified\n");
2346 if (cgr
->cb
&& cgr_state
.cgr
.cscn_en
&&
2347 qman_cgrs_get(&p
->cgrs
[1], cgr
->cgrid
))
2350 spin_unlock(&p
->cgr_lock
);
2351 put_affine_portal();
2354 EXPORT_SYMBOL(qman_create_cgr
);
2356 int qman_delete_cgr(struct qman_cgr
*cgr
)
2358 unsigned long irqflags
;
2359 struct qm_mcr_querycgr cgr_state
;
2360 struct qm_mcc_initcgr local_opts
;
2363 struct qman_portal
*p
= get_affine_portal();
2365 if (cgr
->chan
!= p
->config
->channel
) {
2366 /* attempt to delete from other portal than creator */
2367 dev_err(p
->config
->dev
, "CGR not owned by current portal");
2368 dev_dbg(p
->config
->dev
, " create 0x%x, delete 0x%x\n",
2369 cgr
->chan
, p
->config
->channel
);
2374 memset(&local_opts
, 0, sizeof(struct qm_mcc_initcgr
));
2375 spin_lock_irqsave(&p
->cgr_lock
, irqflags
);
2376 list_del(&cgr
->node
);
2378 * If there are no other CGR objects for this CGRID in the list,
2379 * update CSCN_TARG accordingly
2381 list_for_each_entry(i
, &p
->cgr_cbs
, node
)
2382 if (i
->cgrid
== cgr
->cgrid
&& i
->cb
)
2384 ret
= qman_query_cgr(cgr
, &cgr_state
);
2386 /* add back to the list */
2387 list_add(&cgr
->node
, &p
->cgr_cbs
);
2391 local_opts
.we_mask
= cpu_to_be16(QM_CGR_WE_CSCN_TARG
);
2392 qm_cgr_cscn_targ_clear(&local_opts
.cgr
, PORTAL_IDX(p
),
2393 be32_to_cpu(cgr_state
.cgr
.cscn_targ
));
2395 ret
= qm_modify_cgr(cgr
, 0, &local_opts
);
2397 /* add back to the list */
2398 list_add(&cgr
->node
, &p
->cgr_cbs
);
2400 spin_unlock_irqrestore(&p
->cgr_lock
, irqflags
);
2402 put_affine_portal();
2405 EXPORT_SYMBOL(qman_delete_cgr
);
2408 struct qman_cgr
*cgr
;
2409 struct completion completion
;
2412 static int qman_delete_cgr_thread(void *p
)
2414 struct cgr_comp
*cgr_comp
= (struct cgr_comp
*)p
;
2417 ret
= qman_delete_cgr(cgr_comp
->cgr
);
2418 complete(&cgr_comp
->completion
);
2423 void qman_delete_cgr_safe(struct qman_cgr
*cgr
)
2425 struct task_struct
*thread
;
2426 struct cgr_comp cgr_comp
;
2429 if (qman_cgr_cpus
[cgr
->cgrid
] != smp_processor_id()) {
2430 init_completion(&cgr_comp
.completion
);
2432 thread
= kthread_create(qman_delete_cgr_thread
, &cgr_comp
,
2438 kthread_bind(thread
, qman_cgr_cpus
[cgr
->cgrid
]);
2439 wake_up_process(thread
);
2440 wait_for_completion(&cgr_comp
.completion
);
2445 qman_delete_cgr(cgr
);
2448 EXPORT_SYMBOL(qman_delete_cgr_safe
);
2452 static int _qm_mr_consume_and_match_verb(struct qm_portal
*p
, int v
)
2454 const union qm_mr_entry
*msg
;
2457 qm_mr_pvb_update(p
);
2458 msg
= qm_mr_current(p
);
2460 if ((msg
->verb
& QM_MR_VERB_TYPE_MASK
) == v
)
2463 qm_mr_cci_consume_to_current(p
);
2464 qm_mr_pvb_update(p
);
2465 msg
= qm_mr_current(p
);
2470 static int _qm_dqrr_consume_and_match(struct qm_portal
*p
, u32 fqid
, int s
,
2473 const struct qm_dqrr_entry
*dqrr
;
2477 qm_dqrr_pvb_update(p
);
2478 dqrr
= qm_dqrr_current(p
);
2481 } while (wait
&& !dqrr
);
2484 if (qm_fqid_get(dqrr
) == fqid
&& (dqrr
->stat
& s
))
2486 qm_dqrr_cdc_consume_1ptr(p
, dqrr
, 0);
2487 qm_dqrr_pvb_update(p
);
2489 dqrr
= qm_dqrr_current(p
);
2494 #define qm_mr_drain(p, V) \
2495 _qm_mr_consume_and_match_verb(p, QM_MR_VERB_##V)
2497 #define qm_dqrr_drain(p, f, S) \
2498 _qm_dqrr_consume_and_match(p, f, QM_DQRR_STAT_##S, false)
2500 #define qm_dqrr_drain_wait(p, f, S) \
2501 _qm_dqrr_consume_and_match(p, f, QM_DQRR_STAT_##S, true)
2503 #define qm_dqrr_drain_nomatch(p) \
2504 _qm_dqrr_consume_and_match(p, 0, 0, false)
2506 static int qman_shutdown_fq(u32 fqid
)
2508 struct qman_portal
*p
;
2510 union qm_mc_command
*mcc
;
2511 union qm_mc_result
*mcr
;
2512 int orl_empty
, drain
= 0, ret
= 0;
2513 u32 channel
, wq
, res
;
2516 p
= get_affine_portal();
2517 dev
= p
->config
->dev
;
2518 /* Determine the state of the FQID */
2519 mcc
= qm_mc_start(&p
->p
);
2520 qm_fqid_set(&mcc
->fq
, fqid
);
2521 qm_mc_commit(&p
->p
, QM_MCC_VERB_QUERYFQ_NP
);
2522 if (!qm_mc_result_timeout(&p
->p
, &mcr
)) {
2523 dev_err(dev
, "QUERYFQ_NP timeout\n");
2528 DPAA_ASSERT((mcr
->verb
& QM_MCR_VERB_MASK
) == QM_MCR_VERB_QUERYFQ_NP
);
2529 state
= mcr
->queryfq_np
.state
& QM_MCR_NP_STATE_MASK
;
2530 if (state
== QM_MCR_NP_STATE_OOS
)
2531 goto out
; /* Already OOS, no need to do anymore checks */
2533 /* Query which channel the FQ is using */
2534 mcc
= qm_mc_start(&p
->p
);
2535 qm_fqid_set(&mcc
->fq
, fqid
);
2536 qm_mc_commit(&p
->p
, QM_MCC_VERB_QUERYFQ
);
2537 if (!qm_mc_result_timeout(&p
->p
, &mcr
)) {
2538 dev_err(dev
, "QUERYFQ timeout\n");
2543 DPAA_ASSERT((mcr
->verb
& QM_MCR_VERB_MASK
) == QM_MCR_VERB_QUERYFQ
);
2544 /* Need to store these since the MCR gets reused */
2545 channel
= qm_fqd_get_chan(&mcr
->queryfq
.fqd
);
2546 wq
= qm_fqd_get_wq(&mcr
->queryfq
.fqd
);
2549 case QM_MCR_NP_STATE_TEN_SCHED
:
2550 case QM_MCR_NP_STATE_TRU_SCHED
:
2551 case QM_MCR_NP_STATE_ACTIVE
:
2552 case QM_MCR_NP_STATE_PARKED
:
2554 mcc
= qm_mc_start(&p
->p
);
2555 qm_fqid_set(&mcc
->fq
, fqid
);
2556 qm_mc_commit(&p
->p
, QM_MCC_VERB_ALTER_RETIRE
);
2557 if (!qm_mc_result_timeout(&p
->p
, &mcr
)) {
2558 dev_err(dev
, "QUERYFQ_NP timeout\n");
2562 DPAA_ASSERT((mcr
->verb
& QM_MCR_VERB_MASK
) ==
2563 QM_MCR_VERB_ALTER_RETIRE
);
2564 res
= mcr
->result
; /* Make a copy as we reuse MCR below */
2566 if (res
== QM_MCR_RESULT_PENDING
) {
2568 * Need to wait for the FQRN in the message ring, which
2569 * will only occur once the FQ has been drained. In
2570 * order for the FQ to drain the portal needs to be set
2571 * to dequeue from the channel the FQ is scheduled on
2576 /* Flag that we need to drain FQ */
2579 if (channel
>= qm_channel_pool1
&&
2580 channel
< qm_channel_pool1
+ 15) {
2581 /* Pool channel, enable the bit in the portal */
2582 dequeue_wq
= (channel
-
2583 qm_channel_pool1
+ 1)<<4 | wq
;
2584 } else if (channel
< qm_channel_pool1
) {
2585 /* Dedicated channel */
2588 dev_err(dev
, "Can't recover FQ 0x%x, ch: 0x%x",
2593 /* Set the sdqcr to drain this channel */
2594 if (channel
< qm_channel_pool1
)
2595 qm_dqrr_sdqcr_set(&p
->p
,
2596 QM_SDQCR_TYPE_ACTIVE
|
2597 QM_SDQCR_CHANNELS_DEDICATED
);
2599 qm_dqrr_sdqcr_set(&p
->p
,
2600 QM_SDQCR_TYPE_ACTIVE
|
2601 QM_SDQCR_CHANNELS_POOL_CONV
2604 /* Keep draining DQRR while checking the MR*/
2605 qm_dqrr_drain_nomatch(&p
->p
);
2606 /* Process message ring too */
2607 found_fqrn
= qm_mr_drain(&p
->p
, FQRN
);
2609 } while (!found_fqrn
);
2612 if (res
!= QM_MCR_RESULT_OK
&&
2613 res
!= QM_MCR_RESULT_PENDING
) {
2614 dev_err(dev
, "retire_fq failed: FQ 0x%x, res=0x%x\n",
2619 if (!(mcr
->alterfq
.fqs
& QM_MCR_FQS_ORLPRESENT
)) {
2621 * ORL had no entries, no need to wait until the
2627 * Retirement succeeded, check to see if FQ needs
2630 if (drain
|| mcr
->alterfq
.fqs
& QM_MCR_FQS_NOTEMPTY
) {
2631 /* FQ is Not Empty, drain using volatile DQ commands */
2633 u32 vdqcr
= fqid
| QM_VDQCR_NUMFRAMES_SET(3);
2635 qm_dqrr_vdqcr_set(&p
->p
, vdqcr
);
2637 * Wait for a dequeue and process the dequeues,
2638 * making sure to empty the ring completely
2640 } while (qm_dqrr_drain_wait(&p
->p
, fqid
, FQ_EMPTY
));
2642 qm_dqrr_sdqcr_set(&p
->p
, 0);
2644 while (!orl_empty
) {
2645 /* Wait for the ORL to have been completely drained */
2646 orl_empty
= qm_mr_drain(&p
->p
, FQRL
);
2649 mcc
= qm_mc_start(&p
->p
);
2650 qm_fqid_set(&mcc
->fq
, fqid
);
2651 qm_mc_commit(&p
->p
, QM_MCC_VERB_ALTER_OOS
);
2652 if (!qm_mc_result_timeout(&p
->p
, &mcr
)) {
2657 DPAA_ASSERT((mcr
->verb
& QM_MCR_VERB_MASK
) ==
2658 QM_MCR_VERB_ALTER_OOS
);
2659 if (mcr
->result
!= QM_MCR_RESULT_OK
) {
2660 dev_err(dev
, "OOS after drain fail: FQ 0x%x (0x%x)\n",
2667 case QM_MCR_NP_STATE_RETIRED
:
2668 /* Send OOS Command */
2669 mcc
= qm_mc_start(&p
->p
);
2670 qm_fqid_set(&mcc
->fq
, fqid
);
2671 qm_mc_commit(&p
->p
, QM_MCC_VERB_ALTER_OOS
);
2672 if (!qm_mc_result_timeout(&p
->p
, &mcr
)) {
2677 DPAA_ASSERT((mcr
->verb
& QM_MCR_VERB_MASK
) ==
2678 QM_MCR_VERB_ALTER_OOS
);
2680 dev_err(dev
, "OOS fail: FQ 0x%x (0x%x)\n",
2687 case QM_MCR_NP_STATE_OOS
:
2696 put_affine_portal();
2700 const struct qm_portal_config
*qman_get_qm_portal_config(
2701 struct qman_portal
*portal
)
2703 return portal
->config
;
2705 EXPORT_SYMBOL(qman_get_qm_portal_config
);
2707 struct gen_pool
*qm_fqalloc
; /* FQID allocator */
2708 struct gen_pool
*qm_qpalloc
; /* pool-channel allocator */
2709 struct gen_pool
*qm_cgralloc
; /* CGR ID allocator */
2711 static int qman_alloc_range(struct gen_pool
*p
, u32
*result
, u32 cnt
)
2715 addr
= gen_pool_alloc(p
, cnt
);
2719 *result
= addr
& ~DPAA_GENALLOC_OFF
;
2724 int qman_alloc_fqid_range(u32
*result
, u32 count
)
2726 return qman_alloc_range(qm_fqalloc
, result
, count
);
2728 EXPORT_SYMBOL(qman_alloc_fqid_range
);
2730 int qman_alloc_pool_range(u32
*result
, u32 count
)
2732 return qman_alloc_range(qm_qpalloc
, result
, count
);
2734 EXPORT_SYMBOL(qman_alloc_pool_range
);
2736 int qman_alloc_cgrid_range(u32
*result
, u32 count
)
2738 return qman_alloc_range(qm_cgralloc
, result
, count
);
2740 EXPORT_SYMBOL(qman_alloc_cgrid_range
);
2742 int qman_release_fqid(u32 fqid
)
2744 int ret
= qman_shutdown_fq(fqid
);
2747 pr_debug("FQID %d leaked\n", fqid
);
2751 gen_pool_free(qm_fqalloc
, fqid
| DPAA_GENALLOC_OFF
, 1);
2754 EXPORT_SYMBOL(qman_release_fqid
);
2756 static int qpool_cleanup(u32 qp
)
2759 * We query all FQDs starting from
2760 * FQID 1 until we get an "invalid FQID" error, looking for non-OOS FQDs
2761 * whose destination channel is the pool-channel being released.
2762 * When a non-OOS FQD is found we attempt to clean it up
2764 struct qman_fq fq
= {
2765 .fqid
= QM_FQID_RANGE_START
2770 struct qm_mcr_queryfq_np np
;
2772 err
= qman_query_fq_np(&fq
, &np
);
2774 /* FQID range exceeded, found no problems */
2776 else if (WARN_ON(err
))
2779 if ((np
.state
& QM_MCR_NP_STATE_MASK
) != QM_MCR_NP_STATE_OOS
) {
2782 err
= qman_query_fq(&fq
, &fqd
);
2785 if (qm_fqd_get_chan(&fqd
) == qp
) {
2786 /* The channel is the FQ's target, clean it */
2787 err
= qman_shutdown_fq(fq
.fqid
);
2790 * Couldn't shut down the FQ
2791 * so the pool must be leaked
2796 /* Move to the next FQID */
2801 int qman_release_pool(u32 qp
)
2805 ret
= qpool_cleanup(qp
);
2807 pr_debug("CHID %d leaked\n", qp
);
2811 gen_pool_free(qm_qpalloc
, qp
| DPAA_GENALLOC_OFF
, 1);
2814 EXPORT_SYMBOL(qman_release_pool
);
2816 static int cgr_cleanup(u32 cgrid
)
2819 * query all FQDs starting from FQID 1 until we get an "invalid FQID"
2820 * error, looking for non-OOS FQDs whose CGR is the CGR being released
2822 struct qman_fq fq
= {
2823 .fqid
= QM_FQID_RANGE_START
2828 struct qm_mcr_queryfq_np np
;
2830 err
= qman_query_fq_np(&fq
, &np
);
2832 /* FQID range exceeded, found no problems */
2834 else if (WARN_ON(err
))
2837 if ((np
.state
& QM_MCR_NP_STATE_MASK
) != QM_MCR_NP_STATE_OOS
) {
2840 err
= qman_query_fq(&fq
, &fqd
);
2843 if (be16_to_cpu(fqd
.fq_ctrl
) & QM_FQCTRL_CGE
&&
2844 fqd
.cgid
== cgrid
) {
2845 pr_err("CRGID 0x%x is being used by FQID 0x%x, CGR will be leaked\n",
2850 /* Move to the next FQID */
2855 int qman_release_cgrid(u32 cgrid
)
2859 ret
= cgr_cleanup(cgrid
);
2861 pr_debug("CGRID %d leaked\n", cgrid
);
2865 gen_pool_free(qm_cgralloc
, cgrid
| DPAA_GENALLOC_OFF
, 1);
2868 EXPORT_SYMBOL(qman_release_cgrid
);