Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
1// SPDX-License-Identifier: GPL-2.0 AND MIT
2/*
3 * Copyright © 2023 Intel Corporation
4 */
5#include <linux/mm.h>
6
7#include <drm/ttm/ttm_tt.h>
8#include <drm/ttm/ttm_pool.h>
9
10#include "ttm_kunit_helpers.h"
11#include "../ttm_pool_internal.h"
12
13struct ttm_pool_test_case {
14 const char *description;
15 unsigned int order;
16 unsigned int alloc_flags;
17};
18
19struct ttm_pool_test_priv {
20 struct ttm_test_devices *devs;
21
22 /* Used to create mock ttm_tts */
23 struct ttm_buffer_object *mock_bo;
24};
25
26static struct ttm_operation_ctx simple_ctx = {
27 .interruptible = true,
28 .no_wait_gpu = false,
29};
30
31static int ttm_pool_test_init(struct kunit *test)
32{
33 struct ttm_pool_test_priv *priv;
34
35 priv = kunit_kzalloc(test, sizeof(*priv), GFP_KERNEL);
36 KUNIT_ASSERT_NOT_NULL(test, priv);
37
38 priv->devs = ttm_test_devices_basic(test);
39 test->priv = priv;
40
41 return 0;
42}
43
44static void ttm_pool_test_fini(struct kunit *test)
45{
46 struct ttm_pool_test_priv *priv = test->priv;
47
48 ttm_test_devices_put(test, priv->devs);
49}
50
51static struct ttm_tt *ttm_tt_kunit_init(struct kunit *test,
52 u32 page_flags,
53 enum ttm_caching caching,
54 size_t size)
55{
56 struct ttm_pool_test_priv *priv = test->priv;
57 struct ttm_buffer_object *bo;
58 struct ttm_tt *tt;
59 int err;
60
61 bo = ttm_bo_kunit_init(test, priv->devs, size, NULL);
62 KUNIT_ASSERT_NOT_NULL(test, bo);
63 priv->mock_bo = bo;
64
65 tt = kunit_kzalloc(test, sizeof(*tt), GFP_KERNEL);
66 KUNIT_ASSERT_NOT_NULL(test, tt);
67
68 err = ttm_tt_init(tt, priv->mock_bo, page_flags, caching, 0);
69 KUNIT_ASSERT_EQ(test, err, 0);
70
71 return tt;
72}
73
74static struct ttm_pool *ttm_pool_pre_populated(struct kunit *test,
75 size_t size,
76 enum ttm_caching caching)
77{
78 struct ttm_pool_test_priv *priv = test->priv;
79 struct ttm_test_devices *devs = priv->devs;
80 struct ttm_pool *pool;
81 struct ttm_tt *tt;
82 int err;
83
84 tt = ttm_tt_kunit_init(test, 0, caching, size);
85 KUNIT_ASSERT_NOT_NULL(test, tt);
86
87 pool = kunit_kzalloc(test, sizeof(*pool), GFP_KERNEL);
88 KUNIT_ASSERT_NOT_NULL(test, pool);
89
90 ttm_pool_init(pool, devs->dev, NUMA_NO_NODE, TTM_ALLOCATION_POOL_USE_DMA_ALLOC);
91
92 err = ttm_pool_alloc(pool, tt, &simple_ctx);
93 KUNIT_ASSERT_EQ(test, err, 0);
94
95 ttm_pool_free(pool, tt);
96 ttm_tt_fini(tt);
97
98 return pool;
99}
100
101static const struct ttm_pool_test_case ttm_pool_basic_cases[] = {
102 {
103 .description = "One page",
104 .order = 0,
105 },
106 {
107 .description = "More than one page",
108 .order = 2,
109 },
110 {
111 .description = "Above the allocation limit",
112 .order = MAX_PAGE_ORDER + 1,
113 },
114 {
115 .description = "One page, with coherent DMA mappings enabled",
116 .order = 0,
117 .alloc_flags = TTM_ALLOCATION_POOL_USE_DMA_ALLOC,
118 },
119 {
120 .description = "Above the allocation limit, with coherent DMA mappings enabled",
121 .order = MAX_PAGE_ORDER + 1,
122 .alloc_flags = TTM_ALLOCATION_POOL_USE_DMA_ALLOC,
123 },
124};
125
126static void ttm_pool_alloc_case_desc(const struct ttm_pool_test_case *t,
127 char *desc)
128{
129 strscpy(desc, t->description, KUNIT_PARAM_DESC_SIZE);
130}
131
132KUNIT_ARRAY_PARAM(ttm_pool_alloc_basic, ttm_pool_basic_cases,
133 ttm_pool_alloc_case_desc);
134
135static void ttm_pool_alloc_basic(struct kunit *test)
136{
137 struct ttm_pool_test_priv *priv = test->priv;
138 struct ttm_test_devices *devs = priv->devs;
139 const struct ttm_pool_test_case *params = test->param_value;
140 struct ttm_tt *tt;
141 struct ttm_pool *pool;
142 struct page *fst_page, *last_page;
143 enum ttm_caching caching = ttm_uncached;
144 unsigned int expected_num_pages = 1 << params->order;
145 size_t size = expected_num_pages * PAGE_SIZE;
146 int err;
147
148 tt = ttm_tt_kunit_init(test, 0, caching, size);
149 KUNIT_ASSERT_NOT_NULL(test, tt);
150
151 pool = kunit_kzalloc(test, sizeof(*pool), GFP_KERNEL);
152 KUNIT_ASSERT_NOT_NULL(test, pool);
153
154 ttm_pool_init(pool, devs->dev, NUMA_NO_NODE, params->alloc_flags);
155
156 KUNIT_ASSERT_PTR_EQ(test, pool->dev, devs->dev);
157 KUNIT_ASSERT_EQ(test, pool->nid, NUMA_NO_NODE);
158 KUNIT_ASSERT_EQ(test, pool->alloc_flags, params->alloc_flags);
159
160 err = ttm_pool_alloc(pool, tt, &simple_ctx);
161 KUNIT_ASSERT_EQ(test, err, 0);
162 KUNIT_ASSERT_EQ(test, tt->num_pages, expected_num_pages);
163
164 fst_page = tt->pages[0];
165 last_page = tt->pages[tt->num_pages - 1];
166
167 if (params->order <= MAX_PAGE_ORDER) {
168 if (ttm_pool_uses_dma_alloc(pool)) {
169 KUNIT_ASSERT_NOT_NULL(test, (void *)fst_page->private);
170 KUNIT_ASSERT_NOT_NULL(test, (void *)last_page->private);
171 } else {
172 KUNIT_ASSERT_EQ(test, fst_page->private, params->order);
173 }
174 } else {
175 if (ttm_pool_uses_dma_alloc(pool)) {
176 KUNIT_ASSERT_NOT_NULL(test, (void *)fst_page->private);
177 KUNIT_ASSERT_NULL(test, (void *)last_page->private);
178 } else {
179 /*
180 * We expect to alloc one big block, followed by
181 * order 0 blocks
182 */
183 KUNIT_ASSERT_EQ(test, fst_page->private,
184 min_t(unsigned int, MAX_PAGE_ORDER,
185 params->order));
186 KUNIT_ASSERT_EQ(test, last_page->private, 0);
187 }
188 }
189
190 ttm_pool_free(pool, tt);
191 ttm_tt_fini(tt);
192 ttm_pool_fini(pool);
193}
194
195static void ttm_pool_alloc_basic_dma_addr(struct kunit *test)
196{
197 struct ttm_pool_test_priv *priv = test->priv;
198 struct ttm_test_devices *devs = priv->devs;
199 const struct ttm_pool_test_case *params = test->param_value;
200 struct ttm_tt *tt;
201 struct ttm_pool *pool;
202 struct ttm_buffer_object *bo;
203 dma_addr_t dma1, dma2;
204 enum ttm_caching caching = ttm_uncached;
205 unsigned int expected_num_pages = 1 << params->order;
206 size_t size = expected_num_pages * PAGE_SIZE;
207 int err;
208
209 tt = kunit_kzalloc(test, sizeof(*tt), GFP_KERNEL);
210 KUNIT_ASSERT_NOT_NULL(test, tt);
211
212 bo = ttm_bo_kunit_init(test, devs, size, NULL);
213 KUNIT_ASSERT_NOT_NULL(test, bo);
214
215 err = ttm_sg_tt_init(tt, bo, 0, caching);
216 KUNIT_ASSERT_EQ(test, err, 0);
217
218 pool = kunit_kzalloc(test, sizeof(*pool), GFP_KERNEL);
219 KUNIT_ASSERT_NOT_NULL(test, pool);
220
221 ttm_pool_init(pool, devs->dev, NUMA_NO_NODE, TTM_ALLOCATION_POOL_USE_DMA_ALLOC);
222
223 err = ttm_pool_alloc(pool, tt, &simple_ctx);
224 KUNIT_ASSERT_EQ(test, err, 0);
225 KUNIT_ASSERT_EQ(test, tt->num_pages, expected_num_pages);
226
227 dma1 = tt->dma_address[0];
228 dma2 = tt->dma_address[tt->num_pages - 1];
229
230 KUNIT_ASSERT_NOT_NULL(test, (void *)(uintptr_t)dma1);
231 KUNIT_ASSERT_NOT_NULL(test, (void *)(uintptr_t)dma2);
232
233 ttm_pool_free(pool, tt);
234 ttm_tt_fini(tt);
235 ttm_pool_fini(pool);
236}
237
238static void ttm_pool_alloc_order_caching_match(struct kunit *test)
239{
240 struct ttm_tt *tt;
241 struct ttm_pool *pool;
242 struct ttm_pool_type *pt;
243 enum ttm_caching caching = ttm_uncached;
244 unsigned int order = 0;
245 size_t size = PAGE_SIZE;
246 int err;
247
248 pool = ttm_pool_pre_populated(test, size, caching);
249
250 pt = &pool->caching[caching].orders[order];
251 KUNIT_ASSERT_FALSE(test, !list_lru_count(&pt->pages));
252
253 tt = ttm_tt_kunit_init(test, 0, caching, size);
254 KUNIT_ASSERT_NOT_NULL(test, tt);
255
256 err = ttm_pool_alloc(pool, tt, &simple_ctx);
257 KUNIT_ASSERT_EQ(test, err, 0);
258
259 KUNIT_ASSERT_TRUE(test, !list_lru_count(&pt->pages));
260
261 ttm_pool_free(pool, tt);
262 ttm_tt_fini(tt);
263 ttm_pool_fini(pool);
264}
265
266static void ttm_pool_alloc_caching_mismatch(struct kunit *test)
267{
268 struct ttm_tt *tt;
269 struct ttm_pool *pool;
270 struct ttm_pool_type *pt_pool, *pt_tt;
271 enum ttm_caching tt_caching = ttm_uncached;
272 enum ttm_caching pool_caching = ttm_cached;
273 size_t size = PAGE_SIZE;
274 unsigned int order = 0;
275 int err;
276
277 pool = ttm_pool_pre_populated(test, size, pool_caching);
278
279 pt_pool = &pool->caching[pool_caching].orders[order];
280 pt_tt = &pool->caching[tt_caching].orders[order];
281
282 tt = ttm_tt_kunit_init(test, 0, tt_caching, size);
283 KUNIT_ASSERT_NOT_NULL(test, tt);
284
285 KUNIT_ASSERT_FALSE(test, !list_lru_count(&pt_pool->pages));
286 KUNIT_ASSERT_TRUE(test, !list_lru_count(&pt_tt->pages));
287
288 err = ttm_pool_alloc(pool, tt, &simple_ctx);
289 KUNIT_ASSERT_EQ(test, err, 0);
290
291 ttm_pool_free(pool, tt);
292 ttm_tt_fini(tt);
293
294 KUNIT_ASSERT_FALSE(test, !list_lru_count(&pt_pool->pages));
295 KUNIT_ASSERT_FALSE(test, !list_lru_count(&pt_tt->pages));
296
297 ttm_pool_fini(pool);
298}
299
300static void ttm_pool_alloc_order_mismatch(struct kunit *test)
301{
302 struct ttm_tt *tt;
303 struct ttm_pool *pool;
304 struct ttm_pool_type *pt_pool, *pt_tt;
305 enum ttm_caching caching = ttm_uncached;
306 unsigned int order = 2;
307 size_t fst_size = (1 << order) * PAGE_SIZE;
308 size_t snd_size = PAGE_SIZE;
309 int err;
310
311 pool = ttm_pool_pre_populated(test, fst_size, caching);
312
313 pt_pool = &pool->caching[caching].orders[order];
314 pt_tt = &pool->caching[caching].orders[0];
315
316 tt = ttm_tt_kunit_init(test, 0, caching, snd_size);
317 KUNIT_ASSERT_NOT_NULL(test, tt);
318
319 KUNIT_ASSERT_FALSE(test, !list_lru_count(&pt_pool->pages));
320 KUNIT_ASSERT_TRUE(test, !list_lru_count(&pt_tt->pages));
321
322 err = ttm_pool_alloc(pool, tt, &simple_ctx);
323 KUNIT_ASSERT_EQ(test, err, 0);
324
325 ttm_pool_free(pool, tt);
326 ttm_tt_fini(tt);
327
328 KUNIT_ASSERT_FALSE(test, !list_lru_count(&pt_pool->pages));
329 KUNIT_ASSERT_FALSE(test, !list_lru_count(&pt_tt->pages));
330
331 ttm_pool_fini(pool);
332}
333
334static void ttm_pool_free_dma_alloc(struct kunit *test)
335{
336 struct ttm_pool_test_priv *priv = test->priv;
337 struct ttm_test_devices *devs = priv->devs;
338 struct ttm_tt *tt;
339 struct ttm_pool *pool;
340 struct ttm_pool_type *pt;
341 enum ttm_caching caching = ttm_uncached;
342 unsigned int order = 2;
343 size_t size = (1 << order) * PAGE_SIZE;
344
345 tt = ttm_tt_kunit_init(test, 0, caching, size);
346 KUNIT_ASSERT_NOT_NULL(test, tt);
347
348 pool = kunit_kzalloc(test, sizeof(*pool), GFP_KERNEL);
349 KUNIT_ASSERT_NOT_NULL(test, pool);
350
351 ttm_pool_init(pool, devs->dev, NUMA_NO_NODE, TTM_ALLOCATION_POOL_USE_DMA_ALLOC);
352 ttm_pool_alloc(pool, tt, &simple_ctx);
353
354 pt = &pool->caching[caching].orders[order];
355 KUNIT_ASSERT_TRUE(test, !list_lru_count(&pt->pages));
356
357 ttm_pool_free(pool, tt);
358 ttm_tt_fini(tt);
359
360 KUNIT_ASSERT_FALSE(test, !list_lru_count(&pt->pages));
361
362 ttm_pool_fini(pool);
363}
364
365static void ttm_pool_free_no_dma_alloc(struct kunit *test)
366{
367 struct ttm_pool_test_priv *priv = test->priv;
368 struct ttm_test_devices *devs = priv->devs;
369 struct ttm_tt *tt;
370 struct ttm_pool *pool;
371 enum ttm_caching caching = ttm_uncached;
372 unsigned int order = 2;
373 size_t size = (1 << order) * PAGE_SIZE;
374
375 tt = ttm_tt_kunit_init(test, 0, caching, size);
376 KUNIT_ASSERT_NOT_NULL(test, tt);
377
378 pool = kunit_kzalloc(test, sizeof(*pool), GFP_KERNEL);
379 KUNIT_ASSERT_NOT_NULL(test, pool);
380
381 ttm_pool_init(pool, devs->dev, NUMA_NO_NODE, 0);
382 ttm_pool_alloc(pool, tt, &simple_ctx);
383
384 ttm_pool_free(pool, tt);
385 ttm_tt_fini(tt);
386
387 ttm_pool_fini(pool);
388}
389
390static void ttm_pool_fini_basic(struct kunit *test)
391{
392 struct ttm_pool *pool;
393 struct ttm_pool_type *pt;
394 enum ttm_caching caching = ttm_uncached;
395 unsigned int order = 0;
396 size_t size = PAGE_SIZE;
397
398 pool = ttm_pool_pre_populated(test, size, caching);
399 pt = &pool->caching[caching].orders[order];
400
401 KUNIT_ASSERT_FALSE(test, !list_lru_count(&pt->pages));
402
403 ttm_pool_fini(pool);
404
405 KUNIT_ASSERT_TRUE(test, !list_lru_count(&pt->pages));
406}
407
408static struct kunit_case ttm_pool_test_cases[] = {
409 KUNIT_CASE_PARAM(ttm_pool_alloc_basic, ttm_pool_alloc_basic_gen_params),
410 KUNIT_CASE_PARAM(ttm_pool_alloc_basic_dma_addr,
411 ttm_pool_alloc_basic_gen_params),
412 KUNIT_CASE(ttm_pool_alloc_order_caching_match),
413 KUNIT_CASE(ttm_pool_alloc_caching_mismatch),
414 KUNIT_CASE(ttm_pool_alloc_order_mismatch),
415 KUNIT_CASE(ttm_pool_free_dma_alloc),
416 KUNIT_CASE(ttm_pool_free_no_dma_alloc),
417 KUNIT_CASE(ttm_pool_fini_basic),
418 {}
419};
420
421static struct kunit_suite ttm_pool_test_suite = {
422 .name = "ttm_pool",
423 .init = ttm_pool_test_init,
424 .exit = ttm_pool_test_fini,
425 .test_cases = ttm_pool_test_cases,
426};
427
428kunit_test_suites(&ttm_pool_test_suite);
429
430MODULE_DESCRIPTION("KUnit tests for ttm_pool APIs");
431MODULE_LICENSE("GPL and additional rights");