blob: 56a3df17138bfe9b7cd87a787d601db4842ce041 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Maxime Ripardf2a99422016-07-05 10:26:46 +02002/*
3 * Copyright (c) 2016 NextThing Co
4 * Copyright (c) 2016 Free Electrons
Maxime Ripardf2a99422016-07-05 10:26:46 +02005 */
6
7#include <common.h>
8#include <command.h>
9#include <errno.h>
Heinrich Schuchardtd7967352018-10-11 02:16:46 +020010#include <fdt_support.h>
Simon Glass4d72caa2020-05-10 11:40:01 -060011#include <image.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060012#include <log.h>
Maxime Ripardf2a99422016-07-05 10:26:46 +020013#include <malloc.h>
14
15#include <linux/sizes.h>
16
17#include <test/ut.h>
18#include <test/overlay.h>
Simon Glasse93232e2017-11-25 11:57:30 -070019#include <test/suites.h>
Maxime Ripardf2a99422016-07-05 10:26:46 +020020
21/* 4k ought to be enough for anybody */
22#define FDT_COPY_SIZE (4 * SZ_1K)
23
24extern u32 __dtb_test_fdt_base_begin;
25extern u32 __dtb_test_fdt_overlay_begin;
Pantelis Antoniouea28e482017-09-04 23:12:23 +030026extern u32 __dtb_test_fdt_overlay_stacked_begin;
Maxime Ripardf2a99422016-07-05 10:26:46 +020027
Heinrich Schuchardt3cc13762018-12-08 09:53:05 +010028static void *fdt;
29
Pantelis Antoniou706708d2017-09-04 23:12:22 +030030static int ut_fdt_getprop_u32_by_index(void *fdt, const char *path,
Maxime Ripardf2a99422016-07-05 10:26:46 +020031 const char *name, int index,
32 u32 *out)
33{
34 const fdt32_t *val;
35 int node_off;
36 int len;
37
38 node_off = fdt_path_offset(fdt, path);
39 if (node_off < 0)
40 return node_off;
41
42 val = fdt_getprop(fdt, node_off, name, &len);
43 if (!val || (len < (sizeof(uint32_t) * (index + 1))))
44 return -FDT_ERR_NOTFOUND;
45
46 *out = fdt32_to_cpu(*(val + index));
47
48 return 0;
49}
50
Pantelis Antoniou706708d2017-09-04 23:12:22 +030051static int ut_fdt_getprop_u32(void *fdt, const char *path, const char *name,
Maxime Ripardf2a99422016-07-05 10:26:46 +020052 u32 *out)
53{
Pantelis Antoniou706708d2017-09-04 23:12:22 +030054 return ut_fdt_getprop_u32_by_index(fdt, path, name, 0, out);
Maxime Ripardf2a99422016-07-05 10:26:46 +020055}
56
57static int fdt_getprop_str(void *fdt, const char *path, const char *name,
58 const char **out)
59{
60 int node_off;
Simon Glassb02e4042016-10-02 17:59:28 -060061 int len;
Maxime Ripardf2a99422016-07-05 10:26:46 +020062
63 node_off = fdt_path_offset(fdt, path);
64 if (node_off < 0)
65 return node_off;
66
Simon Glassb02e4042016-10-02 17:59:28 -060067 *out = fdt_stringlist_get(fdt, node_off, name, 0, &len);
68
69 return len < 0 ? len : 0;
Maxime Ripardf2a99422016-07-05 10:26:46 +020070}
71
72static int fdt_overlay_change_int_property(struct unit_test_state *uts)
73{
Maxime Ripardf2a99422016-07-05 10:26:46 +020074 u32 val = 0;
75
Pantelis Antoniou706708d2017-09-04 23:12:22 +030076 ut_assertok(ut_fdt_getprop_u32(fdt, "/test-node", "test-int-property",
Maxime Ripardf2a99422016-07-05 10:26:46 +020077 &val));
78 ut_asserteq(43, val);
79
80 return CMD_RET_SUCCESS;
81}
82OVERLAY_TEST(fdt_overlay_change_int_property, 0);
83
84static int fdt_overlay_change_str_property(struct unit_test_state *uts)
85{
Maxime Ripardf2a99422016-07-05 10:26:46 +020086 const char *val = NULL;
87
88 ut_assertok(fdt_getprop_str(fdt, "/test-node", "test-str-property",
89 &val));
90 ut_asserteq_str("foobar", val);
91
92 return CMD_RET_SUCCESS;
93}
94OVERLAY_TEST(fdt_overlay_change_str_property, 0);
95
96static int fdt_overlay_add_str_property(struct unit_test_state *uts)
97{
Maxime Ripardf2a99422016-07-05 10:26:46 +020098 const char *val = NULL;
99
100 ut_assertok(fdt_getprop_str(fdt, "/test-node", "test-str-property-2",
101 &val));
102 ut_asserteq_str("foobar2", val);
103
104 return CMD_RET_SUCCESS;
105}
106OVERLAY_TEST(fdt_overlay_add_str_property, 0);
107
108static int fdt_overlay_add_node_by_phandle(struct unit_test_state *uts)
109{
Maxime Ripardf2a99422016-07-05 10:26:46 +0200110 int off;
111
112 off = fdt_path_offset(fdt, "/test-node/new-node");
113 ut_assert(off >= 0);
114
115 ut_assertnonnull(fdt_getprop(fdt, off, "new-property", NULL));
116
117 return CMD_RET_SUCCESS;
118}
119OVERLAY_TEST(fdt_overlay_add_node_by_phandle, 0);
120
121static int fdt_overlay_add_node_by_path(struct unit_test_state *uts)
122{
Maxime Ripardf2a99422016-07-05 10:26:46 +0200123 int off;
124
125 off = fdt_path_offset(fdt, "/new-node");
126 ut_assert(off >= 0);
127
128 ut_assertnonnull(fdt_getprop(fdt, off, "new-property", NULL));
129
130 return CMD_RET_SUCCESS;
131}
132OVERLAY_TEST(fdt_overlay_add_node_by_path, 0);
133
134static int fdt_overlay_add_subnode_property(struct unit_test_state *uts)
135{
Maxime Ripardf2a99422016-07-05 10:26:46 +0200136 int off;
137
138 off = fdt_path_offset(fdt, "/test-node/sub-test-node");
139 ut_assert(off >= 0);
140
141 ut_assertnonnull(fdt_getprop(fdt, off, "sub-test-property", NULL));
142 ut_assertnonnull(fdt_getprop(fdt, off, "new-sub-test-property", NULL));
143
144 return CMD_RET_SUCCESS;
145}
146OVERLAY_TEST(fdt_overlay_add_subnode_property, 0);
147
148static int fdt_overlay_local_phandle(struct unit_test_state *uts)
149{
150 uint32_t local_phandle;
Maxime Ripardf2a99422016-07-05 10:26:46 +0200151 u32 val = 0;
152 int off;
153
154 off = fdt_path_offset(fdt, "/new-local-node");
155 ut_assert(off >= 0);
156
157 local_phandle = fdt_get_phandle(fdt, off);
158 ut_assert(local_phandle);
159
Pantelis Antoniou706708d2017-09-04 23:12:22 +0300160 ut_assertok(ut_fdt_getprop_u32_by_index(fdt, "/", "test-several-phandle",
Maxime Ripardf2a99422016-07-05 10:26:46 +0200161 0, &val));
162 ut_asserteq(local_phandle, val);
163
Pantelis Antoniou706708d2017-09-04 23:12:22 +0300164 ut_assertok(ut_fdt_getprop_u32_by_index(fdt, "/", "test-several-phandle",
Maxime Ripardf2a99422016-07-05 10:26:46 +0200165 1, &val));
166 ut_asserteq(local_phandle, val);
167
168 return CMD_RET_SUCCESS;
169}
170OVERLAY_TEST(fdt_overlay_local_phandle, 0);
171
172static int fdt_overlay_local_phandles(struct unit_test_state *uts)
173{
174 uint32_t local_phandle, test_phandle;
Maxime Ripardf2a99422016-07-05 10:26:46 +0200175 u32 val = 0;
176 int off;
177
178 off = fdt_path_offset(fdt, "/new-local-node");
179 ut_assert(off >= 0);
180
181 local_phandle = fdt_get_phandle(fdt, off);
182 ut_assert(local_phandle);
183
184 off = fdt_path_offset(fdt, "/test-node");
185 ut_assert(off >= 0);
186
187 test_phandle = fdt_get_phandle(fdt, off);
188 ut_assert(test_phandle);
189
Pantelis Antoniou706708d2017-09-04 23:12:22 +0300190 ut_assertok(ut_fdt_getprop_u32_by_index(fdt, "/", "test-phandle", 0,
Maxime Ripardf2a99422016-07-05 10:26:46 +0200191 &val));
192 ut_asserteq(test_phandle, val);
193
Pantelis Antoniou706708d2017-09-04 23:12:22 +0300194 ut_assertok(ut_fdt_getprop_u32_by_index(fdt, "/", "test-phandle", 1,
Maxime Ripardf2a99422016-07-05 10:26:46 +0200195 &val));
196 ut_asserteq(local_phandle, val);
197
198 return CMD_RET_SUCCESS;
199}
200OVERLAY_TEST(fdt_overlay_local_phandles, 0);
201
Pantelis Antoniouea28e482017-09-04 23:12:23 +0300202static int fdt_overlay_stacked(struct unit_test_state *uts)
203{
Pantelis Antoniouea28e482017-09-04 23:12:23 +0300204 u32 val = 0;
205
206 ut_assertok(ut_fdt_getprop_u32(fdt, "/new-local-node",
207 "stacked-test-int-property", &val));
208 ut_asserteq(43, val);
209
210 return CMD_RET_SUCCESS;
211}
212OVERLAY_TEST(fdt_overlay_stacked, 0);
213
Simon Glass09140112020-05-10 11:40:03 -0600214int do_ut_overlay(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
Maxime Ripardf2a99422016-07-05 10:26:46 +0200215{
Simon Glassa7a98752021-03-07 17:35:10 -0700216 struct unit_test *tests = UNIT_TEST_SUITE_START(overlay_test);
217 const int n_ents = UNIT_TEST_SUITE_COUNT(overlay_test);
Maxime Ripardf2a99422016-07-05 10:26:46 +0200218 struct unit_test_state *uts;
Maxime Ripardf2a99422016-07-05 10:26:46 +0200219 void *fdt_base = &__dtb_test_fdt_base_begin;
220 void *fdt_overlay = &__dtb_test_fdt_overlay_begin;
Pantelis Antoniouea28e482017-09-04 23:12:23 +0300221 void *fdt_overlay_stacked = &__dtb_test_fdt_overlay_stacked_begin;
Heinrich Schuchardt3cc13762018-12-08 09:53:05 +0100222 void *fdt_overlay_copy, *fdt_overlay_stacked_copy;
Tom Rinid91062c2017-09-26 12:43:12 -0400223 int ret = -ENOMEM;
Maxime Ripardf2a99422016-07-05 10:26:46 +0200224
225 uts = calloc(1, sizeof(*uts));
226 if (!uts)
227 return -ENOMEM;
228
229 ut_assertok(fdt_check_header(fdt_base));
230 ut_assertok(fdt_check_header(fdt_overlay));
231
Heinrich Schuchardt3cc13762018-12-08 09:53:05 +0100232 fdt = malloc(FDT_COPY_SIZE);
233 if (!fdt)
Tom Rinid91062c2017-09-26 12:43:12 -0400234 goto err1;
Maxime Ripardf2a99422016-07-05 10:26:46 +0200235
236 fdt_overlay_copy = malloc(FDT_COPY_SIZE);
237 if (!fdt_overlay_copy)
Tom Rinid91062c2017-09-26 12:43:12 -0400238 goto err2;
Maxime Ripardf2a99422016-07-05 10:26:46 +0200239
Pantelis Antoniouea28e482017-09-04 23:12:23 +0300240 fdt_overlay_stacked_copy = malloc(FDT_COPY_SIZE);
241 if (!fdt_overlay_stacked_copy)
Tom Rinid91062c2017-09-26 12:43:12 -0400242 goto err3;
Pantelis Antoniouea28e482017-09-04 23:12:23 +0300243
Maxime Ripardf2a99422016-07-05 10:26:46 +0200244 /*
245 * Resize the FDT to 4k so that we have room to operate on
246 *
247 * (and relocate it since the memory might be mapped
248 * read-only)
249 */
Heinrich Schuchardt3cc13762018-12-08 09:53:05 +0100250 ut_assertok(fdt_open_into(fdt_base, fdt, FDT_COPY_SIZE));
Maxime Ripardf2a99422016-07-05 10:26:46 +0200251
252 /*
253 * Resize the overlay to 4k so that we have room to operate on
254 *
255 * (and relocate it since the memory might be mapped
256 * read-only)
257 */
258 ut_assertok(fdt_open_into(fdt_overlay, fdt_overlay_copy,
259 FDT_COPY_SIZE));
260
Pantelis Antoniouea28e482017-09-04 23:12:23 +0300261 /*
262 * Resize the stacked overlay to 4k so that we have room to operate on
263 *
264 * (and relocate it since the memory might be mapped
265 * read-only)
266 */
267 ut_assertok(fdt_open_into(fdt_overlay_stacked, fdt_overlay_stacked_copy,
268 FDT_COPY_SIZE));
269
Maxime Ripardf2a99422016-07-05 10:26:46 +0200270 /* Apply the overlay */
Heinrich Schuchardt3cc13762018-12-08 09:53:05 +0100271 ut_assertok(fdt_overlay_apply(fdt, fdt_overlay_copy));
Maxime Ripardf2a99422016-07-05 10:26:46 +0200272
Pantelis Antoniouea28e482017-09-04 23:12:23 +0300273 /* Apply the stacked overlay */
Heinrich Schuchardt3cc13762018-12-08 09:53:05 +0100274 ut_assertok(fdt_overlay_apply(fdt, fdt_overlay_stacked_copy));
Pantelis Antoniouea28e482017-09-04 23:12:23 +0300275
Philippe Reynes4ad4edf2019-12-17 19:07:04 +0100276 ret = cmd_ut_category("overlay", "", tests, n_ents, argc, argv);
Maxime Ripardf2a99422016-07-05 10:26:46 +0200277
Pantelis Antoniouea28e482017-09-04 23:12:23 +0300278 free(fdt_overlay_stacked_copy);
Tom Rinid91062c2017-09-26 12:43:12 -0400279err3:
Maxime Ripardf2a99422016-07-05 10:26:46 +0200280 free(fdt_overlay_copy);
Tom Rinid91062c2017-09-26 12:43:12 -0400281err2:
Heinrich Schuchardt3cc13762018-12-08 09:53:05 +0100282 free(fdt);
Tom Rinid91062c2017-09-26 12:43:12 -0400283err1:
Tom Rinid91062c2017-09-26 12:43:12 -0400284 return ret;
Maxime Ripardf2a99422016-07-05 10:26:46 +0200285}