blob: 781ba1129a8e30f06a5f5ac9533bbd229604def9 [file] [log] [blame]
Rob Herring12869ec2019-06-21 08:18:32 -06001// SPDX-License-Identifier: GPL-2.0-or-later
David Gibsona4da2e32007-12-18 15:06:42 +11002/*
3 * (C) Copyright David Gibson <dwg@au1.ibm.com>, IBM Corporation. 2007.
David Gibsona4da2e32007-12-18 15:06:42 +11004 */
5
6#include "dtc.h"
Rob Herringc2e70752018-11-28 18:37:35 -06007#include "srcpos.h"
David Gibsona4da2e32007-12-18 15:06:42 +11008
9#ifdef TRACE_CHECKS
10#define TRACE(c, ...) \
11 do { \
12 fprintf(stderr, "=== %s: ", (c)->name); \
13 fprintf(stderr, __VA_ARGS__); \
14 fprintf(stderr, "\n"); \
15 } while (0)
16#else
17#define TRACE(c, fmt, ...) do { } while (0)
18#endif
19
David Gibsona4da2e32007-12-18 15:06:42 +110020enum checkstatus {
21 UNCHECKED = 0,
22 PREREQ,
23 PASSED,
24 FAILED,
25};
26
27struct check;
28
Rob Herring6f05afc2017-01-04 10:45:20 -060029typedef void (*check_fn)(struct check *c, struct dt_info *dti, struct node *node);
David Gibsona4da2e32007-12-18 15:06:42 +110030
31struct check {
32 const char *name;
Rob Herring6f05afc2017-01-04 10:45:20 -060033 check_fn fn;
David Gibsona4da2e32007-12-18 15:06:42 +110034 void *data;
Stephen Warrencd296722012-09-28 21:25:59 +000035 bool warn, error;
David Gibsona4da2e32007-12-18 15:06:42 +110036 enum checkstatus status;
Rob Herring47605972015-04-29 16:00:05 -050037 bool inprogress;
David Gibsona4da2e32007-12-18 15:06:42 +110038 int num_prereqs;
39 struct check **prereq;
40};
41
Rob Herring9130ba82018-02-27 17:40:38 -060042#define CHECK_ENTRY(nm_, fn_, d_, w_, e_, ...) \
43 static struct check *nm_##_prereqs[] = { __VA_ARGS__ }; \
44 static struct check nm_ = { \
45 .name = #nm_, \
46 .fn = (fn_), \
47 .data = (d_), \
48 .warn = (w_), \
49 .error = (e_), \
David Gibsona4da2e32007-12-18 15:06:42 +110050 .status = UNCHECKED, \
Rob Herring9130ba82018-02-27 17:40:38 -060051 .num_prereqs = ARRAY_SIZE(nm_##_prereqs), \
52 .prereq = nm_##_prereqs, \
David Gibsona4da2e32007-12-18 15:06:42 +110053 };
Rob Herring9130ba82018-02-27 17:40:38 -060054#define WARNING(nm_, fn_, d_, ...) \
55 CHECK_ENTRY(nm_, fn_, d_, true, false, __VA_ARGS__)
56#define ERROR(nm_, fn_, d_, ...) \
57 CHECK_ENTRY(nm_, fn_, d_, false, true, __VA_ARGS__)
58#define CHECK(nm_, fn_, d_, ...) \
59 CHECK_ENTRY(nm_, fn_, d_, false, false, __VA_ARGS__)
David Gibsona4da2e32007-12-18 15:06:42 +110060
Rob Herring9130ba82018-02-27 17:40:38 -060061static inline void PRINTF(5, 6) check_msg(struct check *c, struct dt_info *dti,
62 struct node *node,
63 struct property *prop,
Rob Herring89d12312017-03-21 09:01:08 -050064 const char *fmt, ...)
David Gibsona4da2e32007-12-18 15:06:42 +110065{
66 va_list ap;
Rob Herringc2e70752018-11-28 18:37:35 -060067 char *str = NULL;
68 struct srcpos *pos = NULL;
69 char *file_str;
David Gibsona4da2e32007-12-18 15:06:42 +110070
Rob Herringc2e70752018-11-28 18:37:35 -060071 if (!(c->warn && (quiet < 1)) && !(c->error && (quiet < 2)))
72 return;
73
74 if (prop && prop->srcpos)
75 pos = prop->srcpos;
76 else if (node && node->srcpos)
77 pos = node->srcpos;
78
79 if (pos) {
80 file_str = srcpos_string(pos);
81 xasprintf(&str, "%s", file_str);
82 free(file_str);
83 } else if (streq(dti->outname, "-")) {
84 xasprintf(&str, "<stdout>");
85 } else {
86 xasprintf(&str, "%s", dti->outname);
Stephen Warrencd296722012-09-28 21:25:59 +000087 }
Rob Herringc2e70752018-11-28 18:37:35 -060088
89 xasprintf_append(&str, ": %s (%s): ",
90 (c->error) ? "ERROR" : "Warning", c->name);
91
92 if (node) {
93 if (prop)
94 xasprintf_append(&str, "%s:%s: ", node->fullpath, prop->name);
95 else
96 xasprintf_append(&str, "%s: ", node->fullpath);
97 }
98
99 va_start(ap, fmt);
100 xavsprintf_append(&str, fmt, ap);
Rob Herring47605972015-04-29 16:00:05 -0500101 va_end(ap);
Rob Herringc2e70752018-11-28 18:37:35 -0600102
103 xasprintf_append(&str, "\n");
104
105 if (!prop && pos) {
106 pos = node->srcpos;
107 while (pos->next) {
108 pos = pos->next;
109
110 file_str = srcpos_string(pos);
111 xasprintf_append(&str, " also defined at %s\n", file_str);
112 free(file_str);
113 }
114 }
115
116 fputs(str, stderr);
David Gibsona4da2e32007-12-18 15:06:42 +1100117}
118
Rob Herring9130ba82018-02-27 17:40:38 -0600119#define FAIL(c, dti, node, ...) \
Rob Herring89d12312017-03-21 09:01:08 -0500120 do { \
121 TRACE((c), "\t\tFAILED at %s:%d", __FILE__, __LINE__); \
122 (c)->status = FAILED; \
Rob Herring9130ba82018-02-27 17:40:38 -0600123 check_msg((c), dti, node, NULL, __VA_ARGS__); \
David Gibsona4da2e32007-12-18 15:06:42 +1100124 } while (0)
125
Rob Herring9130ba82018-02-27 17:40:38 -0600126#define FAIL_PROP(c, dti, node, prop, ...) \
127 do { \
128 TRACE((c), "\t\tFAILED at %s:%d", __FILE__, __LINE__); \
129 (c)->status = FAILED; \
130 check_msg((c), dti, node, prop, __VA_ARGS__); \
131 } while (0)
132
133
Rob Herring6f05afc2017-01-04 10:45:20 -0600134static void check_nodes_props(struct check *c, struct dt_info *dti, struct node *node)
David Gibsona4da2e32007-12-18 15:06:42 +1100135{
136 struct node *child;
David Gibsona4da2e32007-12-18 15:06:42 +1100137
138 TRACE(c, "%s", node->fullpath);
Rob Herring6f05afc2017-01-04 10:45:20 -0600139 if (c->fn)
140 c->fn(c, dti, node);
David Gibsona4da2e32007-12-18 15:06:42 +1100141
142 for_each_child(node, child)
Rob Herring6f05afc2017-01-04 10:45:20 -0600143 check_nodes_props(c, dti, child);
David Gibsona4da2e32007-12-18 15:06:42 +1100144}
145
Rob Herringa77725a2021-10-25 11:05:45 -0500146static bool is_multiple_of(int multiple, int divisor)
147{
148 if (divisor == 0)
149 return multiple == 0;
150 else
151 return (multiple % divisor) == 0;
152}
153
Rob Herring6f05afc2017-01-04 10:45:20 -0600154static bool run_check(struct check *c, struct dt_info *dti)
David Gibsona4da2e32007-12-18 15:06:42 +1100155{
Rob Herring6f05afc2017-01-04 10:45:20 -0600156 struct node *dt = dti->dt;
Rob Herring47605972015-04-29 16:00:05 -0500157 bool error = false;
David Gibsona4da2e32007-12-18 15:06:42 +1100158 int i;
159
160 assert(!c->inprogress);
161
162 if (c->status != UNCHECKED)
163 goto out;
164
Rob Herring47605972015-04-29 16:00:05 -0500165 c->inprogress = true;
David Gibsona4da2e32007-12-18 15:06:42 +1100166
167 for (i = 0; i < c->num_prereqs; i++) {
168 struct check *prq = c->prereq[i];
Rob Herring6f05afc2017-01-04 10:45:20 -0600169 error = error || run_check(prq, dti);
David Gibsona4da2e32007-12-18 15:06:42 +1100170 if (prq->status != PASSED) {
171 c->status = PREREQ;
Rob Herring9130ba82018-02-27 17:40:38 -0600172 check_msg(c, dti, NULL, NULL, "Failed prerequisite '%s'",
David Gibsona4da2e32007-12-18 15:06:42 +1100173 c->prereq[i]->name);
174 }
175 }
176
177 if (c->status != UNCHECKED)
178 goto out;
179
Rob Herring6f05afc2017-01-04 10:45:20 -0600180 check_nodes_props(c, dti, dt);
David Gibsona4da2e32007-12-18 15:06:42 +1100181
David Gibsona4da2e32007-12-18 15:06:42 +1100182 if (c->status == UNCHECKED)
183 c->status = PASSED;
184
185 TRACE(c, "\tCompleted, status %d", c->status);
186
187out:
Rob Herring47605972015-04-29 16:00:05 -0500188 c->inprogress = false;
Stephen Warrencd296722012-09-28 21:25:59 +0000189 if ((c->status != PASSED) && (c->error))
Rob Herring47605972015-04-29 16:00:05 -0500190 error = true;
David Gibsona4da2e32007-12-18 15:06:42 +1100191 return error;
192}
193
194/*
195 * Utility check functions
196 */
197
Stephen Warrencd296722012-09-28 21:25:59 +0000198/* A check which always fails, for testing purposes only */
Rob Herring6f05afc2017-01-04 10:45:20 -0600199static inline void check_always_fail(struct check *c, struct dt_info *dti,
200 struct node *node)
Stephen Warrencd296722012-09-28 21:25:59 +0000201{
Rob Herring9130ba82018-02-27 17:40:38 -0600202 FAIL(c, dti, node, "always_fail check");
Stephen Warrencd296722012-09-28 21:25:59 +0000203}
Rob Herring6f05afc2017-01-04 10:45:20 -0600204CHECK(always_fail, check_always_fail, NULL);
Stephen Warrencd296722012-09-28 21:25:59 +0000205
Rob Herring6f05afc2017-01-04 10:45:20 -0600206static void check_is_string(struct check *c, struct dt_info *dti,
David Gibsona4da2e32007-12-18 15:06:42 +1100207 struct node *node)
208{
209 struct property *prop;
210 char *propname = c->data;
211
212 prop = get_property(node, propname);
213 if (!prop)
214 return; /* Not present, assumed ok */
215
216 if (!data_is_one_string(prop->val))
Rob Herring9130ba82018-02-27 17:40:38 -0600217 FAIL_PROP(c, dti, node, prop, "property is not a string");
David Gibsona4da2e32007-12-18 15:06:42 +1100218}
Stephen Warrencd296722012-09-28 21:25:59 +0000219#define WARNING_IF_NOT_STRING(nm, propname) \
Rob Herring6f05afc2017-01-04 10:45:20 -0600220 WARNING(nm, check_is_string, (propname))
Stephen Warrencd296722012-09-28 21:25:59 +0000221#define ERROR_IF_NOT_STRING(nm, propname) \
Rob Herring6f05afc2017-01-04 10:45:20 -0600222 ERROR(nm, check_is_string, (propname))
David Gibsona4da2e32007-12-18 15:06:42 +1100223
Rob Herring9130ba82018-02-27 17:40:38 -0600224static void check_is_string_list(struct check *c, struct dt_info *dti,
225 struct node *node)
226{
227 int rem, l;
228 struct property *prop;
229 char *propname = c->data;
230 char *str;
231
232 prop = get_property(node, propname);
233 if (!prop)
234 return; /* Not present, assumed ok */
235
236 str = prop->val.val;
237 rem = prop->val.len;
238 while (rem > 0) {
239 l = strnlen(str, rem);
240 if (l == rem) {
241 FAIL_PROP(c, dti, node, prop, "property is not a string list");
242 break;
243 }
244 rem -= l + 1;
245 str += l + 1;
246 }
247}
248#define WARNING_IF_NOT_STRING_LIST(nm, propname) \
249 WARNING(nm, check_is_string_list, (propname))
250#define ERROR_IF_NOT_STRING_LIST(nm, propname) \
251 ERROR(nm, check_is_string_list, (propname))
252
Rob Herring6f05afc2017-01-04 10:45:20 -0600253static void check_is_cell(struct check *c, struct dt_info *dti,
David Gibsona4da2e32007-12-18 15:06:42 +1100254 struct node *node)
255{
256 struct property *prop;
257 char *propname = c->data;
258
259 prop = get_property(node, propname);
260 if (!prop)
261 return; /* Not present, assumed ok */
262
263 if (prop->val.len != sizeof(cell_t))
Rob Herring9130ba82018-02-27 17:40:38 -0600264 FAIL_PROP(c, dti, node, prop, "property is not a single cell");
David Gibsona4da2e32007-12-18 15:06:42 +1100265}
Stephen Warrencd296722012-09-28 21:25:59 +0000266#define WARNING_IF_NOT_CELL(nm, propname) \
Rob Herring6f05afc2017-01-04 10:45:20 -0600267 WARNING(nm, check_is_cell, (propname))
Stephen Warrencd296722012-09-28 21:25:59 +0000268#define ERROR_IF_NOT_CELL(nm, propname) \
Rob Herring6f05afc2017-01-04 10:45:20 -0600269 ERROR(nm, check_is_cell, (propname))
David Gibsona4da2e32007-12-18 15:06:42 +1100270
271/*
272 * Structural check functions
273 */
274
Rob Herring6f05afc2017-01-04 10:45:20 -0600275static void check_duplicate_node_names(struct check *c, struct dt_info *dti,
David Gibsona4da2e32007-12-18 15:06:42 +1100276 struct node *node)
277{
278 struct node *child, *child2;
279
280 for_each_child(node, child)
281 for (child2 = child->next_sibling;
282 child2;
283 child2 = child2->next_sibling)
284 if (streq(child->name, child2->name))
Rob Herring50aafd62018-05-08 13:07:49 -0500285 FAIL(c, dti, child2, "Duplicate node name");
David Gibsona4da2e32007-12-18 15:06:42 +1100286}
Rob Herring6f05afc2017-01-04 10:45:20 -0600287ERROR(duplicate_node_names, check_duplicate_node_names, NULL);
David Gibsona4da2e32007-12-18 15:06:42 +1100288
Rob Herring6f05afc2017-01-04 10:45:20 -0600289static void check_duplicate_property_names(struct check *c, struct dt_info *dti,
David Gibsona4da2e32007-12-18 15:06:42 +1100290 struct node *node)
291{
292 struct property *prop, *prop2;
293
Stephen Warrencd296722012-09-28 21:25:59 +0000294 for_each_property(node, prop) {
295 for (prop2 = prop->next; prop2; prop2 = prop2->next) {
296 if (prop2->deleted)
297 continue;
David Gibsona4da2e32007-12-18 15:06:42 +1100298 if (streq(prop->name, prop2->name))
Rob Herring9130ba82018-02-27 17:40:38 -0600299 FAIL_PROP(c, dti, node, prop, "Duplicate property name");
Stephen Warrencd296722012-09-28 21:25:59 +0000300 }
301 }
David Gibsona4da2e32007-12-18 15:06:42 +1100302}
Rob Herring6f05afc2017-01-04 10:45:20 -0600303ERROR(duplicate_property_names, check_duplicate_property_names, NULL);
David Gibsona4da2e32007-12-18 15:06:42 +1100304
David Gibsoned95d742008-08-07 12:24:17 +1000305#define LOWERCASE "abcdefghijklmnopqrstuvwxyz"
306#define UPPERCASE "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
307#define DIGITS "0123456789"
Rob Herringa77725a2021-10-25 11:05:45 -0500308#define NODECHARS LOWERCASE UPPERCASE DIGITS ",._+-@"
309#define PROPCHARS LOWERCASE UPPERCASE DIGITS ",._+*#?-"
Rob Herring89d12312017-03-21 09:01:08 -0500310#define PROPNODECHARSSTRICT LOWERCASE UPPERCASE DIGITS ",-"
David Gibsoned95d742008-08-07 12:24:17 +1000311
Rob Herring6f05afc2017-01-04 10:45:20 -0600312static void check_node_name_chars(struct check *c, struct dt_info *dti,
David Gibsoned95d742008-08-07 12:24:17 +1000313 struct node *node)
314{
Rob Herringa77725a2021-10-25 11:05:45 -0500315 size_t n = strspn(node->name, c->data);
David Gibsoned95d742008-08-07 12:24:17 +1000316
317 if (n < strlen(node->name))
Rob Herring9130ba82018-02-27 17:40:38 -0600318 FAIL(c, dti, node, "Bad character '%c' in node name",
319 node->name[n]);
David Gibsoned95d742008-08-07 12:24:17 +1000320}
Rob Herringa77725a2021-10-25 11:05:45 -0500321ERROR(node_name_chars, check_node_name_chars, NODECHARS);
David Gibsoned95d742008-08-07 12:24:17 +1000322
Rob Herring89d12312017-03-21 09:01:08 -0500323static void check_node_name_chars_strict(struct check *c, struct dt_info *dti,
324 struct node *node)
325{
326 int n = strspn(node->name, c->data);
327
328 if (n < node->basenamelen)
Rob Herring9130ba82018-02-27 17:40:38 -0600329 FAIL(c, dti, node, "Character '%c' not recommended in node name",
330 node->name[n]);
Rob Herring89d12312017-03-21 09:01:08 -0500331}
332CHECK(node_name_chars_strict, check_node_name_chars_strict, PROPNODECHARSSTRICT);
333
Rob Herring6f05afc2017-01-04 10:45:20 -0600334static void check_node_name_format(struct check *c, struct dt_info *dti,
David Gibsoned95d742008-08-07 12:24:17 +1000335 struct node *node)
336{
337 if (strchr(get_unitname(node), '@'))
Rob Herring9130ba82018-02-27 17:40:38 -0600338 FAIL(c, dti, node, "multiple '@' characters in node name");
David Gibsoned95d742008-08-07 12:24:17 +1000339}
Rob Herring6f05afc2017-01-04 10:45:20 -0600340ERROR(node_name_format, check_node_name_format, NULL, &node_name_chars);
David Gibsoned95d742008-08-07 12:24:17 +1000341
Rob Herringa77725a2021-10-25 11:05:45 -0500342static void check_node_name_vs_property_name(struct check *c,
343 struct dt_info *dti,
344 struct node *node)
345{
346 if (!node->parent)
347 return;
348
349 if (get_property(node->parent, node->name)) {
350 FAIL(c, dti, node, "node name and property name conflict");
351 }
352}
353WARNING(node_name_vs_property_name, check_node_name_vs_property_name,
354 NULL, &node_name_chars);
355
Rob Herring6f05afc2017-01-04 10:45:20 -0600356static void check_unit_address_vs_reg(struct check *c, struct dt_info *dti,
357 struct node *node)
Rob Herringb9937342016-03-04 08:56:58 -0600358{
359 const char *unitname = get_unitname(node);
360 struct property *prop = get_property(node, "reg");
361
Rob Herring50aafd62018-05-08 13:07:49 -0500362 if (get_subnode(node, "__overlay__")) {
363 /* HACK: Overlay fragments are a special case */
364 return;
365 }
366
Rob Herringb9937342016-03-04 08:56:58 -0600367 if (!prop) {
368 prop = get_property(node, "ranges");
369 if (prop && !prop->val.len)
370 prop = NULL;
371 }
372
373 if (prop) {
374 if (!unitname[0])
Rob Herring9130ba82018-02-27 17:40:38 -0600375 FAIL(c, dti, node, "node has a reg or ranges property, but no unit name");
Rob Herringb9937342016-03-04 08:56:58 -0600376 } else {
377 if (unitname[0])
Rob Herringd047cd82020-03-13 08:56:58 -0500378 FAIL(c, dti, node, "node has a unit name, but no reg or ranges property");
Rob Herringb9937342016-03-04 08:56:58 -0600379 }
380}
Rob Herring6f05afc2017-01-04 10:45:20 -0600381WARNING(unit_address_vs_reg, check_unit_address_vs_reg, NULL);
Rob Herringb9937342016-03-04 08:56:58 -0600382
Rob Herring6f05afc2017-01-04 10:45:20 -0600383static void check_property_name_chars(struct check *c, struct dt_info *dti,
384 struct node *node)
David Gibsoned95d742008-08-07 12:24:17 +1000385{
Rob Herring6f05afc2017-01-04 10:45:20 -0600386 struct property *prop;
David Gibsoned95d742008-08-07 12:24:17 +1000387
Rob Herring6f05afc2017-01-04 10:45:20 -0600388 for_each_property(node, prop) {
Rob Herringa77725a2021-10-25 11:05:45 -0500389 size_t n = strspn(prop->name, c->data);
Rob Herring6f05afc2017-01-04 10:45:20 -0600390
391 if (n < strlen(prop->name))
Rob Herring9130ba82018-02-27 17:40:38 -0600392 FAIL_PROP(c, dti, node, prop, "Bad character '%c' in property name",
393 prop->name[n]);
Rob Herring6f05afc2017-01-04 10:45:20 -0600394 }
David Gibsoned95d742008-08-07 12:24:17 +1000395}
Rob Herringa77725a2021-10-25 11:05:45 -0500396ERROR(property_name_chars, check_property_name_chars, PROPCHARS);
David Gibsoned95d742008-08-07 12:24:17 +1000397
Rob Herring89d12312017-03-21 09:01:08 -0500398static void check_property_name_chars_strict(struct check *c,
399 struct dt_info *dti,
400 struct node *node)
401{
402 struct property *prop;
403
404 for_each_property(node, prop) {
405 const char *name = prop->name;
Rob Herringa77725a2021-10-25 11:05:45 -0500406 size_t n = strspn(name, c->data);
Rob Herring89d12312017-03-21 09:01:08 -0500407
408 if (n == strlen(prop->name))
409 continue;
410
411 /* Certain names are whitelisted */
412 if (streq(name, "device_type"))
413 continue;
414
415 /*
416 * # is only allowed at the beginning of property names not counting
417 * the vendor prefix.
418 */
419 if (name[n] == '#' && ((n == 0) || (name[n-1] == ','))) {
420 name += n + 1;
421 n = strspn(name, c->data);
422 }
423 if (n < strlen(name))
Rob Herring9130ba82018-02-27 17:40:38 -0600424 FAIL_PROP(c, dti, node, prop, "Character '%c' not recommended in property name",
425 name[n]);
Rob Herring89d12312017-03-21 09:01:08 -0500426 }
427}
428CHECK(property_name_chars_strict, check_property_name_chars_strict, PROPNODECHARSSTRICT);
429
John Bonesio658f29a2010-11-17 15:28:20 -0800430#define DESCLABEL_FMT "%s%s%s%s%s"
431#define DESCLABEL_ARGS(node,prop,mark) \
432 ((mark) ? "value of " : ""), \
433 ((prop) ? "'" : ""), \
434 ((prop) ? (prop)->name : ""), \
435 ((prop) ? "' in " : ""), (node)->fullpath
436
Rob Herring6f05afc2017-01-04 10:45:20 -0600437static void check_duplicate_label(struct check *c, struct dt_info *dti,
John Bonesio658f29a2010-11-17 15:28:20 -0800438 const char *label, struct node *node,
439 struct property *prop, struct marker *mark)
David Gibsona4da2e32007-12-18 15:06:42 +1100440{
Rob Herring6f05afc2017-01-04 10:45:20 -0600441 struct node *dt = dti->dt;
John Bonesio658f29a2010-11-17 15:28:20 -0800442 struct node *othernode = NULL;
443 struct property *otherprop = NULL;
444 struct marker *othermark = NULL;
445
446 othernode = get_node_by_label(dt, label);
447
448 if (!othernode)
449 otherprop = get_property_by_label(dt, label, &othernode);
450 if (!othernode)
451 othermark = get_marker_label(dt, label, &othernode,
452 &otherprop);
453
454 if (!othernode)
455 return;
456
457 if ((othernode != node) || (otherprop != prop) || (othermark != mark))
Rob Herring9130ba82018-02-27 17:40:38 -0600458 FAIL(c, dti, node, "Duplicate label '%s' on " DESCLABEL_FMT
John Bonesio658f29a2010-11-17 15:28:20 -0800459 " and " DESCLABEL_FMT,
460 label, DESCLABEL_ARGS(node, prop, mark),
461 DESCLABEL_ARGS(othernode, otherprop, othermark));
462}
463
Rob Herring6f05afc2017-01-04 10:45:20 -0600464static void check_duplicate_label_node(struct check *c, struct dt_info *dti,
John Bonesio658f29a2010-11-17 15:28:20 -0800465 struct node *node)
466{
467 struct label *l;
Rob Herring6f05afc2017-01-04 10:45:20 -0600468 struct property *prop;
John Bonesio658f29a2010-11-17 15:28:20 -0800469
470 for_each_label(node->labels, l)
Rob Herring6f05afc2017-01-04 10:45:20 -0600471 check_duplicate_label(c, dti, l->label, node, NULL, NULL);
472
473 for_each_property(node, prop) {
474 struct marker *m = prop->val.markers;
475
476 for_each_label(prop->labels, l)
477 check_duplicate_label(c, dti, l->label, node, prop, NULL);
478
479 for_each_marker_of_type(m, LABEL)
480 check_duplicate_label(c, dti, m->ref, node, prop, m);
481 }
John Bonesio658f29a2010-11-17 15:28:20 -0800482}
Rob Herring6f05afc2017-01-04 10:45:20 -0600483ERROR(duplicate_label, check_duplicate_label_node, NULL);
484
485static cell_t check_phandle_prop(struct check *c, struct dt_info *dti,
486 struct node *node, const char *propname)
John Bonesio658f29a2010-11-17 15:28:20 -0800487{
Rob Herring6f05afc2017-01-04 10:45:20 -0600488 struct node *root = dti->dt;
489 struct property *prop;
John Bonesio658f29a2010-11-17 15:28:20 -0800490 struct marker *m;
David Gibsona4da2e32007-12-18 15:06:42 +1100491 cell_t phandle;
492
Rob Herring6f05afc2017-01-04 10:45:20 -0600493 prop = get_property(node, propname);
494 if (!prop)
495 return 0;
David Gibsona4da2e32007-12-18 15:06:42 +1100496
497 if (prop->val.len != sizeof(cell_t)) {
Rob Herring9130ba82018-02-27 17:40:38 -0600498 FAIL_PROP(c, dti, node, prop, "bad length (%d) %s property",
499 prop->val.len, prop->name);
Rob Herring6f05afc2017-01-04 10:45:20 -0600500 return 0;
John Bonesio658f29a2010-11-17 15:28:20 -0800501 }
502
503 m = prop->val.markers;
504 for_each_marker_of_type(m, REF_PHANDLE) {
505 assert(m->offset == 0);
506 if (node != get_node_by_ref(root, m->ref))
507 /* "Set this node's phandle equal to some
508 * other node's phandle". That's nonsensical
509 * by construction. */ {
Rob Herring9130ba82018-02-27 17:40:38 -0600510 FAIL(c, dti, node, "%s is a reference to another node",
511 prop->name);
John Bonesio658f29a2010-11-17 15:28:20 -0800512 }
513 /* But setting this node's phandle equal to its own
514 * phandle is allowed - that means allocate a unique
515 * phandle for this node, even if it's not otherwise
516 * referenced. The value will be filled in later, so
Rob Herring6f05afc2017-01-04 10:45:20 -0600517 * we treat it as having no phandle data for now. */
518 return 0;
David Gibsona4da2e32007-12-18 15:06:42 +1100519 }
520
521 phandle = propval_cell(prop);
John Bonesio658f29a2010-11-17 15:28:20 -0800522
Rob Herringa77725a2021-10-25 11:05:45 -0500523 if (!phandle_is_valid(phandle)) {
Rob Herring9130ba82018-02-27 17:40:38 -0600524 FAIL_PROP(c, dti, node, prop, "bad value (0x%x) in %s property",
525 phandle, prop->name);
Rob Herring6f05afc2017-01-04 10:45:20 -0600526 return 0;
David Gibsona4da2e32007-12-18 15:06:42 +1100527 }
528
Rob Herring6f05afc2017-01-04 10:45:20 -0600529 return phandle;
530}
531
532static void check_explicit_phandles(struct check *c, struct dt_info *dti,
533 struct node *node)
534{
535 struct node *root = dti->dt;
536 struct node *other;
537 cell_t phandle, linux_phandle;
538
539 /* Nothing should have assigned phandles yet */
540 assert(!node->phandle);
541
542 phandle = check_phandle_prop(c, dti, node, "phandle");
543
544 linux_phandle = check_phandle_prop(c, dti, node, "linux,phandle");
545
546 if (!phandle && !linux_phandle)
547 /* No valid phandles; nothing further to check */
548 return;
549
550 if (linux_phandle && phandle && (phandle != linux_phandle))
Rob Herring9130ba82018-02-27 17:40:38 -0600551 FAIL(c, dti, node, "mismatching 'phandle' and 'linux,phandle'"
552 " properties");
Rob Herring6f05afc2017-01-04 10:45:20 -0600553
554 if (linux_phandle && !phandle)
555 phandle = linux_phandle;
John Bonesio658f29a2010-11-17 15:28:20 -0800556
David Gibsona4da2e32007-12-18 15:06:42 +1100557 other = get_node_by_phandle(root, phandle);
John Bonesio658f29a2010-11-17 15:28:20 -0800558 if (other && (other != node)) {
Rob Herring9130ba82018-02-27 17:40:38 -0600559 FAIL(c, dti, node, "duplicated phandle 0x%x (seen before at %s)",
560 phandle, other->fullpath);
David Gibsona4da2e32007-12-18 15:06:42 +1100561 return;
562 }
563
564 node->phandle = phandle;
565}
Rob Herring6f05afc2017-01-04 10:45:20 -0600566ERROR(explicit_phandles, check_explicit_phandles, NULL);
David Gibsona4da2e32007-12-18 15:06:42 +1100567
Rob Herring6f05afc2017-01-04 10:45:20 -0600568static void check_name_properties(struct check *c, struct dt_info *dti,
David Gibsona4da2e32007-12-18 15:06:42 +1100569 struct node *node)
570{
David Gibsoned95d742008-08-07 12:24:17 +1000571 struct property **pp, *prop = NULL;
David Gibsona4da2e32007-12-18 15:06:42 +1100572
David Gibsoned95d742008-08-07 12:24:17 +1000573 for (pp = &node->proplist; *pp; pp = &((*pp)->next))
574 if (streq((*pp)->name, "name")) {
575 prop = *pp;
576 break;
577 }
578
David Gibsona4da2e32007-12-18 15:06:42 +1100579 if (!prop)
580 return; /* No name property, that's fine */
581
Rob Herringa77725a2021-10-25 11:05:45 -0500582 if ((prop->val.len != node->basenamelen + 1U)
David Gibsoned95d742008-08-07 12:24:17 +1000583 || (memcmp(prop->val.val, node->name, node->basenamelen) != 0)) {
Rob Herring9130ba82018-02-27 17:40:38 -0600584 FAIL(c, dti, node, "\"name\" property is incorrect (\"%s\" instead"
585 " of base node name)", prop->val.val);
David Gibsoned95d742008-08-07 12:24:17 +1000586 } else {
587 /* The name property is correct, and therefore redundant.
588 * Delete it */
589 *pp = prop->next;
590 free(prop->name);
591 data_free(prop->val);
592 free(prop);
593 }
David Gibsona4da2e32007-12-18 15:06:42 +1100594}
Stephen Warrencd296722012-09-28 21:25:59 +0000595ERROR_IF_NOT_STRING(name_is_string, "name");
Rob Herring6f05afc2017-01-04 10:45:20 -0600596ERROR(name_properties, check_name_properties, NULL, &name_is_string);
David Gibsona4da2e32007-12-18 15:06:42 +1100597
598/*
599 * Reference fixup functions
600 */
601
Rob Herring6f05afc2017-01-04 10:45:20 -0600602static void fixup_phandle_references(struct check *c, struct dt_info *dti,
603 struct node *node)
David Gibsona4da2e32007-12-18 15:06:42 +1100604{
Rob Herring6f05afc2017-01-04 10:45:20 -0600605 struct node *dt = dti->dt;
606 struct property *prop;
David Gibsona4da2e32007-12-18 15:06:42 +1100607
Rob Herring6f05afc2017-01-04 10:45:20 -0600608 for_each_property(node, prop) {
609 struct marker *m = prop->val.markers;
610 struct node *refnode;
611 cell_t phandle;
David Gibsona4da2e32007-12-18 15:06:42 +1100612
Rob Herring6f05afc2017-01-04 10:45:20 -0600613 for_each_marker_of_type(m, REF_PHANDLE) {
614 assert(m->offset + sizeof(cell_t) <= prop->val.len);
615
616 refnode = get_node_by_ref(dt, m->ref);
617 if (! refnode) {
618 if (!(dti->dtsflags & DTSF_PLUGIN))
Rob Herring9130ba82018-02-27 17:40:38 -0600619 FAIL(c, dti, node, "Reference to non-existent node or "
Rob Herring6f05afc2017-01-04 10:45:20 -0600620 "label \"%s\"\n", m->ref);
621 else /* mark the entry as unresolved */
Rob Herring89d12312017-03-21 09:01:08 -0500622 *((fdt32_t *)(prop->val.val + m->offset)) =
Rob Herring6f05afc2017-01-04 10:45:20 -0600623 cpu_to_fdt32(0xffffffff);
624 continue;
625 }
626
627 phandle = get_node_phandle(dt, refnode);
Rob Herring89d12312017-03-21 09:01:08 -0500628 *((fdt32_t *)(prop->val.val + m->offset)) = cpu_to_fdt32(phandle);
Rob Herring50aafd62018-05-08 13:07:49 -0500629
630 reference_node(refnode);
David Gibsoned95d742008-08-07 12:24:17 +1000631 }
David Gibsoned95d742008-08-07 12:24:17 +1000632 }
David Gibsona4da2e32007-12-18 15:06:42 +1100633}
Rob Herring6f05afc2017-01-04 10:45:20 -0600634ERROR(phandle_references, fixup_phandle_references, NULL,
David Gibsona4da2e32007-12-18 15:06:42 +1100635 &duplicate_node_names, &explicit_phandles);
636
Rob Herring6f05afc2017-01-04 10:45:20 -0600637static void fixup_path_references(struct check *c, struct dt_info *dti,
638 struct node *node)
David Gibsona4da2e32007-12-18 15:06:42 +1100639{
Rob Herring6f05afc2017-01-04 10:45:20 -0600640 struct node *dt = dti->dt;
641 struct property *prop;
David Gibsona4da2e32007-12-18 15:06:42 +1100642
Rob Herring6f05afc2017-01-04 10:45:20 -0600643 for_each_property(node, prop) {
644 struct marker *m = prop->val.markers;
645 struct node *refnode;
646 char *path;
David Gibsona4da2e32007-12-18 15:06:42 +1100647
Rob Herring6f05afc2017-01-04 10:45:20 -0600648 for_each_marker_of_type(m, REF_PATH) {
649 assert(m->offset <= prop->val.len);
650
651 refnode = get_node_by_ref(dt, m->ref);
652 if (!refnode) {
Rob Herring9130ba82018-02-27 17:40:38 -0600653 FAIL(c, dti, node, "Reference to non-existent node or label \"%s\"\n",
Rob Herring6f05afc2017-01-04 10:45:20 -0600654 m->ref);
655 continue;
656 }
657
658 path = refnode->fullpath;
659 prop->val = data_insert_at_marker(prop->val, m, path,
660 strlen(path) + 1);
Rob Herring50aafd62018-05-08 13:07:49 -0500661
662 reference_node(refnode);
David Gibsona4da2e32007-12-18 15:06:42 +1100663 }
David Gibsona4da2e32007-12-18 15:06:42 +1100664 }
665}
Rob Herring6f05afc2017-01-04 10:45:20 -0600666ERROR(path_references, fixup_path_references, NULL, &duplicate_node_names);
David Gibsona4da2e32007-12-18 15:06:42 +1100667
Rob Herring50aafd62018-05-08 13:07:49 -0500668static void fixup_omit_unused_nodes(struct check *c, struct dt_info *dti,
669 struct node *node)
670{
Rob Herring9bb9c6a2019-06-12 07:05:52 -0600671 if (generate_symbols && node->labels)
672 return;
Rob Herring50aafd62018-05-08 13:07:49 -0500673 if (node->omit_if_unused && !node->is_referenced)
674 delete_node(node);
675}
676ERROR(omit_unused_nodes, fixup_omit_unused_nodes, NULL, &phandle_references, &path_references);
677
David Gibsona4da2e32007-12-18 15:06:42 +1100678/*
679 * Semantic checks
680 */
Stephen Warrencd296722012-09-28 21:25:59 +0000681WARNING_IF_NOT_CELL(address_cells_is_cell, "#address-cells");
682WARNING_IF_NOT_CELL(size_cells_is_cell, "#size-cells");
David Gibsona4da2e32007-12-18 15:06:42 +1100683
Stephen Warrencd296722012-09-28 21:25:59 +0000684WARNING_IF_NOT_STRING(device_type_is_string, "device_type");
685WARNING_IF_NOT_STRING(model_is_string, "model");
686WARNING_IF_NOT_STRING(status_is_string, "status");
Rob Herring9130ba82018-02-27 17:40:38 -0600687WARNING_IF_NOT_STRING(label_is_string, "label");
688
689WARNING_IF_NOT_STRING_LIST(compatible_is_string_list, "compatible");
690
691static void check_names_is_string_list(struct check *c, struct dt_info *dti,
692 struct node *node)
693{
694 struct property *prop;
695
696 for_each_property(node, prop) {
Rob Herringa77725a2021-10-25 11:05:45 -0500697 if (!strends(prop->name, "-names"))
Rob Herring9130ba82018-02-27 17:40:38 -0600698 continue;
699
700 c->data = prop->name;
701 check_is_string_list(c, dti, node);
702 }
703}
704WARNING(names_is_string_list, check_names_is_string_list, NULL);
705
706static void check_alias_paths(struct check *c, struct dt_info *dti,
707 struct node *node)
708{
709 struct property *prop;
710
711 if (!streq(node->name, "aliases"))
712 return;
713
714 for_each_property(node, prop) {
Rob Herring0cec1142019-12-26 15:36:47 -0700715 if (streq(prop->name, "phandle")
716 || streq(prop->name, "linux,phandle")) {
717 continue;
718 }
719
Rob Herring9130ba82018-02-27 17:40:38 -0600720 if (!prop->val.val || !get_node_by_path(dti->dt, prop->val.val)) {
721 FAIL_PROP(c, dti, node, prop, "aliases property is not a valid node (%s)",
722 prop->val.val);
723 continue;
724 }
725 if (strspn(prop->name, LOWERCASE DIGITS "-") != strlen(prop->name))
726 FAIL(c, dti, node, "aliases property name must include only lowercase and '-'");
727 }
728}
729WARNING(alias_paths, check_alias_paths, NULL);
David Gibsona4da2e32007-12-18 15:06:42 +1100730
Rob Herring6f05afc2017-01-04 10:45:20 -0600731static void fixup_addr_size_cells(struct check *c, struct dt_info *dti,
David Gibsona4da2e32007-12-18 15:06:42 +1100732 struct node *node)
733{
734 struct property *prop;
735
736 node->addr_cells = -1;
737 node->size_cells = -1;
738
739 prop = get_property(node, "#address-cells");
740 if (prop)
741 node->addr_cells = propval_cell(prop);
742
743 prop = get_property(node, "#size-cells");
744 if (prop)
745 node->size_cells = propval_cell(prop);
746}
Rob Herring6f05afc2017-01-04 10:45:20 -0600747WARNING(addr_size_cells, fixup_addr_size_cells, NULL,
Stephen Warrencd296722012-09-28 21:25:59 +0000748 &address_cells_is_cell, &size_cells_is_cell);
David Gibsona4da2e32007-12-18 15:06:42 +1100749
750#define node_addr_cells(n) \
751 (((n)->addr_cells == -1) ? 2 : (n)->addr_cells)
752#define node_size_cells(n) \
753 (((n)->size_cells == -1) ? 1 : (n)->size_cells)
754
Rob Herring6f05afc2017-01-04 10:45:20 -0600755static void check_reg_format(struct check *c, struct dt_info *dti,
David Gibsona4da2e32007-12-18 15:06:42 +1100756 struct node *node)
757{
758 struct property *prop;
759 int addr_cells, size_cells, entrylen;
760
761 prop = get_property(node, "reg");
762 if (!prop)
763 return; /* No "reg", that's fine */
764
765 if (!node->parent) {
Rob Herring9130ba82018-02-27 17:40:38 -0600766 FAIL(c, dti, node, "Root node has a \"reg\" property");
David Gibsona4da2e32007-12-18 15:06:42 +1100767 return;
768 }
769
770 if (prop->val.len == 0)
Rob Herring9130ba82018-02-27 17:40:38 -0600771 FAIL_PROP(c, dti, node, prop, "property is empty");
David Gibsona4da2e32007-12-18 15:06:42 +1100772
773 addr_cells = node_addr_cells(node->parent);
774 size_cells = node_size_cells(node->parent);
775 entrylen = (addr_cells + size_cells) * sizeof(cell_t);
776
Rob Herringa77725a2021-10-25 11:05:45 -0500777 if (!is_multiple_of(prop->val.len, entrylen))
Rob Herring9130ba82018-02-27 17:40:38 -0600778 FAIL_PROP(c, dti, node, prop, "property has invalid length (%d bytes) "
779 "(#address-cells == %d, #size-cells == %d)",
780 prop->val.len, addr_cells, size_cells);
David Gibsona4da2e32007-12-18 15:06:42 +1100781}
Rob Herring6f05afc2017-01-04 10:45:20 -0600782WARNING(reg_format, check_reg_format, NULL, &addr_size_cells);
David Gibsona4da2e32007-12-18 15:06:42 +1100783
Rob Herring6f05afc2017-01-04 10:45:20 -0600784static void check_ranges_format(struct check *c, struct dt_info *dti,
David Gibsona4da2e32007-12-18 15:06:42 +1100785 struct node *node)
786{
787 struct property *prop;
788 int c_addr_cells, p_addr_cells, c_size_cells, p_size_cells, entrylen;
Rob Herringd047cd82020-03-13 08:56:58 -0500789 const char *ranges = c->data;
David Gibsona4da2e32007-12-18 15:06:42 +1100790
Rob Herringd047cd82020-03-13 08:56:58 -0500791 prop = get_property(node, ranges);
David Gibsona4da2e32007-12-18 15:06:42 +1100792 if (!prop)
793 return;
794
795 if (!node->parent) {
Rob Herringd047cd82020-03-13 08:56:58 -0500796 FAIL_PROP(c, dti, node, prop, "Root node has a \"%s\" property",
797 ranges);
David Gibsona4da2e32007-12-18 15:06:42 +1100798 return;
799 }
800
801 p_addr_cells = node_addr_cells(node->parent);
802 p_size_cells = node_size_cells(node->parent);
803 c_addr_cells = node_addr_cells(node);
804 c_size_cells = node_size_cells(node);
805 entrylen = (p_addr_cells + c_addr_cells + c_size_cells) * sizeof(cell_t);
806
807 if (prop->val.len == 0) {
808 if (p_addr_cells != c_addr_cells)
Rob Herringd047cd82020-03-13 08:56:58 -0500809 FAIL_PROP(c, dti, node, prop, "empty \"%s\" property but its "
Rob Herring9130ba82018-02-27 17:40:38 -0600810 "#address-cells (%d) differs from %s (%d)",
Rob Herringd047cd82020-03-13 08:56:58 -0500811 ranges, c_addr_cells, node->parent->fullpath,
Rob Herring9130ba82018-02-27 17:40:38 -0600812 p_addr_cells);
David Gibsona4da2e32007-12-18 15:06:42 +1100813 if (p_size_cells != c_size_cells)
Rob Herringd047cd82020-03-13 08:56:58 -0500814 FAIL_PROP(c, dti, node, prop, "empty \"%s\" property but its "
Rob Herring9130ba82018-02-27 17:40:38 -0600815 "#size-cells (%d) differs from %s (%d)",
Rob Herringd047cd82020-03-13 08:56:58 -0500816 ranges, c_size_cells, node->parent->fullpath,
Rob Herring9130ba82018-02-27 17:40:38 -0600817 p_size_cells);
Rob Herringa77725a2021-10-25 11:05:45 -0500818 } else if (!is_multiple_of(prop->val.len, entrylen)) {
Rob Herringd047cd82020-03-13 08:56:58 -0500819 FAIL_PROP(c, dti, node, prop, "\"%s\" property has invalid length (%d bytes) "
Rob Herring9130ba82018-02-27 17:40:38 -0600820 "(parent #address-cells == %d, child #address-cells == %d, "
Rob Herringd047cd82020-03-13 08:56:58 -0500821 "#size-cells == %d)", ranges, prop->val.len,
Rob Herring9130ba82018-02-27 17:40:38 -0600822 p_addr_cells, c_addr_cells, c_size_cells);
David Gibsona4da2e32007-12-18 15:06:42 +1100823 }
824}
Rob Herringd047cd82020-03-13 08:56:58 -0500825WARNING(ranges_format, check_ranges_format, "ranges", &addr_size_cells);
826WARNING(dma_ranges_format, check_ranges_format, "dma-ranges", &addr_size_cells);
David Gibsona4da2e32007-12-18 15:06:42 +1100827
Rob Herring89d12312017-03-21 09:01:08 -0500828static const struct bus_type pci_bus = {
829 .name = "PCI",
830};
831
832static void check_pci_bridge(struct check *c, struct dt_info *dti, struct node *node)
833{
834 struct property *prop;
835 cell_t *cells;
836
837 prop = get_property(node, "device_type");
838 if (!prop || !streq(prop->val.val, "pci"))
839 return;
840
841 node->bus = &pci_bus;
842
Rob Herring9130ba82018-02-27 17:40:38 -0600843 if (!strprefixeq(node->name, node->basenamelen, "pci") &&
844 !strprefixeq(node->name, node->basenamelen, "pcie"))
845 FAIL(c, dti, node, "node name is not \"pci\" or \"pcie\"");
Rob Herring89d12312017-03-21 09:01:08 -0500846
847 prop = get_property(node, "ranges");
848 if (!prop)
Rob Herring9130ba82018-02-27 17:40:38 -0600849 FAIL(c, dti, node, "missing ranges for PCI bridge (or not a bridge)");
Rob Herring89d12312017-03-21 09:01:08 -0500850
851 if (node_addr_cells(node) != 3)
Rob Herring9130ba82018-02-27 17:40:38 -0600852 FAIL(c, dti, node, "incorrect #address-cells for PCI bridge");
Rob Herring89d12312017-03-21 09:01:08 -0500853 if (node_size_cells(node) != 2)
Rob Herring9130ba82018-02-27 17:40:38 -0600854 FAIL(c, dti, node, "incorrect #size-cells for PCI bridge");
Rob Herring89d12312017-03-21 09:01:08 -0500855
856 prop = get_property(node, "bus-range");
Rob Herring970f04c2018-04-20 08:08:23 -0500857 if (!prop)
Rob Herring89d12312017-03-21 09:01:08 -0500858 return;
Rob Herring970f04c2018-04-20 08:08:23 -0500859
Rob Herring89d12312017-03-21 09:01:08 -0500860 if (prop->val.len != (sizeof(cell_t) * 2)) {
Rob Herring9130ba82018-02-27 17:40:38 -0600861 FAIL_PROP(c, dti, node, prop, "value must be 2 cells");
Rob Herring89d12312017-03-21 09:01:08 -0500862 return;
863 }
864 cells = (cell_t *)prop->val.val;
865 if (fdt32_to_cpu(cells[0]) > fdt32_to_cpu(cells[1]))
Rob Herring9130ba82018-02-27 17:40:38 -0600866 FAIL_PROP(c, dti, node, prop, "1st cell must be less than or equal to 2nd cell");
Rob Herring89d12312017-03-21 09:01:08 -0500867 if (fdt32_to_cpu(cells[1]) > 0xff)
Rob Herring9130ba82018-02-27 17:40:38 -0600868 FAIL_PROP(c, dti, node, prop, "maximum bus number must be less than 256");
Rob Herring89d12312017-03-21 09:01:08 -0500869}
870WARNING(pci_bridge, check_pci_bridge, NULL,
871 &device_type_is_string, &addr_size_cells);
872
873static void check_pci_device_bus_num(struct check *c, struct dt_info *dti, struct node *node)
874{
875 struct property *prop;
876 unsigned int bus_num, min_bus, max_bus;
877 cell_t *cells;
878
879 if (!node->parent || (node->parent->bus != &pci_bus))
880 return;
881
882 prop = get_property(node, "reg");
883 if (!prop)
884 return;
885
886 cells = (cell_t *)prop->val.val;
887 bus_num = (fdt32_to_cpu(cells[0]) & 0x00ff0000) >> 16;
888
889 prop = get_property(node->parent, "bus-range");
890 if (!prop) {
891 min_bus = max_bus = 0;
892 } else {
893 cells = (cell_t *)prop->val.val;
894 min_bus = fdt32_to_cpu(cells[0]);
Rob Herringa77725a2021-10-25 11:05:45 -0500895 max_bus = fdt32_to_cpu(cells[1]);
Rob Herring89d12312017-03-21 09:01:08 -0500896 }
897 if ((bus_num < min_bus) || (bus_num > max_bus))
Rob Herring9130ba82018-02-27 17:40:38 -0600898 FAIL_PROP(c, dti, node, prop, "PCI bus number %d out of range, expected (%d - %d)",
899 bus_num, min_bus, max_bus);
Rob Herring89d12312017-03-21 09:01:08 -0500900}
901WARNING(pci_device_bus_num, check_pci_device_bus_num, NULL, &reg_format, &pci_bridge);
902
903static void check_pci_device_reg(struct check *c, struct dt_info *dti, struct node *node)
904{
905 struct property *prop;
906 const char *unitname = get_unitname(node);
907 char unit_addr[5];
908 unsigned int dev, func, reg;
909 cell_t *cells;
910
911 if (!node->parent || (node->parent->bus != &pci_bus))
912 return;
913
914 prop = get_property(node, "reg");
Rob Herring6e9c9682020-10-12 09:58:15 -0500915 if (!prop)
Rob Herring89d12312017-03-21 09:01:08 -0500916 return;
Rob Herring89d12312017-03-21 09:01:08 -0500917
918 cells = (cell_t *)prop->val.val;
919 if (cells[1] || cells[2])
Rob Herring9130ba82018-02-27 17:40:38 -0600920 FAIL_PROP(c, dti, node, prop, "PCI reg config space address cells 2 and 3 must be 0");
Rob Herring89d12312017-03-21 09:01:08 -0500921
922 reg = fdt32_to_cpu(cells[0]);
923 dev = (reg & 0xf800) >> 11;
924 func = (reg & 0x700) >> 8;
925
926 if (reg & 0xff000000)
Rob Herring9130ba82018-02-27 17:40:38 -0600927 FAIL_PROP(c, dti, node, prop, "PCI reg address is not configuration space");
Rob Herring89d12312017-03-21 09:01:08 -0500928 if (reg & 0x000000ff)
Rob Herring9130ba82018-02-27 17:40:38 -0600929 FAIL_PROP(c, dti, node, prop, "PCI reg config space address register number must be 0");
Rob Herring89d12312017-03-21 09:01:08 -0500930
931 if (func == 0) {
932 snprintf(unit_addr, sizeof(unit_addr), "%x", dev);
933 if (streq(unitname, unit_addr))
934 return;
935 }
936
937 snprintf(unit_addr, sizeof(unit_addr), "%x,%x", dev, func);
938 if (streq(unitname, unit_addr))
939 return;
940
Rob Herring9130ba82018-02-27 17:40:38 -0600941 FAIL(c, dti, node, "PCI unit address format error, expected \"%s\"",
942 unit_addr);
Rob Herring89d12312017-03-21 09:01:08 -0500943}
944WARNING(pci_device_reg, check_pci_device_reg, NULL, &reg_format, &pci_bridge);
945
946static const struct bus_type simple_bus = {
947 .name = "simple-bus",
948};
949
950static bool node_is_compatible(struct node *node, const char *compat)
951{
952 struct property *prop;
953 const char *str, *end;
954
955 prop = get_property(node, "compatible");
956 if (!prop)
957 return false;
958
959 for (str = prop->val.val, end = str + prop->val.len; str < end;
960 str += strnlen(str, end - str) + 1) {
Rob Herringc2e70752018-11-28 18:37:35 -0600961 if (streq(str, compat))
Rob Herring89d12312017-03-21 09:01:08 -0500962 return true;
963 }
964 return false;
965}
966
967static void check_simple_bus_bridge(struct check *c, struct dt_info *dti, struct node *node)
968{
969 if (node_is_compatible(node, "simple-bus"))
970 node->bus = &simple_bus;
971}
Rob Herringc2e70752018-11-28 18:37:35 -0600972WARNING(simple_bus_bridge, check_simple_bus_bridge, NULL,
973 &addr_size_cells, &compatible_is_string_list);
Rob Herring89d12312017-03-21 09:01:08 -0500974
975static void check_simple_bus_reg(struct check *c, struct dt_info *dti, struct node *node)
976{
977 struct property *prop;
978 const char *unitname = get_unitname(node);
979 char unit_addr[17];
980 unsigned int size;
981 uint64_t reg = 0;
982 cell_t *cells = NULL;
983
984 if (!node->parent || (node->parent->bus != &simple_bus))
985 return;
986
987 prop = get_property(node, "reg");
988 if (prop)
989 cells = (cell_t *)prop->val.val;
990 else {
991 prop = get_property(node, "ranges");
992 if (prop && prop->val.len)
993 /* skip of child address */
994 cells = ((cell_t *)prop->val.val) + node_addr_cells(node);
995 }
996
997 if (!cells) {
998 if (node->parent->parent && !(node->bus == &simple_bus))
Rob Herring9130ba82018-02-27 17:40:38 -0600999 FAIL(c, dti, node, "missing or empty reg/ranges property");
Rob Herring89d12312017-03-21 09:01:08 -05001000 return;
1001 }
1002
1003 size = node_addr_cells(node->parent);
1004 while (size--)
1005 reg = (reg << 32) | fdt32_to_cpu(*(cells++));
1006
Rob Herring4201d052017-10-03 11:37:04 -05001007 snprintf(unit_addr, sizeof(unit_addr), "%"PRIx64, reg);
Rob Herring89d12312017-03-21 09:01:08 -05001008 if (!streq(unitname, unit_addr))
Rob Herring9130ba82018-02-27 17:40:38 -06001009 FAIL(c, dti, node, "simple-bus unit address format error, expected \"%s\"",
1010 unit_addr);
Rob Herring89d12312017-03-21 09:01:08 -05001011}
1012WARNING(simple_bus_reg, check_simple_bus_reg, NULL, &reg_format, &simple_bus_bridge);
1013
Rob Herringf8589272018-09-13 08:59:25 -05001014static const struct bus_type i2c_bus = {
1015 .name = "i2c-bus",
1016};
1017
1018static void check_i2c_bus_bridge(struct check *c, struct dt_info *dti, struct node *node)
1019{
1020 if (strprefixeq(node->name, node->basenamelen, "i2c-bus") ||
1021 strprefixeq(node->name, node->basenamelen, "i2c-arb")) {
1022 node->bus = &i2c_bus;
1023 } else if (strprefixeq(node->name, node->basenamelen, "i2c")) {
1024 struct node *child;
1025 for_each_child(node, child) {
1026 if (strprefixeq(child->name, node->basenamelen, "i2c-bus"))
1027 return;
1028 }
1029 node->bus = &i2c_bus;
1030 } else
1031 return;
1032
1033 if (!node->children)
1034 return;
1035
1036 if (node_addr_cells(node) != 1)
1037 FAIL(c, dti, node, "incorrect #address-cells for I2C bus");
1038 if (node_size_cells(node) != 0)
1039 FAIL(c, dti, node, "incorrect #size-cells for I2C bus");
1040
1041}
1042WARNING(i2c_bus_bridge, check_i2c_bus_bridge, NULL, &addr_size_cells);
1043
Rob Herring3eb619b2020-06-29 12:15:13 -06001044#define I2C_OWN_SLAVE_ADDRESS (1U << 30)
1045#define I2C_TEN_BIT_ADDRESS (1U << 31)
1046
Rob Herringf8589272018-09-13 08:59:25 -05001047static void check_i2c_bus_reg(struct check *c, struct dt_info *dti, struct node *node)
1048{
1049 struct property *prop;
1050 const char *unitname = get_unitname(node);
1051 char unit_addr[17];
1052 uint32_t reg = 0;
1053 int len;
1054 cell_t *cells = NULL;
1055
1056 if (!node->parent || (node->parent->bus != &i2c_bus))
1057 return;
1058
1059 prop = get_property(node, "reg");
1060 if (prop)
1061 cells = (cell_t *)prop->val.val;
1062
1063 if (!cells) {
1064 FAIL(c, dti, node, "missing or empty reg property");
1065 return;
1066 }
1067
1068 reg = fdt32_to_cpu(*cells);
Rob Herring3eb619b2020-06-29 12:15:13 -06001069 /* Ignore I2C_OWN_SLAVE_ADDRESS */
1070 reg &= ~I2C_OWN_SLAVE_ADDRESS;
Rob Herringf8589272018-09-13 08:59:25 -05001071 snprintf(unit_addr, sizeof(unit_addr), "%x", reg);
1072 if (!streq(unitname, unit_addr))
1073 FAIL(c, dti, node, "I2C bus unit address format error, expected \"%s\"",
1074 unit_addr);
1075
1076 for (len = prop->val.len; len > 0; len -= 4) {
1077 reg = fdt32_to_cpu(*(cells++));
Rob Herring3eb619b2020-06-29 12:15:13 -06001078 /* Ignore I2C_OWN_SLAVE_ADDRESS */
1079 reg &= ~I2C_OWN_SLAVE_ADDRESS;
1080
1081 if ((reg & I2C_TEN_BIT_ADDRESS) && ((reg & ~I2C_TEN_BIT_ADDRESS) > 0x3ff))
Rob Herringf8589272018-09-13 08:59:25 -05001082 FAIL_PROP(c, dti, node, prop, "I2C address must be less than 10-bits, got \"0x%x\"",
1083 reg);
Rob Herring3eb619b2020-06-29 12:15:13 -06001084 else if (reg > 0x7f)
1085 FAIL_PROP(c, dti, node, prop, "I2C address must be less than 7-bits, got \"0x%x\". Set I2C_TEN_BIT_ADDRESS for 10 bit addresses or fix the property",
1086 reg);
Rob Herringf8589272018-09-13 08:59:25 -05001087 }
1088}
1089WARNING(i2c_bus_reg, check_i2c_bus_reg, NULL, &reg_format, &i2c_bus_bridge);
1090
1091static const struct bus_type spi_bus = {
1092 .name = "spi-bus",
1093};
1094
1095static void check_spi_bus_bridge(struct check *c, struct dt_info *dti, struct node *node)
1096{
Rob Herringc2e70752018-11-28 18:37:35 -06001097 int spi_addr_cells = 1;
Rob Herringf8589272018-09-13 08:59:25 -05001098
1099 if (strprefixeq(node->name, node->basenamelen, "spi")) {
1100 node->bus = &spi_bus;
1101 } else {
1102 /* Try to detect SPI buses which don't have proper node name */
1103 struct node *child;
1104
1105 if (node_addr_cells(node) != 1 || node_size_cells(node) != 0)
1106 return;
1107
1108 for_each_child(node, child) {
1109 struct property *prop;
1110 for_each_property(child, prop) {
1111 if (strprefixeq(prop->name, 4, "spi-")) {
1112 node->bus = &spi_bus;
1113 break;
1114 }
1115 }
1116 if (node->bus == &spi_bus)
1117 break;
1118 }
1119
1120 if (node->bus == &spi_bus && get_property(node, "reg"))
1121 FAIL(c, dti, node, "node name for SPI buses should be 'spi'");
1122 }
1123 if (node->bus != &spi_bus || !node->children)
1124 return;
1125
Rob Herringc2e70752018-11-28 18:37:35 -06001126 if (get_property(node, "spi-slave"))
1127 spi_addr_cells = 0;
1128 if (node_addr_cells(node) != spi_addr_cells)
Rob Herringf8589272018-09-13 08:59:25 -05001129 FAIL(c, dti, node, "incorrect #address-cells for SPI bus");
1130 if (node_size_cells(node) != 0)
1131 FAIL(c, dti, node, "incorrect #size-cells for SPI bus");
1132
1133}
1134WARNING(spi_bus_bridge, check_spi_bus_bridge, NULL, &addr_size_cells);
1135
1136static void check_spi_bus_reg(struct check *c, struct dt_info *dti, struct node *node)
1137{
1138 struct property *prop;
1139 const char *unitname = get_unitname(node);
1140 char unit_addr[9];
1141 uint32_t reg = 0;
1142 cell_t *cells = NULL;
1143
1144 if (!node->parent || (node->parent->bus != &spi_bus))
1145 return;
1146
Rob Herringc2e70752018-11-28 18:37:35 -06001147 if (get_property(node->parent, "spi-slave"))
1148 return;
1149
Rob Herringf8589272018-09-13 08:59:25 -05001150 prop = get_property(node, "reg");
1151 if (prop)
1152 cells = (cell_t *)prop->val.val;
1153
1154 if (!cells) {
1155 FAIL(c, dti, node, "missing or empty reg property");
1156 return;
1157 }
1158
1159 reg = fdt32_to_cpu(*cells);
1160 snprintf(unit_addr, sizeof(unit_addr), "%x", reg);
1161 if (!streq(unitname, unit_addr))
1162 FAIL(c, dti, node, "SPI bus unit address format error, expected \"%s\"",
1163 unit_addr);
1164}
1165WARNING(spi_bus_reg, check_spi_bus_reg, NULL, &reg_format, &spi_bus_bridge);
1166
Rob Herring89d12312017-03-21 09:01:08 -05001167static void check_unit_address_format(struct check *c, struct dt_info *dti,
1168 struct node *node)
1169{
1170 const char *unitname = get_unitname(node);
1171
1172 if (node->parent && node->parent->bus)
1173 return;
1174
1175 if (!unitname[0])
1176 return;
1177
1178 if (!strncmp(unitname, "0x", 2)) {
Rob Herring9130ba82018-02-27 17:40:38 -06001179 FAIL(c, dti, node, "unit name should not have leading \"0x\"");
Rob Herring89d12312017-03-21 09:01:08 -05001180 /* skip over 0x for next test */
1181 unitname += 2;
1182 }
1183 if (unitname[0] == '0' && isxdigit(unitname[1]))
Rob Herring9130ba82018-02-27 17:40:38 -06001184 FAIL(c, dti, node, "unit name should not have leading 0s");
Rob Herring89d12312017-03-21 09:01:08 -05001185}
1186WARNING(unit_address_format, check_unit_address_format, NULL,
1187 &node_name_format, &pci_bridge, &simple_bus_bridge);
1188
David Gibsona4da2e32007-12-18 15:06:42 +11001189/*
1190 * Style checks
1191 */
Rob Herring6f05afc2017-01-04 10:45:20 -06001192static void check_avoid_default_addr_size(struct check *c, struct dt_info *dti,
David Gibsona4da2e32007-12-18 15:06:42 +11001193 struct node *node)
1194{
1195 struct property *reg, *ranges;
1196
1197 if (!node->parent)
1198 return; /* Ignore root node */
1199
1200 reg = get_property(node, "reg");
1201 ranges = get_property(node, "ranges");
1202
1203 if (!reg && !ranges)
1204 return;
1205
Rob Herring47605972015-04-29 16:00:05 -05001206 if (node->parent->addr_cells == -1)
Rob Herring9130ba82018-02-27 17:40:38 -06001207 FAIL(c, dti, node, "Relying on default #address-cells value");
David Gibsona4da2e32007-12-18 15:06:42 +11001208
Rob Herring47605972015-04-29 16:00:05 -05001209 if (node->parent->size_cells == -1)
Rob Herring9130ba82018-02-27 17:40:38 -06001210 FAIL(c, dti, node, "Relying on default #size-cells value");
David Gibsona4da2e32007-12-18 15:06:42 +11001211}
Rob Herring6f05afc2017-01-04 10:45:20 -06001212WARNING(avoid_default_addr_size, check_avoid_default_addr_size, NULL,
1213 &addr_size_cells);
David Gibsona4da2e32007-12-18 15:06:42 +11001214
Rob Herring9130ba82018-02-27 17:40:38 -06001215static void check_avoid_unnecessary_addr_size(struct check *c, struct dt_info *dti,
1216 struct node *node)
1217{
1218 struct property *prop;
1219 struct node *child;
1220 bool has_reg = false;
1221
1222 if (!node->parent || node->addr_cells < 0 || node->size_cells < 0)
1223 return;
1224
1225 if (get_property(node, "ranges") || !node->children)
1226 return;
1227
1228 for_each_child(node, child) {
1229 prop = get_property(child, "reg");
1230 if (prop)
1231 has_reg = true;
1232 }
1233
1234 if (!has_reg)
1235 FAIL(c, dti, node, "unnecessary #address-cells/#size-cells without \"ranges\" or child \"reg\" property");
1236}
1237WARNING(avoid_unnecessary_addr_size, check_avoid_unnecessary_addr_size, NULL, &avoid_default_addr_size);
1238
Rob Herring9bb9c6a2019-06-12 07:05:52 -06001239static bool node_is_disabled(struct node *node)
1240{
1241 struct property *prop;
1242
1243 prop = get_property(node, "status");
1244 if (prop) {
1245 char *str = prop->val.val;
1246 if (streq("disabled", str))
1247 return true;
1248 }
1249
1250 return false;
1251}
1252
1253static void check_unique_unit_address_common(struct check *c,
1254 struct dt_info *dti,
1255 struct node *node,
1256 bool disable_check)
Rob Herring50aafd62018-05-08 13:07:49 -05001257{
1258 struct node *childa;
1259
1260 if (node->addr_cells < 0 || node->size_cells < 0)
1261 return;
1262
1263 if (!node->children)
1264 return;
1265
1266 for_each_child(node, childa) {
1267 struct node *childb;
1268 const char *addr_a = get_unitname(childa);
1269
1270 if (!strlen(addr_a))
1271 continue;
1272
Rob Herring9bb9c6a2019-06-12 07:05:52 -06001273 if (disable_check && node_is_disabled(childa))
1274 continue;
1275
Rob Herring50aafd62018-05-08 13:07:49 -05001276 for_each_child(node, childb) {
1277 const char *addr_b = get_unitname(childb);
1278 if (childa == childb)
1279 break;
1280
Rob Herring9bb9c6a2019-06-12 07:05:52 -06001281 if (disable_check && node_is_disabled(childb))
1282 continue;
1283
Rob Herring50aafd62018-05-08 13:07:49 -05001284 if (streq(addr_a, addr_b))
1285 FAIL(c, dti, childb, "duplicate unit-address (also used in node %s)", childa->fullpath);
1286 }
1287 }
1288}
Rob Herring9bb9c6a2019-06-12 07:05:52 -06001289
1290static void check_unique_unit_address(struct check *c, struct dt_info *dti,
1291 struct node *node)
1292{
1293 check_unique_unit_address_common(c, dti, node, false);
1294}
Rob Herring50aafd62018-05-08 13:07:49 -05001295WARNING(unique_unit_address, check_unique_unit_address, NULL, &avoid_default_addr_size);
1296
Rob Herring9bb9c6a2019-06-12 07:05:52 -06001297static void check_unique_unit_address_if_enabled(struct check *c, struct dt_info *dti,
1298 struct node *node)
1299{
1300 check_unique_unit_address_common(c, dti, node, true);
1301}
1302CHECK_ENTRY(unique_unit_address_if_enabled, check_unique_unit_address_if_enabled,
1303 NULL, false, false, &avoid_default_addr_size);
1304
David Gibsona4da2e32007-12-18 15:06:42 +11001305static void check_obsolete_chosen_interrupt_controller(struct check *c,
Rob Herring6f05afc2017-01-04 10:45:20 -06001306 struct dt_info *dti,
1307 struct node *node)
David Gibsona4da2e32007-12-18 15:06:42 +11001308{
Rob Herring6f05afc2017-01-04 10:45:20 -06001309 struct node *dt = dti->dt;
David Gibsona4da2e32007-12-18 15:06:42 +11001310 struct node *chosen;
1311 struct property *prop;
1312
Rob Herring6f05afc2017-01-04 10:45:20 -06001313 if (node != dt)
1314 return;
1315
1316
David Gibsona4da2e32007-12-18 15:06:42 +11001317 chosen = get_node_by_path(dt, "/chosen");
1318 if (!chosen)
1319 return;
1320
1321 prop = get_property(chosen, "interrupt-controller");
1322 if (prop)
Rob Herring9130ba82018-02-27 17:40:38 -06001323 FAIL_PROP(c, dti, node, prop,
1324 "/chosen has obsolete \"interrupt-controller\" property");
David Gibsona4da2e32007-12-18 15:06:42 +11001325}
Rob Herring6f05afc2017-01-04 10:45:20 -06001326WARNING(obsolete_chosen_interrupt_controller,
1327 check_obsolete_chosen_interrupt_controller, NULL);
David Gibsona4da2e32007-12-18 15:06:42 +11001328
Rob Herring9130ba82018-02-27 17:40:38 -06001329static void check_chosen_node_is_root(struct check *c, struct dt_info *dti,
1330 struct node *node)
1331{
1332 if (!streq(node->name, "chosen"))
1333 return;
1334
1335 if (node->parent != dti->dt)
1336 FAIL(c, dti, node, "chosen node must be at root node");
1337}
1338WARNING(chosen_node_is_root, check_chosen_node_is_root, NULL);
1339
1340static void check_chosen_node_bootargs(struct check *c, struct dt_info *dti,
1341 struct node *node)
1342{
1343 struct property *prop;
1344
1345 if (!streq(node->name, "chosen"))
1346 return;
1347
1348 prop = get_property(node, "bootargs");
1349 if (!prop)
1350 return;
1351
1352 c->data = prop->name;
1353 check_is_string(c, dti, node);
1354}
1355WARNING(chosen_node_bootargs, check_chosen_node_bootargs, NULL);
1356
1357static void check_chosen_node_stdout_path(struct check *c, struct dt_info *dti,
1358 struct node *node)
1359{
1360 struct property *prop;
1361
1362 if (!streq(node->name, "chosen"))
1363 return;
1364
1365 prop = get_property(node, "stdout-path");
1366 if (!prop) {
1367 prop = get_property(node, "linux,stdout-path");
1368 if (!prop)
1369 return;
1370 FAIL_PROP(c, dti, node, prop, "Use 'stdout-path' instead");
1371 }
1372
1373 c->data = prop->name;
1374 check_is_string(c, dti, node);
1375}
1376WARNING(chosen_node_stdout_path, check_chosen_node_stdout_path, NULL);
1377
Rob Herring4201d052017-10-03 11:37:04 -05001378struct provider {
1379 const char *prop_name;
1380 const char *cell_name;
1381 bool optional;
1382};
1383
1384static void check_property_phandle_args(struct check *c,
1385 struct dt_info *dti,
1386 struct node *node,
1387 struct property *prop,
1388 const struct provider *provider)
1389{
1390 struct node *root = dti->dt;
Rob Herringa77725a2021-10-25 11:05:45 -05001391 unsigned int cell, cellsize = 0;
Rob Herring4201d052017-10-03 11:37:04 -05001392
Rob Herringa77725a2021-10-25 11:05:45 -05001393 if (!is_multiple_of(prop->val.len, sizeof(cell_t))) {
Rob Herring9130ba82018-02-27 17:40:38 -06001394 FAIL_PROP(c, dti, node, prop,
1395 "property size (%d) is invalid, expected multiple of %zu",
1396 prop->val.len, sizeof(cell_t));
Rob Herring4201d052017-10-03 11:37:04 -05001397 return;
1398 }
1399
1400 for (cell = 0; cell < prop->val.len / sizeof(cell_t); cell += cellsize + 1) {
1401 struct node *provider_node;
1402 struct property *cellprop;
Rob Herringa77725a2021-10-25 11:05:45 -05001403 cell_t phandle;
Rob Herring4201d052017-10-03 11:37:04 -05001404
1405 phandle = propval_cell_n(prop, cell);
1406 /*
1407 * Some bindings use a cell value 0 or -1 to skip over optional
1408 * entries when each index position has a specific definition.
1409 */
Rob Herringa77725a2021-10-25 11:05:45 -05001410 if (!phandle_is_valid(phandle)) {
Rob Herringe45fe7f2017-10-25 10:59:13 -05001411 /* Give up if this is an overlay with external references */
1412 if (dti->dtsflags & DTSF_PLUGIN)
1413 break;
1414
Rob Herring4201d052017-10-03 11:37:04 -05001415 cellsize = 0;
1416 continue;
1417 }
1418
1419 /* If we have markers, verify the current cell is a phandle */
1420 if (prop->val.markers) {
1421 struct marker *m = prop->val.markers;
1422 for_each_marker_of_type(m, REF_PHANDLE) {
1423 if (m->offset == (cell * sizeof(cell_t)))
1424 break;
1425 }
1426 if (!m)
Rob Herring9130ba82018-02-27 17:40:38 -06001427 FAIL_PROP(c, dti, node, prop,
1428 "cell %d is not a phandle reference",
1429 cell);
Rob Herring4201d052017-10-03 11:37:04 -05001430 }
1431
1432 provider_node = get_node_by_phandle(root, phandle);
1433 if (!provider_node) {
Rob Herring9130ba82018-02-27 17:40:38 -06001434 FAIL_PROP(c, dti, node, prop,
1435 "Could not get phandle node for (cell %d)",
1436 cell);
Rob Herring4201d052017-10-03 11:37:04 -05001437 break;
1438 }
1439
1440 cellprop = get_property(provider_node, provider->cell_name);
1441 if (cellprop) {
1442 cellsize = propval_cell(cellprop);
1443 } else if (provider->optional) {
1444 cellsize = 0;
1445 } else {
Rob Herring9130ba82018-02-27 17:40:38 -06001446 FAIL(c, dti, node, "Missing property '%s' in node %s or bad phandle (referred from %s[%d])",
Rob Herring4201d052017-10-03 11:37:04 -05001447 provider->cell_name,
1448 provider_node->fullpath,
Rob Herring9130ba82018-02-27 17:40:38 -06001449 prop->name, cell);
Rob Herring4201d052017-10-03 11:37:04 -05001450 break;
1451 }
1452
1453 if (prop->val.len < ((cell + cellsize + 1) * sizeof(cell_t))) {
Rob Herring9130ba82018-02-27 17:40:38 -06001454 FAIL_PROP(c, dti, node, prop,
1455 "property size (%d) too small for cell size %d",
1456 prop->val.len, cellsize);
Rob Herring4201d052017-10-03 11:37:04 -05001457 }
1458 }
1459}
1460
1461static void check_provider_cells_property(struct check *c,
1462 struct dt_info *dti,
1463 struct node *node)
1464{
1465 struct provider *provider = c->data;
1466 struct property *prop;
1467
1468 prop = get_property(node, provider->prop_name);
1469 if (!prop)
1470 return;
1471
1472 check_property_phandle_args(c, dti, node, prop, provider);
1473}
1474#define WARNING_PROPERTY_PHANDLE_CELLS(nm, propname, cells_name, ...) \
1475 static struct provider nm##_provider = { (propname), (cells_name), __VA_ARGS__ }; \
Rob Herringa77725a2021-10-25 11:05:45 -05001476 WARNING_IF_NOT_CELL(nm##_is_cell, cells_name); \
1477 WARNING(nm##_property, check_provider_cells_property, &nm##_provider, &nm##_is_cell, &phandle_references);
Rob Herring4201d052017-10-03 11:37:04 -05001478
1479WARNING_PROPERTY_PHANDLE_CELLS(clocks, "clocks", "#clock-cells");
1480WARNING_PROPERTY_PHANDLE_CELLS(cooling_device, "cooling-device", "#cooling-cells");
1481WARNING_PROPERTY_PHANDLE_CELLS(dmas, "dmas", "#dma-cells");
1482WARNING_PROPERTY_PHANDLE_CELLS(hwlocks, "hwlocks", "#hwlock-cells");
1483WARNING_PROPERTY_PHANDLE_CELLS(interrupts_extended, "interrupts-extended", "#interrupt-cells");
1484WARNING_PROPERTY_PHANDLE_CELLS(io_channels, "io-channels", "#io-channel-cells");
1485WARNING_PROPERTY_PHANDLE_CELLS(iommus, "iommus", "#iommu-cells");
1486WARNING_PROPERTY_PHANDLE_CELLS(mboxes, "mboxes", "#mbox-cells");
1487WARNING_PROPERTY_PHANDLE_CELLS(msi_parent, "msi-parent", "#msi-cells", true);
1488WARNING_PROPERTY_PHANDLE_CELLS(mux_controls, "mux-controls", "#mux-control-cells");
1489WARNING_PROPERTY_PHANDLE_CELLS(phys, "phys", "#phy-cells");
1490WARNING_PROPERTY_PHANDLE_CELLS(power_domains, "power-domains", "#power-domain-cells");
1491WARNING_PROPERTY_PHANDLE_CELLS(pwms, "pwms", "#pwm-cells");
1492WARNING_PROPERTY_PHANDLE_CELLS(resets, "resets", "#reset-cells");
Rob Herring9130ba82018-02-27 17:40:38 -06001493WARNING_PROPERTY_PHANDLE_CELLS(sound_dai, "sound-dai", "#sound-dai-cells");
Rob Herring4201d052017-10-03 11:37:04 -05001494WARNING_PROPERTY_PHANDLE_CELLS(thermal_sensors, "thermal-sensors", "#thermal-sensor-cells");
1495
1496static bool prop_is_gpio(struct property *prop)
1497{
Rob Herring4201d052017-10-03 11:37:04 -05001498 /*
1499 * *-gpios and *-gpio can appear in property names,
1500 * so skip over any false matches (only one known ATM)
1501 */
Rob Herringa77725a2021-10-25 11:05:45 -05001502 if (strends(prop->name, ",nr-gpios"))
Rob Herring4201d052017-10-03 11:37:04 -05001503 return false;
1504
Rob Herringa77725a2021-10-25 11:05:45 -05001505 return strends(prop->name, "-gpios") ||
1506 streq(prop->name, "gpios") ||
1507 strends(prop->name, "-gpio") ||
1508 streq(prop->name, "gpio");
Rob Herring4201d052017-10-03 11:37:04 -05001509}
1510
1511static void check_gpios_property(struct check *c,
1512 struct dt_info *dti,
1513 struct node *node)
1514{
1515 struct property *prop;
1516
1517 /* Skip GPIO hog nodes which have 'gpios' property */
1518 if (get_property(node, "gpio-hog"))
1519 return;
1520
1521 for_each_property(node, prop) {
1522 struct provider provider;
1523
1524 if (!prop_is_gpio(prop))
1525 continue;
1526
1527 provider.prop_name = prop->name;
1528 provider.cell_name = "#gpio-cells";
1529 provider.optional = false;
1530 check_property_phandle_args(c, dti, node, prop, &provider);
1531 }
1532
1533}
1534WARNING(gpios_property, check_gpios_property, NULL, &phandle_references);
1535
1536static void check_deprecated_gpio_property(struct check *c,
1537 struct dt_info *dti,
1538 struct node *node)
1539{
1540 struct property *prop;
1541
1542 for_each_property(node, prop) {
Rob Herring4201d052017-10-03 11:37:04 -05001543 if (!prop_is_gpio(prop))
1544 continue;
1545
Rob Herringa77725a2021-10-25 11:05:45 -05001546 if (!strends(prop->name, "gpio"))
Rob Herring4201d052017-10-03 11:37:04 -05001547 continue;
1548
Rob Herring9130ba82018-02-27 17:40:38 -06001549 FAIL_PROP(c, dti, node, prop,
1550 "'[*-]gpio' is deprecated, use '[*-]gpios' instead");
Rob Herring4201d052017-10-03 11:37:04 -05001551 }
1552
1553}
1554CHECK(deprecated_gpio_property, check_deprecated_gpio_property, NULL);
1555
1556static bool node_is_interrupt_provider(struct node *node)
1557{
1558 struct property *prop;
1559
1560 prop = get_property(node, "interrupt-controller");
1561 if (prop)
1562 return true;
1563
1564 prop = get_property(node, "interrupt-map");
1565 if (prop)
1566 return true;
1567
1568 return false;
1569}
Rob Herring3eb619b2020-06-29 12:15:13 -06001570
1571static void check_interrupt_provider(struct check *c,
1572 struct dt_info *dti,
1573 struct node *node)
1574{
1575 struct property *prop;
Rob Herringa77725a2021-10-25 11:05:45 -05001576 bool irq_provider = node_is_interrupt_provider(node);
Rob Herring3eb619b2020-06-29 12:15:13 -06001577
1578 prop = get_property(node, "#interrupt-cells");
Rob Herringa77725a2021-10-25 11:05:45 -05001579 if (irq_provider && !prop) {
Rob Herring3eb619b2020-06-29 12:15:13 -06001580 FAIL(c, dti, node,
Rob Herringa77725a2021-10-25 11:05:45 -05001581 "Missing '#interrupt-cells' in interrupt provider");
1582 return;
1583 }
Rob Herring3eb619b2020-06-29 12:15:13 -06001584
Rob Herringa77725a2021-10-25 11:05:45 -05001585 if (!irq_provider && prop) {
Rob Herring3eb619b2020-06-29 12:15:13 -06001586 FAIL(c, dti, node,
Rob Herringa77725a2021-10-25 11:05:45 -05001587 "'#interrupt-cells' found, but node is not an interrupt provider");
1588 return;
1589 }
Rob Herring3eb619b2020-06-29 12:15:13 -06001590}
Rob Herringa77725a2021-10-25 11:05:45 -05001591WARNING(interrupt_provider, check_interrupt_provider, NULL, &interrupts_extended_is_cell);
1592
1593static void check_interrupt_map(struct check *c,
1594 struct dt_info *dti,
1595 struct node *node)
1596{
1597 struct node *root = dti->dt;
1598 struct property *prop, *irq_map_prop;
1599 size_t cellsize, cell, map_cells;
1600
1601 irq_map_prop = get_property(node, "interrupt-map");
1602 if (!irq_map_prop)
1603 return;
1604
1605 if (node->addr_cells < 0) {
1606 FAIL(c, dti, node,
1607 "Missing '#address-cells' in interrupt-map provider");
1608 return;
1609 }
1610 cellsize = node_addr_cells(node);
1611 cellsize += propval_cell(get_property(node, "#interrupt-cells"));
1612
1613 prop = get_property(node, "interrupt-map-mask");
1614 if (prop && (prop->val.len != (cellsize * sizeof(cell_t))))
1615 FAIL_PROP(c, dti, node, prop,
1616 "property size (%d) is invalid, expected %zu",
1617 prop->val.len, cellsize * sizeof(cell_t));
1618
1619 if (!is_multiple_of(irq_map_prop->val.len, sizeof(cell_t))) {
1620 FAIL_PROP(c, dti, node, irq_map_prop,
1621 "property size (%d) is invalid, expected multiple of %zu",
1622 irq_map_prop->val.len, sizeof(cell_t));
1623 return;
1624 }
1625
1626 map_cells = irq_map_prop->val.len / sizeof(cell_t);
1627 for (cell = 0; cell < map_cells; ) {
1628 struct node *provider_node;
1629 struct property *cellprop;
1630 int phandle;
1631 size_t parent_cellsize;
1632
1633 if ((cell + cellsize) >= map_cells) {
1634 FAIL_PROP(c, dti, node, irq_map_prop,
1635 "property size (%d) too small, expected > %zu",
1636 irq_map_prop->val.len, (cell + cellsize) * sizeof(cell_t));
1637 break;
1638 }
1639 cell += cellsize;
1640
1641 phandle = propval_cell_n(irq_map_prop, cell);
1642 if (!phandle_is_valid(phandle)) {
1643 /* Give up if this is an overlay with external references */
1644 if (!(dti->dtsflags & DTSF_PLUGIN))
1645 FAIL_PROP(c, dti, node, irq_map_prop,
1646 "Cell %zu is not a phandle(%d)",
1647 cell, phandle);
1648 break;
1649 }
1650
1651 provider_node = get_node_by_phandle(root, phandle);
1652 if (!provider_node) {
1653 FAIL_PROP(c, dti, node, irq_map_prop,
1654 "Could not get phandle(%d) node for (cell %zu)",
1655 phandle, cell);
1656 break;
1657 }
1658
1659 cellprop = get_property(provider_node, "#interrupt-cells");
1660 if (cellprop) {
1661 parent_cellsize = propval_cell(cellprop);
1662 } else {
1663 FAIL(c, dti, node, "Missing property '#interrupt-cells' in node %s or bad phandle (referred from interrupt-map[%zu])",
1664 provider_node->fullpath, cell);
1665 break;
1666 }
1667
1668 cellprop = get_property(provider_node, "#address-cells");
1669 if (cellprop)
1670 parent_cellsize += propval_cell(cellprop);
1671
1672 cell += 1 + parent_cellsize;
1673 }
1674}
1675WARNING(interrupt_map, check_interrupt_map, NULL, &phandle_references, &addr_size_cells, &interrupt_provider);
Rob Herring3eb619b2020-06-29 12:15:13 -06001676
Rob Herring4201d052017-10-03 11:37:04 -05001677static void check_interrupts_property(struct check *c,
1678 struct dt_info *dti,
1679 struct node *node)
1680{
1681 struct node *root = dti->dt;
1682 struct node *irq_node = NULL, *parent = node;
1683 struct property *irq_prop, *prop = NULL;
Rob Herringa77725a2021-10-25 11:05:45 -05001684 cell_t irq_cells, phandle;
Rob Herring4201d052017-10-03 11:37:04 -05001685
1686 irq_prop = get_property(node, "interrupts");
1687 if (!irq_prop)
1688 return;
1689
Rob Herringa77725a2021-10-25 11:05:45 -05001690 if (!is_multiple_of(irq_prop->val.len, sizeof(cell_t)))
Rob Herring9130ba82018-02-27 17:40:38 -06001691 FAIL_PROP(c, dti, node, irq_prop, "size (%d) is invalid, expected multiple of %zu",
1692 irq_prop->val.len, sizeof(cell_t));
Rob Herring4201d052017-10-03 11:37:04 -05001693
1694 while (parent && !prop) {
1695 if (parent != node && node_is_interrupt_provider(parent)) {
1696 irq_node = parent;
1697 break;
1698 }
1699
1700 prop = get_property(parent, "interrupt-parent");
1701 if (prop) {
1702 phandle = propval_cell(prop);
Rob Herringa77725a2021-10-25 11:05:45 -05001703 if (!phandle_is_valid(phandle)) {
Rob Herring9bb9c6a2019-06-12 07:05:52 -06001704 /* Give up if this is an overlay with
1705 * external references */
1706 if (dti->dtsflags & DTSF_PLUGIN)
Rob Herringe45fe7f2017-10-25 10:59:13 -05001707 return;
Rob Herring9bb9c6a2019-06-12 07:05:52 -06001708 FAIL_PROP(c, dti, parent, prop, "Invalid phandle");
1709 continue;
1710 }
Rob Herringe45fe7f2017-10-25 10:59:13 -05001711
Rob Herring4201d052017-10-03 11:37:04 -05001712 irq_node = get_node_by_phandle(root, phandle);
1713 if (!irq_node) {
Rob Herring9130ba82018-02-27 17:40:38 -06001714 FAIL_PROP(c, dti, parent, prop, "Bad phandle");
Rob Herring4201d052017-10-03 11:37:04 -05001715 return;
1716 }
1717 if (!node_is_interrupt_provider(irq_node))
Rob Herring9130ba82018-02-27 17:40:38 -06001718 FAIL(c, dti, irq_node,
1719 "Missing interrupt-controller or interrupt-map property");
Rob Herring4201d052017-10-03 11:37:04 -05001720
1721 break;
1722 }
1723
1724 parent = parent->parent;
1725 }
1726
1727 if (!irq_node) {
Rob Herring9130ba82018-02-27 17:40:38 -06001728 FAIL(c, dti, node, "Missing interrupt-parent");
Rob Herring4201d052017-10-03 11:37:04 -05001729 return;
1730 }
1731
1732 prop = get_property(irq_node, "#interrupt-cells");
1733 if (!prop) {
Rob Herring3eb619b2020-06-29 12:15:13 -06001734 /* We warn about that already in another test. */
Rob Herring4201d052017-10-03 11:37:04 -05001735 return;
1736 }
1737
1738 irq_cells = propval_cell(prop);
Rob Herringa77725a2021-10-25 11:05:45 -05001739 if (!is_multiple_of(irq_prop->val.len, irq_cells * sizeof(cell_t))) {
Rob Herring9130ba82018-02-27 17:40:38 -06001740 FAIL_PROP(c, dti, node, prop,
1741 "size is (%d), expected multiple of %d",
1742 irq_prop->val.len, (int)(irq_cells * sizeof(cell_t)));
Rob Herring4201d052017-10-03 11:37:04 -05001743 }
1744}
1745WARNING(interrupts_property, check_interrupts_property, &phandle_references);
1746
Rob Herring50aafd62018-05-08 13:07:49 -05001747static const struct bus_type graph_port_bus = {
1748 .name = "graph-port",
1749};
1750
1751static const struct bus_type graph_ports_bus = {
1752 .name = "graph-ports",
1753};
1754
1755static void check_graph_nodes(struct check *c, struct dt_info *dti,
1756 struct node *node)
1757{
1758 struct node *child;
1759
1760 for_each_child(node, child) {
1761 if (!(strprefixeq(child->name, child->basenamelen, "endpoint") ||
1762 get_property(child, "remote-endpoint")))
1763 continue;
1764
1765 node->bus = &graph_port_bus;
1766
1767 /* The parent of 'port' nodes can be either 'ports' or a device */
1768 if (!node->parent->bus &&
1769 (streq(node->parent->name, "ports") || get_property(node, "reg")))
1770 node->parent->bus = &graph_ports_bus;
1771
1772 break;
1773 }
1774
1775}
1776WARNING(graph_nodes, check_graph_nodes, NULL);
1777
1778static void check_graph_child_address(struct check *c, struct dt_info *dti,
1779 struct node *node)
1780{
1781 int cnt = 0;
1782 struct node *child;
1783
1784 if (node->bus != &graph_ports_bus && node->bus != &graph_port_bus)
1785 return;
1786
1787 for_each_child(node, child) {
1788 struct property *prop = get_property(child, "reg");
1789
1790 /* No error if we have any non-zero unit address */
1791 if (prop && propval_cell(prop) != 0)
1792 return;
1793
1794 cnt++;
1795 }
1796
1797 if (cnt == 1 && node->addr_cells != -1)
1798 FAIL(c, dti, node, "graph node has single child node '%s', #address-cells/#size-cells are not necessary",
1799 node->children->name);
1800}
1801WARNING(graph_child_address, check_graph_child_address, NULL, &graph_nodes);
1802
1803static void check_graph_reg(struct check *c, struct dt_info *dti,
1804 struct node *node)
1805{
1806 char unit_addr[9];
1807 const char *unitname = get_unitname(node);
1808 struct property *prop;
1809
1810 prop = get_property(node, "reg");
1811 if (!prop || !unitname)
1812 return;
1813
1814 if (!(prop->val.val && prop->val.len == sizeof(cell_t))) {
1815 FAIL(c, dti, node, "graph node malformed 'reg' property");
1816 return;
1817 }
1818
1819 snprintf(unit_addr, sizeof(unit_addr), "%x", propval_cell(prop));
1820 if (!streq(unitname, unit_addr))
1821 FAIL(c, dti, node, "graph node unit address error, expected \"%s\"",
1822 unit_addr);
1823
1824 if (node->parent->addr_cells != 1)
1825 FAIL_PROP(c, dti, node, get_property(node, "#address-cells"),
1826 "graph node '#address-cells' is %d, must be 1",
1827 node->parent->addr_cells);
1828 if (node->parent->size_cells != 0)
1829 FAIL_PROP(c, dti, node, get_property(node, "#size-cells"),
1830 "graph node '#size-cells' is %d, must be 0",
1831 node->parent->size_cells);
1832}
1833
1834static void check_graph_port(struct check *c, struct dt_info *dti,
1835 struct node *node)
1836{
1837 if (node->bus != &graph_port_bus)
1838 return;
1839
1840 if (!strprefixeq(node->name, node->basenamelen, "port"))
1841 FAIL(c, dti, node, "graph port node name should be 'port'");
1842
1843 check_graph_reg(c, dti, node);
1844}
1845WARNING(graph_port, check_graph_port, NULL, &graph_nodes);
1846
1847static struct node *get_remote_endpoint(struct check *c, struct dt_info *dti,
1848 struct node *endpoint)
1849{
Rob Herringa77725a2021-10-25 11:05:45 -05001850 cell_t phandle;
Rob Herring50aafd62018-05-08 13:07:49 -05001851 struct node *node;
1852 struct property *prop;
1853
1854 prop = get_property(endpoint, "remote-endpoint");
1855 if (!prop)
1856 return NULL;
1857
1858 phandle = propval_cell(prop);
1859 /* Give up if this is an overlay with external references */
Rob Herringa77725a2021-10-25 11:05:45 -05001860 if (!phandle_is_valid(phandle))
Rob Herring50aafd62018-05-08 13:07:49 -05001861 return NULL;
1862
1863 node = get_node_by_phandle(dti->dt, phandle);
1864 if (!node)
1865 FAIL_PROP(c, dti, endpoint, prop, "graph phandle is not valid");
1866
1867 return node;
1868}
1869
1870static void check_graph_endpoint(struct check *c, struct dt_info *dti,
1871 struct node *node)
1872{
1873 struct node *remote_node;
1874
1875 if (!node->parent || node->parent->bus != &graph_port_bus)
1876 return;
1877
1878 if (!strprefixeq(node->name, node->basenamelen, "endpoint"))
Rob Herring9bb9c6a2019-06-12 07:05:52 -06001879 FAIL(c, dti, node, "graph endpoint node name should be 'endpoint'");
Rob Herring50aafd62018-05-08 13:07:49 -05001880
1881 check_graph_reg(c, dti, node);
1882
1883 remote_node = get_remote_endpoint(c, dti, node);
1884 if (!remote_node)
1885 return;
1886
1887 if (get_remote_endpoint(c, dti, remote_node) != node)
1888 FAIL(c, dti, node, "graph connection to node '%s' is not bidirectional",
1889 remote_node->fullpath);
1890}
1891WARNING(graph_endpoint, check_graph_endpoint, NULL, &graph_nodes);
1892
David Gibsona4da2e32007-12-18 15:06:42 +11001893static struct check *check_table[] = {
1894 &duplicate_node_names, &duplicate_property_names,
David Gibsoned95d742008-08-07 12:24:17 +10001895 &node_name_chars, &node_name_format, &property_name_chars,
Rob Herringa77725a2021-10-25 11:05:45 -05001896 &name_is_string, &name_properties, &node_name_vs_property_name,
John Bonesio658f29a2010-11-17 15:28:20 -08001897
1898 &duplicate_label,
1899
David Gibsona4da2e32007-12-18 15:06:42 +11001900 &explicit_phandles,
1901 &phandle_references, &path_references,
Rob Herring50aafd62018-05-08 13:07:49 -05001902 &omit_unused_nodes,
David Gibsona4da2e32007-12-18 15:06:42 +11001903
Rob Herringa77725a2021-10-25 11:05:45 -05001904 &address_cells_is_cell, &size_cells_is_cell,
David Gibsona4da2e32007-12-18 15:06:42 +11001905 &device_type_is_string, &model_is_string, &status_is_string,
Rob Herring9130ba82018-02-27 17:40:38 -06001906 &label_is_string,
1907
1908 &compatible_is_string_list, &names_is_string_list,
David Gibsona4da2e32007-12-18 15:06:42 +11001909
Rob Herring89d12312017-03-21 09:01:08 -05001910 &property_name_chars_strict,
1911 &node_name_chars_strict,
1912
Rob Herringd047cd82020-03-13 08:56:58 -05001913 &addr_size_cells, &reg_format, &ranges_format, &dma_ranges_format,
David Gibsona4da2e32007-12-18 15:06:42 +11001914
Rob Herringb9937342016-03-04 08:56:58 -06001915 &unit_address_vs_reg,
Rob Herring89d12312017-03-21 09:01:08 -05001916 &unit_address_format,
1917
1918 &pci_bridge,
1919 &pci_device_reg,
1920 &pci_device_bus_num,
1921
1922 &simple_bus_bridge,
1923 &simple_bus_reg,
Rob Herringb9937342016-03-04 08:56:58 -06001924
Rob Herringf8589272018-09-13 08:59:25 -05001925 &i2c_bus_bridge,
1926 &i2c_bus_reg,
1927
1928 &spi_bus_bridge,
1929 &spi_bus_reg,
1930
David Gibsona4da2e32007-12-18 15:06:42 +11001931 &avoid_default_addr_size,
Rob Herring9130ba82018-02-27 17:40:38 -06001932 &avoid_unnecessary_addr_size,
Rob Herring50aafd62018-05-08 13:07:49 -05001933 &unique_unit_address,
Rob Herring9bb9c6a2019-06-12 07:05:52 -06001934 &unique_unit_address_if_enabled,
David Gibsona4da2e32007-12-18 15:06:42 +11001935 &obsolete_chosen_interrupt_controller,
Rob Herring9130ba82018-02-27 17:40:38 -06001936 &chosen_node_is_root, &chosen_node_bootargs, &chosen_node_stdout_path,
Stephen Warrencd296722012-09-28 21:25:59 +00001937
Rob Herring4201d052017-10-03 11:37:04 -05001938 &clocks_property,
Rob Herringa77725a2021-10-25 11:05:45 -05001939 &clocks_is_cell,
Rob Herring4201d052017-10-03 11:37:04 -05001940 &cooling_device_property,
Rob Herringa77725a2021-10-25 11:05:45 -05001941 &cooling_device_is_cell,
Rob Herring4201d052017-10-03 11:37:04 -05001942 &dmas_property,
Rob Herringa77725a2021-10-25 11:05:45 -05001943 &dmas_is_cell,
Rob Herring4201d052017-10-03 11:37:04 -05001944 &hwlocks_property,
Rob Herringa77725a2021-10-25 11:05:45 -05001945 &hwlocks_is_cell,
Rob Herring4201d052017-10-03 11:37:04 -05001946 &interrupts_extended_property,
Rob Herringa77725a2021-10-25 11:05:45 -05001947 &interrupts_extended_is_cell,
Rob Herring4201d052017-10-03 11:37:04 -05001948 &io_channels_property,
Rob Herringa77725a2021-10-25 11:05:45 -05001949 &io_channels_is_cell,
Rob Herring4201d052017-10-03 11:37:04 -05001950 &iommus_property,
Rob Herringa77725a2021-10-25 11:05:45 -05001951 &iommus_is_cell,
Rob Herring4201d052017-10-03 11:37:04 -05001952 &mboxes_property,
Rob Herringa77725a2021-10-25 11:05:45 -05001953 &mboxes_is_cell,
Rob Herring4201d052017-10-03 11:37:04 -05001954 &msi_parent_property,
Rob Herringa77725a2021-10-25 11:05:45 -05001955 &msi_parent_is_cell,
Rob Herring4201d052017-10-03 11:37:04 -05001956 &mux_controls_property,
Rob Herringa77725a2021-10-25 11:05:45 -05001957 &mux_controls_is_cell,
Rob Herring4201d052017-10-03 11:37:04 -05001958 &phys_property,
Rob Herringa77725a2021-10-25 11:05:45 -05001959 &phys_is_cell,
Rob Herring4201d052017-10-03 11:37:04 -05001960 &power_domains_property,
Rob Herringa77725a2021-10-25 11:05:45 -05001961 &power_domains_is_cell,
Rob Herring4201d052017-10-03 11:37:04 -05001962 &pwms_property,
Rob Herringa77725a2021-10-25 11:05:45 -05001963 &pwms_is_cell,
Rob Herring4201d052017-10-03 11:37:04 -05001964 &resets_property,
Rob Herringa77725a2021-10-25 11:05:45 -05001965 &resets_is_cell,
Rob Herring9130ba82018-02-27 17:40:38 -06001966 &sound_dai_property,
Rob Herringa77725a2021-10-25 11:05:45 -05001967 &sound_dai_is_cell,
Rob Herring4201d052017-10-03 11:37:04 -05001968 &thermal_sensors_property,
Rob Herringa77725a2021-10-25 11:05:45 -05001969 &thermal_sensors_is_cell,
Rob Herring4201d052017-10-03 11:37:04 -05001970
1971 &deprecated_gpio_property,
1972 &gpios_property,
1973 &interrupts_property,
Rob Herring3eb619b2020-06-29 12:15:13 -06001974 &interrupt_provider,
Rob Herringa77725a2021-10-25 11:05:45 -05001975 &interrupt_map,
Rob Herring4201d052017-10-03 11:37:04 -05001976
Rob Herring9130ba82018-02-27 17:40:38 -06001977 &alias_paths,
1978
Rob Herring50aafd62018-05-08 13:07:49 -05001979 &graph_nodes, &graph_child_address, &graph_port, &graph_endpoint,
1980
Stephen Warrencd296722012-09-28 21:25:59 +00001981 &always_fail,
David Gibsona4da2e32007-12-18 15:06:42 +11001982};
1983
Stephen Warrencd296722012-09-28 21:25:59 +00001984static void enable_warning_error(struct check *c, bool warn, bool error)
1985{
1986 int i;
1987
1988 /* Raising level, also raise it for prereqs */
1989 if ((warn && !c->warn) || (error && !c->error))
1990 for (i = 0; i < c->num_prereqs; i++)
1991 enable_warning_error(c->prereq[i], warn, error);
1992
1993 c->warn = c->warn || warn;
1994 c->error = c->error || error;
1995}
1996
1997static void disable_warning_error(struct check *c, bool warn, bool error)
1998{
Rob Herringa77725a2021-10-25 11:05:45 -05001999 unsigned int i;
Stephen Warrencd296722012-09-28 21:25:59 +00002000
2001 /* Lowering level, also lower it for things this is the prereq
2002 * for */
2003 if ((warn && c->warn) || (error && c->error)) {
2004 for (i = 0; i < ARRAY_SIZE(check_table); i++) {
2005 struct check *cc = check_table[i];
2006 int j;
2007
2008 for (j = 0; j < cc->num_prereqs; j++)
2009 if (cc->prereq[j] == c)
2010 disable_warning_error(cc, warn, error);
2011 }
2012 }
2013
2014 c->warn = c->warn && !warn;
2015 c->error = c->error && !error;
2016}
2017
Rob Herring47605972015-04-29 16:00:05 -05002018void parse_checks_option(bool warn, bool error, const char *arg)
Stephen Warrencd296722012-09-28 21:25:59 +00002019{
Rob Herringa77725a2021-10-25 11:05:45 -05002020 unsigned int i;
Rob Herring47605972015-04-29 16:00:05 -05002021 const char *name = arg;
Stephen Warrencd296722012-09-28 21:25:59 +00002022 bool enable = true;
2023
Rob Herring47605972015-04-29 16:00:05 -05002024 if ((strncmp(arg, "no-", 3) == 0)
2025 || (strncmp(arg, "no_", 3) == 0)) {
2026 name = arg + 3;
Stephen Warrencd296722012-09-28 21:25:59 +00002027 enable = false;
2028 }
2029
2030 for (i = 0; i < ARRAY_SIZE(check_table); i++) {
2031 struct check *c = check_table[i];
2032
2033 if (streq(c->name, name)) {
2034 if (enable)
2035 enable_warning_error(c, warn, error);
2036 else
2037 disable_warning_error(c, warn, error);
2038 return;
2039 }
2040 }
2041
2042 die("Unrecognized check name \"%s\"\n", name);
2043}
2044
Rob Herring6f05afc2017-01-04 10:45:20 -06002045void process_checks(bool force, struct dt_info *dti)
David Gibsona4da2e32007-12-18 15:06:42 +11002046{
Rob Herringa77725a2021-10-25 11:05:45 -05002047 unsigned int i;
David Gibsona4da2e32007-12-18 15:06:42 +11002048 int error = 0;
2049
2050 for (i = 0; i < ARRAY_SIZE(check_table); i++) {
2051 struct check *c = check_table[i];
2052
Stephen Warrencd296722012-09-28 21:25:59 +00002053 if (c->warn || c->error)
Rob Herring6f05afc2017-01-04 10:45:20 -06002054 error = error || run_check(c, dti);
David Gibsona4da2e32007-12-18 15:06:42 +11002055 }
2056
2057 if (error) {
2058 if (!force) {
2059 fprintf(stderr, "ERROR: Input tree has errors, aborting "
2060 "(use -f to force output)\n");
2061 exit(2);
2062 } else if (quiet < 3) {
2063 fprintf(stderr, "Warning: Input tree has errors, "
2064 "output forced\n");
2065 }
2066 }
David Gibsona4da2e32007-12-18 15:06:42 +11002067}