f360760be33fea536cc2a52a14008c3cb845725b
[dpdk.git] / drivers / bus / fslmc / qbman / qbman_portal.c
1 /*-
2  *   BSD LICENSE
3  *
4  * Copyright (C) 2014-2016 Freescale Semiconductor, Inc.
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions are met:
8  *     * Redistributions of source code must retain the above copyright
9  *       notice, this list of conditions and the following disclaimer.
10  *     * Redistributions in binary form must reproduce the above copyright
11  *       notice, this list of conditions and the following disclaimer in the
12  *       documentation and/or other materials provided with the distribution.
13  *     * Neither the name of Freescale Semiconductor nor the
14  *       names of its contributors may be used to endorse or promote products
15  *       derived from this software without specific prior written permission.
16  *
17  * THIS SOFTWARE IS PROVIDED BY Freescale Semiconductor ``AS IS'' AND ANY
18  * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
19  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
20  * DISCLAIMED. IN NO EVENT SHALL Freescale Semiconductor BE LIABLE FOR ANY
21  * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
22  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
23  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
24  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
26  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27  */
28
29 #include "qbman_portal.h"
30
31 /* QBMan portal management command codes */
32 #define QBMAN_MC_ACQUIRE       0x30
33 #define QBMAN_WQCHAN_CONFIGURE 0x46
34
35 /* CINH register offsets */
36 #define QBMAN_CINH_SWP_EQCR_PI 0x800
37 #define QBMAN_CINH_SWP_EQCR_CI 0x840
38 #define QBMAN_CINH_SWP_EQAR    0x8c0
39 #define QBMAN_CINH_SWP_DQPI    0xa00
40 #define QBMAN_CINH_SWP_DCAP    0xac0
41 #define QBMAN_CINH_SWP_SDQCR   0xb00
42 #define QBMAN_CINH_SWP_RAR     0xcc0
43 #define QBMAN_CINH_SWP_ISR     0xe00
44 #define QBMAN_CINH_SWP_IER     0xe40
45 #define QBMAN_CINH_SWP_ISDR    0xe80
46 #define QBMAN_CINH_SWP_IIR     0xec0
47 #define QBMAN_CINH_SWP_DQRR_ITR    0xa80
48 #define QBMAN_CINH_SWP_ITPR    0xf40
49
50 /* CENA register offsets */
51 #define QBMAN_CENA_SWP_EQCR(n) (0x000 + ((uint32_t)(n) << 6))
52 #define QBMAN_CENA_SWP_DQRR(n) (0x200 + ((uint32_t)(n) << 6))
53 #define QBMAN_CENA_SWP_RCR(n)  (0x400 + ((uint32_t)(n) << 6))
54 #define QBMAN_CENA_SWP_CR      0x600
55 #define QBMAN_CENA_SWP_RR(vb)  (0x700 + ((uint32_t)(vb) >> 1))
56 #define QBMAN_CENA_SWP_VDQCR   0x780
57 #define QBMAN_CENA_SWP_EQCR_CI 0x840
58
59 /* Reverse mapping of QBMAN_CENA_SWP_DQRR() */
60 #define QBMAN_IDX_FROM_DQRR(p) (((unsigned long)p & 0x1ff) >> 6)
61
62 /* QBMan FQ management command codes */
63 #define QBMAN_FQ_SCHEDULE       0x48
64 #define QBMAN_FQ_FORCE          0x49
65 #define QBMAN_FQ_XON            0x4d
66 #define QBMAN_FQ_XOFF           0x4e
67
68 /*******************************/
69 /* Pre-defined attribute codes */
70 /*******************************/
71
72 struct qb_attr_code code_generic_verb = QB_CODE(0, 0, 7);
73 struct qb_attr_code code_generic_rslt = QB_CODE(0, 8, 8);
74
75 /*************************/
76 /* SDQCR attribute codes */
77 /*************************/
78
79 /* we put these here because at least some of them are required by
80  * qbman_swp_init()
81  */
82 struct qb_attr_code code_sdqcr_dct = QB_CODE(0, 24, 2);
83 struct qb_attr_code code_sdqcr_fc = QB_CODE(0, 29, 1);
84 struct qb_attr_code code_sdqcr_tok = QB_CODE(0, 16, 8);
85 static struct qb_attr_code code_eq_dca_idx;
86 #define CODE_SDQCR_DQSRC(n) QB_CODE(0, n, 1)
87 enum qbman_sdqcr_dct {
88         qbman_sdqcr_dct_null = 0,
89         qbman_sdqcr_dct_prio_ics,
90         qbman_sdqcr_dct_active_ics,
91         qbman_sdqcr_dct_active
92 };
93
94 enum qbman_sdqcr_fc {
95         qbman_sdqcr_fc_one = 0,
96         qbman_sdqcr_fc_up_to_3 = 1
97 };
98
99 struct qb_attr_code code_sdqcr_dqsrc = QB_CODE(0, 0, 16);
100
101 /* We need to keep track of which SWP triggered a pull command
102  * so keep an array of portal IDs and use the token field to
103  * be able to find the proper portal
104  */
105 #define MAX_QBMAN_PORTALS  35
106 static struct qbman_swp *portal_idx_map[MAX_QBMAN_PORTALS];
107
108 uint32_t qman_version;
109
110 /*********************************/
111 /* Portal constructor/destructor */
112 /*********************************/
113
114 /* Software portals should always be in the power-on state when we initialise,
115  * due to the CCSR-based portal reset functionality that MC has.
116  *
117  * Erk! Turns out that QMan versions prior to 4.1 do not correctly reset DQRR
118  * valid-bits, so we need to support a workaround where we don't trust
119  * valid-bits when detecting new entries until any stale ring entries have been
120  * overwritten at least once. The idea is that we read PI for the first few
121  * entries, then switch to valid-bit after that. The trick is to clear the
122  * bug-work-around boolean once the PI wraps around the ring for the first time.
123  *
124  * Note: this still carries a slight additional cost once the decrementer hits
125  * zero.
126  */
127 struct qbman_swp *qbman_swp_init(const struct qbman_swp_desc *d)
128 {
129         int ret;
130         uint32_t eqcr_pi;
131         struct qbman_swp *p = kmalloc(sizeof(*p), GFP_KERNEL);
132
133         if (!p)
134                 return NULL;
135         p->desc = *d;
136 #ifdef QBMAN_CHECKING
137         p->mc.check = swp_mc_can_start;
138 #endif
139         p->mc.valid_bit = QB_VALID_BIT;
140         p->sdq = 0;
141         qb_attr_code_encode(&code_sdqcr_dct, &p->sdq, qbman_sdqcr_dct_prio_ics);
142         qb_attr_code_encode(&code_sdqcr_fc, &p->sdq, qbman_sdqcr_fc_up_to_3);
143         qb_attr_code_encode(&code_sdqcr_tok, &p->sdq, 0xbb);
144         atomic_set(&p->vdq.busy, 1);
145         p->vdq.valid_bit = QB_VALID_BIT;
146         p->dqrr.next_idx = 0;
147         p->dqrr.valid_bit = QB_VALID_BIT;
148         qman_version = p->desc.qman_version;
149         if ((qman_version & 0xFFFF0000) < QMAN_REV_4100) {
150                 p->dqrr.dqrr_size = 4;
151                 p->dqrr.reset_bug = 1;
152                 /* Set size of DQRR to 4, encoded in 2 bits */
153                 code_eq_dca_idx = (struct qb_attr_code)QB_CODE(0, 8, 2);
154         } else {
155                 p->dqrr.dqrr_size = 8;
156                 p->dqrr.reset_bug = 0;
157                 /* Set size of DQRR to 8, encoded in 3 bits */
158                 code_eq_dca_idx = (struct qb_attr_code)QB_CODE(0, 8, 3);
159         }
160
161         ret = qbman_swp_sys_init(&p->sys, d, p->dqrr.dqrr_size);
162         if (ret) {
163                 kfree(p);
164                 pr_err("qbman_swp_sys_init() failed %d\n", ret);
165                 return NULL;
166         }
167         /* SDQCR needs to be initialized to 0 when no channels are
168          * being dequeued from or else the QMan HW will indicate an
169          * error.  The values that were calculated above will be
170          * applied when dequeues from a specific channel are enabled
171          */
172         qbman_cinh_write(&p->sys, QBMAN_CINH_SWP_SDQCR, 0);
173         eqcr_pi = qbman_cinh_read(&p->sys, QBMAN_CINH_SWP_EQCR_PI);
174         p->eqcr.pi = eqcr_pi & 0xF;
175         p->eqcr.pi_vb = eqcr_pi & QB_VALID_BIT;
176         p->eqcr.ci = qbman_cinh_read(&p->sys, QBMAN_CINH_SWP_EQCR_CI) & 0xF;
177         p->eqcr.available = QBMAN_EQCR_SIZE - qm_cyc_diff(QBMAN_EQCR_SIZE,
178                                                 p->eqcr.ci, p->eqcr.pi);
179
180         portal_idx_map[p->desc.idx] = p;
181         return p;
182 }
183
184 void qbman_swp_finish(struct qbman_swp *p)
185 {
186 #ifdef QBMAN_CHECKING
187         QBMAN_BUG_ON(p->mc.check != swp_mc_can_start);
188 #endif
189         qbman_swp_sys_finish(&p->sys);
190         portal_idx_map[p->desc.idx] = NULL;
191         kfree(p);
192 }
193
194 const struct qbman_swp_desc *qbman_swp_get_desc(struct qbman_swp *p)
195 {
196         return &p->desc;
197 }
198
199 /**************/
200 /* Interrupts */
201 /**************/
202
203 uint32_t qbman_swp_interrupt_get_vanish(struct qbman_swp *p)
204 {
205         return qbman_cinh_read(&p->sys, QBMAN_CINH_SWP_ISDR);
206 }
207
208 void qbman_swp_interrupt_set_vanish(struct qbman_swp *p, uint32_t mask)
209 {
210         qbman_cinh_write(&p->sys, QBMAN_CINH_SWP_ISDR, mask);
211 }
212
213 uint32_t qbman_swp_interrupt_read_status(struct qbman_swp *p)
214 {
215         return qbman_cinh_read(&p->sys, QBMAN_CINH_SWP_ISR);
216 }
217
218 void qbman_swp_interrupt_clear_status(struct qbman_swp *p, uint32_t mask)
219 {
220         qbman_cinh_write(&p->sys, QBMAN_CINH_SWP_ISR, mask);
221 }
222
223 uint32_t qbman_swp_dqrr_thrshld_read_status(struct qbman_swp *p)
224 {
225         return qbman_cinh_read(&p->sys, QBMAN_CINH_SWP_DQRR_ITR);
226 }
227
228 void qbman_swp_dqrr_thrshld_write(struct qbman_swp *p, uint32_t mask)
229 {
230         qbman_cinh_write(&p->sys, QBMAN_CINH_SWP_DQRR_ITR, mask);
231 }
232
233 uint32_t qbman_swp_intr_timeout_read_status(struct qbman_swp *p)
234 {
235         return qbman_cinh_read(&p->sys, QBMAN_CINH_SWP_ITPR);
236 }
237
238 void qbman_swp_intr_timeout_write(struct qbman_swp *p, uint32_t mask)
239 {
240         qbman_cinh_write(&p->sys, QBMAN_CINH_SWP_ITPR, mask);
241 }
242
243 uint32_t qbman_swp_interrupt_get_trigger(struct qbman_swp *p)
244 {
245         return qbman_cinh_read(&p->sys, QBMAN_CINH_SWP_IER);
246 }
247
248 void qbman_swp_interrupt_set_trigger(struct qbman_swp *p, uint32_t mask)
249 {
250         qbman_cinh_write(&p->sys, QBMAN_CINH_SWP_IER, mask);
251 }
252
253 int qbman_swp_interrupt_get_inhibit(struct qbman_swp *p)
254 {
255         return qbman_cinh_read(&p->sys, QBMAN_CINH_SWP_IIR);
256 }
257
258 void qbman_swp_interrupt_set_inhibit(struct qbman_swp *p, int inhibit)
259 {
260         qbman_cinh_write(&p->sys, QBMAN_CINH_SWP_IIR, inhibit ? 0xffffffff : 0);
261 }
262
263 /***********************/
264 /* Management commands */
265 /***********************/
266
267 /*
268  * Internal code common to all types of management commands.
269  */
270
271 void *qbman_swp_mc_start(struct qbman_swp *p)
272 {
273         void *ret;
274 #ifdef QBMAN_CHECKING
275         QBMAN_BUG_ON(p->mc.check != swp_mc_can_start);
276 #endif
277         ret = qbman_cena_write_start(&p->sys, QBMAN_CENA_SWP_CR);
278 #ifdef QBMAN_CHECKING
279         if (!ret)
280                 p->mc.check = swp_mc_can_submit;
281 #endif
282         return ret;
283 }
284
285 void qbman_swp_mc_submit(struct qbman_swp *p, void *cmd, uint32_t cmd_verb)
286 {
287         uint32_t *v = cmd;
288 #ifdef QBMAN_CHECKING
289         QBMAN_BUG_ON(!(p->mc.check != swp_mc_can_submit));
290 #endif
291         /* TBD: "|=" is going to hurt performance. Need to move as many fields
292          * out of word zero, and for those that remain, the "OR" needs to occur
293          * at the caller side. This debug check helps to catch cases where the
294          * caller wants to OR but has forgotten to do so.
295          */
296         QBMAN_BUG_ON((*v & cmd_verb) != *v);
297         *v = cmd_verb | p->mc.valid_bit;
298         qbman_cena_write_complete(&p->sys, QBMAN_CENA_SWP_CR, cmd);
299 #ifdef QBMAN_CHECKING
300         p->mc.check = swp_mc_can_poll;
301 #endif
302 }
303
304 void *qbman_swp_mc_result(struct qbman_swp *p)
305 {
306         uint32_t *ret, verb;
307 #ifdef QBMAN_CHECKING
308         QBMAN_BUG_ON(p->mc.check != swp_mc_can_poll);
309 #endif
310         qbman_cena_invalidate_prefetch(&p->sys,
311                                        QBMAN_CENA_SWP_RR(p->mc.valid_bit));
312         ret = qbman_cena_read(&p->sys, QBMAN_CENA_SWP_RR(p->mc.valid_bit));
313         /* Remove the valid-bit - command completed if the rest is non-zero */
314         verb = ret[0] & ~QB_VALID_BIT;
315         if (!verb)
316                 return NULL;
317 #ifdef QBMAN_CHECKING
318         p->mc.check = swp_mc_can_start;
319 #endif
320         p->mc.valid_bit ^= QB_VALID_BIT;
321         return ret;
322 }
323
324 /***********/
325 /* Enqueue */
326 /***********/
327
328 /* These should be const, eventually */
329 static struct qb_attr_code code_eq_cmd = QB_CODE(0, 0, 2);
330 static struct qb_attr_code code_eq_eqdi = QB_CODE(0, 3, 1);
331 static struct qb_attr_code code_eq_dca_en = QB_CODE(0, 15, 1);
332 static struct qb_attr_code code_eq_dca_pk = QB_CODE(0, 14, 1);
333 /* Can't set code_eq_dca_idx width. Need qman version. Read at runtime */
334 static struct qb_attr_code code_eq_orp_en = QB_CODE(0, 2, 1);
335 static struct qb_attr_code code_eq_orp_is_nesn = QB_CODE(0, 31, 1);
336 static struct qb_attr_code code_eq_orp_nlis = QB_CODE(0, 30, 1);
337 static struct qb_attr_code code_eq_orp_seqnum = QB_CODE(0, 16, 14);
338 static struct qb_attr_code code_eq_opr_id = QB_CODE(1, 0, 16);
339 static struct qb_attr_code code_eq_tgt_id = QB_CODE(2, 0, 24);
340 /* static struct qb_attr_code code_eq_tag = QB_CODE(3, 0, 32); */
341 static struct qb_attr_code code_eq_qd_en = QB_CODE(0, 4, 1);
342 static struct qb_attr_code code_eq_qd_bin = QB_CODE(4, 0, 16);
343 static struct qb_attr_code code_eq_qd_pri = QB_CODE(4, 16, 4);
344 static struct qb_attr_code code_eq_rsp_stash = QB_CODE(5, 16, 1);
345 static struct qb_attr_code code_eq_rsp_id = QB_CODE(5, 24, 8);
346 static struct qb_attr_code code_eq_rsp_lo = QB_CODE(6, 0, 32);
347
348 enum qbman_eq_cmd_e {
349         /* No enqueue, primarily for plugging ORP gaps for dropped frames */
350         qbman_eq_cmd_empty,
351         /* DMA an enqueue response once complete */
352         qbman_eq_cmd_respond,
353         /* DMA an enqueue response only if the enqueue fails */
354         qbman_eq_cmd_respond_reject
355 };
356
357 void qbman_eq_desc_clear(struct qbman_eq_desc *d)
358 {
359         memset(d, 0, sizeof(*d));
360 }
361
362 void qbman_eq_desc_set_no_orp(struct qbman_eq_desc *d, int respond_success)
363 {
364         uint32_t *cl = qb_cl(d);
365
366         qb_attr_code_encode(&code_eq_orp_en, cl, 0);
367         qb_attr_code_encode(&code_eq_cmd, cl,
368                             respond_success ? qbman_eq_cmd_respond :
369                                               qbman_eq_cmd_respond_reject);
370 }
371
372 void qbman_eq_desc_set_orp(struct qbman_eq_desc *d, int respond_success,
373                            uint32_t opr_id, uint32_t seqnum, int incomplete)
374 {
375         uint32_t *cl = qb_cl(d);
376
377         qb_attr_code_encode(&code_eq_orp_en, cl, 1);
378         qb_attr_code_encode(&code_eq_cmd, cl,
379                             respond_success ? qbman_eq_cmd_respond :
380                                               qbman_eq_cmd_respond_reject);
381         qb_attr_code_encode(&code_eq_opr_id, cl, opr_id);
382         qb_attr_code_encode(&code_eq_orp_seqnum, cl, seqnum);
383         qb_attr_code_encode(&code_eq_orp_nlis, cl, !!incomplete);
384 }
385
386 void qbman_eq_desc_set_orp_hole(struct qbman_eq_desc *d, uint32_t opr_id,
387                                 uint32_t seqnum)
388 {
389         uint32_t *cl = qb_cl(d);
390
391         qb_attr_code_encode(&code_eq_orp_en, cl, 1);
392         qb_attr_code_encode(&code_eq_cmd, cl, qbman_eq_cmd_empty);
393         qb_attr_code_encode(&code_eq_opr_id, cl, opr_id);
394         qb_attr_code_encode(&code_eq_orp_seqnum, cl, seqnum);
395         qb_attr_code_encode(&code_eq_orp_nlis, cl, 0);
396         qb_attr_code_encode(&code_eq_orp_is_nesn, cl, 0);
397 }
398
399 void qbman_eq_desc_set_orp_nesn(struct qbman_eq_desc *d, uint32_t opr_id,
400                                 uint32_t seqnum)
401 {
402         uint32_t *cl = qb_cl(d);
403
404         qb_attr_code_encode(&code_eq_orp_en, cl, 1);
405         qb_attr_code_encode(&code_eq_cmd, cl, qbman_eq_cmd_empty);
406         qb_attr_code_encode(&code_eq_opr_id, cl, opr_id);
407         qb_attr_code_encode(&code_eq_orp_seqnum, cl, seqnum);
408         qb_attr_code_encode(&code_eq_orp_nlis, cl, 0);
409         qb_attr_code_encode(&code_eq_orp_is_nesn, cl, 1);
410 }
411
412 void qbman_eq_desc_set_response(struct qbman_eq_desc *d,
413                                 dma_addr_t storage_phys,
414                                 int stash)
415 {
416         uint32_t *cl = qb_cl(d);
417
418         qb_attr_code_encode_64(&code_eq_rsp_lo, (uint64_t *)cl, storage_phys);
419         qb_attr_code_encode(&code_eq_rsp_stash, cl, !!stash);
420 }
421
422 void qbman_eq_desc_set_token(struct qbman_eq_desc *d, uint8_t token)
423 {
424         uint32_t *cl = qb_cl(d);
425
426         qb_attr_code_encode(&code_eq_rsp_id, cl, (uint32_t)token);
427 }
428
429 void qbman_eq_desc_set_fq(struct qbman_eq_desc *d, uint32_t fqid)
430 {
431         uint32_t *cl = qb_cl(d);
432
433         qb_attr_code_encode(&code_eq_qd_en, cl, 0);
434         qb_attr_code_encode(&code_eq_tgt_id, cl, fqid);
435 }
436
437 void qbman_eq_desc_set_qd(struct qbman_eq_desc *d, uint32_t qdid,
438                           uint32_t qd_bin, uint32_t qd_prio)
439 {
440         uint32_t *cl = qb_cl(d);
441
442         qb_attr_code_encode(&code_eq_qd_en, cl, 1);
443         qb_attr_code_encode(&code_eq_tgt_id, cl, qdid);
444         qb_attr_code_encode(&code_eq_qd_bin, cl, qd_bin);
445         qb_attr_code_encode(&code_eq_qd_pri, cl, qd_prio);
446 }
447
448 void qbman_eq_desc_set_eqdi(struct qbman_eq_desc *d, int enable)
449 {
450         uint32_t *cl = qb_cl(d);
451
452         qb_attr_code_encode(&code_eq_eqdi, cl, !!enable);
453 }
454
455 void qbman_eq_desc_set_dca(struct qbman_eq_desc *d, int enable,
456                            uint32_t dqrr_idx, int park)
457 {
458         uint32_t *cl = qb_cl(d);
459
460         qb_attr_code_encode(&code_eq_dca_en, cl, !!enable);
461         if (enable) {
462                 qb_attr_code_encode(&code_eq_dca_pk, cl, !!park);
463                 qb_attr_code_encode(&code_eq_dca_idx, cl, dqrr_idx);
464         }
465 }
466
467 #define EQAR_IDX(eqar)     ((eqar) & 0x7)
468 #define EQAR_VB(eqar)      ((eqar) & 0x80)
469 #define EQAR_SUCCESS(eqar) ((eqar) & 0x100)
470 static int qbman_swp_enqueue_array_mode(struct qbman_swp *s,
471                                         const struct qbman_eq_desc *d,
472                                  const struct qbman_fd *fd)
473 {
474         uint32_t *p;
475         const uint32_t *cl = qb_cl(d);
476         uint32_t eqar = qbman_cinh_read(&s->sys, QBMAN_CINH_SWP_EQAR);
477
478         pr_debug("EQAR=%08x\n", eqar);
479         if (!EQAR_SUCCESS(eqar))
480                 return -EBUSY;
481         p = qbman_cena_write_start_wo_shadow(&s->sys,
482                         QBMAN_CENA_SWP_EQCR(EQAR_IDX(eqar)));
483         memcpy(&p[1], &cl[1], 28);
484         memcpy(&p[8], fd, sizeof(*fd));
485         /* Set the verb byte, have to substitute in the valid-bit */
486         lwsync();
487         p[0] = cl[0] | EQAR_VB(eqar);
488         qbman_cena_write_complete_wo_shadow(&s->sys,
489                         QBMAN_CENA_SWP_EQCR(EQAR_IDX(eqar)));
490         return 0;
491 }
492
493 static int qbman_swp_enqueue_ring_mode(struct qbman_swp *s,
494                                        const struct qbman_eq_desc *d,
495                                 const struct qbman_fd *fd)
496 {
497         uint32_t *p;
498         const uint32_t *cl = qb_cl(d);
499         uint32_t eqcr_ci;
500         uint8_t diff;
501
502         if (!s->eqcr.available) {
503                 eqcr_ci = s->eqcr.ci;
504                 s->eqcr.ci = qbman_cena_read_reg(&s->sys,
505                                 QBMAN_CENA_SWP_EQCR_CI) & 0xF;
506                 diff = qm_cyc_diff(QBMAN_EQCR_SIZE,
507                                    eqcr_ci, s->eqcr.ci);
508                 s->eqcr.available += diff;
509                 if (!diff)
510                         return -EBUSY;
511         }
512
513         p = qbman_cena_write_start_wo_shadow(&s->sys,
514                 QBMAN_CENA_SWP_EQCR(s->eqcr.pi & 7));
515         memcpy(&p[1], &cl[1], 28);
516         memcpy(&p[8], fd, sizeof(*fd));
517         lwsync();
518         /* Set the verb byte, have to substitute in the valid-bit */
519         p[0] = cl[0] | s->eqcr.pi_vb;
520         qbman_cena_write_complete_wo_shadow(&s->sys,
521                 QBMAN_CENA_SWP_EQCR(s->eqcr.pi & 7));
522         s->eqcr.pi++;
523         s->eqcr.pi &= 0xF;
524         s->eqcr.available--;
525         if (!(s->eqcr.pi & 7))
526                 s->eqcr.pi_vb ^= QB_VALID_BIT;
527         return 0;
528 }
529
530 int qbman_swp_fill_ring(struct qbman_swp *s,
531                         const struct qbman_eq_desc *d,
532                         const struct qbman_fd *fd,
533                         __attribute__((unused)) uint8_t burst_index)
534 {
535         uint32_t *p;
536         const uint32_t *cl = qb_cl(d);
537         uint32_t eqcr_ci;
538         uint8_t diff;
539
540         if (!s->eqcr.available) {
541                 eqcr_ci = s->eqcr.ci;
542                 s->eqcr.ci = qbman_cena_read_reg(&s->sys,
543                                 QBMAN_CENA_SWP_EQCR_CI) & 0xF;
544                 diff = qm_cyc_diff(QBMAN_EQCR_SIZE,
545                                    eqcr_ci, s->eqcr.ci);
546                 s->eqcr.available += diff;
547                 if (!diff)
548                         return -EBUSY;
549         }
550         p = qbman_cena_write_start_wo_shadow(&s->sys,
551                 QBMAN_CENA_SWP_EQCR((s->eqcr.pi/* +burst_index */) & 7));
552         memcpy(&p[1], &cl[1], 7 * 4);
553         memcpy(&p[8], fd, sizeof(struct qbman_fd));
554
555         /* lwsync(); */
556         p[0] = cl[0] | s->eqcr.pi_vb;
557
558         s->eqcr.pi++;
559         s->eqcr.pi &= 0xF;
560         s->eqcr.available--;
561         if (!(s->eqcr.pi & 7))
562                 s->eqcr.pi_vb ^= QB_VALID_BIT;
563
564         return 0;
565 }
566
567 int qbman_swp_flush_ring(struct qbman_swp *s)
568 {
569         void *ptr = s->sys.addr_cena;
570
571         dcbf((uint64_t)ptr);
572         dcbf((uint64_t)ptr + 0x40);
573         dcbf((uint64_t)ptr + 0x80);
574         dcbf((uint64_t)ptr + 0xc0);
575         dcbf((uint64_t)ptr + 0x100);
576         dcbf((uint64_t)ptr + 0x140);
577         dcbf((uint64_t)ptr + 0x180);
578         dcbf((uint64_t)ptr + 0x1c0);
579
580         return 0;
581 }
582
583 void qbman_sync(void)
584 {
585         lwsync();
586 }
587
588 int qbman_swp_enqueue(struct qbman_swp *s, const struct qbman_eq_desc *d,
589                       const struct qbman_fd *fd)
590 {
591         if (s->sys.eqcr_mode == qman_eqcr_vb_array)
592                 return qbman_swp_enqueue_array_mode(s, d, fd);
593         else    /* Use ring mode by default */
594                 return qbman_swp_enqueue_ring_mode(s, d, fd);
595 }
596
597 int qbman_swp_enqueue_multiple_eqdesc(struct qbman_swp *s,
598                                const struct qbman_eq_desc *d,
599                                const struct qbman_fd *fd,
600                                int num_frames)
601 {
602         uint32_t *p;
603         const uint32_t *cl = qb_cl(d);
604         uint32_t eqcr_ci, eqcr_pi;
605         uint8_t diff;
606         int i, num_enqueued = 0;
607         uint64_t addr_cena;
608
609         if (!s->eqcr.available) {
610                 eqcr_ci = s->eqcr.ci;
611                 s->eqcr.ci = qbman_cena_read_reg(&s->sys,
612                                 QBMAN_CENA_SWP_EQCR_CI) & 0xF;
613                 diff = qm_cyc_diff(QBMAN_EQCR_SIZE,
614                                    eqcr_ci, s->eqcr.ci);
615                 s->eqcr.available += diff;
616                 if (!diff)
617                         return 0;
618         }
619
620         eqcr_pi = s->eqcr.pi;
621         num_enqueued = (s->eqcr.available < num_frames) ?
622                         s->eqcr.available : num_frames;
623         s->eqcr.available -= num_enqueued;
624         /* Fill in the EQCR ring */
625         for (i = 0; i < num_enqueued; i++) {
626                 p = qbman_cena_write_start_wo_shadow(&s->sys,
627                                         QBMAN_CENA_SWP_EQCR(eqcr_pi & 7));
628                 memcpy(&p[1], &cl[1], 28);
629                 memcpy(&p[8], &fd[i], sizeof(*fd));
630                 eqcr_pi++;
631                 eqcr_pi &= 0xF;
632                 /*Pointing to the next enqueue descriptor*/
633                 cl += (sizeof(struct qbman_eq_desc) / sizeof(uint32_t));
634         }
635
636         lwsync();
637
638         /* Set the verb byte, have to substitute in the valid-bit */
639         eqcr_pi = s->eqcr.pi;
640         cl = qb_cl(d);
641         for (i = 0; i < num_enqueued; i++) {
642                 p = qbman_cena_write_start_wo_shadow(&s->sys,
643                                         QBMAN_CENA_SWP_EQCR(eqcr_pi & 7));
644                 p[0] = cl[0] | s->eqcr.pi_vb;
645                 eqcr_pi++;
646                 eqcr_pi &= 0xF;
647                 if (!(eqcr_pi & 7))
648                         s->eqcr.pi_vb ^= QB_VALID_BIT;
649                 /*Pointing to the next enqueue descriptor*/
650                 cl += (sizeof(struct qbman_eq_desc) / sizeof(uint32_t));
651         }
652
653         /* Flush all the cacheline without load/store in between */
654         eqcr_pi = s->eqcr.pi;
655         addr_cena = (uint64_t)s->sys.addr_cena;
656         for (i = 0; i < num_enqueued; i++) {
657                 dcbf((uint64_t *)(addr_cena +
658                                 QBMAN_CENA_SWP_EQCR(eqcr_pi & 7)));
659                 eqcr_pi++;
660                 eqcr_pi &= 0xF;
661         }
662         s->eqcr.pi = eqcr_pi;
663
664         return num_enqueued;
665 }
666
667 /*************************/
668 /* Static (push) dequeue */
669 /*************************/
670
671 void qbman_swp_push_get(struct qbman_swp *s, uint8_t channel_idx, int *enabled)
672 {
673         struct qb_attr_code code = CODE_SDQCR_DQSRC(channel_idx);
674
675         QBMAN_BUG_ON(channel_idx > 15);
676         *enabled = (int)qb_attr_code_decode(&code, &s->sdq);
677 }
678
679 void qbman_swp_push_set(struct qbman_swp *s, uint8_t channel_idx, int enable)
680 {
681         uint16_t dqsrc;
682         struct qb_attr_code code = CODE_SDQCR_DQSRC(channel_idx);
683
684         QBMAN_BUG_ON(channel_idx > 15);
685         qb_attr_code_encode(&code, &s->sdq, !!enable);
686         /* Read make the complete src map.  If no channels are enabled
687          * the SDQCR must be 0 or else QMan will assert errors
688          */
689         dqsrc = (uint16_t)qb_attr_code_decode(&code_sdqcr_dqsrc, &s->sdq);
690         if (dqsrc != 0)
691                 qbman_cinh_write(&s->sys, QBMAN_CINH_SWP_SDQCR, s->sdq);
692         else
693                 qbman_cinh_write(&s->sys, QBMAN_CINH_SWP_SDQCR, 0);
694 }
695
696 /***************************/
697 /* Volatile (pull) dequeue */
698 /***************************/
699
700 /* These should be const, eventually */
701 static struct qb_attr_code code_pull_dct = QB_CODE(0, 0, 2);
702 static struct qb_attr_code code_pull_dt = QB_CODE(0, 2, 2);
703 static struct qb_attr_code code_pull_rls = QB_CODE(0, 4, 1);
704 static struct qb_attr_code code_pull_stash = QB_CODE(0, 5, 1);
705 static struct qb_attr_code code_pull_numframes = QB_CODE(0, 8, 4);
706 static struct qb_attr_code code_pull_token = QB_CODE(0, 16, 8);
707 static struct qb_attr_code code_pull_dqsource = QB_CODE(1, 0, 24);
708 static struct qb_attr_code code_pull_rsp_lo = QB_CODE(2, 0, 32);
709
710 enum qb_pull_dt_e {
711         qb_pull_dt_channel,
712         qb_pull_dt_workqueue,
713         qb_pull_dt_framequeue
714 };
715
716 void qbman_pull_desc_clear(struct qbman_pull_desc *d)
717 {
718         memset(d, 0, sizeof(*d));
719 }
720
721 void qbman_pull_desc_set_storage(struct qbman_pull_desc *d,
722                                  struct qbman_result *storage,
723                                  dma_addr_t storage_phys,
724                                  int stash)
725 {
726         uint32_t *cl = qb_cl(d);
727         /* Squiggle the pointer 'storage' into the extra 2 words of the
728          * descriptor (which aren't copied to the hw command)
729          */
730         *(void **)&cl[4] = storage;
731         if (!storage) {
732                 qb_attr_code_encode(&code_pull_rls, cl, 0);
733                 return;
734         }
735         qb_attr_code_encode(&code_pull_rls, cl, 1);
736         qb_attr_code_encode(&code_pull_stash, cl, !!stash);
737         qb_attr_code_encode_64(&code_pull_rsp_lo, (uint64_t *)cl, storage_phys);
738 }
739
740 void qbman_pull_desc_set_numframes(struct qbman_pull_desc *d, uint8_t numframes)
741 {
742         uint32_t *cl = qb_cl(d);
743
744         QBMAN_BUG_ON(!numframes || (numframes > 16));
745         qb_attr_code_encode(&code_pull_numframes, cl,
746                             (uint32_t)(numframes - 1));
747 }
748
749 void qbman_pull_desc_set_token(struct qbman_pull_desc *d, uint8_t token)
750 {
751         uint32_t *cl = qb_cl(d);
752
753         qb_attr_code_encode(&code_pull_token, cl, token);
754 }
755
756 void qbman_pull_desc_set_fq(struct qbman_pull_desc *d, uint32_t fqid)
757 {
758         uint32_t *cl = qb_cl(d);
759
760         qb_attr_code_encode(&code_pull_dct, cl, 1);
761         qb_attr_code_encode(&code_pull_dt, cl, qb_pull_dt_framequeue);
762         qb_attr_code_encode(&code_pull_dqsource, cl, fqid);
763 }
764
765 void qbman_pull_desc_set_wq(struct qbman_pull_desc *d, uint32_t wqid,
766                             enum qbman_pull_type_e dct)
767 {
768         uint32_t *cl = qb_cl(d);
769
770         qb_attr_code_encode(&code_pull_dct, cl, dct);
771         qb_attr_code_encode(&code_pull_dt, cl, qb_pull_dt_workqueue);
772         qb_attr_code_encode(&code_pull_dqsource, cl, wqid);
773 }
774
775 void qbman_pull_desc_set_channel(struct qbman_pull_desc *d, uint32_t chid,
776                                  enum qbman_pull_type_e dct)
777 {
778         uint32_t *cl = qb_cl(d);
779
780         qb_attr_code_encode(&code_pull_dct, cl, dct);
781         qb_attr_code_encode(&code_pull_dt, cl, qb_pull_dt_channel);
782         qb_attr_code_encode(&code_pull_dqsource, cl, chid);
783 }
784
785 int qbman_swp_pull(struct qbman_swp *s, struct qbman_pull_desc *d)
786 {
787         uint32_t *p;
788         uint32_t *cl = qb_cl(d);
789
790         if (!atomic_dec_and_test(&s->vdq.busy)) {
791                 atomic_inc(&s->vdq.busy);
792                 return -EBUSY;
793         }
794         s->vdq.storage = *(void **)&cl[4];
795         /* We use portal index +1 as token so that 0 still indicates
796          * that the result isn't valid yet.
797          */
798         qb_attr_code_encode(&code_pull_token, cl, s->desc.idx + 1);
799         p = qbman_cena_write_start_wo_shadow(&s->sys, QBMAN_CENA_SWP_VDQCR);
800         memcpy(&p[1], &cl[1], 12);
801         /* Set the verb byte, have to substitute in the valid-bit */
802         lwsync();
803         p[0] = cl[0] | s->vdq.valid_bit;
804         s->vdq.valid_bit ^= QB_VALID_BIT;
805         qbman_cena_write_complete_wo_shadow(&s->sys, QBMAN_CENA_SWP_VDQCR);
806         return 0;
807 }
808
809 /****************/
810 /* Polling DQRR */
811 /****************/
812
813 static struct qb_attr_code code_dqrr_verb = QB_CODE(0, 0, 8);
814 static struct qb_attr_code code_dqrr_response = QB_CODE(0, 0, 7);
815 static struct qb_attr_code code_dqrr_stat = QB_CODE(0, 8, 8);
816 static struct qb_attr_code code_dqrr_seqnum = QB_CODE(0, 16, 14);
817 static struct qb_attr_code code_dqrr_odpid = QB_CODE(1, 0, 16);
818 /* static struct qb_attr_code code_dqrr_tok = QB_CODE(1, 24, 8); */
819 static struct qb_attr_code code_dqrr_fqid = QB_CODE(2, 0, 24);
820 static struct qb_attr_code code_dqrr_byte_count = QB_CODE(4, 0, 32);
821 static struct qb_attr_code code_dqrr_frame_count = QB_CODE(5, 0, 24);
822 static struct qb_attr_code code_dqrr_ctx_lo = QB_CODE(6, 0, 32);
823
824 #define QBMAN_RESULT_DQ        0x60
825 #define QBMAN_RESULT_FQRN      0x21
826 #define QBMAN_RESULT_FQRNI     0x22
827 #define QBMAN_RESULT_FQPN      0x24
828 #define QBMAN_RESULT_FQDAN     0x25
829 #define QBMAN_RESULT_CDAN      0x26
830 #define QBMAN_RESULT_CSCN_MEM  0x27
831 #define QBMAN_RESULT_CGCU      0x28
832 #define QBMAN_RESULT_BPSCN     0x29
833 #define QBMAN_RESULT_CSCN_WQ   0x2a
834
835 static struct qb_attr_code code_dqpi_pi = QB_CODE(0, 0, 4);
836
837 /* NULL return if there are no unconsumed DQRR entries. Returns a DQRR entry
838  * only once, so repeated calls can return a sequence of DQRR entries, without
839  * requiring they be consumed immediately or in any particular order.
840  */
841 const struct qbman_result *qbman_swp_dqrr_next(struct qbman_swp *s)
842 {
843         uint32_t verb;
844         uint32_t response_verb;
845         uint32_t flags;
846         const struct qbman_result *dq;
847         const uint32_t *p;
848
849         /* Before using valid-bit to detect if something is there, we have to
850          * handle the case of the DQRR reset bug...
851          */
852         if (unlikely(s->dqrr.reset_bug)) {
853                 /* We pick up new entries by cache-inhibited producer index,
854                  * which means that a non-coherent mapping would require us to
855                  * invalidate and read *only* once that PI has indicated that
856                  * there's an entry here. The first trip around the DQRR ring
857                  * will be much less efficient than all subsequent trips around
858                  * it...
859                  */
860                 uint32_t dqpi = qbman_cinh_read(&s->sys, QBMAN_CINH_SWP_DQPI);
861                 uint32_t pi = qb_attr_code_decode(&code_dqpi_pi, &dqpi);
862                 /* there are new entries if pi != next_idx */
863                 if (pi == s->dqrr.next_idx)
864                         return NULL;
865                 /* if next_idx is/was the last ring index, and 'pi' is
866                  * different, we can disable the workaround as all the ring
867                  * entries have now been DMA'd to so valid-bit checking is
868                  * repaired. Note: this logic needs to be based on next_idx
869                  * (which increments one at a time), rather than on pi (which
870                  * can burst and wrap-around between our snapshots of it).
871                  */
872                 QBMAN_BUG_ON((s->dqrr.dqrr_size - 1) < 0);
873                 if (s->dqrr.next_idx == (s->dqrr.dqrr_size - 1u)) {
874                         pr_debug("DEBUG: next_idx=%d, pi=%d, clear reset bug\n",
875                                  s->dqrr.next_idx, pi);
876                         s->dqrr.reset_bug = 0;
877                 }
878                 qbman_cena_invalidate_prefetch(&s->sys,
879                                 QBMAN_CENA_SWP_DQRR(s->dqrr.next_idx));
880         }
881         dq = qbman_cena_read_wo_shadow(&s->sys,
882                                        QBMAN_CENA_SWP_DQRR(s->dqrr.next_idx));
883         p = qb_cl(dq);
884         verb = qb_attr_code_decode(&code_dqrr_verb, p);
885         /* If the valid-bit isn't of the expected polarity, nothing there. Note,
886          * in the DQRR reset bug workaround, we shouldn't need to skip these
887          * check, because we've already determined that a new entry is available
888          * and we've invalidated the cacheline before reading it, so the
889          * valid-bit behaviour is repaired and should tell us what we already
890          * knew from reading PI.
891          */
892         if ((verb & QB_VALID_BIT) != s->dqrr.valid_bit)
893                 return NULL;
894
895         /* There's something there. Move "next_idx" attention to the next ring
896          * entry (and prefetch it) before returning what we found.
897          */
898         s->dqrr.next_idx++;
899         if (s->dqrr.next_idx == s->dqrr.dqrr_size) {
900                 s->dqrr.next_idx = 0;
901                 s->dqrr.valid_bit ^= QB_VALID_BIT;
902         }
903         /* If this is the final response to a volatile dequeue command
904          * indicate that the vdq is no longer busy.
905          */
906         flags = qbman_result_DQ_flags(dq);
907         response_verb = qb_attr_code_decode(&code_dqrr_response, &verb);
908         if ((response_verb == QBMAN_RESULT_DQ) &&
909             (flags & QBMAN_DQ_STAT_VOLATILE) &&
910             (flags & QBMAN_DQ_STAT_EXPIRED))
911                 atomic_inc(&s->vdq.busy);
912
913         return dq;
914 }
915
916 /* Consume DQRR entries previously returned from qbman_swp_dqrr_next(). */
917 void qbman_swp_dqrr_consume(struct qbman_swp *s,
918                             const struct qbman_result *dq)
919 {
920         qbman_cinh_write(&s->sys, QBMAN_CINH_SWP_DCAP, QBMAN_IDX_FROM_DQRR(dq));
921 }
922
923 /*********************************/
924 /* Polling user-provided storage */
925 /*********************************/
926
927 int qbman_result_has_new_result(__attribute__((unused)) struct qbman_swp *s,
928                                 const struct qbman_result *dq)
929 {
930         /* To avoid converting the little-endian DQ entry to host-endian prior
931          * to us knowing whether there is a valid entry or not (and run the
932          * risk of corrupting the incoming hardware LE write), we detect in
933          * hardware endianness rather than host. This means we need a different
934          * "code" depending on whether we are BE or LE in software, which is
935          * where DQRR_TOK_OFFSET comes in...
936          */
937         static struct qb_attr_code code_dqrr_tok_detect =
938                                         QB_CODE(0, DQRR_TOK_OFFSET, 8);
939         /* The user trying to poll for a result treats "dq" as const. It is
940          * however the same address that was provided to us non-const in the
941          * first place, for directing hardware DMA to. So we can cast away the
942          * const because it is mutable from our perspective.
943          */
944         uint32_t *p = (uint32_t *)(unsigned long)qb_cl(dq);
945         uint32_t token;
946
947         token = qb_attr_code_decode(&code_dqrr_tok_detect, &p[1]);
948         if (token == 0)
949                 return 0;
950         /* Entry is valid - overwrite token back to 0 so
951          * a) If this memory is reused tokesn will be 0
952          * b) If someone calls "has_new_result()" again on this entry it
953          *    will not appear to be new
954          */
955         qb_attr_code_encode(&code_dqrr_tok_detect, &p[1], 0);
956
957         /* Only now do we convert from hardware to host endianness. Also, as we
958          * are returning success, the user has promised not to call us again, so
959          * there's no risk of us converting the endianness twice...
960          */
961         make_le32_n(p, 16);
962         return 1;
963 }
964
965 int qbman_check_command_complete(struct qbman_swp *s,
966                                  const struct qbman_result *dq)
967 {
968         /* To avoid converting the little-endian DQ entry to host-endian prior
969          * to us knowing whether there is a valid entry or not (and run the
970          * risk of corrupting the incoming hardware LE write), we detect in
971          * hardware endianness rather than host. This means we need a different
972          * "code" depending on whether we are BE or LE in software, which is
973          * where DQRR_TOK_OFFSET comes in...
974          */
975         static struct qb_attr_code code_dqrr_tok_detect =
976                                         QB_CODE(0, DQRR_TOK_OFFSET, 8);
977         /* The user trying to poll for a result treats "dq" as const. It is
978          * however the same address that was provided to us non-const in the
979          * first place, for directing hardware DMA to. So we can cast away the
980          * const because it is mutable from our perspective.
981          */
982         uint32_t *p = (uint32_t *)(unsigned long)qb_cl(dq);
983         uint32_t token;
984
985         token = qb_attr_code_decode(&code_dqrr_tok_detect, &p[1]);
986         if (token == 0)
987                 return 0;
988         /* TODO: Remove qbman_swp from parameters and make it a local
989          * once we've tested the reserve portal map change
990          */
991         s = portal_idx_map[token - 1];
992         /* When token is set it indicates that VDQ command has been fetched
993          * by qbman and is working on it. It is safe for software to issue
994          * another VDQ command, so incrementing the busy variable.
995          */
996         if (s->vdq.storage == dq) {
997                 s->vdq.storage = NULL;
998                 atomic_inc(&s->vdq.busy);
999         }
1000         return 1;
1001 }
1002
1003 /********************************/
1004 /* Categorising qbman results   */
1005 /********************************/
1006
1007 static struct qb_attr_code code_result_in_mem =
1008                         QB_CODE(0, QBMAN_RESULT_VERB_OFFSET_IN_MEM, 7);
1009
1010 static inline int __qbman_result_is_x(const struct qbman_result *dq,
1011                                       uint32_t x)
1012 {
1013         const uint32_t *p = qb_cl(dq);
1014         uint32_t response_verb = qb_attr_code_decode(&code_dqrr_response, p);
1015
1016         return (response_verb == x);
1017 }
1018
1019 static inline int __qbman_result_is_x_in_mem(const struct qbman_result *dq,
1020                                              uint32_t x)
1021 {
1022         const uint32_t *p = qb_cl(dq);
1023         uint32_t response_verb = qb_attr_code_decode(&code_result_in_mem, p);
1024
1025         return (response_verb == x);
1026 }
1027
1028 int qbman_result_is_DQ(const struct qbman_result *dq)
1029 {
1030         return __qbman_result_is_x(dq, QBMAN_RESULT_DQ);
1031 }
1032
1033 int qbman_result_is_FQDAN(const struct qbman_result *dq)
1034 {
1035         return __qbman_result_is_x(dq, QBMAN_RESULT_FQDAN);
1036 }
1037
1038 int qbman_result_is_CDAN(const struct qbman_result *dq)
1039 {
1040         return __qbman_result_is_x(dq, QBMAN_RESULT_CDAN);
1041 }
1042
1043 int qbman_result_is_CSCN(const struct qbman_result *dq)
1044 {
1045         return __qbman_result_is_x_in_mem(dq, QBMAN_RESULT_CSCN_MEM) ||
1046                 __qbman_result_is_x(dq, QBMAN_RESULT_CSCN_WQ);
1047 }
1048
1049 int qbman_result_is_BPSCN(const struct qbman_result *dq)
1050 {
1051         return __qbman_result_is_x_in_mem(dq, QBMAN_RESULT_BPSCN);
1052 }
1053
1054 int qbman_result_is_CGCU(const struct qbman_result *dq)
1055 {
1056         return __qbman_result_is_x_in_mem(dq, QBMAN_RESULT_CGCU);
1057 }
1058
1059 int qbman_result_is_FQRN(const struct qbman_result *dq)
1060 {
1061         return __qbman_result_is_x_in_mem(dq, QBMAN_RESULT_FQRN);
1062 }
1063
1064 int qbman_result_is_FQRNI(const struct qbman_result *dq)
1065 {
1066         return __qbman_result_is_x_in_mem(dq, QBMAN_RESULT_FQRNI);
1067 }
1068
1069 int qbman_result_is_FQPN(const struct qbman_result *dq)
1070 {
1071         return __qbman_result_is_x(dq, QBMAN_RESULT_FQPN);
1072 }
1073
1074 /*********************************/
1075 /* Parsing frame dequeue results */
1076 /*********************************/
1077
1078 /* These APIs assume qbman_result_is_DQ() is TRUE */
1079
1080 uint32_t qbman_result_DQ_flags(const struct qbman_result *dq)
1081 {
1082         const uint32_t *p = qb_cl(dq);
1083
1084         return qb_attr_code_decode(&code_dqrr_stat, p);
1085 }
1086
1087 uint16_t qbman_result_DQ_seqnum(const struct qbman_result *dq)
1088 {
1089         const uint32_t *p = qb_cl(dq);
1090
1091         return (uint16_t)qb_attr_code_decode(&code_dqrr_seqnum, p);
1092 }
1093
1094 uint16_t qbman_result_DQ_odpid(const struct qbman_result *dq)
1095 {
1096         const uint32_t *p = qb_cl(dq);
1097
1098         return (uint16_t)qb_attr_code_decode(&code_dqrr_odpid, p);
1099 }
1100
1101 uint32_t qbman_result_DQ_fqid(const struct qbman_result *dq)
1102 {
1103         const uint32_t *p = qb_cl(dq);
1104
1105         return qb_attr_code_decode(&code_dqrr_fqid, p);
1106 }
1107
1108 uint32_t qbman_result_DQ_byte_count(const struct qbman_result *dq)
1109 {
1110         const uint32_t *p = qb_cl(dq);
1111
1112         return qb_attr_code_decode(&code_dqrr_byte_count, p);
1113 }
1114
1115 uint32_t qbman_result_DQ_frame_count(const struct qbman_result *dq)
1116 {
1117         const uint32_t *p = qb_cl(dq);
1118
1119         return qb_attr_code_decode(&code_dqrr_frame_count, p);
1120 }
1121
1122 uint64_t qbman_result_DQ_fqd_ctx(const struct qbman_result *dq)
1123 {
1124         const uint64_t *p = (const uint64_t *)qb_cl(dq);
1125
1126         return qb_attr_code_decode_64(&code_dqrr_ctx_lo, p);
1127 }
1128
1129 const struct qbman_fd *qbman_result_DQ_fd(const struct qbman_result *dq)
1130 {
1131         const uint32_t *p = qb_cl(dq);
1132
1133         return (const struct qbman_fd *)&p[8];
1134 }
1135
1136 /**************************************/
1137 /* Parsing state-change notifications */
1138 /**************************************/
1139
1140 static struct qb_attr_code code_scn_state = QB_CODE(0, 16, 8);
1141 static struct qb_attr_code code_scn_rid = QB_CODE(1, 0, 24);
1142 static struct qb_attr_code code_scn_state_in_mem =
1143                         QB_CODE(0, SCN_STATE_OFFSET_IN_MEM, 8);
1144 static struct qb_attr_code code_scn_rid_in_mem =
1145                         QB_CODE(1, SCN_RID_OFFSET_IN_MEM, 24);
1146 static struct qb_attr_code code_scn_ctx_lo = QB_CODE(2, 0, 32);
1147
1148 uint8_t qbman_result_SCN_state(const struct qbman_result *scn)
1149 {
1150         const uint32_t *p = qb_cl(scn);
1151
1152         return (uint8_t)qb_attr_code_decode(&code_scn_state, p);
1153 }
1154
1155 uint32_t qbman_result_SCN_rid(const struct qbman_result *scn)
1156 {
1157         const uint32_t *p = qb_cl(scn);
1158
1159         return qb_attr_code_decode(&code_scn_rid, p);
1160 }
1161
1162 uint64_t qbman_result_SCN_ctx(const struct qbman_result *scn)
1163 {
1164         const uint64_t *p = (const uint64_t *)qb_cl(scn);
1165
1166         return qb_attr_code_decode_64(&code_scn_ctx_lo, p);
1167 }
1168
1169 uint8_t qbman_result_SCN_state_in_mem(const struct qbman_result *scn)
1170 {
1171         const uint32_t *p = qb_cl(scn);
1172
1173         return (uint8_t)qb_attr_code_decode(&code_scn_state_in_mem, p);
1174 }
1175
1176 uint32_t qbman_result_SCN_rid_in_mem(const struct qbman_result *scn)
1177 {
1178         const uint32_t *p = qb_cl(scn);
1179         uint32_t result_rid;
1180
1181         result_rid = qb_attr_code_decode(&code_scn_rid_in_mem, p);
1182         return make_le24(result_rid);
1183 }
1184
1185 /*****************/
1186 /* Parsing BPSCN */
1187 /*****************/
1188 uint16_t qbman_result_bpscn_bpid(const struct qbman_result *scn)
1189 {
1190         return (uint16_t)qbman_result_SCN_rid_in_mem(scn) & 0x3FFF;
1191 }
1192
1193 int qbman_result_bpscn_has_free_bufs(const struct qbman_result *scn)
1194 {
1195         return !(int)(qbman_result_SCN_state_in_mem(scn) & 0x1);
1196 }
1197
1198 int qbman_result_bpscn_is_depleted(const struct qbman_result *scn)
1199 {
1200         return (int)(qbman_result_SCN_state_in_mem(scn) & 0x2);
1201 }
1202
1203 int qbman_result_bpscn_is_surplus(const struct qbman_result *scn)
1204 {
1205         return (int)(qbman_result_SCN_state_in_mem(scn) & 0x4);
1206 }
1207
1208 uint64_t qbman_result_bpscn_ctx(const struct qbman_result *scn)
1209 {
1210         uint64_t ctx;
1211         uint32_t ctx_hi, ctx_lo;
1212
1213         ctx = qbman_result_SCN_ctx(scn);
1214         ctx_hi = upper32(ctx);
1215         ctx_lo = lower32(ctx);
1216         return ((uint64_t)make_le32(ctx_hi) << 32 |
1217                 (uint64_t)make_le32(ctx_lo));
1218 }
1219
1220 /*****************/
1221 /* Parsing CGCU  */
1222 /*****************/
1223 uint16_t qbman_result_cgcu_cgid(const struct qbman_result *scn)
1224 {
1225         return (uint16_t)qbman_result_SCN_rid_in_mem(scn) & 0xFFFF;
1226 }
1227
1228 uint64_t qbman_result_cgcu_icnt(const struct qbman_result *scn)
1229 {
1230         uint64_t ctx;
1231         uint32_t ctx_hi, ctx_lo;
1232
1233         ctx = qbman_result_SCN_ctx(scn);
1234         ctx_hi = upper32(ctx);
1235         ctx_lo = lower32(ctx);
1236         return ((uint64_t)(make_le32(ctx_hi) & 0xFF) << 32) |
1237                 (uint64_t)make_le32(ctx_lo);
1238 }
1239
1240 /******************/
1241 /* Buffer release */
1242 /******************/
1243
1244 /* These should be const, eventually */
1245 /* static struct qb_attr_code code_release_num = QB_CODE(0, 0, 3); */
1246 static struct qb_attr_code code_release_set_me = QB_CODE(0, 5, 1);
1247 static struct qb_attr_code code_release_rcdi = QB_CODE(0, 6, 1);
1248 static struct qb_attr_code code_release_bpid = QB_CODE(0, 16, 16);
1249
1250 void qbman_release_desc_clear(struct qbman_release_desc *d)
1251 {
1252         uint32_t *cl;
1253
1254         memset(d, 0, sizeof(*d));
1255         cl = qb_cl(d);
1256         qb_attr_code_encode(&code_release_set_me, cl, 1);
1257 }
1258
1259 void qbman_release_desc_set_bpid(struct qbman_release_desc *d, uint32_t bpid)
1260 {
1261         uint32_t *cl = qb_cl(d);
1262
1263         qb_attr_code_encode(&code_release_bpid, cl, bpid);
1264 }
1265
1266 void qbman_release_desc_set_rcdi(struct qbman_release_desc *d, int enable)
1267 {
1268         uint32_t *cl = qb_cl(d);
1269
1270         qb_attr_code_encode(&code_release_rcdi, cl, !!enable);
1271 }
1272
1273 #define RAR_IDX(rar)     ((rar) & 0x7)
1274 #define RAR_VB(rar)      ((rar) & 0x80)
1275 #define RAR_SUCCESS(rar) ((rar) & 0x100)
1276
1277 int qbman_swp_release(struct qbman_swp *s, const struct qbman_release_desc *d,
1278                       const uint64_t *buffers, unsigned int num_buffers)
1279 {
1280         uint32_t *p;
1281         const uint32_t *cl = qb_cl(d);
1282         uint32_t rar = qbman_cinh_read(&s->sys, QBMAN_CINH_SWP_RAR);
1283
1284         pr_debug("RAR=%08x\n", rar);
1285         if (!RAR_SUCCESS(rar))
1286                 return -EBUSY;
1287         QBMAN_BUG_ON(!num_buffers || (num_buffers > 7));
1288         /* Start the release command */
1289         p = qbman_cena_write_start_wo_shadow(&s->sys,
1290                                              QBMAN_CENA_SWP_RCR(RAR_IDX(rar)));
1291         /* Copy the caller's buffer pointers to the command */
1292         u64_to_le32_copy(&p[2], buffers, num_buffers);
1293         /* Set the verb byte, have to substitute in the valid-bit and the number
1294          * of buffers.
1295          */
1296         lwsync();
1297         p[0] = cl[0] | RAR_VB(rar) | num_buffers;
1298         qbman_cena_write_complete_wo_shadow(&s->sys,
1299                                             QBMAN_CENA_SWP_RCR(RAR_IDX(rar)));
1300         return 0;
1301 }
1302
1303 /*******************/
1304 /* Buffer acquires */
1305 /*******************/
1306
1307 /* These should be const, eventually */
1308 static struct qb_attr_code code_acquire_bpid = QB_CODE(0, 16, 16);
1309 static struct qb_attr_code code_acquire_num = QB_CODE(1, 0, 3);
1310 static struct qb_attr_code code_acquire_r_num = QB_CODE(1, 0, 3);
1311
1312 int qbman_swp_acquire(struct qbman_swp *s, uint32_t bpid, uint64_t *buffers,
1313                       unsigned int num_buffers)
1314 {
1315         uint32_t *p;
1316         uint32_t rslt, num;
1317
1318         QBMAN_BUG_ON(!num_buffers || (num_buffers > 7));
1319
1320         /* Start the management command */
1321         p = qbman_swp_mc_start(s);
1322
1323         if (!p)
1324                 return -EBUSY;
1325
1326         /* Encode the caller-provided attributes */
1327         qb_attr_code_encode(&code_acquire_bpid, p, bpid);
1328         qb_attr_code_encode(&code_acquire_num, p, num_buffers);
1329
1330         /* Complete the management command */
1331         p = qbman_swp_mc_complete(s, p, p[0] | QBMAN_MC_ACQUIRE);
1332
1333         /* Decode the outcome */
1334         rslt = qb_attr_code_decode(&code_generic_rslt, p);
1335         num = qb_attr_code_decode(&code_acquire_r_num, p);
1336         QBMAN_BUG_ON(qb_attr_code_decode(&code_generic_verb, p) !=
1337                      QBMAN_MC_ACQUIRE);
1338
1339         /* Determine success or failure */
1340         if (unlikely(rslt != QBMAN_MC_RSLT_OK)) {
1341                 pr_err("Acquire buffers from BPID 0x%x failed, code=0x%02x\n",
1342                        bpid, rslt);
1343                 return -EIO;
1344         }
1345         QBMAN_BUG_ON(num > num_buffers);
1346         /* Copy the acquired buffers to the caller's array */
1347         u64_from_le32_copy(buffers, &p[2], num);
1348         return (int)num;
1349 }
1350
1351 /*****************/
1352 /* FQ management */
1353 /*****************/
1354
1355 static struct qb_attr_code code_fqalt_fqid = QB_CODE(1, 0, 32);
1356
1357 static int qbman_swp_alt_fq_state(struct qbman_swp *s, uint32_t fqid,
1358                                   uint8_t alt_fq_verb)
1359 {
1360         uint32_t *p;
1361         uint32_t rslt;
1362
1363         /* Start the management command */
1364         p = qbman_swp_mc_start(s);
1365         if (!p)
1366                 return -EBUSY;
1367
1368         qb_attr_code_encode(&code_fqalt_fqid, p, fqid);
1369         /* Complete the management command */
1370         p = qbman_swp_mc_complete(s, p, p[0] | alt_fq_verb);
1371
1372         /* Decode the outcome */
1373         rslt = qb_attr_code_decode(&code_generic_rslt, p);
1374         QBMAN_BUG_ON(qb_attr_code_decode(&code_generic_verb, p) != alt_fq_verb);
1375
1376         /* Determine success or failure */
1377         if (unlikely(rslt != QBMAN_MC_RSLT_OK)) {
1378                 pr_err("ALT FQID %d failed: verb = 0x%08x, code = 0x%02x\n",
1379                        fqid, alt_fq_verb, rslt);
1380                 return -EIO;
1381         }
1382
1383         return 0;
1384 }
1385
1386 int qbman_swp_fq_schedule(struct qbman_swp *s, uint32_t fqid)
1387 {
1388         return qbman_swp_alt_fq_state(s, fqid, QBMAN_FQ_SCHEDULE);
1389 }
1390
1391 int qbman_swp_fq_force(struct qbman_swp *s, uint32_t fqid)
1392 {
1393         return qbman_swp_alt_fq_state(s, fqid, QBMAN_FQ_FORCE);
1394 }
1395
1396 int qbman_swp_fq_xon(struct qbman_swp *s, uint32_t fqid)
1397 {
1398         return qbman_swp_alt_fq_state(s, fqid, QBMAN_FQ_XON);
1399 }
1400
1401 int qbman_swp_fq_xoff(struct qbman_swp *s, uint32_t fqid)
1402 {
1403         return qbman_swp_alt_fq_state(s, fqid, QBMAN_FQ_XOFF);
1404 }
1405
1406 /**********************/
1407 /* Channel management */
1408 /**********************/
1409
1410 static struct qb_attr_code code_cdan_cid = QB_CODE(0, 16, 12);
1411 static struct qb_attr_code code_cdan_we = QB_CODE(1, 0, 8);
1412 static struct qb_attr_code code_cdan_en = QB_CODE(1, 8, 1);
1413 static struct qb_attr_code code_cdan_ctx_lo = QB_CODE(2, 0, 32);
1414
1415 /* Hide "ICD" for now as we don't use it, don't set it, and don't test it, so it
1416  * would be irresponsible to expose it.
1417  */
1418 #define CODE_CDAN_WE_EN    0x1
1419 #define CODE_CDAN_WE_CTX   0x4
1420
1421 static int qbman_swp_CDAN_set(struct qbman_swp *s, uint16_t channelid,
1422                               uint8_t we_mask, uint8_t cdan_en,
1423                               uint64_t ctx)
1424 {
1425         uint32_t *p;
1426         uint32_t rslt;
1427
1428         /* Start the management command */
1429         p = qbman_swp_mc_start(s);
1430         if (!p)
1431                 return -EBUSY;
1432
1433         /* Encode the caller-provided attributes */
1434         qb_attr_code_encode(&code_cdan_cid, p, channelid);
1435         qb_attr_code_encode(&code_cdan_we, p, we_mask);
1436         qb_attr_code_encode(&code_cdan_en, p, cdan_en);
1437         qb_attr_code_encode_64(&code_cdan_ctx_lo, (uint64_t *)p, ctx);
1438         /* Complete the management command */
1439         p = qbman_swp_mc_complete(s, p, p[0] | QBMAN_WQCHAN_CONFIGURE);
1440
1441         /* Decode the outcome */
1442         rslt = qb_attr_code_decode(&code_generic_rslt, p);
1443         QBMAN_BUG_ON(qb_attr_code_decode(&code_generic_verb, p)
1444                                         != QBMAN_WQCHAN_CONFIGURE);
1445
1446         /* Determine success or failure */
1447         if (unlikely(rslt != QBMAN_MC_RSLT_OK)) {
1448                 pr_err("CDAN cQID %d failed: code = 0x%02x\n",
1449                        channelid, rslt);
1450                 return -EIO;
1451         }
1452
1453         return 0;
1454 }
1455
1456 int qbman_swp_CDAN_set_context(struct qbman_swp *s, uint16_t channelid,
1457                                uint64_t ctx)
1458 {
1459         return qbman_swp_CDAN_set(s, channelid,
1460                                   CODE_CDAN_WE_CTX,
1461                                   0, ctx);
1462 }
1463
1464 int qbman_swp_CDAN_enable(struct qbman_swp *s, uint16_t channelid)
1465 {
1466         return qbman_swp_CDAN_set(s, channelid,
1467                                   CODE_CDAN_WE_EN,
1468                                   1, 0);
1469 }
1470
1471 int qbman_swp_CDAN_disable(struct qbman_swp *s, uint16_t channelid)
1472 {
1473         return qbman_swp_CDAN_set(s, channelid,
1474                                   CODE_CDAN_WE_EN,
1475                                   0, 0);
1476 }
1477
1478 int qbman_swp_CDAN_set_context_enable(struct qbman_swp *s, uint16_t channelid,
1479                                       uint64_t ctx)
1480 {
1481         return qbman_swp_CDAN_set(s, channelid,
1482                                   CODE_CDAN_WE_EN | CODE_CDAN_WE_CTX,
1483                                   1, ctx);
1484 }
1485
1486 uint8_t qbman_get_dqrr_idx(const struct qbman_result *dqrr)
1487 {
1488         return QBMAN_IDX_FROM_DQRR(dqrr);
1489 }
1490
1491 struct qbman_result *qbman_get_dqrr_from_idx(struct qbman_swp *s, uint8_t idx)
1492 {
1493         struct qbman_result *dq;
1494
1495         dq = qbman_cena_read(&s->sys, QBMAN_CENA_SWP_DQRR(idx));
1496         return dq;
1497 }
1498
1499 int qbman_swp_send_multiple(struct qbman_swp *s,
1500                             const struct qbman_eq_desc *d,
1501                             const struct qbman_fd *fd,
1502                             int frames_to_send)
1503 {
1504         uint32_t *p;
1505         const uint32_t *cl = qb_cl(d);
1506         uint32_t eqcr_ci;
1507         uint8_t diff;
1508         int sent = 0;
1509         int i;
1510         int initial_pi = s->eqcr.pi;
1511         uint64_t start_pointer;
1512
1513         if (!s->eqcr.available) {
1514                 eqcr_ci = s->eqcr.ci;
1515                 s->eqcr.ci = qbman_cena_read_reg(&s->sys,
1516                                  QBMAN_CENA_SWP_EQCR_CI) & 0xF;
1517                 diff = qm_cyc_diff(QBMAN_EQCR_SIZE,
1518                                    eqcr_ci, s->eqcr.ci);
1519                 if (!diff)
1520                         goto done;
1521                 s->eqcr.available += diff;
1522         }
1523
1524         /* we are trying to send frames_to_send,
1525          * if we have enough space in the ring
1526          */
1527         while (s->eqcr.available && frames_to_send--) {
1528                 p = qbman_cena_write_start_wo_shadow_fast(&s->sys,
1529                                         QBMAN_CENA_SWP_EQCR((initial_pi) & 7));
1530                 /* Write command (except of first byte) and FD */
1531                 memcpy(&p[1], &cl[1], 7 * 4);
1532                 memcpy(&p[8], &fd[sent], sizeof(struct qbman_fd));
1533
1534                 initial_pi++;
1535                 initial_pi &= 0xF;
1536                 s->eqcr.available--;
1537                 sent++;
1538         }
1539
1540 done:
1541         initial_pi =  s->eqcr.pi;
1542         lwsync();
1543
1544         /* in order for flushes to complete faster:
1545          * we use a following trick: we record all lines in 32 bit word
1546          */
1547
1548         initial_pi =  s->eqcr.pi;
1549         for (i = 0; i < sent; i++) {
1550                 p = qbman_cena_write_start_wo_shadow_fast(&s->sys,
1551                                         QBMAN_CENA_SWP_EQCR((initial_pi) & 7));
1552
1553                 p[0] = cl[0] | s->eqcr.pi_vb;
1554                 initial_pi++;
1555                 initial_pi &= 0xF;
1556
1557                 if (!(initial_pi & 7))
1558                         s->eqcr.pi_vb ^= QB_VALID_BIT;
1559         }
1560
1561         initial_pi = s->eqcr.pi;
1562
1563         /* We need  to flush all the lines but without
1564          * load/store operations between them.
1565          * We assign start_pointer before we start loop so that
1566          * in loop we do not read it from memory
1567          */
1568         start_pointer = (uint64_t)s->sys.addr_cena;
1569         for (i = 0; i < sent; i++) {
1570                 p = (uint32_t *)(start_pointer
1571                                  + QBMAN_CENA_SWP_EQCR(initial_pi & 7));
1572                 dcbf((uint64_t)p);
1573                 initial_pi++;
1574                 initial_pi &= 0xF;
1575         }
1576
1577         /* Update producer index for the next call */
1578         s->eqcr.pi = initial_pi;
1579
1580         return sent;
1581 }
1582
1583 int qbman_get_version(void)
1584 {
1585         return qman_version;
1586 }