blob: c8d41a4dca2b0114647a02c225cc330f0fdbd726 [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>
Maxime Ripardf2a99422016-07-05 10:26:46 +020012#include <malloc.h>
13
14#include <linux/sizes.h>
15
16#include <test/ut.h>
17#include <test/overlay.h>
Simon Glasse93232e2017-11-25 11:57:30 -070018#include <test/suites.h>
Maxime Ripardf2a99422016-07-05 10:26:46 +020019
20/* 4k ought to be enough for anybody */
21#define FDT_COPY_SIZE (4 * SZ_1K)
22
23extern u32 __dtb_test_fdt_base_begin;
24extern u32 __dtb_test_fdt_overlay_begin;
Pantelis Antoniouea28e482017-09-04 23:12:23 +030025extern u32 __dtb_test_fdt_overlay_stacked_begin;
Maxime Ripardf2a99422016-07-05 10:26:46 +020026
Heinrich Schuchardt3cc13762018-12-08 09:53:05 +010027static void *fdt;
28
Pantelis Antoniou706708d2017-09-04 23:12:22 +030029static int ut_fdt_getprop_u32_by_index(void *fdt, const char *path,
Maxime Ripardf2a99422016-07-05 10:26:46 +020030 const char *name, int index,
31 u32 *out)
32{
33 const fdt32_t *val;
34 int node_off;
35 int len;
36
37 node_off = fdt_path_offset(fdt, path);
38 if (node_off < 0)
39 return node_off;
40
41 val = fdt_getprop(fdt, node_off, name, &len);
42 if (!val || (len < (sizeof(uint32_t) * (index + 1))))
43 return -FDT_ERR_NOTFOUND;
44
45 *out = fdt32_to_cpu(*(val + index));
46
47 return 0;
48}
49
Pantelis Antoniou706708d2017-09-04 23:12:22 +030050static int ut_fdt_getprop_u32(void *fdt, const char *path, const char *name,
Maxime Ripardf2a99422016-07-05 10:26:46 +020051 u32 *out)
52{
Pantelis Antoniou706708d2017-09-04 23:12:22 +030053 return ut_fdt_getprop_u32_by_index(fdt, path, name, 0, out);
Maxime Ripardf2a99422016-07-05 10:26:46 +020054}
55
56static int fdt_getprop_str(void *fdt, const char *path, const char *name,
57 const char **out)
58{
59 int node_off;
Simon Glassb02e4042016-10-02 17:59:28 -060060 int len;
Maxime Ripardf2a99422016-07-05 10:26:46 +020061
62 node_off = fdt_path_offset(fdt, path);
63 if (node_off < 0)
64 return node_off;
65
Simon Glassb02e4042016-10-02 17:59:28 -060066 *out = fdt_stringlist_get(fdt, node_off, name, 0, &len);
67
68 return len < 0 ? len : 0;
Maxime Ripardf2a99422016-07-05 10:26:46 +020069}
70
71static int fdt_overlay_change_int_property(struct unit_test_state *uts)
72{
Maxime Ripardf2a99422016-07-05 10:26:46 +020073 u32 val = 0;
74
Pantelis Antoniou706708d2017-09-04 23:12:22 +030075 ut_assertok(ut_fdt_getprop_u32(fdt, "/test-node", "test-int-property",
Maxime Ripardf2a99422016-07-05 10:26:46 +020076 &val));
77 ut_asserteq(43, val);
78
79 return CMD_RET_SUCCESS;
80}
81OVERLAY_TEST(fdt_overlay_change_int_property, 0);
82
83static int fdt_overlay_change_str_property(struct unit_test_state *uts)
84{
Maxime Ripardf2a99422016-07-05 10:26:46 +020085 const char *val = NULL;
86
87 ut_assertok(fdt_getprop_str(fdt, "/test-node", "test-str-property",
88 &val));
89 ut_asserteq_str("foobar", val);
90
91 return CMD_RET_SUCCESS;
92}
93OVERLAY_TEST(fdt_overlay_change_str_property, 0);
94
95static int fdt_overlay_add_str_property(struct unit_test_state *uts)
96{
Maxime Ripardf2a99422016-07-05 10:26:46 +020097 const char *val = NULL;
98
99 ut_assertok(fdt_getprop_str(fdt, "/test-node", "test-str-property-2",
100 &val));
101 ut_asserteq_str("foobar2", val);
102
103 return CMD_RET_SUCCESS;
104}
105OVERLAY_TEST(fdt_overlay_add_str_property, 0);
106
107static int fdt_overlay_add_node_by_phandle(struct unit_test_state *uts)
108{
Maxime Ripardf2a99422016-07-05 10:26:46 +0200109 int off;
110
111 off = fdt_path_offset(fdt, "/test-node/new-node");
112 ut_assert(off >= 0);
113
114 ut_assertnonnull(fdt_getprop(fdt, off, "new-property", NULL));
115
116 return CMD_RET_SUCCESS;
117}
118OVERLAY_TEST(fdt_overlay_add_node_by_phandle, 0);
119
120static int fdt_overlay_add_node_by_path(struct unit_test_state *uts)
121{
Maxime Ripardf2a99422016-07-05 10:26:46 +0200122 int off;
123
124 off = fdt_path_offset(fdt, "/new-node");
125 ut_assert(off >= 0);
126
127 ut_assertnonnull(fdt_getprop(fdt, off, "new-property", NULL));
128
129 return CMD_RET_SUCCESS;
130}
131OVERLAY_TEST(fdt_overlay_add_node_by_path, 0);
132
133static int fdt_overlay_add_subnode_property(struct unit_test_state *uts)
134{
Maxime Ripardf2a99422016-07-05 10:26:46 +0200135 int off;
136
137 off = fdt_path_offset(fdt, "/test-node/sub-test-node");
138 ut_assert(off >= 0);
139
140 ut_assertnonnull(fdt_getprop(fdt, off, "sub-test-property", NULL));
141 ut_assertnonnull(fdt_getprop(fdt, off, "new-sub-test-property", NULL));
142
143 return CMD_RET_SUCCESS;
144}
145OVERLAY_TEST(fdt_overlay_add_subnode_property, 0);
146
147static int fdt_overlay_local_phandle(struct unit_test_state *uts)
148{
149 uint32_t local_phandle;
Maxime Ripardf2a99422016-07-05 10:26:46 +0200150 u32 val = 0;
151 int off;
152
153 off = fdt_path_offset(fdt, "/new-local-node");
154 ut_assert(off >= 0);
155
156 local_phandle = fdt_get_phandle(fdt, off);
157 ut_assert(local_phandle);
158
Pantelis Antoniou706708d2017-09-04 23:12:22 +0300159 ut_assertok(ut_fdt_getprop_u32_by_index(fdt, "/", "test-several-phandle",
Maxime Ripardf2a99422016-07-05 10:26:46 +0200160 0, &val));
161 ut_asserteq(local_phandle, val);
162
Pantelis Antoniou706708d2017-09-04 23:12:22 +0300163 ut_assertok(ut_fdt_getprop_u32_by_index(fdt, "/", "test-several-phandle",
Maxime Ripardf2a99422016-07-05 10:26:46 +0200164 1, &val));
165 ut_asserteq(local_phandle, val);
166
167 return CMD_RET_SUCCESS;
168}
169OVERLAY_TEST(fdt_overlay_local_phandle, 0);
170
171static int fdt_overlay_local_phandles(struct unit_test_state *uts)
172{
173 uint32_t local_phandle, test_phandle;
Maxime Ripardf2a99422016-07-05 10:26:46 +0200174 u32 val = 0;
175 int off;
176
177 off = fdt_path_offset(fdt, "/new-local-node");
178 ut_assert(off >= 0);
179
180 local_phandle = fdt_get_phandle(fdt, off);
181 ut_assert(local_phandle);
182
183 off = fdt_path_offset(fdt, "/test-node");
184 ut_assert(off >= 0);
185
186 test_phandle = fdt_get_phandle(fdt, off);
187 ut_assert(test_phandle);
188
Pantelis Antoniou706708d2017-09-04 23:12:22 +0300189 ut_assertok(ut_fdt_getprop_u32_by_index(fdt, "/", "test-phandle", 0,
Maxime Ripardf2a99422016-07-05 10:26:46 +0200190 &val));
191 ut_asserteq(test_phandle, val);
192
Pantelis Antoniou706708d2017-09-04 23:12:22 +0300193 ut_assertok(ut_fdt_getprop_u32_by_index(fdt, "/", "test-phandle", 1,
Maxime Ripardf2a99422016-07-05 10:26:46 +0200194 &val));
195 ut_asserteq(local_phandle, val);
196
197 return CMD_RET_SUCCESS;
198}
199OVERLAY_TEST(fdt_overlay_local_phandles, 0);
200
Pantelis Antoniouea28e482017-09-04 23:12:23 +0300201static int fdt_overlay_stacked(struct unit_test_state *uts)
202{
Pantelis Antoniouea28e482017-09-04 23:12:23 +0300203 u32 val = 0;
204
205 ut_assertok(ut_fdt_getprop_u32(fdt, "/new-local-node",
206 "stacked-test-int-property", &val));
207 ut_asserteq(43, val);
208
209 return CMD_RET_SUCCESS;
210}
211OVERLAY_TEST(fdt_overlay_stacked, 0);
212
Maxime Ripardf2a99422016-07-05 10:26:46 +0200213int do_ut_overlay(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
214{
215 struct unit_test *tests = ll_entry_start(struct unit_test,
216 overlay_test);
217 const int n_ents = ll_entry_count(struct unit_test, overlay_test);
218 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}