1 // SPDX-License-Identifier: GPL-2.0+
3 * Copyright (c) 2016 NextThing Co
4 * Copyright (c) 2016 Free Electrons
10 #include <fdt_support.h>
14 #include <linux/sizes.h>
17 #include <test/overlay.h>
18 #include <test/suites.h>
20 /* 4k ought to be enough for anybody */
21 #define FDT_COPY_SIZE (4 * SZ_1K)
23 extern u32 __dtb_test_fdt_base_begin;
24 extern u32 __dtb_test_fdt_overlay_begin;
25 extern u32 __dtb_test_fdt_overlay_stacked_begin;
29 static int ut_fdt_getprop_u32_by_index(void *fdt, const char *path,
30 const char *name, int index,
37 node_off = fdt_path_offset(fdt, path);
41 val = fdt_getprop(fdt, node_off, name, &len);
42 if (!val || (len < (sizeof(uint32_t) * (index + 1))))
43 return -FDT_ERR_NOTFOUND;
45 *out = fdt32_to_cpu(*(val + index));
50 static int ut_fdt_getprop_u32(void *fdt, const char *path, const char *name,
53 return ut_fdt_getprop_u32_by_index(fdt, path, name, 0, out);
56 static int fdt_getprop_str(void *fdt, const char *path, const char *name,
62 node_off = fdt_path_offset(fdt, path);
66 *out = fdt_stringlist_get(fdt, node_off, name, 0, &len);
68 return len < 0 ? len : 0;
71 static int fdt_overlay_change_int_property(struct unit_test_state *uts)
75 ut_assertok(ut_fdt_getprop_u32(fdt, "/test-node", "test-int-property",
79 return CMD_RET_SUCCESS;
81 OVERLAY_TEST(fdt_overlay_change_int_property, 0);
83 static int fdt_overlay_change_str_property(struct unit_test_state *uts)
85 const char *val = NULL;
87 ut_assertok(fdt_getprop_str(fdt, "/test-node", "test-str-property",
89 ut_asserteq_str("foobar", val);
91 return CMD_RET_SUCCESS;
93 OVERLAY_TEST(fdt_overlay_change_str_property, 0);
95 static int fdt_overlay_add_str_property(struct unit_test_state *uts)
97 const char *val = NULL;
99 ut_assertok(fdt_getprop_str(fdt, "/test-node", "test-str-property-2",
101 ut_asserteq_str("foobar2", val);
103 return CMD_RET_SUCCESS;
105 OVERLAY_TEST(fdt_overlay_add_str_property, 0);
107 static int fdt_overlay_add_node_by_phandle(struct unit_test_state *uts)
111 off = fdt_path_offset(fdt, "/test-node/new-node");
114 ut_assertnonnull(fdt_getprop(fdt, off, "new-property", NULL));
116 return CMD_RET_SUCCESS;
118 OVERLAY_TEST(fdt_overlay_add_node_by_phandle, 0);
120 static int fdt_overlay_add_node_by_path(struct unit_test_state *uts)
124 off = fdt_path_offset(fdt, "/new-node");
127 ut_assertnonnull(fdt_getprop(fdt, off, "new-property", NULL));
129 return CMD_RET_SUCCESS;
131 OVERLAY_TEST(fdt_overlay_add_node_by_path, 0);
133 static int fdt_overlay_add_subnode_property(struct unit_test_state *uts)
137 off = fdt_path_offset(fdt, "/test-node/sub-test-node");
140 ut_assertnonnull(fdt_getprop(fdt, off, "sub-test-property", NULL));
141 ut_assertnonnull(fdt_getprop(fdt, off, "new-sub-test-property", NULL));
143 return CMD_RET_SUCCESS;
145 OVERLAY_TEST(fdt_overlay_add_subnode_property, 0);
147 static int fdt_overlay_local_phandle(struct unit_test_state *uts)
149 uint32_t local_phandle;
153 off = fdt_path_offset(fdt, "/new-local-node");
156 local_phandle = fdt_get_phandle(fdt, off);
157 ut_assert(local_phandle);
159 ut_assertok(ut_fdt_getprop_u32_by_index(fdt, "/", "test-several-phandle",
161 ut_asserteq(local_phandle, val);
163 ut_assertok(ut_fdt_getprop_u32_by_index(fdt, "/", "test-several-phandle",
165 ut_asserteq(local_phandle, val);
167 return CMD_RET_SUCCESS;
169 OVERLAY_TEST(fdt_overlay_local_phandle, 0);
171 static int fdt_overlay_local_phandles(struct unit_test_state *uts)
173 uint32_t local_phandle, test_phandle;
177 off = fdt_path_offset(fdt, "/new-local-node");
180 local_phandle = fdt_get_phandle(fdt, off);
181 ut_assert(local_phandle);
183 off = fdt_path_offset(fdt, "/test-node");
186 test_phandle = fdt_get_phandle(fdt, off);
187 ut_assert(test_phandle);
189 ut_assertok(ut_fdt_getprop_u32_by_index(fdt, "/", "test-phandle", 0,
191 ut_asserteq(test_phandle, val);
193 ut_assertok(ut_fdt_getprop_u32_by_index(fdt, "/", "test-phandle", 1,
195 ut_asserteq(local_phandle, val);
197 return CMD_RET_SUCCESS;
199 OVERLAY_TEST(fdt_overlay_local_phandles, 0);
201 static int fdt_overlay_stacked(struct unit_test_state *uts)
205 ut_assertok(ut_fdt_getprop_u32(fdt, "/new-local-node",
206 "stacked-test-int-property", &val));
207 ut_asserteq(43, val);
209 return CMD_RET_SUCCESS;
211 OVERLAY_TEST(fdt_overlay_stacked, 0);
213 int do_ut_overlay(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
215 struct unit_test *tests = ll_entry_start(struct unit_test,
217 const int n_ents = ll_entry_count(struct unit_test, overlay_test);
218 struct unit_test_state *uts;
219 void *fdt_base = &__dtb_test_fdt_base_begin;
220 void *fdt_overlay = &__dtb_test_fdt_overlay_begin;
221 void *fdt_overlay_stacked = &__dtb_test_fdt_overlay_stacked_begin;
222 void *fdt_overlay_copy, *fdt_overlay_stacked_copy;
225 uts = calloc(1, sizeof(*uts));
229 ut_assertok(fdt_check_header(fdt_base));
230 ut_assertok(fdt_check_header(fdt_overlay));
232 fdt = malloc(FDT_COPY_SIZE);
236 fdt_overlay_copy = malloc(FDT_COPY_SIZE);
237 if (!fdt_overlay_copy)
240 fdt_overlay_stacked_copy = malloc(FDT_COPY_SIZE);
241 if (!fdt_overlay_stacked_copy)
245 * Resize the FDT to 4k so that we have room to operate on
247 * (and relocate it since the memory might be mapped
250 ut_assertok(fdt_open_into(fdt_base, fdt, FDT_COPY_SIZE));
253 * Resize the overlay to 4k so that we have room to operate on
255 * (and relocate it since the memory might be mapped
258 ut_assertok(fdt_open_into(fdt_overlay, fdt_overlay_copy,
262 * Resize the stacked overlay to 4k so that we have room to operate on
264 * (and relocate it since the memory might be mapped
267 ut_assertok(fdt_open_into(fdt_overlay_stacked, fdt_overlay_stacked_copy,
270 /* Apply the overlay */
271 ut_assertok(fdt_overlay_apply(fdt, fdt_overlay_copy));
273 /* Apply the stacked overlay */
274 ut_assertok(fdt_overlay_apply(fdt, fdt_overlay_stacked_copy));
276 ret = cmd_ut_category("overlay", "", tests, n_ents, argc, argv);
278 free(fdt_overlay_stacked_copy);
280 free(fdt_overlay_copy);