This source file includes following definitions.
- service_select_by_cpu
- service_select
- dpaa2_io_service_select
- dpaa2_io_create
- dpaa2_io_down
- dpaa2_io_irq
- dpaa2_io_get_cpu
- dpaa2_io_service_register
- dpaa2_io_service_deregister
- dpaa2_io_service_rearm
- dpaa2_io_service_pull_fq
- dpaa2_io_service_pull_channel
- dpaa2_io_service_enqueue_fq
- dpaa2_io_service_enqueue_qd
- dpaa2_io_service_release
- dpaa2_io_service_acquire
- dpaa2_io_store_create
- dpaa2_io_store_destroy
- dpaa2_io_store_next
- dpaa2_io_query_fq_count
- dpaa2_io_query_bp_count
1
2
3
4
5
6
7 #include <linux/types.h>
8 #include <linux/fsl/mc.h>
9 #include <soc/fsl/dpaa2-io.h>
10 #include <linux/init.h>
11 #include <linux/module.h>
12 #include <linux/platform_device.h>
13 #include <linux/interrupt.h>
14 #include <linux/dma-mapping.h>
15 #include <linux/slab.h>
16
17 #include "dpio.h"
18 #include "qbman-portal.h"
19
20 struct dpaa2_io {
21 struct dpaa2_io_desc dpio_desc;
22 struct qbman_swp_desc swp_desc;
23 struct qbman_swp *swp;
24 struct list_head node;
25
26 spinlock_t lock_mgmt_cmd;
27
28 spinlock_t lock_notifications;
29 struct list_head notifications;
30 struct device *dev;
31 };
32
33 struct dpaa2_io_store {
34 unsigned int max;
35 dma_addr_t paddr;
36 struct dpaa2_dq *vaddr;
37 void *alloced_addr;
38 unsigned int idx;
39 struct qbman_swp *swp;
40 struct device *dev;
41 };
42
43
44 static struct dpaa2_io *dpio_by_cpu[NR_CPUS];
45 static struct list_head dpio_list = LIST_HEAD_INIT(dpio_list);
46 static DEFINE_SPINLOCK(dpio_list_lock);
47
48 static inline struct dpaa2_io *service_select_by_cpu(struct dpaa2_io *d,
49 int cpu)
50 {
51 if (d)
52 return d;
53
54 if (cpu != DPAA2_IO_ANY_CPU && cpu >= num_possible_cpus())
55 return NULL;
56
57
58
59
60
61 if (unlikely(cpu < 0))
62 cpu = smp_processor_id();
63
64
65 return dpio_by_cpu[cpu];
66 }
67
68 static inline struct dpaa2_io *service_select(struct dpaa2_io *d)
69 {
70 if (d)
71 return d;
72
73 spin_lock(&dpio_list_lock);
74 d = list_entry(dpio_list.next, struct dpaa2_io, node);
75 list_del(&d->node);
76 list_add_tail(&d->node, &dpio_list);
77 spin_unlock(&dpio_list_lock);
78
79 return d;
80 }
81
82
83
84
85
86
87
88
89
90 struct dpaa2_io *dpaa2_io_service_select(int cpu)
91 {
92 if (cpu == DPAA2_IO_ANY_CPU)
93 return service_select(NULL);
94
95 return service_select_by_cpu(NULL, cpu);
96 }
97 EXPORT_SYMBOL_GPL(dpaa2_io_service_select);
98
99
100
101
102
103
104
105
106
107
108
109 struct dpaa2_io *dpaa2_io_create(const struct dpaa2_io_desc *desc,
110 struct device *dev)
111 {
112 struct dpaa2_io *obj = kmalloc(sizeof(*obj), GFP_KERNEL);
113
114 if (!obj)
115 return NULL;
116
117
118 if (desc->cpu != DPAA2_IO_ANY_CPU && desc->cpu >= num_possible_cpus()) {
119 kfree(obj);
120 return NULL;
121 }
122
123 obj->dpio_desc = *desc;
124 obj->swp_desc.cena_bar = obj->dpio_desc.regs_cena;
125 obj->swp_desc.cinh_bar = obj->dpio_desc.regs_cinh;
126 obj->swp_desc.qman_version = obj->dpio_desc.qman_version;
127 obj->swp = qbman_swp_init(&obj->swp_desc);
128
129 if (!obj->swp) {
130 kfree(obj);
131 return NULL;
132 }
133
134 INIT_LIST_HEAD(&obj->node);
135 spin_lock_init(&obj->lock_mgmt_cmd);
136 spin_lock_init(&obj->lock_notifications);
137 INIT_LIST_HEAD(&obj->notifications);
138
139
140 qbman_swp_interrupt_set_trigger(obj->swp,
141 QBMAN_SWP_INTERRUPT_DQRI);
142 qbman_swp_interrupt_clear_status(obj->swp, 0xffffffff);
143 if (obj->dpio_desc.receives_notifications)
144 qbman_swp_push_set(obj->swp, 0, 1);
145
146 spin_lock(&dpio_list_lock);
147 list_add_tail(&obj->node, &dpio_list);
148 if (desc->cpu >= 0 && !dpio_by_cpu[desc->cpu])
149 dpio_by_cpu[desc->cpu] = obj;
150 spin_unlock(&dpio_list_lock);
151
152 obj->dev = dev;
153
154 return obj;
155 }
156
157
158
159
160
161
162
163
164
165
166 void dpaa2_io_down(struct dpaa2_io *d)
167 {
168 spin_lock(&dpio_list_lock);
169 dpio_by_cpu[d->dpio_desc.cpu] = NULL;
170 list_del(&d->node);
171 spin_unlock(&dpio_list_lock);
172
173 kfree(d);
174 }
175
176 #define DPAA_POLL_MAX 32
177
178
179
180
181
182
183
184
185
186 irqreturn_t dpaa2_io_irq(struct dpaa2_io *obj)
187 {
188 const struct dpaa2_dq *dq;
189 int max = 0;
190 struct qbman_swp *swp;
191 u32 status;
192
193 swp = obj->swp;
194 status = qbman_swp_interrupt_read_status(swp);
195 if (!status)
196 return IRQ_NONE;
197
198 dq = qbman_swp_dqrr_next(swp);
199 while (dq) {
200 if (qbman_result_is_SCN(dq)) {
201 struct dpaa2_io_notification_ctx *ctx;
202 u64 q64;
203
204 q64 = qbman_result_SCN_ctx(dq);
205 ctx = (void *)(uintptr_t)q64;
206 ctx->cb(ctx);
207 } else {
208 pr_crit("fsl-mc-dpio: Unrecognised/ignored DQRR entry\n");
209 }
210 qbman_swp_dqrr_consume(swp, dq);
211 ++max;
212 if (max > DPAA_POLL_MAX)
213 goto done;
214 dq = qbman_swp_dqrr_next(swp);
215 }
216 done:
217 qbman_swp_interrupt_clear_status(swp, status);
218 qbman_swp_interrupt_set_inhibit(swp, 0);
219 return IRQ_HANDLED;
220 }
221
222
223
224
225
226
227
228
229 int dpaa2_io_get_cpu(struct dpaa2_io *d)
230 {
231 return d->dpio_desc.cpu;
232 }
233 EXPORT_SYMBOL(dpaa2_io_get_cpu);
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254 int dpaa2_io_service_register(struct dpaa2_io *d,
255 struct dpaa2_io_notification_ctx *ctx,
256 struct device *dev)
257 {
258 struct device_link *link;
259 unsigned long irqflags;
260
261 d = service_select_by_cpu(d, ctx->desired_cpu);
262 if (!d)
263 return -ENODEV;
264
265 link = device_link_add(dev, d->dev, DL_FLAG_AUTOREMOVE_CONSUMER);
266 if (!link)
267 return -EINVAL;
268
269 ctx->dpio_id = d->dpio_desc.dpio_id;
270 ctx->qman64 = (u64)(uintptr_t)ctx;
271 ctx->dpio_private = d;
272 spin_lock_irqsave(&d->lock_notifications, irqflags);
273 list_add(&ctx->node, &d->notifications);
274 spin_unlock_irqrestore(&d->lock_notifications, irqflags);
275
276
277 if (ctx->is_cdan)
278 return qbman_swp_CDAN_set_context_enable(d->swp,
279 (u16)ctx->id,
280 ctx->qman64);
281 return 0;
282 }
283 EXPORT_SYMBOL_GPL(dpaa2_io_service_register);
284
285
286
287
288
289
290
291
292
293
294 void dpaa2_io_service_deregister(struct dpaa2_io *service,
295 struct dpaa2_io_notification_ctx *ctx,
296 struct device *dev)
297 {
298 struct dpaa2_io *d = ctx->dpio_private;
299 unsigned long irqflags;
300
301 if (ctx->is_cdan)
302 qbman_swp_CDAN_disable(d->swp, (u16)ctx->id);
303
304 spin_lock_irqsave(&d->lock_notifications, irqflags);
305 list_del(&ctx->node);
306 spin_unlock_irqrestore(&d->lock_notifications, irqflags);
307
308 }
309 EXPORT_SYMBOL_GPL(dpaa2_io_service_deregister);
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324 int dpaa2_io_service_rearm(struct dpaa2_io *d,
325 struct dpaa2_io_notification_ctx *ctx)
326 {
327 unsigned long irqflags;
328 int err;
329
330 d = service_select_by_cpu(d, ctx->desired_cpu);
331 if (!unlikely(d))
332 return -ENODEV;
333
334 spin_lock_irqsave(&d->lock_mgmt_cmd, irqflags);
335 if (ctx->is_cdan)
336 err = qbman_swp_CDAN_enable(d->swp, (u16)ctx->id);
337 else
338 err = qbman_swp_fq_schedule(d->swp, ctx->id);
339 spin_unlock_irqrestore(&d->lock_mgmt_cmd, irqflags);
340
341 return err;
342 }
343 EXPORT_SYMBOL_GPL(dpaa2_io_service_rearm);
344
345
346
347
348
349
350
351
352
353 int dpaa2_io_service_pull_fq(struct dpaa2_io *d, u32 fqid,
354 struct dpaa2_io_store *s)
355 {
356 struct qbman_pull_desc pd;
357 int err;
358
359 qbman_pull_desc_clear(&pd);
360 qbman_pull_desc_set_storage(&pd, s->vaddr, s->paddr, 1);
361 qbman_pull_desc_set_numframes(&pd, (u8)s->max);
362 qbman_pull_desc_set_fq(&pd, fqid);
363
364 d = service_select(d);
365 if (!d)
366 return -ENODEV;
367 s->swp = d->swp;
368 err = qbman_swp_pull(d->swp, &pd);
369 if (err)
370 s->swp = NULL;
371
372 return err;
373 }
374 EXPORT_SYMBOL(dpaa2_io_service_pull_fq);
375
376
377
378
379
380
381
382
383
384 int dpaa2_io_service_pull_channel(struct dpaa2_io *d, u32 channelid,
385 struct dpaa2_io_store *s)
386 {
387 struct qbman_pull_desc pd;
388 int err;
389
390 qbman_pull_desc_clear(&pd);
391 qbman_pull_desc_set_storage(&pd, s->vaddr, s->paddr, 1);
392 qbman_pull_desc_set_numframes(&pd, (u8)s->max);
393 qbman_pull_desc_set_channel(&pd, channelid, qbman_pull_type_prio);
394
395 d = service_select(d);
396 if (!d)
397 return -ENODEV;
398
399 s->swp = d->swp;
400 err = qbman_swp_pull(d->swp, &pd);
401 if (err)
402 s->swp = NULL;
403
404 return err;
405 }
406 EXPORT_SYMBOL_GPL(dpaa2_io_service_pull_channel);
407
408
409
410
411
412
413
414
415
416
417 int dpaa2_io_service_enqueue_fq(struct dpaa2_io *d,
418 u32 fqid,
419 const struct dpaa2_fd *fd)
420 {
421 struct qbman_eq_desc ed;
422
423 d = service_select(d);
424 if (!d)
425 return -ENODEV;
426
427 qbman_eq_desc_clear(&ed);
428 qbman_eq_desc_set_no_orp(&ed, 0);
429 qbman_eq_desc_set_fq(&ed, fqid);
430
431 return qbman_swp_enqueue(d->swp, &ed, fd);
432 }
433 EXPORT_SYMBOL(dpaa2_io_service_enqueue_fq);
434
435
436
437
438
439
440
441
442
443
444
445
446 int dpaa2_io_service_enqueue_qd(struct dpaa2_io *d,
447 u32 qdid, u8 prio, u16 qdbin,
448 const struct dpaa2_fd *fd)
449 {
450 struct qbman_eq_desc ed;
451
452 d = service_select(d);
453 if (!d)
454 return -ENODEV;
455
456 qbman_eq_desc_clear(&ed);
457 qbman_eq_desc_set_no_orp(&ed, 0);
458 qbman_eq_desc_set_qd(&ed, qdid, qdbin, prio);
459
460 return qbman_swp_enqueue(d->swp, &ed, fd);
461 }
462 EXPORT_SYMBOL_GPL(dpaa2_io_service_enqueue_qd);
463
464
465
466
467
468
469
470
471
472
473 int dpaa2_io_service_release(struct dpaa2_io *d,
474 u16 bpid,
475 const u64 *buffers,
476 unsigned int num_buffers)
477 {
478 struct qbman_release_desc rd;
479
480 d = service_select(d);
481 if (!d)
482 return -ENODEV;
483
484 qbman_release_desc_clear(&rd);
485 qbman_release_desc_set_bpid(&rd, bpid);
486
487 return qbman_swp_release(d->swp, &rd, buffers, num_buffers);
488 }
489 EXPORT_SYMBOL_GPL(dpaa2_io_service_release);
490
491
492
493
494
495
496
497
498
499
500
501
502 int dpaa2_io_service_acquire(struct dpaa2_io *d,
503 u16 bpid,
504 u64 *buffers,
505 unsigned int num_buffers)
506 {
507 unsigned long irqflags;
508 int err;
509
510 d = service_select(d);
511 if (!d)
512 return -ENODEV;
513
514 spin_lock_irqsave(&d->lock_mgmt_cmd, irqflags);
515 err = qbman_swp_acquire(d->swp, bpid, buffers, num_buffers);
516 spin_unlock_irqrestore(&d->lock_mgmt_cmd, irqflags);
517
518 return err;
519 }
520 EXPORT_SYMBOL_GPL(dpaa2_io_service_acquire);
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538 struct dpaa2_io_store *dpaa2_io_store_create(unsigned int max_frames,
539 struct device *dev)
540 {
541 struct dpaa2_io_store *ret;
542 size_t size;
543
544 if (!max_frames || (max_frames > 16))
545 return NULL;
546
547 ret = kmalloc(sizeof(*ret), GFP_KERNEL);
548 if (!ret)
549 return NULL;
550
551 ret->max = max_frames;
552 size = max_frames * sizeof(struct dpaa2_dq) + 64;
553 ret->alloced_addr = kzalloc(size, GFP_KERNEL);
554 if (!ret->alloced_addr) {
555 kfree(ret);
556 return NULL;
557 }
558
559 ret->vaddr = PTR_ALIGN(ret->alloced_addr, 64);
560 ret->paddr = dma_map_single(dev, ret->vaddr,
561 sizeof(struct dpaa2_dq) * max_frames,
562 DMA_FROM_DEVICE);
563 if (dma_mapping_error(dev, ret->paddr)) {
564 kfree(ret->alloced_addr);
565 kfree(ret);
566 return NULL;
567 }
568
569 ret->idx = 0;
570 ret->dev = dev;
571
572 return ret;
573 }
574 EXPORT_SYMBOL_GPL(dpaa2_io_store_create);
575
576
577
578
579
580
581 void dpaa2_io_store_destroy(struct dpaa2_io_store *s)
582 {
583 dma_unmap_single(s->dev, s->paddr, sizeof(struct dpaa2_dq) * s->max,
584 DMA_FROM_DEVICE);
585 kfree(s->alloced_addr);
586 kfree(s);
587 }
588 EXPORT_SYMBOL_GPL(dpaa2_io_store_destroy);
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607 struct dpaa2_dq *dpaa2_io_store_next(struct dpaa2_io_store *s, int *is_last)
608 {
609 int match;
610 struct dpaa2_dq *ret = &s->vaddr[s->idx];
611
612 match = qbman_result_has_new_result(s->swp, ret);
613 if (!match) {
614 *is_last = 0;
615 return NULL;
616 }
617
618 s->idx++;
619
620 if (dpaa2_dq_is_pull_complete(ret)) {
621 *is_last = 1;
622 s->idx = 0;
623
624
625
626
627
628 if (!(dpaa2_dq_flags(ret) & DPAA2_DQ_STAT_VALIDFRAME))
629 ret = NULL;
630 } else {
631 prefetch(&s->vaddr[s->idx]);
632 *is_last = 0;
633 }
634
635 return ret;
636 }
637 EXPORT_SYMBOL_GPL(dpaa2_io_store_next);
638
639
640
641
642
643
644
645
646
647
648
649
650
651 int dpaa2_io_query_fq_count(struct dpaa2_io *d, u32 fqid,
652 u32 *fcnt, u32 *bcnt)
653 {
654 struct qbman_fq_query_np_rslt state;
655 struct qbman_swp *swp;
656 unsigned long irqflags;
657 int ret;
658
659 d = service_select(d);
660 if (!d)
661 return -ENODEV;
662
663 swp = d->swp;
664 spin_lock_irqsave(&d->lock_mgmt_cmd, irqflags);
665 ret = qbman_fq_query_state(swp, fqid, &state);
666 spin_unlock_irqrestore(&d->lock_mgmt_cmd, irqflags);
667 if (ret)
668 return ret;
669 *fcnt = qbman_fq_state_frame_count(&state);
670 *bcnt = qbman_fq_state_byte_count(&state);
671
672 return 0;
673 }
674 EXPORT_SYMBOL_GPL(dpaa2_io_query_fq_count);
675
676
677
678
679
680
681
682
683
684
685 int dpaa2_io_query_bp_count(struct dpaa2_io *d, u16 bpid, u32 *num)
686 {
687 struct qbman_bp_query_rslt state;
688 struct qbman_swp *swp;
689 unsigned long irqflags;
690 int ret;
691
692 d = service_select(d);
693 if (!d)
694 return -ENODEV;
695
696 swp = d->swp;
697 spin_lock_irqsave(&d->lock_mgmt_cmd, irqflags);
698 ret = qbman_bp_query(swp, bpid, &state);
699 spin_unlock_irqrestore(&d->lock_mgmt_cmd, irqflags);
700 if (ret)
701 return ret;
702 *num = qbman_bp_info_num_free_bufs(&state);
703 return 0;
704 }
705 EXPORT_SYMBOL_GPL(dpaa2_io_query_bp_count);