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
32
33
34
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
|
// SPDX-License-Identifier: GPL-2.0
/* Copyright (c) 2025 Valve Corporation */
#include <linux/delay.h>
#include <linux/kthread.h>
#include <linux/ktime.h>
#include <linux/math64.h>
#include "sched_tests.h"
/*
* DRM scheduler tests exercise load balancing decisions ie. entity selection
* logic.
*/
static int drm_sched_scheduler_init(struct kunit *test)
{
struct drm_mock_scheduler *sched;
sched = drm_mock_sched_new(test, MAX_SCHEDULE_TIMEOUT);
sched->base.credit_limit = 1;
test->priv = sched;
return 0;
}
static int drm_sched_scheduler_init2(struct kunit *test)
{
struct drm_mock_scheduler *sched;
sched = drm_mock_sched_new(test, MAX_SCHEDULE_TIMEOUT);
sched->base.credit_limit = 2;
test->priv = sched;
return 0;
}
static void drm_sched_scheduler_exit(struct kunit *test)
{
struct drm_mock_scheduler *sched = test->priv;
drm_mock_sched_fini(sched);
}
static void drm_sched_scheduler_queue_overhead(struct kunit *test)
{
struct drm_mock_scheduler *sched = test->priv;
struct drm_mock_sched_entity *entity;
const unsigned int job_us = 1000;
const unsigned int jobs = 1000;
const unsigned int total_us = jobs * job_us;
struct drm_mock_sched_job *job, *first;
ktime_t start, end;
bool done;
int i;
/*
* Deep queue job at a time processing (single credit).
*
* This measures the overhead of picking and processing a job at a time
* by comparing the ideal total "GPU" time of all submitted jobs versus
* the time actually taken.
*/
KUNIT_ASSERT_EQ(test, sched->base.credit_limit, 1);
entity = drm_mock_sched_entity_new(test,
DRM_SCHED_PRIORITY_NORMAL,
sched);
for (i = 0; i <= jobs; i++) {
job = drm_mock_sched_job_new(test, entity);
if (i == 0)
first = job; /* Extra first job blocks the queue */
else
drm_mock_sched_job_set_duration_us(job, job_us);
drm_mock_sched_job_submit(job);
}
done = drm_mock_sched_job_wait_scheduled(first, HZ);
KUNIT_ASSERT_TRUE(test, done);
start = ktime_get();
i = drm_mock_sched_advance(sched, 1); /* Release the queue */
KUNIT_ASSERT_EQ(test, i, 1);
/* Wait with a safe margin to avoid every failing. */
done = drm_mock_sched_job_wait_finished(job,
usecs_to_jiffies(total_us) * 5);
end = ktime_get();
KUNIT_ASSERT_TRUE(test, done);
pr_info("Expected %uus, actual %lldus\n",
total_us,
ktime_to_us(ktime_sub(end, start)));
drm_mock_sched_entity_free(entity);
}
static void drm_sched_scheduler_ping_pong(struct kunit *test)
{
struct drm_mock_sched_job *job, *first, *prev = NULL;
struct drm_mock_scheduler *sched = test->priv;
struct drm_mock_sched_entity *entity[2];
const unsigned int job_us = 1000;
const unsigned int jobs = 1000;
const unsigned int total_us = jobs * job_us;
ktime_t start, end;
bool done;
int i;
/*
* Two entitites in inter-dependency chain.
*
* This measures the overhead of picking and processing a job at a time,
* where each job depends on the previous one from the diffferent
* entity, by comparing the ideal total "GPU" time of all submitted jobs
* versus the time actually taken.
*/
KUNIT_ASSERT_EQ(test, sched->base.credit_limit, 1);
for (i = 0; i < ARRAY_SIZE(entity); i++)
entity[i] = drm_mock_sched_entity_new(test,
DRM_SCHED_PRIORITY_NORMAL,
sched);
for (i = 0; i <= jobs; i++) {
job = drm_mock_sched_job_new(test, entity[i & 1]);
if (i == 0)
first = job; /* Extra first job blocks the queue */
else
drm_mock_sched_job_set_duration_us(job, job_us);
if (prev)
drm_sched_job_add_dependency(&job->base,
dma_fence_get(&prev->base.s_fence->finished));
drm_mock_sched_job_submit(job);
prev = job;
}
done = drm_mock_sched_job_wait_scheduled(first, HZ);
KUNIT_ASSERT_TRUE(test, done);
start = ktime_get();
i = drm_mock_sched_advance(sched, 1); /* Release the queue */
KUNIT_ASSERT_EQ(test, i, 1);
/* Wait with a safe margin to avoid every failing. */
done = drm_mock_sched_job_wait_finished(job,
usecs_to_jiffies(total_us) * 5);
end = ktime_get();
KUNIT_ASSERT_TRUE(test, done);
pr_info("Expected %uus, actual %lldus\n",
total_us,
ktime_to_us(ktime_sub(end, start)));
for (i = 0; i < ARRAY_SIZE(entity); i++)
drm_mock_sched_entity_free(entity[i]);
}
static struct kunit_case drm_sched_scheduler_overhead_tests[] = {
KUNIT_CASE_SLOW(drm_sched_scheduler_queue_overhead),
KUNIT_CASE_SLOW(drm_sched_scheduler_ping_pong),
{}
};
static struct kunit_suite drm_sched_scheduler_overhead = {
.name = "drm_sched_scheduler_overhead_tests",
.init = drm_sched_scheduler_init,
.exit = drm_sched_scheduler_exit,
.test_cases = drm_sched_scheduler_overhead_tests,
};
/*
* struct drm_sched_client_params - describe a workload emitted from a client
*
* A simulated client will create an entity with a scheduling @priority and emit
* jobs in a loop where each iteration will consist of:
*
* 1. Submit @job_cnt jobs, each with a set duration of @job_us.
* 2. If @sync is true wait for last submitted job to finish.
* 3. Sleep for @wait_us micro-seconds.
* 4. Repeat.
*/
struct drm_sched_client_params {
enum drm_sched_priority priority;
unsigned int job_cnt;
unsigned int job_us;
bool sync;
unsigned int wait_us;
};
struct drm_sched_test_params {
const char *description;
unsigned int num_clients;
struct drm_sched_client_params client[2];
};
static const struct drm_sched_test_params drm_sched_cases[] = {
{
.description = "Normal priority and normal priority",
.client[0] = {
.priority = DRM_SCHED_PRIORITY_NORMAL,
.job_cnt = 1,
.job_us = 8000,
.wait_us = 0,
.sync = false,
},
.client[1] = {
.priority = DRM_SCHED_PRIORITY_NORMAL,
.job_cnt = 1,
.job_us = 8000,
.wait_us = 0,
.sync = false,
},
},
{
.description = "Normal priority and low priority",
.client[0] = {
.priority = DRM_SCHED_PRIORITY_NORMAL,
.job_cnt = 1,
.job_us = 8000,
.wait_us = 0,
.sync = false,
},
.client[1] = {
.priority = DRM_SCHED_PRIORITY_LOW,
.job_cnt = 1,
.job_us = 8000,
.wait_us = 0,
.sync = false,
},
},
{
.description = "High priority and normal priority",
.client[0] = {
.priority = DRM_SCHED_PRIORITY_HIGH,
.job_cnt = 1,
.job_us = 8000,
.wait_us = 0,
.sync = false,
},
.client[1] = {
.priority = DRM_SCHED_PRIORITY_NORMAL,
.job_cnt = 1,
.job_us = 8000,
.wait_us = 0,
.sync = false,
},
},
{
.description = "High priority and low priority",
.client[0] = {
.priority = DRM_SCHED_PRIORITY_HIGH,
.job_cnt = 1,
.job_us = 8000,
.wait_us = 0,
.sync = false,
},
.client[1] = {
.priority = DRM_SCHED_PRIORITY_LOW,
.job_cnt = 1,
.job_us = 8000,
.wait_us = 0,
.sync = false,
},
},
{
.description = "50% and 50%",
.client[0] = {
.priority = DRM_SCHED_PRIORITY_NORMAL,
.job_cnt = 1,
.job_us = 1500,
.wait_us = 1500,
.sync = true,
},
.client[1] = {
.priority = DRM_SCHED_PRIORITY_NORMAL,
.job_cnt = 1,
.job_us = 2500,
.wait_us = 2500,
.sync = true,
},
},
{
.description = "50% and 50% low priority",
.client[0] = {
.priority = DRM_SCHED_PRIORITY_NORMAL,
.job_cnt = 1,
.job_us = 1500,
.wait_us = 1500,
.sync = true,
},
.client[1] = {
.priority = DRM_SCHED_PRIORITY_LOW,
.job_cnt = 1,
.job_us = 2500,
.wait_us = 2500,
.sync = true,
},
},
{
.description = "50% high priority and 50%",
.client[0] = {
.priority = DRM_SCHED_PRIORITY_HIGH,
.job_cnt = 1,
.job_us = 1500,
.wait_us = 1500,
.sync = true,
},
.client[1] = {
.priority = DRM_SCHED_PRIORITY_NORMAL,
.job_cnt = 1,
.job_us = 2500,
.wait_us = 2500,
.sync = true,
},
},
{
.description = "Low priority hog and interactive client",
.client[0] = {
.priority = DRM_SCHED_PRIORITY_LOW,
.job_cnt = 3,
.job_us = 2500,
.wait_us = 500,
.sync = false,
},
.client[1] = {
.priority = DRM_SCHED_PRIORITY_NORMAL,
.job_cnt = 1,
.job_us = 500,
.wait_us = 10000,
.sync = true,
},
},
{
.description = "Heavy rendering and interactive client",
.client[0] = {
.priority = DRM_SCHED_PRIORITY_NORMAL,
.job_cnt = 3,
.job_us = 2500,
.wait_us = 2500,
.sync = true,
},
.client[1] = {
.priority = DRM_SCHED_PRIORITY_NORMAL,
.job_cnt = 1,
.job_us = 1000,
.wait_us = 9000,
.sync = true,
},
},
{
.description = "Very heavy rendering and interactive client",
.client[0] = {
.priority = DRM_SCHED_PRIORITY_NORMAL,
.job_cnt = 4,
.job_us = 50000,
.wait_us = 1,
.sync = true,
},
.client[1] = {
.priority = DRM_SCHED_PRIORITY_NORMAL,
.job_cnt = 1,
.job_us = 1000,
.wait_us = 9000,
.sync = true,
},
},
};
static void
drm_sched_desc(const struct drm_sched_test_params *params, char *desc)
{
strscpy(desc, params->description, KUNIT_PARAM_DESC_SIZE);
}
KUNIT_ARRAY_PARAM(drm_sched_scheduler_two_clients,
drm_sched_cases,
drm_sched_desc);
/*
* struct test_client_stats - track client stats
*
* For each client executing a simulated workload we track some timings for
* which we are interested in the minimum of all iterations (@min_us), maximum
* (@max_us) and the overall total for all iterations (@tot_us).
*/
struct test_client_stats {
unsigned int min_us;
unsigned int max_us;
unsigned long tot_us;
};
/*
* struct test_client - a simulated userspace client submitting scheduler work
*
* Each client executing a simulated workload is represented by one of these.
*
* Each of them instantiates a scheduling @entity and executes a workloads as
* defined in @params. Based on those @params the theoretical execution time of
* the client is calculated as @ideal_duration, while the actual wall time is
* tracked in @duration (calculated based on the @start and @end client time-
* stamps).
*
* Numerical @id is assigned to each for logging purposes.
*
* @worker and @work are used to provide an independent execution context from
* which scheduler jobs are submitted.
*
* During execution statistics on how long it took to submit and execute one
* iteration (whether or not synchronous) is kept in @cycle_time, while
* @latency_time tracks the @cycle_time minus the ideal duration of the one
* cycle.
*
* Once the client has completed the set number of iterations it will write the
* completion status into @done.
*/
struct test_client {
struct kunit *test; /* Backpointer to the kunit test. */
struct drm_mock_sched_entity *entity;
struct kthread_worker *worker;
struct kthread_work work;
struct drm_sched_client_params params;
unsigned int id;
ktime_t duration;
ktime_t ideal_duration;
unsigned int cycles;
unsigned int cycle;
ktime_t start;
ktime_t end;
bool done;
struct test_client_stats cycle_time;
struct test_client_stats latency_time;
};
static void
update_stats(struct test_client_stats *stats, unsigned int us)
{
if (us > stats->max_us)
stats->max_us = us;
if (us < stats->min_us)
stats->min_us = us;
stats->tot_us += us;
}
static unsigned int
get_stats_avg(struct test_client_stats *stats, unsigned int cycles)
{
return div_u64(stats->tot_us, cycles);
}
static void drm_sched_client_work(struct kthread_work *work)
{
struct test_client *client = container_of(work, typeof(*client), work);
const long sync_wait = MAX_SCHEDULE_TIMEOUT;
unsigned int cycle, work_us, period_us;
struct drm_mock_sched_job *job = NULL;
work_us = client->params.job_cnt * client->params.job_us;
period_us = work_us + client->params.wait_us;
client->cycles =
DIV_ROUND_UP((unsigned int)ktime_to_us(client->duration),
period_us);
client->ideal_duration = us_to_ktime(client->cycles * period_us);
client->start = ktime_get();
for (cycle = 0; cycle < client->cycles; cycle++) {
ktime_t cycle_time;
unsigned int batch;
unsigned long us;
if (READ_ONCE(client->done))
break;
cycle_time = ktime_get();
for (batch = 0; batch < client->params.job_cnt; batch++) {
job = drm_mock_sched_job_new(client->test,
client->entity);
drm_mock_sched_job_set_duration_us(job,
client->params.job_us);
drm_mock_sched_job_submit(job);
}
if (client->params.sync)
drm_mock_sched_job_wait_finished(job, sync_wait);
cycle_time = ktime_sub(ktime_get(), cycle_time);
us = ktime_to_us(cycle_time);
update_stats(&client->cycle_time, us);
if (ktime_to_us(cycle_time) >= (long)work_us)
us = ktime_to_us(cycle_time) - work_us;
else if (WARN_ON_ONCE(client->params.sync)) /* GPU job took less than expected. */
us = 0;
update_stats(&client->latency_time, us);
WRITE_ONCE(client->cycle, cycle);
if (READ_ONCE(client->done))
break;
if (client->params.wait_us)
fsleep(client->params.wait_us);
else if (!client->params.sync)
cond_resched(); /* Do not hog the CPU if fully async. */
}
client->done = drm_mock_sched_job_wait_finished(job, sync_wait);
client->end = ktime_get();
}
static const char *prio_str(enum drm_sched_priority prio)
{
switch (prio) {
case DRM_SCHED_PRIORITY_KERNEL:
return "kernel";
case DRM_SCHED_PRIORITY_LOW:
return "low";
case DRM_SCHED_PRIORITY_NORMAL:
return "normal";
case DRM_SCHED_PRIORITY_HIGH:
return "high";
default:
return "???";
}
}
static bool client_done(struct test_client *client)
{
return READ_ONCE(client->done); /* READ_ONCE to document lockless read from a loop. */
}
static void drm_sched_scheduler_two_clients_test(struct kunit *test)
{
const struct drm_sched_test_params *params = test->param_value;
struct drm_mock_scheduler *sched = test->priv;
struct test_client client[2] = { };
unsigned int prev_cycle[2] = { };
unsigned int i, j;
ktime_t start;
/*
* Same job stream from two clients.
*/
for (i = 0; i < ARRAY_SIZE(client); i++)
client[i].entity =
drm_mock_sched_entity_new(test,
params->client[i].priority,
sched);
for (i = 0; i < ARRAY_SIZE(client); i++) {
client[i].test = test;
client[i].id = i;
client[i].duration = ms_to_ktime(1000);
client[i].params = params->client[i];
client[i].cycle_time.min_us = ~0U;
client[i].latency_time.min_us = ~0U;
client[i].worker =
kthread_create_worker(0, "%s-%u", __func__, i);
if (IS_ERR(client[i].worker)) {
for (j = 0; j < i; j++)
kthread_destroy_worker(client[j].worker);
KUNIT_FAIL(test, "Failed to create worker!\n");
}
kthread_init_work(&client[i].work, drm_sched_client_work);
}
for (i = 0; i < ARRAY_SIZE(client); i++)
kthread_queue_work(client[i].worker, &client[i].work);
/*
* The clients (workers) can be a mix of async (deep submission queue),
* sync (one job at a time), or something in between. Therefore it is
* difficult to display a single metric representing their progress.
*
* Each struct drm_sched_client_params describes the actual submission
* pattern which happens in the following steps:
* 1. Submit N jobs
* 2. Wait for last submitted job to finish
* 3. Sleep for U micro-seconds
* 4. Goto 1. for C cycles
*
* Where number of cycles is calculated to match the target client
* duration from the respective struct drm_sched_test_params.
*
* To asses scheduling behaviour what we output for both clients is:
* - pct: Percentage progress of the jobs submitted
* - cps: "Cycles" per second (where one cycle is one complete
* iteration from the above)
* - qd: Number of outstanding jobs in the client/entity
*/
pr_info(" [pct] - Job sumission progress\n"
" [cps] - Cycles per second\n"
" [qd] - Number of outstanding jobs in the client/entity\n");
pr_info("%s:\n\t pct1 cps1 qd1; pct2 cps2 qd2\n",
params->description);
start = ktime_get();
while (!client_done(&client[0]) || !client_done(&client[1])) {
const unsigned int period_ms = 100;
const unsigned int frequency = 1000 / period_ms;
unsigned int pct[2], qd[2], cycle[2], cps[2];
for (i = 0; i < ARRAY_SIZE(client); i++) {
qd[i] = spsc_queue_count(&client[i].entity->base.job_queue);
cycle[i] = READ_ONCE(client[i].cycle);
cps[i] = DIV_ROUND_UP(100 * frequency *
(cycle[i] - prev_cycle[i]),
100);
if (client[i].cycles)
pct[i] = DIV_ROUND_UP(100 * (1 + cycle[i]),
client[i].cycles);
else
pct[i] = 0;
prev_cycle[i] = cycle[i];
}
if (client_done(&client[0]))
pr_info("\t+%6lldms: ; %3u %5u %4u\n",
ktime_to_ms(ktime_sub(ktime_get(), start)),
pct[1], cps[1], qd[1]);
else if (client_done(&client[1]))
pr_info("\t+%6lldms: %3u %5u %4u;\n",
ktime_to_ms(ktime_sub(ktime_get(), start)),
pct[0], cps[0], qd[0]);
else
pr_info("\t+%6lldms: %3u %5u %4u; %3u %5u %4u\n",
ktime_to_ms(ktime_sub(ktime_get(), start)),
pct[0], cps[0], qd[0],
pct[1], cps[1], qd[1]);
msleep(period_ms);
}
for (i = 0; i < ARRAY_SIZE(client); i++) {
kthread_flush_work(&client[i].work);
kthread_destroy_worker(client[i].worker);
}
for (i = 0; i < ARRAY_SIZE(client); i++)
KUNIT_ASSERT_TRUE(test, client[i].done);
for (i = 0; i < ARRAY_SIZE(client); i++) {
pr_info(" %u: prio=%s sync=%u elapsed_ms=%lldms (ideal_ms=%lldms) cycle_time(min,avg,max)=%u,%u,%u us latency_time(min,avg,max)=%u,%u,%u us",
i,
prio_str(params->client[i].priority),
params->client[i].sync,
ktime_to_ms(ktime_sub(client[i].end, client[i].start)),
ktime_to_ms(client[i].ideal_duration),
client[i].cycle_time.min_us,
get_stats_avg(&client[i].cycle_time, client[i].cycles),
client[i].cycle_time.max_us,
client[i].latency_time.min_us,
get_stats_avg(&client[i].latency_time, client[i].cycles),
client[i].latency_time.max_us);
drm_mock_sched_entity_free(client[i].entity);
}
}
static struct kunit_case drm_sched_scheduler_two_clients_tests[] = {
KUNIT_CASE_PARAM_ATTR(drm_sched_scheduler_two_clients_test,
drm_sched_scheduler_two_clients_gen_params,
{ .speed = KUNIT_SPEED_SLOW }),
{}
};
static struct kunit_suite drm_sched_scheduler_two_clients1 = {
.name = "drm_sched_scheduler_two_clients_one_credit_tests",
.init = drm_sched_scheduler_init,
.exit = drm_sched_scheduler_exit,
.test_cases = drm_sched_scheduler_two_clients_tests,
};
static struct kunit_suite drm_sched_scheduler_two_clients2 = {
.name = "drm_sched_scheduler_two_clients_two_credits_tests",
.init = drm_sched_scheduler_init2,
.exit = drm_sched_scheduler_exit,
.test_cases = drm_sched_scheduler_two_clients_tests,
};
static const struct drm_sched_test_params drm_sched_many_cases[] = {
{
.description = "2 clients",
.num_clients = 2,
.client[0] = {
.priority = DRM_SCHED_PRIORITY_NORMAL,
.job_cnt = 4,
.job_us = 1000,
.wait_us = 0,
.sync = true,
},
},
{
.description = "3 clients",
.num_clients = 3,
.client[0] = {
.priority = DRM_SCHED_PRIORITY_NORMAL,
.job_cnt = 4,
.job_us = 1000,
.wait_us = 0,
.sync = true,
},
},
{
.description = "7 clients",
.num_clients = 7,
.client[0] = {
.priority = DRM_SCHED_PRIORITY_NORMAL,
.job_cnt = 4,
.job_us = 1000,
.wait_us = 0,
.sync = true,
},
},
{
.description = "13 clients",
.num_clients = 13,
.client[0] = {
.priority = DRM_SCHED_PRIORITY_NORMAL,
.job_cnt = 4,
.job_us = 1000,
.wait_us = 0,
.sync = true,
},
},
{
.description = "31 clients",
.num_clients = 31,
.client[0] = {
.priority = DRM_SCHED_PRIORITY_NORMAL,
.job_cnt = 2,
.job_us = 1000,
.wait_us = 0,
.sync = true,
},
},
};
KUNIT_ARRAY_PARAM(drm_sched_scheduler_many_clients,
drm_sched_many_cases,
drm_sched_desc);
static void drm_sched_scheduler_many_clients_test(struct kunit *test)
{
const struct drm_sched_test_params *params = test->param_value;
struct drm_mock_scheduler *sched = test->priv;
const unsigned int clients = params->num_clients;
unsigned int i, j, delta_total = 0, loops = 0;
struct test_client *client;
unsigned int *prev_cycle;
ktime_t start;
char *buf;
/*
* Many clients with deep-ish async queues.
*/
buf = kunit_kmalloc(test, PAGE_SIZE, GFP_KERNEL);
KUNIT_ASSERT_NOT_NULL(test, buf);
client = kunit_kcalloc(test, clients, sizeof(*client), GFP_KERNEL);
KUNIT_ASSERT_NOT_NULL(test, client);
prev_cycle = kunit_kcalloc(test, clients, sizeof(*prev_cycle),
GFP_KERNEL);
KUNIT_ASSERT_NOT_NULL(test, prev_cycle);
for (i = 0; i < clients; i++)
client[i].entity =
drm_mock_sched_entity_new(test,
DRM_SCHED_PRIORITY_NORMAL,
sched);
for (i = 0; i < clients; i++) {
client[i].test = test;
client[i].id = i;
client[i].params = params->client[0];
client[i].duration = ms_to_ktime(1000 / clients);
client[i].cycle_time.min_us = ~0U;
client[i].latency_time.min_us = ~0U;
client[i].worker =
kthread_create_worker(0, "%s-%u", __func__, i);
if (IS_ERR(client[i].worker)) {
for (j = 0; j < i; j++)
kthread_destroy_worker(client[j].worker);
KUNIT_FAIL(test, "Failed to create worker!\n");
}
kthread_init_work(&client[i].work, drm_sched_client_work);
}
for (i = 0; i < clients; i++)
kthread_queue_work(client[i].worker, &client[i].work);
start = ktime_get();
pr_info("%u clients:\n\tt\t\tcycle:\t min avg max : ...\n", clients);
for (;;) {
unsigned int min = ~0;
unsigned int max = 0;
unsigned int total = 0;
bool done = true;
char pbuf[16];
memset(buf, 0, PAGE_SIZE);
for (i = 0; i < clients; i++) {
unsigned int cycle, cycles;
/* Read current progress from the threaded worker. */
cycle = READ_ONCE(client[i].cycle);
cycles = READ_ONCE(client[i].cycles);
snprintf(pbuf, sizeof(pbuf), " %3d", cycle);
strncat(buf, pbuf, PAGE_SIZE);
total += cycle;
if (cycle < min)
min = cycle;
if (cycle > max)
max = cycle;
if (!min || (cycle + 1) < cycles)
done = false;
}
loops++;
delta_total += max - min;
pr_info("\t+%6lldms\t\t %3u %3u %3u :%s\n",
ktime_to_ms(ktime_sub(ktime_get(), start)),
min, DIV_ROUND_UP(total, clients), max, buf);
if (done)
break;
msleep(100);
}
pr_info(" avg_max_min_delta(x100)=%u\n",
loops ? DIV_ROUND_UP(delta_total * 100, loops) : 0);
for (i = 0; i < clients; i++) {
kthread_flush_work(&client[i].work);
kthread_destroy_worker(client[i].worker);
}
for (i = 0; i < clients; i++)
drm_mock_sched_entity_free(client[i].entity);
}
static struct kunit_case drm_sched_scheduler_many_clients_tests[] = {
KUNIT_CASE_PARAM_ATTR(drm_sched_scheduler_many_clients_test,
drm_sched_scheduler_many_clients_gen_params,
{ .speed = KUNIT_SPEED_SLOW }),
{}
};
static struct kunit_suite drm_sched_scheduler_many_clients = {
.name = "drm_sched_scheduler_many_clients_tests",
.init = drm_sched_scheduler_init2,
.exit = drm_sched_scheduler_exit,
.test_cases = drm_sched_scheduler_many_clients_tests,
};
kunit_test_suites(&drm_sched_scheduler_overhead,
&drm_sched_scheduler_two_clients1,
&drm_sched_scheduler_two_clients2,
&drm_sched_scheduler_many_clients);
|