blob: 70bf4d0605a0fb4e8ddf73dbfe16837b884b8e49 [file] [log] [blame]
Simon Glass2e7d35d2014-02-26 15:59:21 -07001/*
2 * Tests for the core driver model code
3 *
4 * Copyright (c) 2013 Google, Inc
5 *
6 * SPDX-License-Identifier: GPL-2.0+
7 */
8
9#include <common.h>
10#include <errno.h>
11#include <dm.h>
12#include <fdtdec.h>
13#include <malloc.h>
14#include <dm/device-internal.h>
15#include <dm/root.h>
Simon Glass2e7d35d2014-02-26 15:59:21 -070016#include <dm/util.h>
17#include <dm/test.h>
18#include <dm/uclass-internal.h>
Joe Hershbergere721b882015-05-20 14:27:27 -050019#include <test/ut.h>
Simon Glass2e7d35d2014-02-26 15:59:21 -070020
21DECLARE_GLOBAL_DATA_PTR;
22
23enum {
24 TEST_INTVAL1 = 0,
25 TEST_INTVAL2 = 3,
26 TEST_INTVAL3 = 6,
27 TEST_INTVAL_MANUAL = 101112,
Simon Glass00606d72014-07-23 06:55:03 -060028 TEST_INTVAL_PRE_RELOC = 7,
Simon Glass2e7d35d2014-02-26 15:59:21 -070029};
30
31static const struct dm_test_pdata test_pdata[] = {
32 { .ping_add = TEST_INTVAL1, },
33 { .ping_add = TEST_INTVAL2, },
34 { .ping_add = TEST_INTVAL3, },
35};
36
37static const struct dm_test_pdata test_pdata_manual = {
38 .ping_add = TEST_INTVAL_MANUAL,
39};
40
Simon Glass00606d72014-07-23 06:55:03 -060041static const struct dm_test_pdata test_pdata_pre_reloc = {
42 .ping_add = TEST_INTVAL_PRE_RELOC,
43};
44
Simon Glass2e7d35d2014-02-26 15:59:21 -070045U_BOOT_DEVICE(dm_test_info1) = {
46 .name = "test_drv",
47 .platdata = &test_pdata[0],
48};
49
50U_BOOT_DEVICE(dm_test_info2) = {
51 .name = "test_drv",
52 .platdata = &test_pdata[1],
53};
54
55U_BOOT_DEVICE(dm_test_info3) = {
56 .name = "test_drv",
57 .platdata = &test_pdata[2],
58};
59
60static struct driver_info driver_info_manual = {
61 .name = "test_manual_drv",
62 .platdata = &test_pdata_manual,
63};
64
Simon Glass00606d72014-07-23 06:55:03 -060065static struct driver_info driver_info_pre_reloc = {
66 .name = "test_pre_reloc_drv",
Tom Rinif09144a2016-03-20 10:10:28 -040067 .platdata = &test_pdata_pre_reloc,
Simon Glass00606d72014-07-23 06:55:03 -060068};
69
Joe Hershbergere721b882015-05-20 14:27:27 -050070void dm_leak_check_start(struct unit_test_state *uts)
Simon Glass756ac0b2014-10-04 11:29:50 -060071{
Joe Hershbergere721b882015-05-20 14:27:27 -050072 uts->start = mallinfo();
73 if (!uts->start.uordblks)
Simon Glass756ac0b2014-10-04 11:29:50 -060074 puts("Warning: Please add '#define DEBUG' to the top of common/dlmalloc.c\n");
75}
76
Joe Hershbergere721b882015-05-20 14:27:27 -050077int dm_leak_check_end(struct unit_test_state *uts)
Simon Glass756ac0b2014-10-04 11:29:50 -060078{
79 struct mallinfo end;
Simon Glasscbfc2ff2015-09-12 08:45:20 -060080 int id, diff;
Simon Glass756ac0b2014-10-04 11:29:50 -060081
82 /* Don't delete the root class, since we started with that */
83 for (id = UCLASS_ROOT + 1; id < UCLASS_COUNT; id++) {
84 struct uclass *uc;
85
86 uc = uclass_find(id);
87 if (!uc)
88 continue;
89 ut_assertok(uclass_destroy(uc));
90 }
91
92 end = mallinfo();
Simon Glasscbfc2ff2015-09-12 08:45:20 -060093 diff = end.uordblks - uts->start.uordblks;
94 if (diff > 0)
95 printf("Leak: lost %#xd bytes\n", diff);
96 else if (diff < 0)
97 printf("Leak: gained %#xd bytes\n", -diff);
Joe Hershbergere721b882015-05-20 14:27:27 -050098 ut_asserteq(uts->start.uordblks, end.uordblks);
Simon Glass756ac0b2014-10-04 11:29:50 -060099
100 return 0;
101}
102
Simon Glass2e7d35d2014-02-26 15:59:21 -0700103/* Test that binding with platdata occurs correctly */
Joe Hershbergere721b882015-05-20 14:27:27 -0500104static int dm_test_autobind(struct unit_test_state *uts)
Simon Glass2e7d35d2014-02-26 15:59:21 -0700105{
Joe Hershbergere721b882015-05-20 14:27:27 -0500106 struct dm_test_state *dms = uts->priv;
Heiko Schocher54c5d082014-05-22 12:43:05 +0200107 struct udevice *dev;
Simon Glass2e7d35d2014-02-26 15:59:21 -0700108
109 /*
110 * We should have a single class (UCLASS_ROOT) and a single root
111 * device with no children.
112 */
113 ut_assert(dms->root);
114 ut_asserteq(1, list_count_items(&gd->uclass_root));
115 ut_asserteq(0, list_count_items(&gd->dm_root->child_head));
116 ut_asserteq(0, dm_testdrv_op_count[DM_TEST_OP_POST_BIND]);
117
Simon Glass00606d72014-07-23 06:55:03 -0600118 ut_assertok(dm_scan_platdata(false));
Simon Glass2e7d35d2014-02-26 15:59:21 -0700119
120 /* We should have our test class now at least, plus more children */
121 ut_assert(1 < list_count_items(&gd->uclass_root));
122 ut_assert(0 < list_count_items(&gd->dm_root->child_head));
123
124 /* Our 3 dm_test_infox children should be bound to the test uclass */
125 ut_asserteq(3, dm_testdrv_op_count[DM_TEST_OP_POST_BIND]);
126
127 /* No devices should be probed */
128 list_for_each_entry(dev, &gd->dm_root->child_head, sibling_node)
129 ut_assert(!(dev->flags & DM_FLAG_ACTIVATED));
130
131 /* Our test driver should have been bound 3 times */
132 ut_assert(dm_testdrv_op_count[DM_TEST_OP_BIND] == 3);
133
134 return 0;
135}
136DM_TEST(dm_test_autobind, 0);
137
Przemyslaw Marczak754e71e2015-04-15 13:07:19 +0200138/* Test that binding with uclass platdata allocation occurs correctly */
Joe Hershbergere721b882015-05-20 14:27:27 -0500139static int dm_test_autobind_uclass_pdata_alloc(struct unit_test_state *uts)
Przemyslaw Marczak754e71e2015-04-15 13:07:19 +0200140{
141 struct dm_test_perdev_uc_pdata *uc_pdata;
142 struct udevice *dev;
143 struct uclass *uc;
144
145 ut_assertok(uclass_get(UCLASS_TEST, &uc));
146 ut_assert(uc);
147
148 /**
149 * Test if test uclass driver requires allocation for the uclass
150 * platform data and then check the dev->uclass_platdata pointer.
151 */
152 ut_assert(uc->uc_drv->per_device_platdata_auto_alloc_size);
153
154 for (uclass_find_first_device(UCLASS_TEST, &dev);
155 dev;
156 uclass_find_next_device(&dev)) {
157 ut_assert(dev);
158
159 uc_pdata = dev_get_uclass_platdata(dev);
160 ut_assert(uc_pdata);
161 }
162
163 return 0;
164}
165DM_TEST(dm_test_autobind_uclass_pdata_alloc, DM_TESTF_SCAN_PDATA);
166
167/* Test that binding with uclass platdata setting occurs correctly */
Joe Hershbergere721b882015-05-20 14:27:27 -0500168static int dm_test_autobind_uclass_pdata_valid(struct unit_test_state *uts)
Przemyslaw Marczak754e71e2015-04-15 13:07:19 +0200169{
170 struct dm_test_perdev_uc_pdata *uc_pdata;
171 struct udevice *dev;
172
173 /**
174 * In the test_postbind() method of test uclass driver, the uclass
175 * platform data should be set to three test int values - test it.
176 */
177 for (uclass_find_first_device(UCLASS_TEST, &dev);
178 dev;
179 uclass_find_next_device(&dev)) {
180 ut_assert(dev);
181
182 uc_pdata = dev_get_uclass_platdata(dev);
183 ut_assert(uc_pdata);
184 ut_assert(uc_pdata->intval1 == TEST_UC_PDATA_INTVAL1);
185 ut_assert(uc_pdata->intval2 == TEST_UC_PDATA_INTVAL2);
186 ut_assert(uc_pdata->intval3 == TEST_UC_PDATA_INTVAL3);
187 }
188
189 return 0;
190}
191DM_TEST(dm_test_autobind_uclass_pdata_valid, DM_TESTF_SCAN_PDATA);
192
Simon Glass2e7d35d2014-02-26 15:59:21 -0700193/* Test that autoprobe finds all the expected devices */
Joe Hershbergere721b882015-05-20 14:27:27 -0500194static int dm_test_autoprobe(struct unit_test_state *uts)
Simon Glass2e7d35d2014-02-26 15:59:21 -0700195{
Joe Hershbergere721b882015-05-20 14:27:27 -0500196 struct dm_test_state *dms = uts->priv;
Simon Glass2e7d35d2014-02-26 15:59:21 -0700197 int expected_base_add;
Heiko Schocher54c5d082014-05-22 12:43:05 +0200198 struct udevice *dev;
Simon Glass2e7d35d2014-02-26 15:59:21 -0700199 struct uclass *uc;
200 int i;
201
202 ut_assertok(uclass_get(UCLASS_TEST, &uc));
203 ut_assert(uc);
204
205 ut_asserteq(1, dm_testdrv_op_count[DM_TEST_OP_INIT]);
Simon Glass02c07b32015-03-05 12:25:22 -0700206 ut_asserteq(0, dm_testdrv_op_count[DM_TEST_OP_PRE_PROBE]);
Simon Glass2e7d35d2014-02-26 15:59:21 -0700207 ut_asserteq(0, dm_testdrv_op_count[DM_TEST_OP_POST_PROBE]);
208
209 /* The root device should not be activated until needed */
Simon Glass74978122014-07-23 06:55:00 -0600210 ut_assert(dms->root->flags & DM_FLAG_ACTIVATED);
Simon Glass2e7d35d2014-02-26 15:59:21 -0700211
212 /*
213 * We should be able to find the three test devices, and they should
214 * all be activated as they are used (lazy activation, required by
215 * U-Boot)
216 */
217 for (i = 0; i < 3; i++) {
218 ut_assertok(uclass_find_device(UCLASS_TEST, i, &dev));
219 ut_assert(dev);
220 ut_assertf(!(dev->flags & DM_FLAG_ACTIVATED),
221 "Driver %d/%s already activated", i, dev->name);
222
223 /* This should activate it */
224 ut_assertok(uclass_get_device(UCLASS_TEST, i, &dev));
225 ut_assert(dev);
226 ut_assert(dev->flags & DM_FLAG_ACTIVATED);
227
228 /* Activating a device should activate the root device */
229 if (!i)
230 ut_assert(dms->root->flags & DM_FLAG_ACTIVATED);
231 }
232
Simon Glass02c07b32015-03-05 12:25:22 -0700233 /*
234 * Our 3 dm_test_info children should be passed to pre_probe and
235 * post_probe
236 */
Simon Glass2e7d35d2014-02-26 15:59:21 -0700237 ut_asserteq(3, dm_testdrv_op_count[DM_TEST_OP_POST_PROBE]);
Simon Glass02c07b32015-03-05 12:25:22 -0700238 ut_asserteq(3, dm_testdrv_op_count[DM_TEST_OP_PRE_PROBE]);
Simon Glass2e7d35d2014-02-26 15:59:21 -0700239
240 /* Also we can check the per-device data */
241 expected_base_add = 0;
242 for (i = 0; i < 3; i++) {
243 struct dm_test_uclass_perdev_priv *priv;
244 struct dm_test_pdata *pdata;
245
246 ut_assertok(uclass_find_device(UCLASS_TEST, i, &dev));
247 ut_assert(dev);
248
Simon Glasse564f052015-03-05 12:25:20 -0700249 priv = dev_get_uclass_priv(dev);
Simon Glass2e7d35d2014-02-26 15:59:21 -0700250 ut_assert(priv);
251 ut_asserteq(expected_base_add, priv->base_add);
252
253 pdata = dev->platdata;
254 expected_base_add += pdata->ping_add;
255 }
256
257 return 0;
258}
259DM_TEST(dm_test_autoprobe, DM_TESTF_SCAN_PDATA);
260
261/* Check that we see the correct platdata in each device */
Joe Hershbergere721b882015-05-20 14:27:27 -0500262static int dm_test_platdata(struct unit_test_state *uts)
Simon Glass2e7d35d2014-02-26 15:59:21 -0700263{
264 const struct dm_test_pdata *pdata;
Heiko Schocher54c5d082014-05-22 12:43:05 +0200265 struct udevice *dev;
Simon Glass2e7d35d2014-02-26 15:59:21 -0700266 int i;
267
268 for (i = 0; i < 3; i++) {
269 ut_assertok(uclass_find_device(UCLASS_TEST, i, &dev));
270 ut_assert(dev);
271 pdata = dev->platdata;
272 ut_assert(pdata->ping_add == test_pdata[i].ping_add);
273 }
274
275 return 0;
276}
277DM_TEST(dm_test_platdata, DM_TESTF_SCAN_PDATA);
278
279/* Test that we can bind, probe, remove, unbind a driver */
Joe Hershbergere721b882015-05-20 14:27:27 -0500280static int dm_test_lifecycle(struct unit_test_state *uts)
Simon Glass2e7d35d2014-02-26 15:59:21 -0700281{
Joe Hershbergere721b882015-05-20 14:27:27 -0500282 struct dm_test_state *dms = uts->priv;
Simon Glass2e7d35d2014-02-26 15:59:21 -0700283 int op_count[DM_TEST_OP_COUNT];
Heiko Schocher54c5d082014-05-22 12:43:05 +0200284 struct udevice *dev, *test_dev;
Simon Glass2e7d35d2014-02-26 15:59:21 -0700285 int pingret;
286 int ret;
287
288 memcpy(op_count, dm_testdrv_op_count, sizeof(op_count));
289
Simon Glass00606d72014-07-23 06:55:03 -0600290 ut_assertok(device_bind_by_name(dms->root, false, &driver_info_manual,
Simon Glass2e7d35d2014-02-26 15:59:21 -0700291 &dev));
292 ut_assert(dev);
293 ut_assert(dm_testdrv_op_count[DM_TEST_OP_BIND]
294 == op_count[DM_TEST_OP_BIND] + 1);
295 ut_assert(!dev->priv);
296
297 /* Probe the device - it should fail allocating private data */
298 dms->force_fail_alloc = 1;
299 ret = device_probe(dev);
300 ut_assert(ret == -ENOMEM);
301 ut_assert(dm_testdrv_op_count[DM_TEST_OP_PROBE]
302 == op_count[DM_TEST_OP_PROBE] + 1);
303 ut_assert(!dev->priv);
304
305 /* Try again without the alloc failure */
306 dms->force_fail_alloc = 0;
307 ut_assertok(device_probe(dev));
308 ut_assert(dm_testdrv_op_count[DM_TEST_OP_PROBE]
309 == op_count[DM_TEST_OP_PROBE] + 2);
310 ut_assert(dev->priv);
311
312 /* This should be device 3 in the uclass */
313 ut_assertok(uclass_find_device(UCLASS_TEST, 3, &test_dev));
314 ut_assert(dev == test_dev);
315
316 /* Try ping */
317 ut_assertok(test_ping(dev, 100, &pingret));
318 ut_assert(pingret == 102);
319
320 /* Now remove device 3 */
321 ut_asserteq(0, dm_testdrv_op_count[DM_TEST_OP_PRE_REMOVE]);
322 ut_assertok(device_remove(dev));
323 ut_asserteq(1, dm_testdrv_op_count[DM_TEST_OP_PRE_REMOVE]);
324
325 ut_asserteq(0, dm_testdrv_op_count[DM_TEST_OP_UNBIND]);
326 ut_asserteq(0, dm_testdrv_op_count[DM_TEST_OP_PRE_UNBIND]);
327 ut_assertok(device_unbind(dev));
328 ut_asserteq(1, dm_testdrv_op_count[DM_TEST_OP_UNBIND]);
329 ut_asserteq(1, dm_testdrv_op_count[DM_TEST_OP_PRE_UNBIND]);
330
331 return 0;
332}
333DM_TEST(dm_test_lifecycle, DM_TESTF_SCAN_PDATA | DM_TESTF_PROBE_TEST);
334
335/* Test that we can bind/unbind and the lists update correctly */
Joe Hershbergere721b882015-05-20 14:27:27 -0500336static int dm_test_ordering(struct unit_test_state *uts)
Simon Glass2e7d35d2014-02-26 15:59:21 -0700337{
Joe Hershbergere721b882015-05-20 14:27:27 -0500338 struct dm_test_state *dms = uts->priv;
Heiko Schocher54c5d082014-05-22 12:43:05 +0200339 struct udevice *dev, *dev_penultimate, *dev_last, *test_dev;
Simon Glass2e7d35d2014-02-26 15:59:21 -0700340 int pingret;
341
Simon Glass00606d72014-07-23 06:55:03 -0600342 ut_assertok(device_bind_by_name(dms->root, false, &driver_info_manual,
Simon Glass2e7d35d2014-02-26 15:59:21 -0700343 &dev));
344 ut_assert(dev);
345
346 /* Bind two new devices (numbers 4 and 5) */
Simon Glass00606d72014-07-23 06:55:03 -0600347 ut_assertok(device_bind_by_name(dms->root, false, &driver_info_manual,
Simon Glass2e7d35d2014-02-26 15:59:21 -0700348 &dev_penultimate));
349 ut_assert(dev_penultimate);
Simon Glass00606d72014-07-23 06:55:03 -0600350 ut_assertok(device_bind_by_name(dms->root, false, &driver_info_manual,
Simon Glass2e7d35d2014-02-26 15:59:21 -0700351 &dev_last));
352 ut_assert(dev_last);
353
354 /* Now remove device 3 */
355 ut_assertok(device_remove(dev));
356 ut_assertok(device_unbind(dev));
357
358 /* The device numbering should have shifted down one */
359 ut_assertok(uclass_find_device(UCLASS_TEST, 3, &test_dev));
360 ut_assert(dev_penultimate == test_dev);
361 ut_assertok(uclass_find_device(UCLASS_TEST, 4, &test_dev));
362 ut_assert(dev_last == test_dev);
363
364 /* Add back the original device 3, now in position 5 */
Simon Glass00606d72014-07-23 06:55:03 -0600365 ut_assertok(device_bind_by_name(dms->root, false, &driver_info_manual,
366 &dev));
Simon Glass2e7d35d2014-02-26 15:59:21 -0700367 ut_assert(dev);
368
369 /* Try ping */
370 ut_assertok(test_ping(dev, 100, &pingret));
371 ut_assert(pingret == 102);
372
373 /* Remove 3 and 4 */
374 ut_assertok(device_remove(dev_penultimate));
375 ut_assertok(device_unbind(dev_penultimate));
376 ut_assertok(device_remove(dev_last));
377 ut_assertok(device_unbind(dev_last));
378
379 /* Our device should now be in position 3 */
380 ut_assertok(uclass_find_device(UCLASS_TEST, 3, &test_dev));
381 ut_assert(dev == test_dev);
382
383 /* Now remove device 3 */
384 ut_assertok(device_remove(dev));
385 ut_assertok(device_unbind(dev));
386
387 return 0;
388}
389DM_TEST(dm_test_ordering, DM_TESTF_SCAN_PDATA);
390
391/* Check that we can perform operations on a device (do a ping) */
Joe Hershbergere721b882015-05-20 14:27:27 -0500392int dm_check_operations(struct unit_test_state *uts, struct udevice *dev,
Simon Glass2e7d35d2014-02-26 15:59:21 -0700393 uint32_t base, struct dm_test_priv *priv)
394{
395 int expected;
396 int pingret;
397
398 /* Getting the child device should allocate platdata / priv */
399 ut_assertok(testfdt_ping(dev, 10, &pingret));
400 ut_assert(dev->priv);
401 ut_assert(dev->platdata);
402
403 expected = 10 + base;
404 ut_asserteq(expected, pingret);
405
406 /* Do another ping */
407 ut_assertok(testfdt_ping(dev, 20, &pingret));
408 expected = 20 + base;
409 ut_asserteq(expected, pingret);
410
411 /* Now check the ping_total */
412 priv = dev->priv;
413 ut_asserteq(DM_TEST_START_TOTAL + 10 + 20 + base * 2,
414 priv->ping_total);
415
416 return 0;
417}
418
419/* Check that we can perform operations on devices */
Joe Hershbergere721b882015-05-20 14:27:27 -0500420static int dm_test_operations(struct unit_test_state *uts)
Simon Glass2e7d35d2014-02-26 15:59:21 -0700421{
Heiko Schocher54c5d082014-05-22 12:43:05 +0200422 struct udevice *dev;
Simon Glass2e7d35d2014-02-26 15:59:21 -0700423 int i;
424
425 /*
426 * Now check that the ping adds are what we expect. This is using the
427 * ping-add property in each node.
428 */
429 for (i = 0; i < ARRAY_SIZE(test_pdata); i++) {
430 uint32_t base;
431
432 ut_assertok(uclass_get_device(UCLASS_TEST, i, &dev));
433
434 /*
435 * Get the 'reg' property, which tells us what the ping add
436 * should be. We don't use the platdata because we want
437 * to test the code that sets that up (testfdt_drv_probe()).
438 */
439 base = test_pdata[i].ping_add;
440 debug("dev=%d, base=%d\n", i, base);
441
Joe Hershbergere721b882015-05-20 14:27:27 -0500442 ut_assert(!dm_check_operations(uts, dev, base, dev->priv));
Simon Glass2e7d35d2014-02-26 15:59:21 -0700443 }
444
445 return 0;
446}
447DM_TEST(dm_test_operations, DM_TESTF_SCAN_PDATA);
448
449/* Remove all drivers and check that things work */
Joe Hershbergere721b882015-05-20 14:27:27 -0500450static int dm_test_remove(struct unit_test_state *uts)
Simon Glass2e7d35d2014-02-26 15:59:21 -0700451{
Heiko Schocher54c5d082014-05-22 12:43:05 +0200452 struct udevice *dev;
Simon Glass2e7d35d2014-02-26 15:59:21 -0700453 int i;
454
455 for (i = 0; i < 3; i++) {
456 ut_assertok(uclass_find_device(UCLASS_TEST, i, &dev));
457 ut_assert(dev);
458 ut_assertf(dev->flags & DM_FLAG_ACTIVATED,
459 "Driver %d/%s not activated", i, dev->name);
460 ut_assertok(device_remove(dev));
461 ut_assertf(!(dev->flags & DM_FLAG_ACTIVATED),
462 "Driver %d/%s should have deactivated", i,
463 dev->name);
464 ut_assert(!dev->priv);
465 }
466
467 return 0;
468}
469DM_TEST(dm_test_remove, DM_TESTF_SCAN_PDATA | DM_TESTF_PROBE_TEST);
470
471/* Remove and recreate everything, check for memory leaks */
Joe Hershbergere721b882015-05-20 14:27:27 -0500472static int dm_test_leak(struct unit_test_state *uts)
Simon Glass2e7d35d2014-02-26 15:59:21 -0700473{
474 int i;
475
476 for (i = 0; i < 2; i++) {
Heiko Schocher54c5d082014-05-22 12:43:05 +0200477 struct udevice *dev;
Simon Glass2e7d35d2014-02-26 15:59:21 -0700478 int ret;
479 int id;
480
Joe Hershbergere721b882015-05-20 14:27:27 -0500481 dm_leak_check_start(uts);
Simon Glass2e7d35d2014-02-26 15:59:21 -0700482
Simon Glass00606d72014-07-23 06:55:03 -0600483 ut_assertok(dm_scan_platdata(false));
484 ut_assertok(dm_scan_fdt(gd->fdt_blob, false));
Simon Glass2e7d35d2014-02-26 15:59:21 -0700485
486 /* Scanning the uclass is enough to probe all the devices */
487 for (id = UCLASS_ROOT; id < UCLASS_COUNT; id++) {
488 for (ret = uclass_first_device(UCLASS_TEST, &dev);
489 dev;
490 ret = uclass_next_device(&dev))
491 ;
492 ut_assertok(ret);
493 }
494
Joe Hershbergere721b882015-05-20 14:27:27 -0500495 ut_assertok(dm_leak_check_end(uts));
Simon Glass2e7d35d2014-02-26 15:59:21 -0700496 }
497
498 return 0;
499}
500DM_TEST(dm_test_leak, 0);
501
502/* Test uclass init/destroy methods */
Joe Hershbergere721b882015-05-20 14:27:27 -0500503static int dm_test_uclass(struct unit_test_state *uts)
Simon Glass2e7d35d2014-02-26 15:59:21 -0700504{
505 struct uclass *uc;
506
507 ut_assertok(uclass_get(UCLASS_TEST, &uc));
508 ut_asserteq(1, dm_testdrv_op_count[DM_TEST_OP_INIT]);
509 ut_asserteq(0, dm_testdrv_op_count[DM_TEST_OP_DESTROY]);
510 ut_assert(uc->priv);
511
512 ut_assertok(uclass_destroy(uc));
513 ut_asserteq(1, dm_testdrv_op_count[DM_TEST_OP_INIT]);
514 ut_asserteq(1, dm_testdrv_op_count[DM_TEST_OP_DESTROY]);
515
516 return 0;
517}
518DM_TEST(dm_test_uclass, 0);
519
520/**
521 * create_children() - Create children of a parent node
522 *
523 * @dms: Test system state
524 * @parent: Parent device
525 * @count: Number of children to create
526 * @key: Key value to put in first child. Subsequence children
527 * receive an incrementing value
528 * @child: If not NULL, then the child device pointers are written into
529 * this array.
530 * @return 0 if OK, -ve on error
531 */
Joe Hershbergere721b882015-05-20 14:27:27 -0500532static int create_children(struct unit_test_state *uts, struct udevice *parent,
Heiko Schocher54c5d082014-05-22 12:43:05 +0200533 int count, int key, struct udevice *child[])
Simon Glass2e7d35d2014-02-26 15:59:21 -0700534{
Heiko Schocher54c5d082014-05-22 12:43:05 +0200535 struct udevice *dev;
Simon Glass2e7d35d2014-02-26 15:59:21 -0700536 int i;
537
538 for (i = 0; i < count; i++) {
539 struct dm_test_pdata *pdata;
540
Simon Glass00606d72014-07-23 06:55:03 -0600541 ut_assertok(device_bind_by_name(parent, false,
542 &driver_info_manual, &dev));
Simon Glass2e7d35d2014-02-26 15:59:21 -0700543 pdata = calloc(1, sizeof(*pdata));
544 pdata->ping_add = key + i;
545 dev->platdata = pdata;
546 if (child)
547 child[i] = dev;
548 }
549
550 return 0;
551}
552
553#define NODE_COUNT 10
554
Joe Hershbergere721b882015-05-20 14:27:27 -0500555static int dm_test_children(struct unit_test_state *uts)
Simon Glass2e7d35d2014-02-26 15:59:21 -0700556{
Joe Hershbergere721b882015-05-20 14:27:27 -0500557 struct dm_test_state *dms = uts->priv;
Heiko Schocher54c5d082014-05-22 12:43:05 +0200558 struct udevice *top[NODE_COUNT];
559 struct udevice *child[NODE_COUNT];
560 struct udevice *grandchild[NODE_COUNT];
561 struct udevice *dev;
Simon Glass2e7d35d2014-02-26 15:59:21 -0700562 int total;
563 int ret;
564 int i;
565
566 /* We don't care about the numbering for this test */
567 dms->skip_post_probe = 1;
568
569 ut_assert(NODE_COUNT > 5);
570
571 /* First create 10 top-level children */
Joe Hershbergere721b882015-05-20 14:27:27 -0500572 ut_assertok(create_children(uts, dms->root, NODE_COUNT, 0, top));
Simon Glass2e7d35d2014-02-26 15:59:21 -0700573
574 /* Now a few have their own children */
Joe Hershbergere721b882015-05-20 14:27:27 -0500575 ut_assertok(create_children(uts, top[2], NODE_COUNT, 2, NULL));
576 ut_assertok(create_children(uts, top[5], NODE_COUNT, 5, child));
Simon Glass2e7d35d2014-02-26 15:59:21 -0700577
578 /* And grandchildren */
579 for (i = 0; i < NODE_COUNT; i++)
Joe Hershbergere721b882015-05-20 14:27:27 -0500580 ut_assertok(create_children(uts, child[i], NODE_COUNT, 50 * i,
Simon Glass2e7d35d2014-02-26 15:59:21 -0700581 i == 2 ? grandchild : NULL));
582
583 /* Check total number of devices */
584 total = NODE_COUNT * (3 + NODE_COUNT);
585 ut_asserteq(total, dm_testdrv_op_count[DM_TEST_OP_BIND]);
586
587 /* Try probing one of the grandchildren */
588 ut_assertok(uclass_get_device(UCLASS_TEST,
589 NODE_COUNT * 3 + 2 * NODE_COUNT, &dev));
590 ut_asserteq_ptr(grandchild[0], dev);
591
592 /*
593 * This should have probed the child and top node also, for a total
594 * of 3 nodes.
595 */
596 ut_asserteq(3, dm_testdrv_op_count[DM_TEST_OP_PROBE]);
597
598 /* Probe the other grandchildren */
599 for (i = 1; i < NODE_COUNT; i++)
600 ut_assertok(device_probe(grandchild[i]));
601
602 ut_asserteq(2 + NODE_COUNT, dm_testdrv_op_count[DM_TEST_OP_PROBE]);
603
604 /* Probe everything */
605 for (ret = uclass_first_device(UCLASS_TEST, &dev);
606 dev;
607 ret = uclass_next_device(&dev))
608 ;
609 ut_assertok(ret);
610
611 ut_asserteq(total, dm_testdrv_op_count[DM_TEST_OP_PROBE]);
612
613 /* Remove a top-level child and check that the children are removed */
614 ut_assertok(device_remove(top[2]));
615 ut_asserteq(NODE_COUNT + 1, dm_testdrv_op_count[DM_TEST_OP_REMOVE]);
616 dm_testdrv_op_count[DM_TEST_OP_REMOVE] = 0;
617
618 /* Try one with grandchildren */
619 ut_assertok(uclass_get_device(UCLASS_TEST, 5, &dev));
620 ut_asserteq_ptr(dev, top[5]);
621 ut_assertok(device_remove(dev));
622 ut_asserteq(1 + NODE_COUNT * (1 + NODE_COUNT),
623 dm_testdrv_op_count[DM_TEST_OP_REMOVE]);
624
625 /* Try the same with unbind */
626 ut_assertok(device_unbind(top[2]));
627 ut_asserteq(NODE_COUNT + 1, dm_testdrv_op_count[DM_TEST_OP_UNBIND]);
628 dm_testdrv_op_count[DM_TEST_OP_UNBIND] = 0;
629
630 /* Try one with grandchildren */
631 ut_assertok(uclass_get_device(UCLASS_TEST, 5, &dev));
632 ut_asserteq_ptr(dev, top[6]);
633 ut_assertok(device_unbind(top[5]));
634 ut_asserteq(1 + NODE_COUNT * (1 + NODE_COUNT),
635 dm_testdrv_op_count[DM_TEST_OP_UNBIND]);
636
637 return 0;
638}
639DM_TEST(dm_test_children, 0);
Simon Glass00606d72014-07-23 06:55:03 -0600640
641/* Test that pre-relocation devices work as expected */
Joe Hershbergere721b882015-05-20 14:27:27 -0500642static int dm_test_pre_reloc(struct unit_test_state *uts)
Simon Glass00606d72014-07-23 06:55:03 -0600643{
Joe Hershbergere721b882015-05-20 14:27:27 -0500644 struct dm_test_state *dms = uts->priv;
Simon Glass00606d72014-07-23 06:55:03 -0600645 struct udevice *dev;
646
647 /* The normal driver should refuse to bind before relocation */
648 ut_asserteq(-EPERM, device_bind_by_name(dms->root, true,
649 &driver_info_manual, &dev));
650
651 /* But this one is marked pre-reloc */
652 ut_assertok(device_bind_by_name(dms->root, true,
653 &driver_info_pre_reloc, &dev));
654
655 return 0;
656}
657DM_TEST(dm_test_pre_reloc, 0);
Simon Glassc910e2e2014-07-23 06:55:15 -0600658
Joe Hershbergere721b882015-05-20 14:27:27 -0500659static int dm_test_uclass_before_ready(struct unit_test_state *uts)
Simon Glassc910e2e2014-07-23 06:55:15 -0600660{
661 struct uclass *uc;
662
663 ut_assertok(uclass_get(UCLASS_TEST, &uc));
664
Simon Glassf9fd4552015-04-19 07:21:02 -0600665 gd->dm_root = NULL;
666 gd->dm_root_f = NULL;
667 memset(&gd->uclass_root, '\0', sizeof(gd->uclass_root));
668
Simon Glassc910e2e2014-07-23 06:55:15 -0600669 ut_asserteq_ptr(NULL, uclass_find(UCLASS_TEST));
670
671 return 0;
672}
Simon Glassc910e2e2014-07-23 06:55:15 -0600673DM_TEST(dm_test_uclass_before_ready, 0);
Simon Glassb3670532015-01-25 08:27:04 -0700674
Joe Hershbergere721b882015-05-20 14:27:27 -0500675static int dm_test_uclass_devices_find(struct unit_test_state *uts)
Przemyslaw Marczak9e85f132015-04-15 13:07:20 +0200676{
677 struct udevice *dev;
678 int ret;
679
680 for (ret = uclass_find_first_device(UCLASS_TEST, &dev);
681 dev;
682 ret = uclass_find_next_device(&dev)) {
683 ut_assert(!ret);
684 ut_assert(dev);
685 }
686
687 return 0;
688}
689DM_TEST(dm_test_uclass_devices_find, DM_TESTF_SCAN_PDATA);
690
Joe Hershbergere721b882015-05-20 14:27:27 -0500691static int dm_test_uclass_devices_find_by_name(struct unit_test_state *uts)
Przemyslaw Marczak6e0c4882015-04-20 13:32:33 +0200692{
693 struct udevice *finddev;
694 struct udevice *testdev;
695 int findret, ret;
696
697 /*
698 * For each test device found in fdt like: "a-test", "b-test", etc.,
699 * use its name and try to find it by uclass_find_device_by_name().
700 * Then, on success check if:
701 * - current 'testdev' name is equal to the returned 'finddev' name
702 * - current 'testdev' pointer is equal to the returned 'finddev'
703 *
704 * We assume that, each uclass's device name is unique, so if not, then
705 * this will fail on checking condition: testdev == finddev, since the
706 * uclass_find_device_by_name(), returns the first device by given name.
707 */
708 for (ret = uclass_find_first_device(UCLASS_TEST_FDT, &testdev);
709 testdev;
710 ret = uclass_find_next_device(&testdev)) {
711 ut_assertok(ret);
712 ut_assert(testdev);
713
714 findret = uclass_find_device_by_name(UCLASS_TEST_FDT,
715 testdev->name,
716 &finddev);
717
718 ut_assertok(findret);
719 ut_assert(testdev);
720 ut_asserteq_str(testdev->name, finddev->name);
721 ut_asserteq_ptr(testdev, finddev);
722 }
723
724 return 0;
725}
726DM_TEST(dm_test_uclass_devices_find_by_name, DM_TESTF_SCAN_FDT);
727
Joe Hershbergere721b882015-05-20 14:27:27 -0500728static int dm_test_uclass_devices_get(struct unit_test_state *uts)
Przemyslaw Marczak9e85f132015-04-15 13:07:20 +0200729{
730 struct udevice *dev;
731 int ret;
732
733 for (ret = uclass_first_device(UCLASS_TEST, &dev);
734 dev;
735 ret = uclass_next_device(&dev)) {
736 ut_assert(!ret);
737 ut_assert(dev);
738 ut_assert(device_active(dev));
739 }
740
741 return 0;
742}
743DM_TEST(dm_test_uclass_devices_get, DM_TESTF_SCAN_PDATA);
744
Joe Hershbergere721b882015-05-20 14:27:27 -0500745static int dm_test_uclass_devices_get_by_name(struct unit_test_state *uts)
Przemyslaw Marczak6e0c4882015-04-20 13:32:33 +0200746{
747 struct udevice *finddev;
748 struct udevice *testdev;
749 int ret, findret;
750
751 /*
752 * For each test device found in fdt like: "a-test", "b-test", etc.,
753 * use its name and try to get it by uclass_get_device_by_name().
754 * On success check if:
755 * - returned finddev' is active
756 * - current 'testdev' name is equal to the returned 'finddev' name
757 * - current 'testdev' pointer is equal to the returned 'finddev'
758 *
759 * We asserts that the 'testdev' is active on each loop entry, so we
760 * could be sure that the 'finddev' is activated too, but for sure
761 * we check it again.
762 *
763 * We assume that, each uclass's device name is unique, so if not, then
764 * this will fail on checking condition: testdev == finddev, since the
765 * uclass_get_device_by_name(), returns the first device by given name.
766 */
767 for (ret = uclass_first_device(UCLASS_TEST_FDT, &testdev);
768 testdev;
769 ret = uclass_next_device(&testdev)) {
770 ut_assertok(ret);
771 ut_assert(testdev);
772 ut_assert(device_active(testdev));
773
774 findret = uclass_get_device_by_name(UCLASS_TEST_FDT,
775 testdev->name,
776 &finddev);
777
778 ut_assertok(findret);
779 ut_assert(finddev);
780 ut_assert(device_active(finddev));
781 ut_asserteq_str(testdev->name, finddev->name);
782 ut_asserteq_ptr(testdev, finddev);
783 }
784
785 return 0;
786}
787DM_TEST(dm_test_uclass_devices_get_by_name, DM_TESTF_SCAN_FDT);
788
Joe Hershbergere721b882015-05-20 14:27:27 -0500789static int dm_test_device_get_uclass_id(struct unit_test_state *uts)
Simon Glassb3670532015-01-25 08:27:04 -0700790{
791 struct udevice *dev;
792
793 ut_assertok(uclass_get_device(UCLASS_TEST, 0, &dev));
794 ut_asserteq(UCLASS_TEST, device_get_uclass_id(dev));
795
796 return 0;
797}
798DM_TEST(dm_test_device_get_uclass_id, DM_TESTF_SCAN_PDATA);