1 // SPDX-License-Identifier: GPL-2.0+
3 * Some very basic tests for fdtdec, accessed through test_fdtdec command.
4 * They are easiest to use with sandbox.
6 * Copyright (c) 2011 The Chromium OS Authors.
12 #include <linux/libfdt.h>
16 /* The size of our test fdt blob */
17 #define FDT_SIZE (16 * 1024)
19 #define CHECK(op) ({ \
22 printf("%s: %s: %s\n", __func__, #op, \
30 #define CHECKVAL(op, expected) ({ \
32 if (err != expected) { \
33 printf("%s: %s: expected %d, but returned %d\n",\
34 __func__, #op, expected, err); \
41 #define CHECKOK(op) CHECKVAL(op, 0)
43 /* maximum number of nodes / aliases to generate */
49 * @param fdt Device tree pointer
50 * @param size Size of device tree blob
51 * @param aliases Specifies alias assignments. Format is a list of items
52 * separated by space. Items are #a where
53 * # is the alias number
54 * a is the node to point to
55 * @param nodes Specifies nodes to generate (a=0, b=1), upper case
56 * means to create a disabled node
58 static int make_fdt(void *fdt, int size, const char *aliases,
61 char name[20], value[20];
63 #if defined(DEBUG) && defined(CONFIG_SANDBOX)
67 CHECK(fdt_create(fdt, size));
68 CHECK(fdt_finish_reservemap(fdt));
69 CHECK(fdt_begin_node(fdt, ""));
71 CHECK(fdt_begin_node(fdt, "aliases"));
72 for (s = aliases; *s;) {
73 sprintf(name, "i2c%c", *s);
74 sprintf(value, "/i2c%d@0", s[1] - 'a');
75 CHECK(fdt_property_string(fdt, name, value));
76 s += 2 + (s[2] != '\0');
78 CHECK(fdt_end_node(fdt));
80 for (s = nodes; *s; s++) {
81 sprintf(value, "i2c%d@0", (*s & 0xdf) - 'A');
82 CHECK(fdt_begin_node(fdt, value));
83 CHECK(fdt_property_string(fdt, "compatible",
84 fdtdec_get_compatible(COMPAT_UNKNOWN)));
86 CHECK(fdt_property_string(fdt, "status", "disabled"));
87 CHECK(fdt_end_node(fdt));
90 CHECK(fdt_end_node(fdt));
91 CHECK(fdt_finish(fdt));
93 #if defined(DEBUG) && defined(CONFIG_SANDBOX)
94 fd = os_open("/tmp/fdtdec-text.dtb", OS_O_CREAT | OS_O_WRONLY);
96 printf("Could not open .dtb file to write\n");
99 os_write(fd, fdt, size);
105 static int run_test(const char *aliases, const char *nodes, const char *expect)
112 blob = malloc(FDT_SIZE);
114 printf("%s: out of memory\n", __func__);
118 printf("aliases=%s, nodes=%s, expect=%s: ", aliases, nodes, expect);
119 CHECKVAL(make_fdt(blob, FDT_SIZE, aliases, nodes), 0);
120 CHECKVAL(fdtdec_find_aliases_for_id(blob, "i2c",
122 list, ARRAY_SIZE(list)), (int)strlen(expect));
124 /* Check we got the right ones */
125 for (i = 0, s = expect; *s; s++, i++) {
130 name = list[i] ? fdt_get_name(blob, list[i], NULL) : NULL;
132 got = name[3] + 'a' - '0';
135 printf("Position %d: Expected '%c', got '%c' ('%s')\n",
146 static int make_fdt_carveout_device(void *fdt, uint32_t na, uint32_t ns)
148 const char *basename = "/display";
149 struct fdt_memory carveout = {
150 #ifdef CONFIG_PHYS_64BIT
151 .start = 0x180000000,
158 fdt32_t cells[4], *ptr = cells;
159 uint32_t upper, lower;
164 /* store one or two address cells */
165 upper = upper_32_bits(carveout.start);
166 lower = lower_32_bits(carveout.start);
168 if (na > 1 && upper > 0)
169 snprintf(name, sizeof(name), "%s@%x,%x", basename, upper,
172 snprintf(name, sizeof(name), "%s@%x", basename, lower);
175 *ptr++ = cpu_to_fdt32(upper);
177 *ptr++ = cpu_to_fdt32(lower);
179 /* store one or two size cells */
180 size = carveout.end - carveout.start + 1;
181 upper = upper_32_bits(size);
182 lower = lower_32_bits(size);
185 *ptr++ = cpu_to_fdt32(upper);
187 *ptr++ = cpu_to_fdt32(lower);
189 offset = CHECK(fdt_add_subnode(fdt, 0, name + 1));
190 CHECK(fdt_setprop(fdt, offset, "reg", cells, (na + ns) * sizeof(*cells)));
192 return fdtdec_set_carveout(fdt, name, "memory-region", 0, &carveout,
193 "framebuffer", NULL, 0, 0);
196 static int check_fdt_carveout(void *fdt, uint32_t address_cells,
199 #ifdef CONFIG_PHYS_64BIT
200 const char *name = "/display@1,80000000";
201 const struct fdt_memory expected = {
202 .start = 0x180000000,
206 const char *name = "/display@80000000";
207 const struct fdt_memory expected = {
212 struct fdt_memory carveout;
214 printf("carveout: %pap-%pap na=%u ns=%u: ", &expected.start,
215 &expected.end, address_cells, size_cells);
217 CHECK(fdtdec_get_carveout(fdt, name, "memory-region", 0, &carveout,
218 NULL, NULL, NULL, NULL));
220 if ((carveout.start != expected.start) ||
221 (carveout.end != expected.end)) {
222 printf("carveout: %pap-%pap, expected %pap-%pap\n",
223 &carveout.start, &carveout.end,
224 &expected.start, &expected.end);
232 static int make_fdt_carveout(void *fdt, int size, uint32_t address_cells,
235 fdt32_t na = cpu_to_fdt32(address_cells);
236 fdt32_t ns = cpu_to_fdt32(size_cells);
237 #if defined(DEBUG) && defined(CONFIG_SANDBOX)
243 CHECK(fdt_create(fdt, size));
244 CHECK(fdt_finish_reservemap(fdt));
245 CHECK(fdt_begin_node(fdt, ""));
246 CHECK(fdt_property(fdt, "#address-cells", &na, sizeof(na)));
247 CHECK(fdt_property(fdt, "#size-cells", &ns, sizeof(ns)));
248 CHECK(fdt_end_node(fdt));
249 CHECK(fdt_finish(fdt));
250 CHECK(fdt_pack(fdt));
252 CHECK(fdt_open_into(fdt, fdt, FDT_SIZE));
254 err = make_fdt_carveout_device(fdt, address_cells, size_cells);
256 #if defined(DEBUG) && defined(CONFIG_SANDBOX)
257 snprintf(filename, sizeof(filename), "/tmp/fdtdec-carveout-%u-%u.dtb",
258 address_cells, size_cells);
260 fd = os_open(filename, OS_O_CREAT | OS_O_WRONLY);
262 printf("could not open .dtb file to write\n");
266 os_write(fd, fdt, size);
274 static int check_carveout(void)
278 fdt = malloc(FDT_SIZE);
280 printf("%s: out of memory\n", __func__);
284 #ifndef CONFIG_PHYS_64BIT
285 CHECKVAL(make_fdt_carveout(fdt, FDT_SIZE, 1, 1), 0);
286 CHECKOK(check_fdt_carveout(fdt, 1, 1));
287 CHECKVAL(make_fdt_carveout(fdt, FDT_SIZE, 1, 2), 0);
288 CHECKOK(check_fdt_carveout(fdt, 1, 2));
290 CHECKVAL(make_fdt_carveout(fdt, FDT_SIZE, 1, 1), -FDT_ERR_BADVALUE);
291 CHECKVAL(make_fdt_carveout(fdt, FDT_SIZE, 1, 2), -FDT_ERR_BADVALUE);
293 CHECKVAL(make_fdt_carveout(fdt, FDT_SIZE, 2, 1), 0);
294 CHECKOK(check_fdt_carveout(fdt, 2, 1));
295 CHECKVAL(make_fdt_carveout(fdt, FDT_SIZE, 2, 2), 0);
296 CHECKOK(check_fdt_carveout(fdt, 2, 2));
302 static int do_test_fdtdec(struct cmd_tbl *cmdtp, int flag, int argc,
306 CHECKOK(run_test("", "", ""));
307 CHECKOK(run_test("1e 3d", "", ""));
310 * 'a' represents 0, 'b' represents 1, etc.
311 * The first character is the alias number, the second is the node
312 * number. So the params mean:
313 * 0a 1b : point alias 0 to node 0 (a), alias 1 to node 1(b)
314 * ab : to create nodes 0 and 1 (a and b)
315 * ab : we expect the function to return two nodes, in
318 CHECKOK(run_test("0a 1b", "ab", "ab"));
320 CHECKOK(run_test("0a 1c", "ab", "ab"));
321 CHECKOK(run_test("1c", "ab", "ab"));
322 CHECKOK(run_test("1b", "ab", "ab"));
323 CHECKOK(run_test("0b", "ab", "ba"));
324 CHECKOK(run_test("0b 2d", "dbc", "bcd"));
325 CHECKOK(run_test("0d 3a 1c 2b", "dbac", "dcba"));
327 /* things with holes */
328 CHECKOK(run_test("1b 3d", "dbc", "cb d"));
329 CHECKOK(run_test("1e 3d", "dbc", "bc d"));
332 CHECKOK(run_test("", "dbac", "dbac"));
335 CHECKOK(run_test("0d 3a 1c 2b", "dBac", "dc a"));
336 CHECKOK(run_test("0b 2d", "DBc", "c"));
337 CHECKOK(run_test("0b 4d 2c", "DBc", " c"));
339 /* conflicting aliases - first one gets it */
340 CHECKOK(run_test("2a 1a 0a", "a", " a"));
341 CHECKOK(run_test("0a 1a 2a", "a", "a"));
343 CHECKOK(check_carveout());
345 printf("Test passed\n");
350 test_fdtdec, 3, 1, do_test_fdtdec,
352 "Run tests for fdtdec library");