1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31#include "qman_test.h"
32
33#include <linux/dma-mapping.h>
34#include <linux/delay.h>
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85struct bstrap {
86 int (*fn)(void);
87 atomic_t started;
88};
89static int bstrap_fn(void *bs)
90{
91 struct bstrap *bstrap = bs;
92 int err;
93
94 atomic_inc(&bstrap->started);
95 err = bstrap->fn();
96 if (err)
97 return err;
98 while (!kthread_should_stop())
99 msleep(20);
100 return 0;
101}
102static int on_all_cpus(int (*fn)(void))
103{
104 int cpu;
105
106 for_each_cpu(cpu, cpu_online_mask) {
107 struct bstrap bstrap = {
108 .fn = fn,
109 .started = ATOMIC_INIT(0)
110 };
111 struct task_struct *k = kthread_create(bstrap_fn, &bstrap,
112 "hotpotato%d", cpu);
113 int ret;
114
115 if (IS_ERR(k))
116 return -ENOMEM;
117 kthread_bind(k, cpu);
118 wake_up_process(k);
119
120
121
122
123
124
125 while (!atomic_read(&bstrap.started))
126 msleep(20);
127 ret = kthread_stop(k);
128 if (ret)
129 return ret;
130 }
131 return 0;
132}
133
134struct hp_handler {
135
136
137
138
139 struct qman_fq rx;
140
141 struct qman_fq tx;
142
143 u32 rx_mixer;
144
145 u32 tx_mixer;
146
147 dma_addr_t addr;
148 u32 *frame_ptr;
149
150
151
152 u32 fqid_rx, fqid_tx;
153
154 struct list_head node;
155
156 unsigned int processor_id;
157} ____cacheline_aligned;
158
159struct hp_cpu {
160
161 unsigned int processor_id;
162
163 struct list_head handlers;
164
165 struct list_head node;
166
167
168
169
170 struct hp_handler *iterator;
171};
172
173
174static DEFINE_PER_CPU(struct hp_cpu, hp_cpus);
175
176
177static LIST_HEAD(hp_cpu_list);
178static DEFINE_SPINLOCK(hp_lock);
179
180static unsigned int hp_cpu_list_length;
181
182
183static struct hp_handler *special_handler;
184static int loop_counter;
185
186
187static struct kmem_cache *hp_handler_slab;
188
189
190static void *__frame_ptr;
191static u32 *frame_ptr;
192static dma_addr_t frame_dma;
193
194
195static const struct qm_portal_config *pcfg;
196
197
198static DECLARE_WAIT_QUEUE_HEAD(queue);
199
200#define HP_PER_CPU 2
201#define HP_LOOPS 8
202
203#define HP_NUM_WORDS 80
204
205#define HP_FIRST_WORD 0xabbaf00d
206
207static inline u32 do_lfsr(u32 prev)
208{
209 return (prev >> 1) ^ (-(prev & 1u) & 0xd0000001u);
210}
211
212static int allocate_frame_data(void)
213{
214 u32 lfsr = HP_FIRST_WORD;
215 int loop;
216
217 if (!qman_dma_portal) {
218 pr_crit("portal not available\n");
219 return -EIO;
220 }
221
222 pcfg = qman_get_qm_portal_config(qman_dma_portal);
223
224 __frame_ptr = kmalloc(4 * HP_NUM_WORDS, GFP_KERNEL);
225 if (!__frame_ptr)
226 return -ENOMEM;
227
228 frame_ptr = PTR_ALIGN(__frame_ptr, 64);
229 for (loop = 0; loop < HP_NUM_WORDS; loop++) {
230 frame_ptr[loop] = lfsr;
231 lfsr = do_lfsr(lfsr);
232 }
233
234 frame_dma = dma_map_single(pcfg->dev, frame_ptr, 4 * HP_NUM_WORDS,
235 DMA_BIDIRECTIONAL);
236 if (dma_mapping_error(pcfg->dev, frame_dma)) {
237 pr_crit("dma mapping failure\n");
238 kfree(__frame_ptr);
239 return -EIO;
240 }
241
242 return 0;
243}
244
245static void deallocate_frame_data(void)
246{
247 dma_unmap_single(pcfg->dev, frame_dma, 4 * HP_NUM_WORDS,
248 DMA_BIDIRECTIONAL);
249 kfree(__frame_ptr);
250}
251
252static inline int process_frame_data(struct hp_handler *handler,
253 const struct qm_fd *fd)
254{
255 u32 *p = handler->frame_ptr;
256 u32 lfsr = HP_FIRST_WORD;
257 int loop;
258
259 if (qm_fd_addr_get64(fd) != handler->addr) {
260 pr_crit("bad frame address, [%llX != %llX]\n",
261 qm_fd_addr_get64(fd), handler->addr);
262 return -EIO;
263 }
264 for (loop = 0; loop < HP_NUM_WORDS; loop++, p++) {
265 *p ^= handler->rx_mixer;
266 if (*p != lfsr) {
267 pr_crit("corrupt frame data");
268 return -EIO;
269 }
270 *p ^= handler->tx_mixer;
271 lfsr = do_lfsr(lfsr);
272 }
273 return 0;
274}
275
276static enum qman_cb_dqrr_result normal_dqrr(struct qman_portal *portal,
277 struct qman_fq *fq,
278 const struct qm_dqrr_entry *dqrr,
279 bool sched_napi)
280{
281 struct hp_handler *handler = (struct hp_handler *)fq;
282
283 if (process_frame_data(handler, &dqrr->fd)) {
284 WARN_ON(1);
285 goto skip;
286 }
287 if (qman_enqueue(&handler->tx, &dqrr->fd)) {
288 pr_crit("qman_enqueue() failed");
289 WARN_ON(1);
290 }
291skip:
292 return qman_cb_dqrr_consume;
293}
294
295static enum qman_cb_dqrr_result special_dqrr(struct qman_portal *portal,
296 struct qman_fq *fq,
297 const struct qm_dqrr_entry *dqrr,
298 bool sched_napi)
299{
300 struct hp_handler *handler = (struct hp_handler *)fq;
301
302 process_frame_data(handler, &dqrr->fd);
303 if (++loop_counter < HP_LOOPS) {
304 if (qman_enqueue(&handler->tx, &dqrr->fd)) {
305 pr_crit("qman_enqueue() failed");
306 WARN_ON(1);
307 goto skip;
308 }
309 } else {
310 pr_info("Received final (%dth) frame\n", loop_counter);
311 wake_up(&queue);
312 }
313skip:
314 return qman_cb_dqrr_consume;
315}
316
317static int create_per_cpu_handlers(void)
318{
319 struct hp_handler *handler;
320 int loop;
321 struct hp_cpu *hp_cpu = this_cpu_ptr(&hp_cpus);
322
323 hp_cpu->processor_id = smp_processor_id();
324 spin_lock(&hp_lock);
325 list_add_tail(&hp_cpu->node, &hp_cpu_list);
326 hp_cpu_list_length++;
327 spin_unlock(&hp_lock);
328 INIT_LIST_HEAD(&hp_cpu->handlers);
329 for (loop = 0; loop < HP_PER_CPU; loop++) {
330 handler = kmem_cache_alloc(hp_handler_slab, GFP_KERNEL);
331 if (!handler) {
332 pr_crit("kmem_cache_alloc() failed");
333 WARN_ON(1);
334 return -EIO;
335 }
336 handler->processor_id = hp_cpu->processor_id;
337 handler->addr = frame_dma;
338 handler->frame_ptr = frame_ptr;
339 list_add_tail(&handler->node, &hp_cpu->handlers);
340 }
341 return 0;
342}
343
344static int destroy_per_cpu_handlers(void)
345{
346 struct list_head *loop, *tmp;
347 struct hp_cpu *hp_cpu = this_cpu_ptr(&hp_cpus);
348
349 spin_lock(&hp_lock);
350 list_del(&hp_cpu->node);
351 spin_unlock(&hp_lock);
352 list_for_each_safe(loop, tmp, &hp_cpu->handlers) {
353 u32 flags = 0;
354 struct hp_handler *handler = list_entry(loop, struct hp_handler,
355 node);
356 if (qman_retire_fq(&handler->rx, &flags) ||
357 (flags & QMAN_FQ_STATE_BLOCKOOS)) {
358 pr_crit("qman_retire_fq(rx) failed, flags: %x", flags);
359 WARN_ON(1);
360 return -EIO;
361 }
362 if (qman_oos_fq(&handler->rx)) {
363 pr_crit("qman_oos_fq(rx) failed");
364 WARN_ON(1);
365 return -EIO;
366 }
367 qman_destroy_fq(&handler->rx);
368 qman_destroy_fq(&handler->tx);
369 qman_release_fqid(handler->fqid_rx);
370 list_del(&handler->node);
371 kmem_cache_free(hp_handler_slab, handler);
372 }
373 return 0;
374}
375
376static inline u8 num_cachelines(u32 offset)
377{
378 u8 res = (offset + (L1_CACHE_BYTES - 1))
379 / (L1_CACHE_BYTES);
380 if (res > 3)
381 return 3;
382 return res;
383}
384#define STASH_DATA_CL \
385 num_cachelines(HP_NUM_WORDS * 4)
386#define STASH_CTX_CL \
387 num_cachelines(offsetof(struct hp_handler, fqid_rx))
388
389static int init_handler(void *h)
390{
391 struct qm_mcc_initfq opts;
392 struct hp_handler *handler = h;
393 int err;
394
395 if (handler->processor_id != smp_processor_id()) {
396 err = -EIO;
397 goto failed;
398 }
399
400 memset(&handler->rx, 0, sizeof(handler->rx));
401 if (handler == special_handler)
402 handler->rx.cb.dqrr = special_dqrr;
403 else
404 handler->rx.cb.dqrr = normal_dqrr;
405 err = qman_create_fq(handler->fqid_rx, 0, &handler->rx);
406 if (err) {
407 pr_crit("qman_create_fq(rx) failed");
408 goto failed;
409 }
410 memset(&opts, 0, sizeof(opts));
411 opts.we_mask = cpu_to_be16(QM_INITFQ_WE_FQCTRL |
412 QM_INITFQ_WE_CONTEXTA);
413 opts.fqd.fq_ctrl = cpu_to_be16(QM_FQCTRL_CTXASTASHING);
414 qm_fqd_set_stashing(&opts.fqd, 0, STASH_DATA_CL, STASH_CTX_CL);
415 err = qman_init_fq(&handler->rx, QMAN_INITFQ_FLAG_SCHED |
416 QMAN_INITFQ_FLAG_LOCAL, &opts);
417 if (err) {
418 pr_crit("qman_init_fq(rx) failed");
419 goto failed;
420 }
421
422 memset(&handler->tx, 0, sizeof(handler->tx));
423 err = qman_create_fq(handler->fqid_tx, QMAN_FQ_FLAG_NO_MODIFY,
424 &handler->tx);
425 if (err) {
426 pr_crit("qman_create_fq(tx) failed");
427 goto failed;
428 }
429
430 return 0;
431failed:
432 return err;
433}
434
435static void init_handler_cb(void *h)
436{
437 if (init_handler(h))
438 WARN_ON(1);
439}
440
441static int init_phase2(void)
442{
443 int loop;
444 u32 fqid = 0;
445 u32 lfsr = 0xdeadbeef;
446 struct hp_cpu *hp_cpu;
447 struct hp_handler *handler;
448
449 for (loop = 0; loop < HP_PER_CPU; loop++) {
450 list_for_each_entry(hp_cpu, &hp_cpu_list, node) {
451 int err;
452
453 if (!loop)
454 hp_cpu->iterator = list_first_entry(
455 &hp_cpu->handlers,
456 struct hp_handler, node);
457 else
458 hp_cpu->iterator = list_entry(
459 hp_cpu->iterator->node.next,
460 struct hp_handler, node);
461
462 hp_cpu->iterator->fqid_rx = fqid;
463
464 err = qman_alloc_fqid(&fqid);
465 if (err) {
466 pr_crit("qman_alloc_fqid() failed");
467 return err;
468 }
469 hp_cpu->iterator->fqid_tx = fqid;
470
471 hp_cpu->iterator->rx_mixer = lfsr;
472
473 lfsr = do_lfsr(lfsr);
474 hp_cpu->iterator->tx_mixer = lfsr;
475 }
476 }
477
478 hp_cpu = list_first_entry(&hp_cpu_list, struct hp_cpu, node);
479 handler = list_first_entry(&hp_cpu->handlers, struct hp_handler, node);
480 if (handler->fqid_rx != 0 || handler->rx_mixer != 0xdeadbeef)
481 return 1;
482 handler->fqid_rx = fqid;
483 handler->rx_mixer = lfsr;
484
485 special_handler = handler;
486 return 0;
487}
488
489static int init_phase3(void)
490{
491 int loop, err;
492 struct hp_cpu *hp_cpu;
493
494 for (loop = 0; loop < HP_PER_CPU; loop++) {
495 list_for_each_entry(hp_cpu, &hp_cpu_list, node) {
496 if (!loop)
497 hp_cpu->iterator = list_first_entry(
498 &hp_cpu->handlers,
499 struct hp_handler, node);
500 else
501 hp_cpu->iterator = list_entry(
502 hp_cpu->iterator->node.next,
503 struct hp_handler, node);
504 preempt_disable();
505 if (hp_cpu->processor_id == smp_processor_id()) {
506 err = init_handler(hp_cpu->iterator);
507 if (err)
508 return err;
509 } else {
510 smp_call_function_single(hp_cpu->processor_id,
511 init_handler_cb, hp_cpu->iterator, 1);
512 }
513 preempt_enable();
514 }
515 }
516 return 0;
517}
518
519static int send_first_frame(void *ignore)
520{
521 u32 *p = special_handler->frame_ptr;
522 u32 lfsr = HP_FIRST_WORD;
523 int loop, err;
524 struct qm_fd fd;
525
526 if (special_handler->processor_id != smp_processor_id()) {
527 err = -EIO;
528 goto failed;
529 }
530 memset(&fd, 0, sizeof(fd));
531 qm_fd_addr_set64(&fd, special_handler->addr);
532 qm_fd_set_contig_big(&fd, HP_NUM_WORDS * 4);
533 for (loop = 0; loop < HP_NUM_WORDS; loop++, p++) {
534 if (*p != lfsr) {
535 err = -EIO;
536 pr_crit("corrupt frame data");
537 goto failed;
538 }
539 *p ^= special_handler->tx_mixer;
540 lfsr = do_lfsr(lfsr);
541 }
542 pr_info("Sending first frame\n");
543 err = qman_enqueue(&special_handler->tx, &fd);
544 if (err) {
545 pr_crit("qman_enqueue() failed");
546 goto failed;
547 }
548
549 return 0;
550failed:
551 return err;
552}
553
554static void send_first_frame_cb(void *ignore)
555{
556 if (send_first_frame(NULL))
557 WARN_ON(1);
558}
559
560int qman_test_stash(void)
561{
562 int err;
563
564 if (cpumask_weight(cpu_online_mask) < 2) {
565 pr_info("%s(): skip - only 1 CPU\n", __func__);
566 return 0;
567 }
568
569 pr_info("%s(): Starting\n", __func__);
570
571 hp_cpu_list_length = 0;
572 loop_counter = 0;
573 hp_handler_slab = kmem_cache_create("hp_handler_slab",
574 sizeof(struct hp_handler), L1_CACHE_BYTES,
575 SLAB_HWCACHE_ALIGN, NULL);
576 if (!hp_handler_slab) {
577 err = -EIO;
578 pr_crit("kmem_cache_create() failed");
579 goto failed;
580 }
581
582 err = allocate_frame_data();
583 if (err)
584 goto failed;
585
586
587 pr_info("Creating %d handlers per cpu...\n", HP_PER_CPU);
588 if (on_all_cpus(create_per_cpu_handlers)) {
589 err = -EIO;
590 pr_crit("on_each_cpu() failed");
591 goto failed;
592 }
593 pr_info("Number of cpus: %d, total of %d handlers\n",
594 hp_cpu_list_length, hp_cpu_list_length * HP_PER_CPU);
595
596 err = init_phase2();
597 if (err)
598 goto failed;
599
600 err = init_phase3();
601 if (err)
602 goto failed;
603
604 preempt_disable();
605 if (special_handler->processor_id == smp_processor_id()) {
606 err = send_first_frame(NULL);
607 if (err)
608 goto failed;
609 } else {
610 smp_call_function_single(special_handler->processor_id,
611 send_first_frame_cb, NULL, 1);
612 }
613 preempt_enable();
614
615 wait_event(queue, loop_counter == HP_LOOPS);
616 deallocate_frame_data();
617 if (on_all_cpus(destroy_per_cpu_handlers)) {
618 err = -EIO;
619 pr_crit("on_each_cpu() failed");
620 goto failed;
621 }
622 kmem_cache_destroy(hp_handler_slab);
623 pr_info("%s(): Finished\n", __func__);
624
625 return 0;
626failed:
627 WARN_ON(1);
628 return err;
629}
630