blob: 6fbebc7da08540bbbe6b9f9907bcd699c34c4dc6 [file] [log] [blame]
Masahiro Yamada04ca8712018-04-27 01:02:02 +09001// SPDX-License-Identifier: GPL-2.0+
Simon Glass5e969252022-09-06 20:27:27 -06002/*
3 * Copyright 2022 Google LLC
4 *
5 * There are two types of tests in this file:
6 * - normal ones which act on the control FDT (gd->fdt_blob or gd->of_root)
7 * - 'other' ones which act on the 'other' FDT (other.dts)
8 *
9 * The 'other' ones have an _ot suffix.
10 *
11 * The latter are used to check behaviour with multiple device trees,
12 * particularly with flat tree, where a tree ID is included in ofnode as part of
13 * the node offset. These tests are typically just for making sure that the
14 * offset makes it to libfdt correctly and that the resulting return value is
15 * correctly turned into an ofnode. The 'other' tests do not fully check the
16 * behaviour of each ofnode function, since that is done by the normal ones.
17 */
Masahiro Yamada04ca8712018-04-27 01:02:02 +090018
19#include <common.h>
20#include <dm.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060021#include <log.h>
Simon Glass33104842022-07-30 15:52:08 -060022#include <of_live.h>
Simon Glass65715592022-07-30 15:52:09 -060023#include <dm/device-internal.h>
24#include <dm/lists.h>
Simon Glasse6c5c942018-10-01 12:22:08 -060025#include <dm/of_extra.h>
Simon Glass65715592022-07-30 15:52:09 -060026#include <dm/root.h>
Masahiro Yamada04ca8712018-04-27 01:02:02 +090027#include <dm/test.h>
Simon Glass65715592022-07-30 15:52:09 -060028#include <dm/uclass-internal.h>
Simon Glass0e1fad42020-07-19 10:15:37 -060029#include <test/test.h>
Masahiro Yamada04ca8712018-04-27 01:02:02 +090030#include <test/ut.h>
31
Simon Glass5e969252022-09-06 20:27:27 -060032/**
33 * get_other_oftree() - Convert a flat tree into an oftree object
34 *
35 * @uts: Test state
36 * @return: oftree object for the 'other' FDT (see sandbox' other.dts)
37 */
38oftree get_other_oftree(struct unit_test_state *uts)
39{
40 oftree tree;
41
42 if (of_live_active())
43 tree = oftree_from_np(uts->of_other);
44 else
45 tree = oftree_from_fdt(uts->other_fdt);
46
47 /* An invalid tree may cause failure or crashes */
48 if (!oftree_valid(tree))
49 ut_reportf("test needs the UT_TESTF_OTHER_FDT flag");
50
51 return tree;
52}
53
Simon Glass88a1ae82022-09-06 20:27:29 -060054/**
55 * get_oftree() - Convert a flat tree into an oftree object
56 *
57 * @uts: Test state
58 * @fdt: Pointer to flat tree
59 * @treep: Returns the tree, on success
60 * Return: 0 if OK, 1 if the tree failed to unflatten, -EOVERFLOW if there are
61 * too many flat trees to allow another one to be registers (see
62 * oftree_ensure())
63 */
64int get_oftree(struct unit_test_state *uts, void *fdt, oftree *treep)
65{
66 oftree tree;
67
68 if (of_live_active()) {
69 struct device_node *root;
70
71 ut_assertok(unflatten_device_tree(fdt, &root));
72 tree = oftree_from_np(root);
73 } else {
74 tree = oftree_from_fdt(fdt);
75 if (!oftree_valid(tree))
76 return -EOVERFLOW;
77 }
78 *treep = tree;
79
80 return 0;
81}
82
83/**
84 * free_oftree() - Free memory used by get_oftree()
85 *
86 * @tree: Tree to free
87 */
88void free_oftree(oftree tree)
89{
90 if (of_live_active())
91 free(tree.np);
92}
93
Masahiro Yamada04ca8712018-04-27 01:02:02 +090094static int dm_test_ofnode_compatible(struct unit_test_state *uts)
95{
96 ofnode root_node = ofnode_path("/");
97
98 ut_assert(ofnode_valid(root_node));
99 ut_assert(ofnode_device_is_compatible(root_node, "sandbox"));
100
101 return 0;
102}
Simon Glass47a677c2022-09-06 20:27:30 -0600103DM_TEST(dm_test_ofnode_compatible,
104 UT_TESTF_SCAN_PDATA | UT_TESTF_SCAN_FDT);
105
106/* check ofnode_device_is_compatible() with the 'other' FDT */
107static int dm_test_ofnode_compatible_ot(struct unit_test_state *uts)
108{
109 oftree otree = get_other_oftree(uts);
110 ofnode oroot = oftree_root(otree);
111
112 ut_assert(ofnode_valid(oroot));
113 ut_assert(ofnode_device_is_compatible(oroot, "sandbox-other"));
114
115 return 0;
116}
117DM_TEST(dm_test_ofnode_compatible_ot, UT_TESTF_OTHER_FDT);
Jens Wiklander9bc7e962018-08-20 11:10:00 +0200118
Patrick Delaunay6d9949f2020-09-24 17:26:20 +0200119static int dm_test_ofnode_get_by_phandle(struct unit_test_state *uts)
120{
121 /* test invalid phandle */
122 ut_assert(!ofnode_valid(ofnode_get_by_phandle(0)));
123 ut_assert(!ofnode_valid(ofnode_get_by_phandle(-1)));
124
125 /* test first valid phandle */
126 ut_assert(ofnode_valid(ofnode_get_by_phandle(1)));
127
128 /* test unknown phandle */
129 ut_assert(!ofnode_valid(ofnode_get_by_phandle(0x1000000)));
130
Simon Glass928d2672022-09-06 20:27:22 -0600131 ut_assert(ofnode_valid(oftree_get_by_phandle(oftree_default(), 1)));
132
Patrick Delaunay6d9949f2020-09-24 17:26:20 +0200133 return 0;
134}
135DM_TEST(dm_test_ofnode_get_by_phandle, UT_TESTF_SCAN_PDATA | UT_TESTF_SCAN_FDT);
136
Simon Glass5e969252022-09-06 20:27:27 -0600137static int dm_test_ofnode_get_by_phandle_ot(struct unit_test_state *uts)
138{
139 oftree otree = get_other_oftree(uts);
140 ofnode node;
141
142 ut_assert(ofnode_valid(oftree_get_by_phandle(oftree_default(), 1)));
143 node = oftree_get_by_phandle(otree, 1);
144 ut_assert(ofnode_valid(node));
145 ut_asserteq_str("target", ofnode_get_name(node));
146
147 return 0;
148}
149DM_TEST(dm_test_ofnode_get_by_phandle_ot, UT_TESTF_OTHER_FDT);
150
Simon Glass47a677c2022-09-06 20:27:30 -0600151static int check_prop_values(struct unit_test_state *uts, ofnode start,
152 const char *propname, const char *propval,
153 int expect_count)
Jens Wiklander9bc7e962018-08-20 11:10:00 +0200154{
Simon Glass47a677c2022-09-06 20:27:30 -0600155 int proplen = strlen(propval) + 1;
Jens Wiklander9bc7e962018-08-20 11:10:00 +0200156 const char *str;
Simon Glass47a677c2022-09-06 20:27:30 -0600157 ofnode node;
158 int count;
Jens Wiklander9bc7e962018-08-20 11:10:00 +0200159
160 /* Find first matching node, there should be at least one */
Simon Glass47a677c2022-09-06 20:27:30 -0600161 node = ofnode_by_prop_value(start, propname, propval, proplen);
Jens Wiklander9bc7e962018-08-20 11:10:00 +0200162 ut_assert(ofnode_valid(node));
163 str = ofnode_read_string(node, propname);
164 ut_assert(str && !strcmp(str, propval));
165
166 /* Find the rest of the matching nodes */
Simon Glass47a677c2022-09-06 20:27:30 -0600167 count = 1;
Jens Wiklander9bc7e962018-08-20 11:10:00 +0200168 while (true) {
Simon Glass47a677c2022-09-06 20:27:30 -0600169 node = ofnode_by_prop_value(node, propname, propval, proplen);
Jens Wiklander9bc7e962018-08-20 11:10:00 +0200170 if (!ofnode_valid(node))
171 break;
172 str = ofnode_read_string(node, propname);
Simon Glass47a677c2022-09-06 20:27:30 -0600173 ut_asserteq_str(propval, str);
174 count++;
Jens Wiklander9bc7e962018-08-20 11:10:00 +0200175 }
Simon Glass47a677c2022-09-06 20:27:30 -0600176 ut_asserteq(expect_count, count);
177
178 return 0;
179}
180
181static int dm_test_ofnode_by_prop_value(struct unit_test_state *uts)
182{
183 ut_assertok(check_prop_values(uts, ofnode_null(), "compatible",
184 "denx,u-boot-fdt-test", 11));
Jens Wiklander9bc7e962018-08-20 11:10:00 +0200185
186 return 0;
187}
Simon Glasse180c2b2020-07-28 19:41:12 -0600188DM_TEST(dm_test_ofnode_by_prop_value, UT_TESTF_SCAN_FDT);
Simon Glasse6c5c942018-10-01 12:22:08 -0600189
Simon Glass47a677c2022-09-06 20:27:30 -0600190static int dm_test_ofnode_by_prop_value_ot(struct unit_test_state *uts)
191{
192 oftree otree = get_other_oftree(uts);
193
194 ut_assertok(check_prop_values(uts, oftree_root(otree), "str-prop",
195 "other", 2));
196
197 return 0;
198}
199DM_TEST(dm_test_ofnode_by_prop_value_ot, UT_TESTF_OTHER_FDT);
200
Simon Glasse6c5c942018-10-01 12:22:08 -0600201static int dm_test_ofnode_fmap(struct unit_test_state *uts)
202{
203 struct fmap_entry entry;
204 ofnode node;
205
206 node = ofnode_path("/cros-ec/flash");
207 ut_assert(ofnode_valid(node));
208 ut_assertok(ofnode_read_fmap_entry(node, &entry));
209 ut_asserteq(0x08000000, entry.offset);
210 ut_asserteq(0x20000, entry.length);
211
212 return 0;
213}
Simon Glasse180c2b2020-07-28 19:41:12 -0600214DM_TEST(dm_test_ofnode_fmap, UT_TESTF_SCAN_PDATA | UT_TESTF_SCAN_FDT);
Simon Glass14ca9f72020-01-27 08:49:43 -0700215
Simon Glassa8167d82020-01-27 08:49:44 -0700216static int dm_test_ofnode_read(struct unit_test_state *uts)
217{
218 const u32 *val;
219 ofnode node;
220 int size;
221
222 node = ofnode_path("/a-test");
223 ut_assert(ofnode_valid(node));
224
225 val = ofnode_read_prop(node, "int-value", &size);
226 ut_assertnonnull(val);
227 ut_asserteq(4, size);
228 ut_asserteq(1234, fdt32_to_cpu(val[0]));
229
230 val = ofnode_read_prop(node, "missing", &size);
231 ut_assertnull(val);
232 ut_asserteq(-FDT_ERR_NOTFOUND, size);
233
234 /* Check it works without a size parameter */
235 val = ofnode_read_prop(node, "missing", NULL);
236 ut_assertnull(val);
237
238 return 0;
239}
Simon Glasse180c2b2020-07-28 19:41:12 -0600240DM_TEST(dm_test_ofnode_read, UT_TESTF_SCAN_PDATA | UT_TESTF_SCAN_FDT);
Simon Glassa8167d82020-01-27 08:49:44 -0700241
Simon Glass47a677c2022-09-06 20:27:30 -0600242static int dm_test_ofnode_read_ot(struct unit_test_state *uts)
243{
244 oftree otree = get_other_oftree(uts);
245 const char *val;
246 ofnode node;
247 int size;
248
249 node = oftree_path(otree, "/node/subnode");
250 ut_assert(ofnode_valid(node));
251
252 val = ofnode_read_prop(node, "str-prop", &size);
253 ut_assertnonnull(val);
254 ut_asserteq_str("other", val);
255 ut_asserteq(6, size);
256
257 return 0;
258}
259DM_TEST(dm_test_ofnode_read_ot, UT_TESTF_OTHER_FDT);
260
Patrick Delaunaycc72f3e2020-09-25 09:41:16 +0200261static int dm_test_ofnode_phandle(struct unit_test_state *uts)
262{
263 struct ofnode_phandle_args args;
264 ofnode node;
265 int ret;
266 const char prop[] = "test-gpios";
267 const char cell[] = "#gpio-cells";
268 const char prop2[] = "phandle-value";
269
270 node = ofnode_path("/a-test");
271 ut_assert(ofnode_valid(node));
272
273 /* Test ofnode_count_phandle_with_args with cell name */
274 ret = ofnode_count_phandle_with_args(node, "missing", cell, 0);
275 ut_asserteq(-ENOENT, ret);
276 ret = ofnode_count_phandle_with_args(node, prop, "#invalid", 0);
277 ut_asserteq(-EINVAL, ret);
278 ret = ofnode_count_phandle_with_args(node, prop, cell, 0);
279 ut_asserteq(5, ret);
280
281 /* Test ofnode_parse_phandle_with_args with cell name */
282 ret = ofnode_parse_phandle_with_args(node, "missing", cell, 0, 0,
283 &args);
284 ut_asserteq(-ENOENT, ret);
285 ret = ofnode_parse_phandle_with_args(node, prop, "#invalid", 0, 0,
286 &args);
287 ut_asserteq(-EINVAL, ret);
288 ret = ofnode_parse_phandle_with_args(node, prop, cell, 0, 0, &args);
289 ut_assertok(ret);
290 ut_asserteq(1, args.args_count);
291 ut_asserteq(1, args.args[0]);
292 ret = ofnode_parse_phandle_with_args(node, prop, cell, 0, 1, &args);
293 ut_assertok(ret);
294 ut_asserteq(1, args.args_count);
295 ut_asserteq(4, args.args[0]);
296 ret = ofnode_parse_phandle_with_args(node, prop, cell, 0, 2, &args);
297 ut_assertok(ret);
298 ut_asserteq(5, args.args_count);
299 ut_asserteq(5, args.args[0]);
300 ut_asserteq(1, args.args[4]);
301 ret = ofnode_parse_phandle_with_args(node, prop, cell, 0, 3, &args);
302 ut_asserteq(-ENOENT, ret);
303 ret = ofnode_parse_phandle_with_args(node, prop, cell, 0, 4, &args);
304 ut_assertok(ret);
305 ut_asserteq(1, args.args_count);
306 ut_asserteq(12, args.args[0]);
307 ret = ofnode_parse_phandle_with_args(node, prop, cell, 0, 5, &args);
308 ut_asserteq(-ENOENT, ret);
309
310 /* Test ofnode_count_phandle_with_args with cell count */
311 ret = ofnode_count_phandle_with_args(node, "missing", NULL, 2);
312 ut_asserteq(-ENOENT, ret);
313 ret = ofnode_count_phandle_with_args(node, prop2, NULL, 1);
314 ut_asserteq(3, ret);
315
316 /* Test ofnode_parse_phandle_with_args with cell count */
317 ret = ofnode_parse_phandle_with_args(node, prop2, NULL, 1, 0, &args);
318 ut_assertok(ret);
319 ut_asserteq(1, ofnode_valid(args.node));
320 ut_asserteq(1, args.args_count);
321 ut_asserteq(10, args.args[0]);
322 ret = ofnode_parse_phandle_with_args(node, prop2, NULL, 1, 1, &args);
323 ut_asserteq(-EINVAL, ret);
324 ret = ofnode_parse_phandle_with_args(node, prop2, NULL, 1, 2, &args);
325 ut_assertok(ret);
326 ut_asserteq(1, ofnode_valid(args.node));
327 ut_asserteq(1, args.args_count);
328 ut_asserteq(30, args.args[0]);
329 ret = ofnode_parse_phandle_with_args(node, prop2, NULL, 1, 3, &args);
330 ut_asserteq(-ENOENT, ret);
331
332 return 0;
333}
334DM_TEST(dm_test_ofnode_phandle, UT_TESTF_SCAN_PDATA | UT_TESTF_SCAN_FDT);
335
Simon Glass5e969252022-09-06 20:27:27 -0600336static int dm_test_ofnode_phandle_ot(struct unit_test_state *uts)
337{
338 oftree otree = get_other_oftree(uts);
339 struct ofnode_phandle_args args;
340 ofnode node;
341 int ret;
342
343 node = oftree_path(otree, "/node");
344
345 /* Test ofnode_count_phandle_with_args with cell name */
346 ret = ofnode_count_phandle_with_args(node, "missing", "#gpio-cells", 0);
347 ut_asserteq(-ENOENT, ret);
348 ret = ofnode_count_phandle_with_args(node, "target", "#invalid", 0);
349 ut_asserteq(-EINVAL, ret);
350 ret = ofnode_count_phandle_with_args(node, "target", "#gpio-cells", 0);
351 ut_asserteq(1, ret);
352
353 ret = ofnode_parse_phandle_with_args(node, "target", "#gpio-cells", 0,
354 0, &args);
355 ut_assertok(ret);
356 ut_asserteq(2, args.args_count);
357 ut_asserteq(3, args.args[0]);
358 ut_asserteq(4, args.args[1]);
359
360 return 0;
361}
362DM_TEST(dm_test_ofnode_phandle_ot, UT_TESTF_OTHER_FDT);
363
Simon Glass14ca9f72020-01-27 08:49:43 -0700364static int dm_test_ofnode_read_chosen(struct unit_test_state *uts)
365{
366 const char *str;
Simon Glassbd933bf2020-01-27 08:49:46 -0700367 const u32 *val;
Simon Glass14ca9f72020-01-27 08:49:43 -0700368 ofnode node;
Simon Glassbd933bf2020-01-27 08:49:46 -0700369 int size;
Simon Glass14ca9f72020-01-27 08:49:43 -0700370
371 str = ofnode_read_chosen_string("setting");
372 ut_assertnonnull(str);
373 ut_asserteq_str("sunrise ohoka", str);
374 ut_asserteq_ptr(NULL, ofnode_read_chosen_string("no-setting"));
375
376 node = ofnode_get_chosen_node("other-node");
377 ut_assert(ofnode_valid(node));
378 ut_asserteq_str("c-test@5", ofnode_get_name(node));
379
380 node = ofnode_get_chosen_node("setting");
381 ut_assert(!ofnode_valid(node));
382
Simon Glassbd933bf2020-01-27 08:49:46 -0700383 val = ofnode_read_chosen_prop("int-values", &size);
384 ut_assertnonnull(val);
385 ut_asserteq(8, size);
386 ut_asserteq(0x1937, fdt32_to_cpu(val[0]));
387 ut_asserteq(72993, fdt32_to_cpu(val[1]));
388
Simon Glass14ca9f72020-01-27 08:49:43 -0700389 return 0;
390}
Simon Glasse180c2b2020-07-28 19:41:12 -0600391DM_TEST(dm_test_ofnode_read_chosen, UT_TESTF_SCAN_PDATA | UT_TESTF_SCAN_FDT);
Chunfeng Yunbf6ad912020-05-02 11:35:10 +0200392
Michal Simek305d3182020-07-28 12:51:08 +0200393static int dm_test_ofnode_read_aliases(struct unit_test_state *uts)
394{
395 const void *val;
396 ofnode node;
397 int size;
398
Michael Walle82a3c9e2021-02-25 16:51:11 +0100399 node = ofnode_get_aliases_node("ethernet3");
Michal Simek305d3182020-07-28 12:51:08 +0200400 ut_assert(ofnode_valid(node));
401 ut_asserteq_str("sbe5", ofnode_get_name(node));
402
403 node = ofnode_get_aliases_node("unknown");
404 ut_assert(!ofnode_valid(node));
405
406 val = ofnode_read_aliases_prop("spi0", &size);
407 ut_assertnonnull(val);
408 ut_asserteq(7, size);
409 ut_asserteq_str("/spi@0", (const char *)val);
410
411 return 0;
412}
413DM_TEST(dm_test_ofnode_read_aliases, UT_TESTF_SCAN_PDATA | UT_TESTF_SCAN_FDT);
414
Chunfeng Yunbf6ad912020-05-02 11:35:10 +0200415static int dm_test_ofnode_get_child_count(struct unit_test_state *uts)
416{
417 ofnode node, child_node;
418 u32 val;
419
420 node = ofnode_path("/i-test");
421 ut_assert(ofnode_valid(node));
422
423 val = ofnode_get_child_count(node);
424 ut_asserteq(3, val);
425
426 child_node = ofnode_first_subnode(node);
427 ut_assert(ofnode_valid(child_node));
428 val = ofnode_get_child_count(child_node);
429 ut_asserteq(0, val);
430
431 return 0;
432}
433DM_TEST(dm_test_ofnode_get_child_count,
Simon Glasse180c2b2020-07-28 19:41:12 -0600434 UT_TESTF_SCAN_PDATA | UT_TESTF_SCAN_FDT);
Simon Glass0de1b072020-11-28 17:50:02 -0700435
Simon Glass47a677c2022-09-06 20:27:30 -0600436static int dm_test_ofnode_get_child_count_ot(struct unit_test_state *uts)
437{
438 oftree otree = get_other_oftree(uts);
439 ofnode node, child_node;
440 u32 val;
441
442 node = oftree_path(otree, "/node");
443 ut_assert(ofnode_valid(node));
444
445 val = ofnode_get_child_count(node);
446 ut_asserteq(2, val);
447
448 child_node = ofnode_first_subnode(node);
449 ut_assert(ofnode_valid(child_node));
450 val = ofnode_get_child_count(child_node);
451 ut_asserteq(0, val);
452
453 return 0;
454}
455DM_TEST(dm_test_ofnode_get_child_count_ot, UT_TESTF_OTHER_FDT);
456
Simon Glass0de1b072020-11-28 17:50:02 -0700457static int dm_test_ofnode_is_enabled(struct unit_test_state *uts)
458{
459 ofnode root_node = ofnode_path("/");
460 ofnode node = ofnode_path("/usb@0");
461
462 ut_assert(ofnode_is_enabled(root_node));
463 ut_assert(!ofnode_is_enabled(node));
464
465 return 0;
466}
467DM_TEST(dm_test_ofnode_is_enabled, UT_TESTF_SCAN_PDATA | UT_TESTF_SCAN_FDT);
Chen Guanqiao61772bc2021-04-12 14:51:12 +0800468
Simon Glass47a677c2022-09-06 20:27:30 -0600469static int dm_test_ofnode_is_enabled_ot(struct unit_test_state *uts)
470{
471 oftree otree = get_other_oftree(uts);
472 ofnode root_node = oftree_root(otree);
473 ofnode node = oftree_path(otree, "/target");
474
475 ut_assert(ofnode_is_enabled(root_node));
476 ut_assert(!ofnode_is_enabled(node));
477
478 return 0;
479}
480DM_TEST(dm_test_ofnode_is_enabled_ot, UT_TESTF_OTHER_FDT);
481
Chen Guanqiao61772bc2021-04-12 14:51:12 +0800482static int dm_test_ofnode_get_reg(struct unit_test_state *uts)
483{
484 ofnode node;
485 fdt_addr_t addr;
486 fdt_size_t size;
487
488 node = ofnode_path("/translation-test@8000");
489 ut_assert(ofnode_valid(node));
490 addr = ofnode_get_addr(node);
491 size = ofnode_get_size(node);
492 ut_asserteq(0x8000, addr);
493 ut_asserteq(0x4000, size);
494
495 node = ofnode_path("/translation-test@8000/dev@1,100");
496 ut_assert(ofnode_valid(node));
497 addr = ofnode_get_addr(node);
498 size = ofnode_get_size(node);
499 ut_asserteq(0x9000, addr);
500 ut_asserteq(0x1000, size);
501
502 node = ofnode_path("/emul-mux-controller");
503 ut_assert(ofnode_valid(node));
504 addr = ofnode_get_addr(node);
505 size = ofnode_get_size(node);
Patrice Chotard9876ae72022-01-04 08:42:48 +0100506 ut_asserteq_64(FDT_ADDR_T_NONE, addr);
Chen Guanqiao61772bc2021-04-12 14:51:12 +0800507 ut_asserteq(FDT_SIZE_T_NONE, size);
508
Marek Behún31a7b712021-05-26 14:08:17 +0200509 node = ofnode_path("/translation-test@8000/noxlatebus@3,300/dev@42");
510 ut_assert(ofnode_valid(node));
511 addr = ofnode_get_addr_size_index_notrans(node, 0, &size);
512 ut_asserteq_64(0x42, addr);
513
Chen Guanqiao61772bc2021-04-12 14:51:12 +0800514 return 0;
515}
516DM_TEST(dm_test_ofnode_get_reg, UT_TESTF_SCAN_PDATA | UT_TESTF_SCAN_FDT);
Marek Behún0e116be2021-05-26 14:08:18 +0200517
Simon Glass47a677c2022-09-06 20:27:30 -0600518static int dm_test_ofnode_get_reg_ot(struct unit_test_state *uts)
519{
520 oftree otree = get_other_oftree(uts);
521 ofnode node = oftree_path(otree, "/target");
522 fdt_addr_t addr;
523
524 addr = ofnode_get_addr(node);
525 ut_asserteq(0x8000, addr);
526
527 return 0;
528}
529DM_TEST(dm_test_ofnode_get_reg_ot, UT_TESTF_OTHER_FDT);
530
Marek Behún0e116be2021-05-26 14:08:18 +0200531static int dm_test_ofnode_get_path(struct unit_test_state *uts)
532{
533 const char *path = "/translation-test@8000/noxlatebus@3,300/dev@42";
534 char buf[64];
535 ofnode node;
Marek Behún0e116be2021-05-26 14:08:18 +0200536
537 node = ofnode_path(path);
538 ut_assert(ofnode_valid(node));
539
Simon Glass47a677c2022-09-06 20:27:30 -0600540 ut_assertok(ofnode_get_path(node, buf, sizeof(buf)));
Marek Behún0e116be2021-05-26 14:08:18 +0200541 ut_asserteq_str(path, buf);
542
Simon Glass47a677c2022-09-06 20:27:30 -0600543 ut_asserteq(-ENOSPC, ofnode_get_path(node, buf, 32));
Marek Behún0e116be2021-05-26 14:08:18 +0200544
Simon Glass47a677c2022-09-06 20:27:30 -0600545 ut_assertok(ofnode_get_path(ofnode_root(), buf, 32));
Simon Glass66d0d0c2022-09-06 20:27:18 -0600546 ut_asserteq_str("/", buf);
547
Marek Behún0e116be2021-05-26 14:08:18 +0200548 return 0;
549}
550DM_TEST(dm_test_ofnode_get_path, UT_TESTF_SCAN_PDATA | UT_TESTF_SCAN_FDT);
Simon Glass7de8bd02021-08-07 07:24:01 -0600551
Simon Glass47a677c2022-09-06 20:27:30 -0600552static int dm_test_ofnode_get_path_ot(struct unit_test_state *uts)
553{
554 oftree otree = get_other_oftree(uts);
555 const char *path = "/node/subnode";
556 ofnode node = oftree_path(otree, path);
557 char buf[64];
558
559 ut_assert(ofnode_valid(node));
560
561 ut_assertok(ofnode_get_path(node, buf, sizeof(buf)));
562 ut_asserteq_str(path, buf);
563
564 ut_assertok(ofnode_get_path(oftree_root(otree), buf, 32));
565 ut_asserteq_str("/", buf);
566
567 return 0;
568}
569DM_TEST(dm_test_ofnode_get_path_ot, UT_TESTF_OTHER_FDT);
570
Simon Glass7de8bd02021-08-07 07:24:01 -0600571static int dm_test_ofnode_conf(struct unit_test_state *uts)
572{
573 ut_assert(!ofnode_conf_read_bool("missing"));
574 ut_assert(ofnode_conf_read_bool("testing-bool"));
575
576 ut_asserteq(123, ofnode_conf_read_int("testing-int", 0));
577 ut_asserteq(6, ofnode_conf_read_int("missing", 6));
578
579 ut_assertnull(ofnode_conf_read_str("missing"));
580 ut_asserteq_str("testing", ofnode_conf_read_str("testing-str"));
581
582 return 0;
583}
584DM_TEST(dm_test_ofnode_conf, 0);
Michael Wallebce039a2021-10-15 15:15:18 +0200585
586static int dm_test_ofnode_for_each_compatible_node(struct unit_test_state *uts)
587{
588 const char compatible[] = "denx,u-boot-fdt-test";
589 bool found = false;
590 ofnode node;
591
592 ofnode_for_each_compatible_node(node, compatible) {
593 ut_assert(ofnode_device_is_compatible(node, compatible));
594 found = true;
595 }
596
597 /* There should be at least one matching node */
598 ut_assert(found);
599
600 return 0;
601}
602DM_TEST(dm_test_ofnode_for_each_compatible_node, UT_TESTF_SCAN_FDT);
Simon Glassfb933d02021-10-23 17:26:04 -0600603
604static int dm_test_ofnode_string(struct unit_test_state *uts)
605{
Simon Glass075bfc92021-10-23 17:26:07 -0600606 const char **val;
Simon Glassfb933d02021-10-23 17:26:04 -0600607 const char *out;
608 ofnode node;
609
610 node = ofnode_path("/a-test");
611 ut_assert(ofnode_valid(node));
612
613 /* single string */
614 ut_asserteq(1, ofnode_read_string_count(node, "str-value"));
615 ut_assertok(ofnode_read_string_index(node, "str-value", 0, &out));
616 ut_asserteq_str("test string", out);
617 ut_asserteq(0, ofnode_stringlist_search(node, "str-value",
618 "test string"));
Simon Glass075bfc92021-10-23 17:26:07 -0600619 ut_asserteq(1, ofnode_read_string_list(node, "str-value", &val));
620 ut_asserteq_str("test string", val[0]);
621 ut_assertnull(val[1]);
622 free(val);
Simon Glassfb933d02021-10-23 17:26:04 -0600623
624 /* list of strings */
625 ut_asserteq(5, ofnode_read_string_count(node, "mux-control-names"));
626 ut_assertok(ofnode_read_string_index(node, "mux-control-names", 0,
627 &out));
628 ut_asserteq_str("mux0", out);
629 ut_asserteq(0, ofnode_stringlist_search(node, "mux-control-names",
630 "mux0"));
Simon Glass075bfc92021-10-23 17:26:07 -0600631 ut_asserteq(5, ofnode_read_string_list(node, "mux-control-names",
632 &val));
633 ut_asserteq_str("mux0", val[0]);
634 ut_asserteq_str("mux1", val[1]);
635 ut_asserteq_str("mux2", val[2]);
636 ut_asserteq_str("mux3", val[3]);
637 ut_asserteq_str("mux4", val[4]);
638 ut_assertnull(val[5]);
639 free(val);
Simon Glassfb933d02021-10-23 17:26:04 -0600640
641 ut_assertok(ofnode_read_string_index(node, "mux-control-names", 4,
642 &out));
643 ut_asserteq_str("mux4", out);
644 ut_asserteq(4, ofnode_stringlist_search(node, "mux-control-names",
645 "mux4"));
646
647 return 0;
648}
649DM_TEST(dm_test_ofnode_string, 0);
650
651static int dm_test_ofnode_string_err(struct unit_test_state *uts)
652{
Simon Glass075bfc92021-10-23 17:26:07 -0600653 const char **val;
Simon Glassfb933d02021-10-23 17:26:04 -0600654 const char *out;
655 ofnode node;
656
657 /*
658 * Test error codes only on livetree, as they are different with
659 * flattree
660 */
661 node = ofnode_path("/a-test");
662 ut_assert(ofnode_valid(node));
663
664 /* non-existent property */
665 ut_asserteq(-EINVAL, ofnode_read_string_count(node, "missing"));
666 ut_asserteq(-EINVAL, ofnode_read_string_index(node, "missing", 0,
667 &out));
Simon Glass075bfc92021-10-23 17:26:07 -0600668 ut_asserteq(-EINVAL, ofnode_read_string_list(node, "missing", &val));
Simon Glassfb933d02021-10-23 17:26:04 -0600669
670 /* empty property */
671 ut_asserteq(-ENODATA, ofnode_read_string_count(node, "bool-value"));
672 ut_asserteq(-ENODATA, ofnode_read_string_index(node, "bool-value", 0,
673 &out));
Simon Glass075bfc92021-10-23 17:26:07 -0600674 ut_asserteq(-ENODATA, ofnode_read_string_list(node, "bool-value",
675 &val));
Simon Glassfb933d02021-10-23 17:26:04 -0600676
677 /* badly formatted string list */
678 ut_asserteq(-EILSEQ, ofnode_read_string_count(node, "int64-value"));
679 ut_asserteq(-EILSEQ, ofnode_read_string_index(node, "int64-value", 0,
680 &out));
Simon Glass075bfc92021-10-23 17:26:07 -0600681 ut_asserteq(-EILSEQ, ofnode_read_string_list(node, "int64-value",
682 &val));
Simon Glassfb933d02021-10-23 17:26:04 -0600683
684 /* out of range / not found */
685 ut_asserteq(-ENODATA, ofnode_read_string_index(node, "str-value", 1,
686 &out));
687 ut_asserteq(-ENODATA, ofnode_stringlist_search(node, "str-value",
688 "other"));
689
690 /* negative value for index is not allowed, so don't test for that */
691
692 ut_asserteq(-ENODATA, ofnode_read_string_index(node,
693 "mux-control-names", 5,
694 &out));
695
696 return 0;
697}
698DM_TEST(dm_test_ofnode_string_err, UT_TESTF_LIVE_TREE);
Marek Behúnf3dd2132022-04-07 00:32:57 +0200699
700static int dm_test_ofnode_get_phy(struct unit_test_state *uts)
701{
702 ofnode eth_node, phy_node;
Marek Behún123ca112022-04-07 00:33:01 +0200703 phy_interface_t mode;
Marek Behúnf3dd2132022-04-07 00:32:57 +0200704 u32 reg;
705
706 eth_node = ofnode_path("/phy-test-eth");
707 ut_assert(ofnode_valid(eth_node));
708
Marek Behún123ca112022-04-07 00:33:01 +0200709 mode = ofnode_read_phy_mode(eth_node);
710 ut_assert(mode == PHY_INTERFACE_MODE_2500BASEX);
711
Marek Behúnf3dd2132022-04-07 00:32:57 +0200712 phy_node = ofnode_get_phy_node(eth_node);
713 ut_assert(ofnode_valid(phy_node));
714
715 reg = ofnode_read_u32_default(phy_node, "reg", -1U);
716 ut_asserteq_64(0x1, reg);
717
718 return 0;
719}
720DM_TEST(dm_test_ofnode_get_phy, 0);
Simon Glass33104842022-07-30 15:52:08 -0600721
722/**
723 * make_ofnode_fdt() - Create an FDT for testing with ofnode
724 *
725 * The size is set to the minimum needed
726 *
727 * @uts: Test state
728 * @fdt: Place to write FDT
729 * @size: Maximum size of space for fdt
Simon Glass47a677c2022-09-06 20:27:30 -0600730 * @id: id value to add to the tree ('id' property in root node)
Simon Glass33104842022-07-30 15:52:08 -0600731 */
Simon Glass47a677c2022-09-06 20:27:30 -0600732static int make_ofnode_fdt(struct unit_test_state *uts, void *fdt, int size,
733 int id)
Simon Glass33104842022-07-30 15:52:08 -0600734{
735 ut_assertok(fdt_create(fdt, size));
736 ut_assertok(fdt_finish_reservemap(fdt));
737 ut_assert(fdt_begin_node(fdt, "") >= 0);
738
Simon Glass47a677c2022-09-06 20:27:30 -0600739 ut_assertok(fdt_property_u32(fdt, "id", id));
740
Simon Glass33104842022-07-30 15:52:08 -0600741 ut_assert(fdt_begin_node(fdt, "aliases") >= 0);
742 ut_assertok(fdt_property_string(fdt, "mmc0", "/new-mmc"));
743 ut_assertok(fdt_end_node(fdt));
744
745 ut_assert(fdt_begin_node(fdt, "new-mmc") >= 0);
746 ut_assertok(fdt_end_node(fdt));
747
748 ut_assertok(fdt_end_node(fdt));
749 ut_assertok(fdt_finish(fdt));
750
751 return 0;
752}
753
754static int dm_test_ofnode_root(struct unit_test_state *uts)
755{
Simon Glass33104842022-07-30 15:52:08 -0600756 ofnode node;
757
758 /* Check that aliases work on the control FDT */
759 node = ofnode_get_aliases_node("ethernet3");
760 ut_assert(ofnode_valid(node));
761 ut_asserteq_str("sbe5", ofnode_get_name(node));
762
Simon Glass085d5942022-09-06 20:27:21 -0600763 ut_assert(!oftree_valid(oftree_null()));
764
Simon Glassc43635b2022-10-20 18:22:49 -0600765 return 0;
766}
767DM_TEST(dm_test_ofnode_root, UT_TESTF_SCAN_FDT);
768
769static int dm_test_ofnode_root_mult(struct unit_test_state *uts)
770{
771 char fdt[256];
772 oftree tree;
773 ofnode node;
774
775 /* skip this test if multiple FDTs are not supported */
776 if (!IS_ENABLED(CONFIG_OFNODE_MULTI_TREE))
777 return -EAGAIN;
778
Simon Glass47a677c2022-09-06 20:27:30 -0600779 ut_assertok(make_ofnode_fdt(uts, fdt, sizeof(fdt), 0));
Simon Glassc43635b2022-10-20 18:22:49 -0600780 ut_assertok(get_oftree(uts, fdt, &tree));
Simon Glass085d5942022-09-06 20:27:21 -0600781 ut_assert(oftree_valid(tree));
Simon Glass33104842022-07-30 15:52:08 -0600782
783 /* Make sure they don't work on this new tree */
Simon Glassb7bd94f2022-09-06 20:27:24 -0600784 node = oftree_path(tree, "mmc0");
Simon Glass33104842022-07-30 15:52:08 -0600785 ut_assert(!ofnode_valid(node));
786
787 /* It should appear in the new tree */
Simon Glassb7bd94f2022-09-06 20:27:24 -0600788 node = oftree_path(tree, "/new-mmc");
Simon Glass33104842022-07-30 15:52:08 -0600789 ut_assert(ofnode_valid(node));
790
791 /* ...and not in the control FDT */
Simon Glassb7bd94f2022-09-06 20:27:24 -0600792 node = oftree_path(oftree_default(), "/new-mmc");
Simon Glass33104842022-07-30 15:52:08 -0600793 ut_assert(!ofnode_valid(node));
794
Simon Glass88a1ae82022-09-06 20:27:29 -0600795 free_oftree(tree);
Simon Glass33104842022-07-30 15:52:08 -0600796
797 return 0;
798}
Simon Glassc43635b2022-10-20 18:22:49 -0600799DM_TEST(dm_test_ofnode_root_mult, UT_TESTF_SCAN_FDT);
Simon Glass65715592022-07-30 15:52:09 -0600800
801static int dm_test_ofnode_livetree_writing(struct unit_test_state *uts)
802{
803 struct udevice *dev;
804 ofnode node;
805
Simon Glass65715592022-07-30 15:52:09 -0600806 /* Test enabling devices */
Simon Glass65715592022-07-30 15:52:09 -0600807 node = ofnode_path("/usb@2");
808
Simon Glass39e42be2022-07-30 15:52:13 -0600809 ut_assert(!ofnode_is_enabled(node));
810 ut_assertok(ofnode_set_enabled(node, true));
811 ut_asserteq(true, ofnode_is_enabled(node));
Simon Glass65715592022-07-30 15:52:09 -0600812
813 device_bind_driver_to_node(dm_root(), "usb_sandbox", "usb@2", node,
814 &dev);
815 ut_assertok(uclass_find_device_by_seq(UCLASS_USB, 2, &dev));
816
817 /* Test string property setting */
Simon Glass65715592022-07-30 15:52:09 -0600818 ut_assert(device_is_compatible(dev, "sandbox,usb"));
819 ofnode_write_string(node, "compatible", "gdsys,super-usb");
820 ut_assert(device_is_compatible(dev, "gdsys,super-usb"));
821 ofnode_write_string(node, "compatible", "sandbox,usb");
822 ut_assert(device_is_compatible(dev, "sandbox,usb"));
823
824 /* Test setting generic properties */
825
826 /* Non-existent in DTB */
827 ut_asserteq_64(FDT_ADDR_T_NONE, dev_read_addr(dev));
828 /* reg = 0x42, size = 0x100 */
Simon Glassbe0789a2022-07-30 15:52:10 -0600829 ut_assertok(ofnode_write_prop(node, "reg",
Simon Glass0b58eaa2022-09-06 20:27:32 -0600830 "\x00\x00\x00\x42\x00\x00\x01\x00", 8,
831 false));
Simon Glass65715592022-07-30 15:52:09 -0600832 ut_asserteq(0x42, dev_read_addr(dev));
833
834 /* Test disabling devices */
Simon Glass65715592022-07-30 15:52:09 -0600835 device_remove(dev, DM_REMOVE_NORMAL);
836 device_unbind(dev);
837
Simon Glass39e42be2022-07-30 15:52:13 -0600838 ut_assert(ofnode_is_enabled(node));
839 ut_assertok(ofnode_set_enabled(node, false));
840 ut_assert(!ofnode_is_enabled(node));
Simon Glass65715592022-07-30 15:52:09 -0600841
842 return 0;
843}
Simon Glassb7eaa4f2022-07-30 15:52:11 -0600844DM_TEST(dm_test_ofnode_livetree_writing,
Simon Glass2b90e0d2022-09-06 20:27:07 -0600845 UT_TESTF_SCAN_PDATA | UT_TESTF_SCAN_FDT);
Simon Glass55f79902022-07-30 15:52:14 -0600846
Simon Glass0b58eaa2022-09-06 20:27:32 -0600847static int check_write_prop(struct unit_test_state *uts, ofnode node)
848{
849 char prop[] = "middle-name";
850 char name[10];
851 int len;
852
853 strcpy(name, "cecil");
854 len = strlen(name) + 1;
855 ut_assertok(ofnode_write_prop(node, prop, name, len, false));
856 ut_asserteq_str(name, ofnode_read_string(node, prop));
857
858 /* change the underlying value, this should mess up the live tree */
859 strcpy(name, "tony");
860 if (of_live_active()) {
861 ut_asserteq_str(name, ofnode_read_string(node, prop));
862 } else {
863 ut_asserteq_str("cecil", ofnode_read_string(node, prop));
864 }
865
866 /* try again, this time copying the property */
867 strcpy(name, "mary");
868 ut_assertok(ofnode_write_prop(node, prop, name, len, true));
869 ut_asserteq_str(name, ofnode_read_string(node, prop));
870 strcpy(name, "leah");
871
872 /* both flattree and livetree behave the same */
873 ut_asserteq_str("mary", ofnode_read_string(node, prop));
874
875 return 0;
876}
877
878/* writing the tree with and without copying the property */
879static int dm_test_ofnode_write_copy(struct unit_test_state *uts)
880{
881 ofnode node;
882
883 node = ofnode_path("/a-test");
884 ut_assertok(check_write_prop(uts, node));
885
886 return 0;
887}
888DM_TEST(dm_test_ofnode_write_copy, UT_TESTF_SCAN_FDT);
889
890static int dm_test_ofnode_write_copy_ot(struct unit_test_state *uts)
891{
892 oftree otree = get_other_oftree(uts);
893 ofnode node, check_node;
894
895 node = oftree_path(otree, "/node");
896 ut_assertok(check_write_prop(uts, node));
897
898 /* make sure the control FDT is not touched */
899 check_node = ofnode_path("/node");
900 ut_assertnull(ofnode_read_string(check_node, "middle-name"));
901
902 return 0;
903}
904DM_TEST(dm_test_ofnode_write_copy_ot, UT_TESTF_OTHER_FDT);
905
Simon Glass55f79902022-07-30 15:52:14 -0600906static int dm_test_ofnode_u32(struct unit_test_state *uts)
907{
908 ofnode node;
Simon Glass66d0d0c2022-09-06 20:27:18 -0600909 u32 val;
Simon Glass55f79902022-07-30 15:52:14 -0600910
911 node = ofnode_path("/lcd");
912 ut_assert(ofnode_valid(node));
913 ut_asserteq(1366, ofnode_read_u32_default(node, "xres", 123));
914 ut_assertok(ofnode_write_u32(node, "xres", 1367));
915 ut_asserteq(1367, ofnode_read_u32_default(node, "xres", 123));
916 ut_assertok(ofnode_write_u32(node, "xres", 1366));
917
Simon Glass66d0d0c2022-09-06 20:27:18 -0600918 node = ofnode_path("/backlight");
919 ut_assertok(ofnode_read_u32_index(node, "brightness-levels", 0, &val));
920 ut_asserteq(0, val);
921 ut_assertok(ofnode_read_u32_index(node, "brightness-levels", 1, &val));
922 ut_asserteq(16, val);
923 ut_assertok(ofnode_read_u32_index(node, "brightness-levels", 8, &val));
924 ut_asserteq(255, val);
925 ut_asserteq(-EOVERFLOW,
926 ofnode_read_u32_index(node, "brightness-levels", 9, &val));
927 ut_asserteq(-EINVAL, ofnode_read_u32_index(node, "missing", 0, &val));
928
Simon Glass55f79902022-07-30 15:52:14 -0600929 return 0;
930}
Simon Glass2b90e0d2022-09-06 20:27:07 -0600931DM_TEST(dm_test_ofnode_u32, UT_TESTF_SCAN_PDATA | UT_TESTF_SCAN_FDT);
Simon Glassffe90392022-09-06 20:27:02 -0600932
Simon Glass66d0d0c2022-09-06 20:27:18 -0600933static int dm_test_ofnode_u32_array(struct unit_test_state *uts)
934{
935 ofnode node;
936 u32 val[10];
937
938 node = ofnode_path("/a-test");
939 ut_assert(ofnode_valid(node));
940 ut_assertok(ofnode_read_u32_array(node, "int-value", val, 1));
941 ut_asserteq(-EINVAL, ofnode_read_u32_array(node, "missing", val, 1));
942 ut_asserteq(-EOVERFLOW, ofnode_read_u32_array(node, "bool-value", val,
943 1));
944
945 memset(val, '\0', sizeof(val));
946 ut_assertok(ofnode_read_u32_array(node, "int-array", val + 1, 3));
947 ut_asserteq(0, val[0]);
948 ut_asserteq(5678, val[1]);
949 ut_asserteq(9123, val[2]);
950 ut_asserteq(4567, val[3]);
951 ut_asserteq(0, val[4]);
952 ut_asserteq(-EOVERFLOW, ofnode_read_u32_array(node, "int-array", val,
953 4));
954
955 return 0;
956}
957DM_TEST(dm_test_ofnode_u32_array, UT_TESTF_SCAN_PDATA | UT_TESTF_SCAN_FDT);
958
959static int dm_test_ofnode_u64(struct unit_test_state *uts)
960{
961 ofnode node;
962 u64 val;
963
964 node = ofnode_path("/a-test");
965 ut_assert(ofnode_valid(node));
966 ut_assertok(ofnode_read_u64(node, "int64-value", &val));
967 ut_asserteq_64(0x1111222233334444, val);
968 ut_asserteq(-EINVAL, ofnode_read_u64(node, "missing", &val));
969
970 return 0;
971}
972DM_TEST(dm_test_ofnode_u64, UT_TESTF_SCAN_FDT);
973
Simon Glassffe90392022-09-06 20:27:02 -0600974static int dm_test_ofnode_add_subnode(struct unit_test_state *uts)
975{
976 ofnode node, check, subnode;
977 char buf[128];
978
Simon Glassffe90392022-09-06 20:27:02 -0600979 node = ofnode_path("/lcd");
980 ut_assert(ofnode_valid(node));
981 ut_assertok(ofnode_add_subnode(node, "edmund", &subnode));
982 check = ofnode_path("/lcd/edmund");
983 ut_asserteq(subnode.of_offset, check.of_offset);
984 ut_assertok(ofnode_get_path(subnode, buf, sizeof(buf)));
985 ut_asserteq_str("/lcd/edmund", buf);
986
987 if (of_live_active()) {
988 struct device_node *child;
989
990 ut_assertok(of_add_subnode((void *)ofnode_to_np(node), "edmund",
991 2, &child));
992 ut_asserteq_str("ed", child->name);
993 ut_asserteq_str("/lcd/ed", child->full_name);
994 check = ofnode_path("/lcd/ed");
995 ut_asserteq_ptr(child, check.np);
996 ut_assertok(ofnode_get_path(np_to_ofnode(child), buf,
997 sizeof(buf)));
998 ut_asserteq_str("/lcd/ed", buf);
999 }
1000
1001 /* An existing node should be returned with -EEXIST */
1002 ut_asserteq(-EEXIST, ofnode_add_subnode(node, "edmund", &check));
1003 ut_asserteq(subnode.of_offset, check.of_offset);
1004
1005 /* add a root node */
1006 node = ofnode_path("/");
1007 ut_assert(ofnode_valid(node));
1008 ut_assertok(ofnode_add_subnode(node, "lcd2", &subnode));
1009 check = ofnode_path("/lcd2");
1010 ut_asserteq(subnode.of_offset, check.of_offset);
1011 ut_assertok(ofnode_get_path(subnode, buf, sizeof(buf)));
1012 ut_asserteq_str("/lcd2", buf);
1013
1014 if (of_live_active()) {
1015 ulong start;
1016 int i;
1017
1018 /*
1019 * Make sure each of the three malloc()checks in
1020 * of_add_subnode() work
1021 */
1022 for (i = 0; i < 3; i++) {
1023 malloc_enable_testing(i);
1024 start = ut_check_free();
1025 ut_asserteq(-ENOMEM, ofnode_add_subnode(node, "anthony",
1026 &check));
1027 ut_assertok(ut_check_delta(start));
1028 }
1029
1030 /* This should pass since we allow 3 allocations */
1031 malloc_enable_testing(3);
1032 ut_assertok(ofnode_add_subnode(node, "anthony", &check));
1033 malloc_disable_testing();
1034 }
1035
Simon Glassc3a194d2022-09-06 20:27:03 -06001036 /* write to the empty node */
1037 ut_assertok(ofnode_write_string(subnode, "example", "text"));
1038
Simon Glassffe90392022-09-06 20:27:02 -06001039 return 0;
1040}
Simon Glass2b90e0d2022-09-06 20:27:07 -06001041DM_TEST(dm_test_ofnode_add_subnode, UT_TESTF_SCAN_PDATA | UT_TESTF_SCAN_FDT);
Simon Glass52ad21a2022-09-06 20:27:16 -06001042
1043static int dm_test_ofnode_for_each_prop(struct unit_test_state *uts)
1044{
1045 ofnode node, subnode;
1046 struct ofprop prop;
1047 int count;
1048
Dzmitry Sankouski298ffdd2023-01-22 18:21:23 +03001049 node = ofnode_path("/ofnode-foreach");
Simon Glass52ad21a2022-09-06 20:27:16 -06001050 count = 0;
1051
1052 /* we expect "compatible" for each node */
1053 ofnode_for_each_prop(prop, node)
1054 count++;
1055 ut_asserteq(1, count);
1056
1057 /* there are two nodes, each with 2 properties */
1058 ofnode_for_each_subnode(subnode, node)
1059 ofnode_for_each_prop(prop, subnode)
1060 count++;
1061 ut_asserteq(5, count);
1062
1063 return 0;
1064}
1065DM_TEST(dm_test_ofnode_for_each_prop, UT_TESTF_SCAN_FDT);
Simon Glass66d0d0c2022-09-06 20:27:18 -06001066
1067static int dm_test_ofnode_by_compatible(struct unit_test_state *uts)
1068{
1069 const char *compat = "denx,u-boot-fdt-test";
1070 ofnode node;
1071 int count;
1072
1073 count = 0;
1074 for (node = ofnode_null();
1075 node = ofnode_by_compatible(node, compat), ofnode_valid(node);)
1076 count++;
1077 ut_asserteq(11, count);
1078
1079 return 0;
1080}
1081DM_TEST(dm_test_ofnode_by_compatible, UT_TESTF_SCAN_FDT);
1082
Simon Glass47a677c2022-09-06 20:27:30 -06001083static int dm_test_ofnode_by_compatible_ot(struct unit_test_state *uts)
1084{
1085 const char *compat = "sandbox-other2";
1086 oftree otree = get_other_oftree(uts);
1087 ofnode node;
1088 int count;
1089
1090 count = 0;
1091 for (node = oftree_root(otree);
1092 node = ofnode_by_compatible(node, compat), ofnode_valid(node);)
1093 count++;
1094 ut_asserteq(2, count);
1095
1096 return 0;
1097}
1098DM_TEST(dm_test_ofnode_by_compatible_ot, UT_TESTF_OTHER_FDT);
1099
Simon Glass66d0d0c2022-09-06 20:27:18 -06001100static int dm_test_ofnode_find_subnode(struct unit_test_state *uts)
1101{
1102 ofnode node, subnode;
1103
1104 node = ofnode_path("/buttons");
1105
1106 subnode = ofnode_find_subnode(node, "btn1");
1107 ut_assert(ofnode_valid(subnode));
1108 ut_asserteq_str("btn1", ofnode_get_name(subnode));
1109
1110 subnode = ofnode_find_subnode(node, "btn");
1111 ut_assert(!ofnode_valid(subnode));
1112
1113 return 0;
1114}
1115DM_TEST(dm_test_ofnode_find_subnode, UT_TESTF_SCAN_FDT);
1116
Simon Glass47a677c2022-09-06 20:27:30 -06001117static int dm_test_ofnode_find_subnode_ot(struct unit_test_state *uts)
1118{
1119 oftree otree = get_other_oftree(uts);
1120 ofnode node, subnode;
1121
1122 node = oftree_path(otree, "/node");
1123
1124 subnode = ofnode_find_subnode(node, "subnode");
1125 ut_assert(ofnode_valid(subnode));
1126 ut_asserteq_str("subnode", ofnode_get_name(subnode));
1127
1128 subnode = ofnode_find_subnode(node, "btn");
1129 ut_assert(!ofnode_valid(subnode));
1130
1131 return 0;
1132}
1133DM_TEST(dm_test_ofnode_find_subnode_ot, UT_TESTF_OTHER_FDT);
1134
Simon Glass66d0d0c2022-09-06 20:27:18 -06001135static int dm_test_ofnode_get_name(struct unit_test_state *uts)
1136{
1137 ofnode node;
1138
1139 node = ofnode_path("/buttons");
1140 ut_assert(ofnode_valid(node));
1141 ut_asserteq_str("buttons", ofnode_get_name(node));
1142 ut_asserteq_str("", ofnode_get_name(ofnode_root()));
1143
1144 return 0;
1145}
1146DM_TEST(dm_test_ofnode_get_name, UT_TESTF_SCAN_FDT);
Simon Glass47a677c2022-09-06 20:27:30 -06001147
1148/* try to access more FDTs than is supported */
1149static int dm_test_ofnode_too_many(struct unit_test_state *uts)
1150{
1151 const int max_trees = CONFIG_IS_ENABLED(OFNODE_MULTI_TREE,
1152 (CONFIG_OFNODE_MULTI_TREE_MAX), (1));
1153 const int fdt_size = 256;
1154 const int num_trees = max_trees + 1;
1155 char fdt[num_trees][fdt_size];
1156 int i;
1157
1158 for (i = 0; i < num_trees; i++) {
1159 oftree tree;
1160 int ret;
1161
1162 ut_assertok(make_ofnode_fdt(uts, fdt[i], fdt_size, i));
1163 ret = get_oftree(uts, fdt[i], &tree);
1164
1165 /*
1166 * With flat tree we have the control FDT using one slot. Live
1167 * tree has no limit since it uses pointers, not integer tree
1168 * IDs
1169 */
1170 if (of_live_active() || i < max_trees - 1) {
1171 ut_assertok(ret);
1172 } else {
1173 /*
1174 * tree should be invalid when we try to register too
1175 * many trees
1176 */
1177 ut_asserteq(-EOVERFLOW, ret);
1178 }
1179 }
1180
1181 return 0;
1182}
1183DM_TEST(dm_test_ofnode_too_many, UT_TESTF_SCAN_FDT);
Simon Glassdb1ef1e2022-09-06 20:27:33 -06001184
1185static int check_copy_props(struct unit_test_state *uts, ofnode src,
1186 ofnode dst)
1187{
1188 u32 reg[2], val;
1189
1190 ut_assertok(ofnode_copy_props(src, dst));
1191
1192 ut_assertok(ofnode_read_u32(dst, "ping-expect", &val));
1193 ut_asserteq(3, val);
1194
1195 ut_asserteq_str("denx,u-boot-fdt-test",
1196 ofnode_read_string(dst, "compatible"));
1197
1198 /* check that a property with the same name is overwritten */
1199 ut_assertok(ofnode_read_u32_array(dst, "reg", reg, ARRAY_SIZE(reg)));
1200 ut_asserteq(3, reg[0]);
1201 ut_asserteq(1, reg[1]);
1202
1203 /* reset the compatible so the live tree does not change */
1204 ut_assertok(ofnode_write_string(dst, "compatible", "nothing"));
1205
1206 return 0;
1207}
1208
1209static int dm_test_ofnode_copy_props(struct unit_test_state *uts)
1210{
1211 ofnode src, dst;
1212
1213 /*
1214 * These nodes are chosen so that the src node is before the destination
1215 * node in the tree. This doesn't matter with livetree, but with
1216 * flattree any attempt to insert a property earlier in the tree will
1217 * mess up the offsets after it.
1218 */
1219 src = ofnode_path("/b-test");
1220 dst = ofnode_path("/some-bus");
1221
1222 ut_assertok(check_copy_props(uts, src, dst));
1223
1224 /* check a property that is in the destination already */
1225 ut_asserteq_str("mux0", ofnode_read_string(dst, "mux-control-names"));
1226
1227 return 0;
1228}
1229DM_TEST(dm_test_ofnode_copy_props, UT_TESTF_SCAN_FDT);
1230
1231static int dm_test_ofnode_copy_props_ot(struct unit_test_state *uts)
1232{
1233 ofnode src, dst;
1234 oftree otree = get_other_oftree(uts);
1235
1236 src = ofnode_path("/b-test");
1237 dst = oftree_path(otree, "/node/subnode2");
1238 ut_assertok(check_copy_props(uts, src, dst));
1239
1240 return 0;
1241}
1242DM_TEST(dm_test_ofnode_copy_props_ot, UT_TESTF_SCAN_FDT | UT_TESTF_OTHER_FDT);
Simon Glass9cf39bb2023-06-01 10:22:40 -06001243
1244/* check that the livetree is aligned to a structure boundary */
1245static int dm_test_livetree_align(struct unit_test_state *uts)
1246{
1247 const int align = __alignof__(struct unit_test_state);
1248 struct device_node *node;
1249 u32 *sentinel;
1250 ulong start;
1251
1252 start = (ulong)gd_of_root();
1253 ut_asserteq(start, ALIGN(start, align));
1254
1255 node = gd_of_root();
1256 sentinel = (void *)node - sizeof(u32);
1257
1258 /*
1259 * The sentinel should be overwritten with the root node. If it isn't,
1260 * then the root node is not at the very start of the livetree memory
1261 * area, and free(root) will fail to free the memory used by the
1262 * livetree.
1263 */
1264 ut_assert(*sentinel != BAD_OF_ROOT);
1265
1266 return 0;
1267}
1268DM_TEST(dm_test_livetree_align, UT_TESTF_LIVE_TREE);
Simon Glassa8f2ac22023-06-01 10:22:42 -06001269
1270/* check that it is possible to load an arbitrary livetree */
1271static int dm_test_livetree_ensure(struct unit_test_state *uts)
1272{
1273 oftree tree;
1274 ofnode node;
1275
1276 /* read from other.dtb */
1277 ut_assertok(test_load_other_fdt(uts));
1278 tree = oftree_from_fdt(uts->other_fdt);
1279 ut_assert(oftree_valid(tree));
1280 node = oftree_path(tree, "/node/subnode");
1281 ut_assert(ofnode_valid(node));
1282 ut_asserteq_str("sandbox-other2",
1283 ofnode_read_string(node, "compatible"));
1284
1285 return 0;
1286}
1287DM_TEST(dm_test_livetree_ensure, 0);