1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * (C) Copyright David Gibson <dwg@au1.ibm.com>, IBM Corporation. 2007.
10 #define TRACE(c, ...) \
12 fprintf(stderr, "=== %s: ", (c)->name); \
13 fprintf(stderr, __VA_ARGS__); \
14 fprintf(stderr, "\n"); \
17 #define TRACE(c, fmt, ...) do { } while (0)
29 typedef void (*check_fn
)(struct check
*c
, struct dt_info
*dti
, struct node
*node
);
36 enum checkstatus status
;
39 struct check
**prereq
;
42 #define CHECK_ENTRY(nm_, fn_, d_, w_, e_, ...) \
43 static struct check *nm_##_prereqs[] = { __VA_ARGS__ }; \
44 static struct check nm_ = { \
50 .status = UNCHECKED, \
51 .num_prereqs = ARRAY_SIZE(nm_##_prereqs), \
52 .prereq = nm_##_prereqs, \
54 #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__)
61 static inline void PRINTF(5, 6) check_msg(struct check
*c
, struct dt_info
*dti
,
63 struct property
*prop
,
68 struct srcpos
*pos
= NULL
;
71 if (!(c
->warn
&& (quiet
< 1)) && !(c
->error
&& (quiet
< 2)))
74 if (prop
&& prop
->srcpos
)
76 else if (node
&& node
->srcpos
)
80 file_str
= srcpos_string(pos
);
81 xasprintf(&str
, "%s", file_str
);
83 } else if (streq(dti
->outname
, "-")) {
84 xasprintf(&str
, "<stdout>");
86 xasprintf(&str
, "%s", dti
->outname
);
89 xasprintf_append(&str
, ": %s (%s): ",
90 (c
->error
) ? "ERROR" : "Warning", c
->name
);
94 xasprintf_append(&str
, "%s:%s: ", node
->fullpath
, prop
->name
);
96 xasprintf_append(&str
, "%s: ", node
->fullpath
);
100 xavsprintf_append(&str
, fmt
, ap
);
103 xasprintf_append(&str
, "\n");
110 file_str
= srcpos_string(pos
);
111 xasprintf_append(&str
, " also defined at %s\n", file_str
);
119 #define FAIL(c, dti, node, ...) \
121 TRACE((c), "\t\tFAILED at %s:%d", __FILE__, __LINE__); \
122 (c)->status = FAILED; \
123 check_msg((c), dti, node, NULL, __VA_ARGS__); \
126 #define FAIL_PROP(c, dti, node, prop, ...) \
128 TRACE((c), "\t\tFAILED at %s:%d", __FILE__, __LINE__); \
129 (c)->status = FAILED; \
130 check_msg((c), dti, node, prop, __VA_ARGS__); \
134 static void check_nodes_props(struct check
*c
, struct dt_info
*dti
, struct node
*node
)
138 TRACE(c
, "%s", node
->fullpath
);
142 for_each_child(node
, child
)
143 check_nodes_props(c
, dti
, child
);
146 static bool run_check(struct check
*c
, struct dt_info
*dti
)
148 struct node
*dt
= dti
->dt
;
152 assert(!c
->inprogress
);
154 if (c
->status
!= UNCHECKED
)
157 c
->inprogress
= true;
159 for (i
= 0; i
< c
->num_prereqs
; i
++) {
160 struct check
*prq
= c
->prereq
[i
];
161 error
= error
|| run_check(prq
, dti
);
162 if (prq
->status
!= PASSED
) {
164 check_msg(c
, dti
, NULL
, NULL
, "Failed prerequisite '%s'",
169 if (c
->status
!= UNCHECKED
)
172 check_nodes_props(c
, dti
, dt
);
174 if (c
->status
== UNCHECKED
)
177 TRACE(c
, "\tCompleted, status %d", c
->status
);
180 c
->inprogress
= false;
181 if ((c
->status
!= PASSED
) && (c
->error
))
187 * Utility check functions
190 /* A check which always fails, for testing purposes only */
191 static inline void check_always_fail(struct check
*c
, struct dt_info
*dti
,
194 FAIL(c
, dti
, node
, "always_fail check");
196 CHECK(always_fail
, check_always_fail
, NULL
);
198 static void check_is_string(struct check
*c
, struct dt_info
*dti
,
201 struct property
*prop
;
202 char *propname
= c
->data
;
204 prop
= get_property(node
, propname
);
206 return; /* Not present, assumed ok */
208 if (!data_is_one_string(prop
->val
))
209 FAIL_PROP(c
, dti
, node
, prop
, "property is not a string");
211 #define WARNING_IF_NOT_STRING(nm, propname) \
212 WARNING(nm, check_is_string, (propname))
213 #define ERROR_IF_NOT_STRING(nm, propname) \
214 ERROR(nm, check_is_string, (propname))
216 static void check_is_string_list(struct check
*c
, struct dt_info
*dti
,
220 struct property
*prop
;
221 char *propname
= c
->data
;
224 prop
= get_property(node
, propname
);
226 return; /* Not present, assumed ok */
231 l
= strnlen(str
, rem
);
233 FAIL_PROP(c
, dti
, node
, prop
, "property is not a string list");
240 #define WARNING_IF_NOT_STRING_LIST(nm, propname) \
241 WARNING(nm, check_is_string_list, (propname))
242 #define ERROR_IF_NOT_STRING_LIST(nm, propname) \
243 ERROR(nm, check_is_string_list, (propname))
245 static void check_is_cell(struct check
*c
, struct dt_info
*dti
,
248 struct property
*prop
;
249 char *propname
= c
->data
;
251 prop
= get_property(node
, propname
);
253 return; /* Not present, assumed ok */
255 if (prop
->val
.len
!= sizeof(cell_t
))
256 FAIL_PROP(c
, dti
, node
, prop
, "property is not a single cell");
258 #define WARNING_IF_NOT_CELL(nm, propname) \
259 WARNING(nm, check_is_cell, (propname))
260 #define ERROR_IF_NOT_CELL(nm, propname) \
261 ERROR(nm, check_is_cell, (propname))
264 * Structural check functions
267 static void check_duplicate_node_names(struct check
*c
, struct dt_info
*dti
,
270 struct node
*child
, *child2
;
272 for_each_child(node
, child
)
273 for (child2
= child
->next_sibling
;
275 child2
= child2
->next_sibling
)
276 if (streq(child
->name
, child2
->name
))
277 FAIL(c
, dti
, child2
, "Duplicate node name");
279 ERROR(duplicate_node_names
, check_duplicate_node_names
, NULL
);
281 static void check_duplicate_property_names(struct check
*c
, struct dt_info
*dti
,
284 struct property
*prop
, *prop2
;
286 for_each_property(node
, prop
) {
287 for (prop2
= prop
->next
; prop2
; prop2
= prop2
->next
) {
290 if (streq(prop
->name
, prop2
->name
))
291 FAIL_PROP(c
, dti
, node
, prop
, "Duplicate property name");
295 ERROR(duplicate_property_names
, check_duplicate_property_names
, NULL
);
297 #define LOWERCASE "abcdefghijklmnopqrstuvwxyz"
298 #define UPPERCASE "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
299 #define DIGITS "0123456789"
300 #define PROPNODECHARS LOWERCASE UPPERCASE DIGITS ",._+*#?-"
301 #define PROPNODECHARSSTRICT LOWERCASE UPPERCASE DIGITS ",-"
303 static void check_node_name_chars(struct check
*c
, struct dt_info
*dti
,
306 int n
= strspn(node
->name
, c
->data
);
308 if (n
< strlen(node
->name
))
309 FAIL(c
, dti
, node
, "Bad character '%c' in node name",
312 ERROR(node_name_chars
, check_node_name_chars
, PROPNODECHARS
"@");
314 static void check_node_name_chars_strict(struct check
*c
, struct dt_info
*dti
,
317 int n
= strspn(node
->name
, c
->data
);
319 if (n
< node
->basenamelen
)
320 FAIL(c
, dti
, node
, "Character '%c' not recommended in node name",
323 CHECK(node_name_chars_strict
, check_node_name_chars_strict
, PROPNODECHARSSTRICT
);
325 static void check_node_name_format(struct check
*c
, struct dt_info
*dti
,
328 if (strchr(get_unitname(node
), '@'))
329 FAIL(c
, dti
, node
, "multiple '@' characters in node name");
331 ERROR(node_name_format
, check_node_name_format
, NULL
, &node_name_chars
);
333 static void check_unit_address_vs_reg(struct check
*c
, struct dt_info
*dti
,
336 const char *unitname
= get_unitname(node
);
337 struct property
*prop
= get_property(node
, "reg");
339 if (get_subnode(node
, "__overlay__")) {
340 /* HACK: Overlay fragments are a special case */
345 prop
= get_property(node
, "ranges");
346 if (prop
&& !prop
->val
.len
)
352 FAIL(c
, dti
, node
, "node has a reg or ranges property, but no unit name");
355 FAIL(c
, dti
, node
, "node has a unit name, but no reg property");
358 WARNING(unit_address_vs_reg
, check_unit_address_vs_reg
, NULL
);
360 static void check_property_name_chars(struct check
*c
, struct dt_info
*dti
,
363 struct property
*prop
;
365 for_each_property(node
, prop
) {
366 int n
= strspn(prop
->name
, c
->data
);
368 if (n
< strlen(prop
->name
))
369 FAIL_PROP(c
, dti
, node
, prop
, "Bad character '%c' in property name",
373 ERROR(property_name_chars
, check_property_name_chars
, PROPNODECHARS
);
375 static void check_property_name_chars_strict(struct check
*c
,
379 struct property
*prop
;
381 for_each_property(node
, prop
) {
382 const char *name
= prop
->name
;
383 int n
= strspn(name
, c
->data
);
385 if (n
== strlen(prop
->name
))
388 /* Certain names are whitelisted */
389 if (streq(name
, "device_type"))
393 * # is only allowed at the beginning of property names not counting
396 if (name
[n
] == '#' && ((n
== 0) || (name
[n
-1] == ','))) {
398 n
= strspn(name
, c
->data
);
400 if (n
< strlen(name
))
401 FAIL_PROP(c
, dti
, node
, prop
, "Character '%c' not recommended in property name",
405 CHECK(property_name_chars_strict
, check_property_name_chars_strict
, PROPNODECHARSSTRICT
);
407 #define DESCLABEL_FMT "%s%s%s%s%s"
408 #define DESCLABEL_ARGS(node,prop,mark) \
409 ((mark) ? "value of " : ""), \
410 ((prop) ? "'" : ""), \
411 ((prop) ? (prop)->name : ""), \
412 ((prop) ? "' in " : ""), (node)->fullpath
414 static void check_duplicate_label(struct check
*c
, struct dt_info
*dti
,
415 const char *label
, struct node
*node
,
416 struct property
*prop
, struct marker
*mark
)
418 struct node
*dt
= dti
->dt
;
419 struct node
*othernode
= NULL
;
420 struct property
*otherprop
= NULL
;
421 struct marker
*othermark
= NULL
;
423 othernode
= get_node_by_label(dt
, label
);
426 otherprop
= get_property_by_label(dt
, label
, &othernode
);
428 othermark
= get_marker_label(dt
, label
, &othernode
,
434 if ((othernode
!= node
) || (otherprop
!= prop
) || (othermark
!= mark
))
435 FAIL(c
, dti
, node
, "Duplicate label '%s' on " DESCLABEL_FMT
436 " and " DESCLABEL_FMT
,
437 label
, DESCLABEL_ARGS(node
, prop
, mark
),
438 DESCLABEL_ARGS(othernode
, otherprop
, othermark
));
441 static void check_duplicate_label_node(struct check
*c
, struct dt_info
*dti
,
445 struct property
*prop
;
447 for_each_label(node
->labels
, l
)
448 check_duplicate_label(c
, dti
, l
->label
, node
, NULL
, NULL
);
450 for_each_property(node
, prop
) {
451 struct marker
*m
= prop
->val
.markers
;
453 for_each_label(prop
->labels
, l
)
454 check_duplicate_label(c
, dti
, l
->label
, node
, prop
, NULL
);
456 for_each_marker_of_type(m
, LABEL
)
457 check_duplicate_label(c
, dti
, m
->ref
, node
, prop
, m
);
460 ERROR(duplicate_label
, check_duplicate_label_node
, NULL
);
462 static cell_t
check_phandle_prop(struct check
*c
, struct dt_info
*dti
,
463 struct node
*node
, const char *propname
)
465 struct node
*root
= dti
->dt
;
466 struct property
*prop
;
470 prop
= get_property(node
, propname
);
474 if (prop
->val
.len
!= sizeof(cell_t
)) {
475 FAIL_PROP(c
, dti
, node
, prop
, "bad length (%d) %s property",
476 prop
->val
.len
, prop
->name
);
480 m
= prop
->val
.markers
;
481 for_each_marker_of_type(m
, REF_PHANDLE
) {
482 assert(m
->offset
== 0);
483 if (node
!= get_node_by_ref(root
, m
->ref
))
484 /* "Set this node's phandle equal to some
485 * other node's phandle". That's nonsensical
486 * by construction. */ {
487 FAIL(c
, dti
, node
, "%s is a reference to another node",
490 /* But setting this node's phandle equal to its own
491 * phandle is allowed - that means allocate a unique
492 * phandle for this node, even if it's not otherwise
493 * referenced. The value will be filled in later, so
494 * we treat it as having no phandle data for now. */
498 phandle
= propval_cell(prop
);
500 if ((phandle
== 0) || (phandle
== -1)) {
501 FAIL_PROP(c
, dti
, node
, prop
, "bad value (0x%x) in %s property",
502 phandle
, prop
->name
);
509 static void check_explicit_phandles(struct check
*c
, struct dt_info
*dti
,
512 struct node
*root
= dti
->dt
;
514 cell_t phandle
, linux_phandle
;
516 /* Nothing should have assigned phandles yet */
517 assert(!node
->phandle
);
519 phandle
= check_phandle_prop(c
, dti
, node
, "phandle");
521 linux_phandle
= check_phandle_prop(c
, dti
, node
, "linux,phandle");
523 if (!phandle
&& !linux_phandle
)
524 /* No valid phandles; nothing further to check */
527 if (linux_phandle
&& phandle
&& (phandle
!= linux_phandle
))
528 FAIL(c
, dti
, node
, "mismatching 'phandle' and 'linux,phandle'"
531 if (linux_phandle
&& !phandle
)
532 phandle
= linux_phandle
;
534 other
= get_node_by_phandle(root
, phandle
);
535 if (other
&& (other
!= node
)) {
536 FAIL(c
, dti
, node
, "duplicated phandle 0x%x (seen before at %s)",
537 phandle
, other
->fullpath
);
541 node
->phandle
= phandle
;
543 ERROR(explicit_phandles
, check_explicit_phandles
, NULL
);
545 static void check_name_properties(struct check
*c
, struct dt_info
*dti
,
548 struct property
**pp
, *prop
= NULL
;
550 for (pp
= &node
->proplist
; *pp
; pp
= &((*pp
)->next
))
551 if (streq((*pp
)->name
, "name")) {
557 return; /* No name property, that's fine */
559 if ((prop
->val
.len
!= node
->basenamelen
+1)
560 || (memcmp(prop
->val
.val
, node
->name
, node
->basenamelen
) != 0)) {
561 FAIL(c
, dti
, node
, "\"name\" property is incorrect (\"%s\" instead"
562 " of base node name)", prop
->val
.val
);
564 /* The name property is correct, and therefore redundant.
568 data_free(prop
->val
);
572 ERROR_IF_NOT_STRING(name_is_string
, "name");
573 ERROR(name_properties
, check_name_properties
, NULL
, &name_is_string
);
576 * Reference fixup functions
579 static void fixup_phandle_references(struct check
*c
, struct dt_info
*dti
,
582 struct node
*dt
= dti
->dt
;
583 struct property
*prop
;
585 for_each_property(node
, prop
) {
586 struct marker
*m
= prop
->val
.markers
;
587 struct node
*refnode
;
590 for_each_marker_of_type(m
, REF_PHANDLE
) {
591 assert(m
->offset
+ sizeof(cell_t
) <= prop
->val
.len
);
593 refnode
= get_node_by_ref(dt
, m
->ref
);
595 if (!(dti
->dtsflags
& DTSF_PLUGIN
))
596 FAIL(c
, dti
, node
, "Reference to non-existent node or "
597 "label \"%s\"\n", m
->ref
);
598 else /* mark the entry as unresolved */
599 *((fdt32_t
*)(prop
->val
.val
+ m
->offset
)) =
600 cpu_to_fdt32(0xffffffff);
604 phandle
= get_node_phandle(dt
, refnode
);
605 *((fdt32_t
*)(prop
->val
.val
+ m
->offset
)) = cpu_to_fdt32(phandle
);
607 reference_node(refnode
);
611 ERROR(phandle_references
, fixup_phandle_references
, NULL
,
612 &duplicate_node_names
, &explicit_phandles
);
614 static void fixup_path_references(struct check
*c
, struct dt_info
*dti
,
617 struct node
*dt
= dti
->dt
;
618 struct property
*prop
;
620 for_each_property(node
, prop
) {
621 struct marker
*m
= prop
->val
.markers
;
622 struct node
*refnode
;
625 for_each_marker_of_type(m
, REF_PATH
) {
626 assert(m
->offset
<= prop
->val
.len
);
628 refnode
= get_node_by_ref(dt
, m
->ref
);
630 FAIL(c
, dti
, node
, "Reference to non-existent node or label \"%s\"\n",
635 path
= refnode
->fullpath
;
636 prop
->val
= data_insert_at_marker(prop
->val
, m
, path
,
639 reference_node(refnode
);
643 ERROR(path_references
, fixup_path_references
, NULL
, &duplicate_node_names
);
645 static void fixup_omit_unused_nodes(struct check
*c
, struct dt_info
*dti
,
648 if (generate_symbols
&& node
->labels
)
650 if (node
->omit_if_unused
&& !node
->is_referenced
)
653 ERROR(omit_unused_nodes
, fixup_omit_unused_nodes
, NULL
, &phandle_references
, &path_references
);
658 WARNING_IF_NOT_CELL(address_cells_is_cell
, "#address-cells");
659 WARNING_IF_NOT_CELL(size_cells_is_cell
, "#size-cells");
660 WARNING_IF_NOT_CELL(interrupt_cells_is_cell
, "#interrupt-cells");
662 WARNING_IF_NOT_STRING(device_type_is_string
, "device_type");
663 WARNING_IF_NOT_STRING(model_is_string
, "model");
664 WARNING_IF_NOT_STRING(status_is_string
, "status");
665 WARNING_IF_NOT_STRING(label_is_string
, "label");
667 WARNING_IF_NOT_STRING_LIST(compatible_is_string_list
, "compatible");
669 static void check_names_is_string_list(struct check
*c
, struct dt_info
*dti
,
672 struct property
*prop
;
674 for_each_property(node
, prop
) {
675 const char *s
= strrchr(prop
->name
, '-');
676 if (!s
|| !streq(s
, "-names"))
679 c
->data
= prop
->name
;
680 check_is_string_list(c
, dti
, node
);
683 WARNING(names_is_string_list
, check_names_is_string_list
, NULL
);
685 static void check_alias_paths(struct check
*c
, struct dt_info
*dti
,
688 struct property
*prop
;
690 if (!streq(node
->name
, "aliases"))
693 for_each_property(node
, prop
) {
694 if (!prop
->val
.val
|| !get_node_by_path(dti
->dt
, prop
->val
.val
)) {
695 FAIL_PROP(c
, dti
, node
, prop
, "aliases property is not a valid node (%s)",
699 if (strspn(prop
->name
, LOWERCASE DIGITS
"-") != strlen(prop
->name
))
700 FAIL(c
, dti
, node
, "aliases property name must include only lowercase and '-'");
703 WARNING(alias_paths
, check_alias_paths
, NULL
);
705 static void fixup_addr_size_cells(struct check
*c
, struct dt_info
*dti
,
708 struct property
*prop
;
710 node
->addr_cells
= -1;
711 node
->size_cells
= -1;
713 prop
= get_property(node
, "#address-cells");
715 node
->addr_cells
= propval_cell(prop
);
717 prop
= get_property(node
, "#size-cells");
719 node
->size_cells
= propval_cell(prop
);
721 WARNING(addr_size_cells
, fixup_addr_size_cells
, NULL
,
722 &address_cells_is_cell
, &size_cells_is_cell
);
724 #define node_addr_cells(n) \
725 (((n)->addr_cells == -1) ? 2 : (n)->addr_cells)
726 #define node_size_cells(n) \
727 (((n)->size_cells == -1) ? 1 : (n)->size_cells)
729 static void check_reg_format(struct check
*c
, struct dt_info
*dti
,
732 struct property
*prop
;
733 int addr_cells
, size_cells
, entrylen
;
735 prop
= get_property(node
, "reg");
737 return; /* No "reg", that's fine */
740 FAIL(c
, dti
, node
, "Root node has a \"reg\" property");
744 if (prop
->val
.len
== 0)
745 FAIL_PROP(c
, dti
, node
, prop
, "property is empty");
747 addr_cells
= node_addr_cells(node
->parent
);
748 size_cells
= node_size_cells(node
->parent
);
749 entrylen
= (addr_cells
+ size_cells
) * sizeof(cell_t
);
751 if (!entrylen
|| (prop
->val
.len
% entrylen
) != 0)
752 FAIL_PROP(c
, dti
, node
, prop
, "property has invalid length (%d bytes) "
753 "(#address-cells == %d, #size-cells == %d)",
754 prop
->val
.len
, addr_cells
, size_cells
);
756 WARNING(reg_format
, check_reg_format
, NULL
, &addr_size_cells
);
758 static void check_ranges_format(struct check
*c
, struct dt_info
*dti
,
761 struct property
*prop
;
762 int c_addr_cells
, p_addr_cells
, c_size_cells
, p_size_cells
, entrylen
;
764 prop
= get_property(node
, "ranges");
769 FAIL_PROP(c
, dti
, node
, prop
, "Root node has a \"ranges\" property");
773 p_addr_cells
= node_addr_cells(node
->parent
);
774 p_size_cells
= node_size_cells(node
->parent
);
775 c_addr_cells
= node_addr_cells(node
);
776 c_size_cells
= node_size_cells(node
);
777 entrylen
= (p_addr_cells
+ c_addr_cells
+ c_size_cells
) * sizeof(cell_t
);
779 if (prop
->val
.len
== 0) {
780 if (p_addr_cells
!= c_addr_cells
)
781 FAIL_PROP(c
, dti
, node
, prop
, "empty \"ranges\" property but its "
782 "#address-cells (%d) differs from %s (%d)",
783 c_addr_cells
, node
->parent
->fullpath
,
785 if (p_size_cells
!= c_size_cells
)
786 FAIL_PROP(c
, dti
, node
, prop
, "empty \"ranges\" property but its "
787 "#size-cells (%d) differs from %s (%d)",
788 c_size_cells
, node
->parent
->fullpath
,
790 } else if ((prop
->val
.len
% entrylen
) != 0) {
791 FAIL_PROP(c
, dti
, node
, prop
, "\"ranges\" property has invalid length (%d bytes) "
792 "(parent #address-cells == %d, child #address-cells == %d, "
793 "#size-cells == %d)", prop
->val
.len
,
794 p_addr_cells
, c_addr_cells
, c_size_cells
);
797 WARNING(ranges_format
, check_ranges_format
, NULL
, &addr_size_cells
);
799 static const struct bus_type pci_bus
= {
803 static void check_pci_bridge(struct check
*c
, struct dt_info
*dti
, struct node
*node
)
805 struct property
*prop
;
808 prop
= get_property(node
, "device_type");
809 if (!prop
|| !streq(prop
->val
.val
, "pci"))
812 node
->bus
= &pci_bus
;
814 if (!strprefixeq(node
->name
, node
->basenamelen
, "pci") &&
815 !strprefixeq(node
->name
, node
->basenamelen
, "pcie"))
816 FAIL(c
, dti
, node
, "node name is not \"pci\" or \"pcie\"");
818 prop
= get_property(node
, "ranges");
820 FAIL(c
, dti
, node
, "missing ranges for PCI bridge (or not a bridge)");
822 if (node_addr_cells(node
) != 3)
823 FAIL(c
, dti
, node
, "incorrect #address-cells for PCI bridge");
824 if (node_size_cells(node
) != 2)
825 FAIL(c
, dti
, node
, "incorrect #size-cells for PCI bridge");
827 prop
= get_property(node
, "bus-range");
831 if (prop
->val
.len
!= (sizeof(cell_t
) * 2)) {
832 FAIL_PROP(c
, dti
, node
, prop
, "value must be 2 cells");
835 cells
= (cell_t
*)prop
->val
.val
;
836 if (fdt32_to_cpu(cells
[0]) > fdt32_to_cpu(cells
[1]))
837 FAIL_PROP(c
, dti
, node
, prop
, "1st cell must be less than or equal to 2nd cell");
838 if (fdt32_to_cpu(cells
[1]) > 0xff)
839 FAIL_PROP(c
, dti
, node
, prop
, "maximum bus number must be less than 256");
841 WARNING(pci_bridge
, check_pci_bridge
, NULL
,
842 &device_type_is_string
, &addr_size_cells
);
844 static void check_pci_device_bus_num(struct check
*c
, struct dt_info
*dti
, struct node
*node
)
846 struct property
*prop
;
847 unsigned int bus_num
, min_bus
, max_bus
;
850 if (!node
->parent
|| (node
->parent
->bus
!= &pci_bus
))
853 prop
= get_property(node
, "reg");
857 cells
= (cell_t
*)prop
->val
.val
;
858 bus_num
= (fdt32_to_cpu(cells
[0]) & 0x00ff0000) >> 16;
860 prop
= get_property(node
->parent
, "bus-range");
862 min_bus
= max_bus
= 0;
864 cells
= (cell_t
*)prop
->val
.val
;
865 min_bus
= fdt32_to_cpu(cells
[0]);
866 max_bus
= fdt32_to_cpu(cells
[0]);
868 if ((bus_num
< min_bus
) || (bus_num
> max_bus
))
869 FAIL_PROP(c
, dti
, node
, prop
, "PCI bus number %d out of range, expected (%d - %d)",
870 bus_num
, min_bus
, max_bus
);
872 WARNING(pci_device_bus_num
, check_pci_device_bus_num
, NULL
, ®_format
, &pci_bridge
);
874 static void check_pci_device_reg(struct check
*c
, struct dt_info
*dti
, struct node
*node
)
876 struct property
*prop
;
877 const char *unitname
= get_unitname(node
);
879 unsigned int dev
, func
, reg
;
882 if (!node
->parent
|| (node
->parent
->bus
!= &pci_bus
))
885 prop
= get_property(node
, "reg");
887 FAIL(c
, dti
, node
, "missing PCI reg property");
891 cells
= (cell_t
*)prop
->val
.val
;
892 if (cells
[1] || cells
[2])
893 FAIL_PROP(c
, dti
, node
, prop
, "PCI reg config space address cells 2 and 3 must be 0");
895 reg
= fdt32_to_cpu(cells
[0]);
896 dev
= (reg
& 0xf800) >> 11;
897 func
= (reg
& 0x700) >> 8;
899 if (reg
& 0xff000000)
900 FAIL_PROP(c
, dti
, node
, prop
, "PCI reg address is not configuration space");
901 if (reg
& 0x000000ff)
902 FAIL_PROP(c
, dti
, node
, prop
, "PCI reg config space address register number must be 0");
905 snprintf(unit_addr
, sizeof(unit_addr
), "%x", dev
);
906 if (streq(unitname
, unit_addr
))
910 snprintf(unit_addr
, sizeof(unit_addr
), "%x,%x", dev
, func
);
911 if (streq(unitname
, unit_addr
))
914 FAIL(c
, dti
, node
, "PCI unit address format error, expected \"%s\"",
917 WARNING(pci_device_reg
, check_pci_device_reg
, NULL
, ®_format
, &pci_bridge
);
919 static const struct bus_type simple_bus
= {
920 .name
= "simple-bus",
923 static bool node_is_compatible(struct node
*node
, const char *compat
)
925 struct property
*prop
;
926 const char *str
, *end
;
928 prop
= get_property(node
, "compatible");
932 for (str
= prop
->val
.val
, end
= str
+ prop
->val
.len
; str
< end
;
933 str
+= strnlen(str
, end
- str
) + 1) {
934 if (streq(str
, compat
))
940 static void check_simple_bus_bridge(struct check
*c
, struct dt_info
*dti
, struct node
*node
)
942 if (node_is_compatible(node
, "simple-bus"))
943 node
->bus
= &simple_bus
;
945 WARNING(simple_bus_bridge
, check_simple_bus_bridge
, NULL
,
946 &addr_size_cells
, &compatible_is_string_list
);
948 static void check_simple_bus_reg(struct check
*c
, struct dt_info
*dti
, struct node
*node
)
950 struct property
*prop
;
951 const char *unitname
= get_unitname(node
);
955 cell_t
*cells
= NULL
;
957 if (!node
->parent
|| (node
->parent
->bus
!= &simple_bus
))
960 prop
= get_property(node
, "reg");
962 cells
= (cell_t
*)prop
->val
.val
;
964 prop
= get_property(node
, "ranges");
965 if (prop
&& prop
->val
.len
)
966 /* skip of child address */
967 cells
= ((cell_t
*)prop
->val
.val
) + node_addr_cells(node
);
971 if (node
->parent
->parent
&& !(node
->bus
== &simple_bus
))
972 FAIL(c
, dti
, node
, "missing or empty reg/ranges property");
976 size
= node_addr_cells(node
->parent
);
978 reg
= (reg
<< 32) | fdt32_to_cpu(*(cells
++));
980 snprintf(unit_addr
, sizeof(unit_addr
), "%"PRIx64
, reg
);
981 if (!streq(unitname
, unit_addr
))
982 FAIL(c
, dti
, node
, "simple-bus unit address format error, expected \"%s\"",
985 WARNING(simple_bus_reg
, check_simple_bus_reg
, NULL
, ®_format
, &simple_bus_bridge
);
987 static const struct bus_type i2c_bus
= {
991 static void check_i2c_bus_bridge(struct check
*c
, struct dt_info
*dti
, struct node
*node
)
993 if (strprefixeq(node
->name
, node
->basenamelen
, "i2c-bus") ||
994 strprefixeq(node
->name
, node
->basenamelen
, "i2c-arb")) {
995 node
->bus
= &i2c_bus
;
996 } else if (strprefixeq(node
->name
, node
->basenamelen
, "i2c")) {
998 for_each_child(node
, child
) {
999 if (strprefixeq(child
->name
, node
->basenamelen
, "i2c-bus"))
1002 node
->bus
= &i2c_bus
;
1006 if (!node
->children
)
1009 if (node_addr_cells(node
) != 1)
1010 FAIL(c
, dti
, node
, "incorrect #address-cells for I2C bus");
1011 if (node_size_cells(node
) != 0)
1012 FAIL(c
, dti
, node
, "incorrect #size-cells for I2C bus");
1015 WARNING(i2c_bus_bridge
, check_i2c_bus_bridge
, NULL
, &addr_size_cells
);
1017 static void check_i2c_bus_reg(struct check
*c
, struct dt_info
*dti
, struct node
*node
)
1019 struct property
*prop
;
1020 const char *unitname
= get_unitname(node
);
1024 cell_t
*cells
= NULL
;
1026 if (!node
->parent
|| (node
->parent
->bus
!= &i2c_bus
))
1029 prop
= get_property(node
, "reg");
1031 cells
= (cell_t
*)prop
->val
.val
;
1034 FAIL(c
, dti
, node
, "missing or empty reg property");
1038 reg
= fdt32_to_cpu(*cells
);
1039 snprintf(unit_addr
, sizeof(unit_addr
), "%x", reg
);
1040 if (!streq(unitname
, unit_addr
))
1041 FAIL(c
, dti
, node
, "I2C bus unit address format error, expected \"%s\"",
1044 for (len
= prop
->val
.len
; len
> 0; len
-= 4) {
1045 reg
= fdt32_to_cpu(*(cells
++));
1047 FAIL_PROP(c
, dti
, node
, prop
, "I2C address must be less than 10-bits, got \"0x%x\"",
1052 WARNING(i2c_bus_reg
, check_i2c_bus_reg
, NULL
, ®_format
, &i2c_bus_bridge
);
1054 static const struct bus_type spi_bus
= {
1058 static void check_spi_bus_bridge(struct check
*c
, struct dt_info
*dti
, struct node
*node
)
1060 int spi_addr_cells
= 1;
1062 if (strprefixeq(node
->name
, node
->basenamelen
, "spi")) {
1063 node
->bus
= &spi_bus
;
1065 /* Try to detect SPI buses which don't have proper node name */
1068 if (node_addr_cells(node
) != 1 || node_size_cells(node
) != 0)
1071 for_each_child(node
, child
) {
1072 struct property
*prop
;
1073 for_each_property(child
, prop
) {
1074 if (strprefixeq(prop
->name
, 4, "spi-")) {
1075 node
->bus
= &spi_bus
;
1079 if (node
->bus
== &spi_bus
)
1083 if (node
->bus
== &spi_bus
&& get_property(node
, "reg"))
1084 FAIL(c
, dti
, node
, "node name for SPI buses should be 'spi'");
1086 if (node
->bus
!= &spi_bus
|| !node
->children
)
1089 if (get_property(node
, "spi-slave"))
1091 if (node_addr_cells(node
) != spi_addr_cells
)
1092 FAIL(c
, dti
, node
, "incorrect #address-cells for SPI bus");
1093 if (node_size_cells(node
) != 0)
1094 FAIL(c
, dti
, node
, "incorrect #size-cells for SPI bus");
1097 WARNING(spi_bus_bridge
, check_spi_bus_bridge
, NULL
, &addr_size_cells
);
1099 static void check_spi_bus_reg(struct check
*c
, struct dt_info
*dti
, struct node
*node
)
1101 struct property
*prop
;
1102 const char *unitname
= get_unitname(node
);
1105 cell_t
*cells
= NULL
;
1107 if (!node
->parent
|| (node
->parent
->bus
!= &spi_bus
))
1110 if (get_property(node
->parent
, "spi-slave"))
1113 prop
= get_property(node
, "reg");
1115 cells
= (cell_t
*)prop
->val
.val
;
1118 FAIL(c
, dti
, node
, "missing or empty reg property");
1122 reg
= fdt32_to_cpu(*cells
);
1123 snprintf(unit_addr
, sizeof(unit_addr
), "%x", reg
);
1124 if (!streq(unitname
, unit_addr
))
1125 FAIL(c
, dti
, node
, "SPI bus unit address format error, expected \"%s\"",
1128 WARNING(spi_bus_reg
, check_spi_bus_reg
, NULL
, ®_format
, &spi_bus_bridge
);
1130 static void check_unit_address_format(struct check
*c
, struct dt_info
*dti
,
1133 const char *unitname
= get_unitname(node
);
1135 if (node
->parent
&& node
->parent
->bus
)
1141 if (!strncmp(unitname
, "0x", 2)) {
1142 FAIL(c
, dti
, node
, "unit name should not have leading \"0x\"");
1143 /* skip over 0x for next test */
1146 if (unitname
[0] == '0' && isxdigit(unitname
[1]))
1147 FAIL(c
, dti
, node
, "unit name should not have leading 0s");
1149 WARNING(unit_address_format
, check_unit_address_format
, NULL
,
1150 &node_name_format
, &pci_bridge
, &simple_bus_bridge
);
1155 static void check_avoid_default_addr_size(struct check
*c
, struct dt_info
*dti
,
1158 struct property
*reg
, *ranges
;
1161 return; /* Ignore root node */
1163 reg
= get_property(node
, "reg");
1164 ranges
= get_property(node
, "ranges");
1166 if (!reg
&& !ranges
)
1169 if (node
->parent
->addr_cells
== -1)
1170 FAIL(c
, dti
, node
, "Relying on default #address-cells value");
1172 if (node
->parent
->size_cells
== -1)
1173 FAIL(c
, dti
, node
, "Relying on default #size-cells value");
1175 WARNING(avoid_default_addr_size
, check_avoid_default_addr_size
, NULL
,
1178 static void check_avoid_unnecessary_addr_size(struct check
*c
, struct dt_info
*dti
,
1181 struct property
*prop
;
1183 bool has_reg
= false;
1185 if (!node
->parent
|| node
->addr_cells
< 0 || node
->size_cells
< 0)
1188 if (get_property(node
, "ranges") || !node
->children
)
1191 for_each_child(node
, child
) {
1192 prop
= get_property(child
, "reg");
1198 FAIL(c
, dti
, node
, "unnecessary #address-cells/#size-cells without \"ranges\" or child \"reg\" property");
1200 WARNING(avoid_unnecessary_addr_size
, check_avoid_unnecessary_addr_size
, NULL
, &avoid_default_addr_size
);
1202 static bool node_is_disabled(struct node
*node
)
1204 struct property
*prop
;
1206 prop
= get_property(node
, "status");
1208 char *str
= prop
->val
.val
;
1209 if (streq("disabled", str
))
1216 static void check_unique_unit_address_common(struct check
*c
,
1217 struct dt_info
*dti
,
1221 struct node
*childa
;
1223 if (node
->addr_cells
< 0 || node
->size_cells
< 0)
1226 if (!node
->children
)
1229 for_each_child(node
, childa
) {
1230 struct node
*childb
;
1231 const char *addr_a
= get_unitname(childa
);
1233 if (!strlen(addr_a
))
1236 if (disable_check
&& node_is_disabled(childa
))
1239 for_each_child(node
, childb
) {
1240 const char *addr_b
= get_unitname(childb
);
1241 if (childa
== childb
)
1244 if (disable_check
&& node_is_disabled(childb
))
1247 if (streq(addr_a
, addr_b
))
1248 FAIL(c
, dti
, childb
, "duplicate unit-address (also used in node %s)", childa
->fullpath
);
1253 static void check_unique_unit_address(struct check
*c
, struct dt_info
*dti
,
1256 check_unique_unit_address_common(c
, dti
, node
, false);
1258 WARNING(unique_unit_address
, check_unique_unit_address
, NULL
, &avoid_default_addr_size
);
1260 static void check_unique_unit_address_if_enabled(struct check
*c
, struct dt_info
*dti
,
1263 check_unique_unit_address_common(c
, dti
, node
, true);
1265 CHECK_ENTRY(unique_unit_address_if_enabled
, check_unique_unit_address_if_enabled
,
1266 NULL
, false, false, &avoid_default_addr_size
);
1268 static void check_obsolete_chosen_interrupt_controller(struct check
*c
,
1269 struct dt_info
*dti
,
1272 struct node
*dt
= dti
->dt
;
1273 struct node
*chosen
;
1274 struct property
*prop
;
1280 chosen
= get_node_by_path(dt
, "/chosen");
1284 prop
= get_property(chosen
, "interrupt-controller");
1286 FAIL_PROP(c
, dti
, node
, prop
,
1287 "/chosen has obsolete \"interrupt-controller\" property");
1289 WARNING(obsolete_chosen_interrupt_controller
,
1290 check_obsolete_chosen_interrupt_controller
, NULL
);
1292 static void check_chosen_node_is_root(struct check
*c
, struct dt_info
*dti
,
1295 if (!streq(node
->name
, "chosen"))
1298 if (node
->parent
!= dti
->dt
)
1299 FAIL(c
, dti
, node
, "chosen node must be at root node");
1301 WARNING(chosen_node_is_root
, check_chosen_node_is_root
, NULL
);
1303 static void check_chosen_node_bootargs(struct check
*c
, struct dt_info
*dti
,
1306 struct property
*prop
;
1308 if (!streq(node
->name
, "chosen"))
1311 prop
= get_property(node
, "bootargs");
1315 c
->data
= prop
->name
;
1316 check_is_string(c
, dti
, node
);
1318 WARNING(chosen_node_bootargs
, check_chosen_node_bootargs
, NULL
);
1320 static void check_chosen_node_stdout_path(struct check
*c
, struct dt_info
*dti
,
1323 struct property
*prop
;
1325 if (!streq(node
->name
, "chosen"))
1328 prop
= get_property(node
, "stdout-path");
1330 prop
= get_property(node
, "linux,stdout-path");
1333 FAIL_PROP(c
, dti
, node
, prop
, "Use 'stdout-path' instead");
1336 c
->data
= prop
->name
;
1337 check_is_string(c
, dti
, node
);
1339 WARNING(chosen_node_stdout_path
, check_chosen_node_stdout_path
, NULL
);
1342 const char *prop_name
;
1343 const char *cell_name
;
1347 static void check_property_phandle_args(struct check
*c
,
1348 struct dt_info
*dti
,
1350 struct property
*prop
,
1351 const struct provider
*provider
)
1353 struct node
*root
= dti
->dt
;
1354 int cell
, cellsize
= 0;
1356 if (prop
->val
.len
% sizeof(cell_t
)) {
1357 FAIL_PROP(c
, dti
, node
, prop
,
1358 "property size (%d) is invalid, expected multiple of %zu",
1359 prop
->val
.len
, sizeof(cell_t
));
1363 for (cell
= 0; cell
< prop
->val
.len
/ sizeof(cell_t
); cell
+= cellsize
+ 1) {
1364 struct node
*provider_node
;
1365 struct property
*cellprop
;
1368 phandle
= propval_cell_n(prop
, cell
);
1370 * Some bindings use a cell value 0 or -1 to skip over optional
1371 * entries when each index position has a specific definition.
1373 if (phandle
== 0 || phandle
== -1) {
1374 /* Give up if this is an overlay with external references */
1375 if (dti
->dtsflags
& DTSF_PLUGIN
)
1382 /* If we have markers, verify the current cell is a phandle */
1383 if (prop
->val
.markers
) {
1384 struct marker
*m
= prop
->val
.markers
;
1385 for_each_marker_of_type(m
, REF_PHANDLE
) {
1386 if (m
->offset
== (cell
* sizeof(cell_t
)))
1390 FAIL_PROP(c
, dti
, node
, prop
,
1391 "cell %d is not a phandle reference",
1395 provider_node
= get_node_by_phandle(root
, phandle
);
1396 if (!provider_node
) {
1397 FAIL_PROP(c
, dti
, node
, prop
,
1398 "Could not get phandle node for (cell %d)",
1403 cellprop
= get_property(provider_node
, provider
->cell_name
);
1405 cellsize
= propval_cell(cellprop
);
1406 } else if (provider
->optional
) {
1409 FAIL(c
, dti
, node
, "Missing property '%s' in node %s or bad phandle (referred from %s[%d])",
1410 provider
->cell_name
,
1411 provider_node
->fullpath
,
1416 if (prop
->val
.len
< ((cell
+ cellsize
+ 1) * sizeof(cell_t
))) {
1417 FAIL_PROP(c
, dti
, node
, prop
,
1418 "property size (%d) too small for cell size %d",
1419 prop
->val
.len
, cellsize
);
1424 static void check_provider_cells_property(struct check
*c
,
1425 struct dt_info
*dti
,
1428 struct provider
*provider
= c
->data
;
1429 struct property
*prop
;
1431 prop
= get_property(node
, provider
->prop_name
);
1435 check_property_phandle_args(c
, dti
, node
, prop
, provider
);
1437 #define WARNING_PROPERTY_PHANDLE_CELLS(nm, propname, cells_name, ...) \
1438 static struct provider nm##_provider = { (propname), (cells_name), __VA_ARGS__ }; \
1439 WARNING(nm##_property, check_provider_cells_property, &nm##_provider, &phandle_references);
1441 WARNING_PROPERTY_PHANDLE_CELLS(clocks
, "clocks", "#clock-cells");
1442 WARNING_PROPERTY_PHANDLE_CELLS(cooling_device
, "cooling-device", "#cooling-cells");
1443 WARNING_PROPERTY_PHANDLE_CELLS(dmas
, "dmas", "#dma-cells");
1444 WARNING_PROPERTY_PHANDLE_CELLS(hwlocks
, "hwlocks", "#hwlock-cells");
1445 WARNING_PROPERTY_PHANDLE_CELLS(interrupts_extended
, "interrupts-extended", "#interrupt-cells");
1446 WARNING_PROPERTY_PHANDLE_CELLS(io_channels
, "io-channels", "#io-channel-cells");
1447 WARNING_PROPERTY_PHANDLE_CELLS(iommus
, "iommus", "#iommu-cells");
1448 WARNING_PROPERTY_PHANDLE_CELLS(mboxes
, "mboxes", "#mbox-cells");
1449 WARNING_PROPERTY_PHANDLE_CELLS(msi_parent
, "msi-parent", "#msi-cells", true);
1450 WARNING_PROPERTY_PHANDLE_CELLS(mux_controls
, "mux-controls", "#mux-control-cells");
1451 WARNING_PROPERTY_PHANDLE_CELLS(phys
, "phys", "#phy-cells");
1452 WARNING_PROPERTY_PHANDLE_CELLS(power_domains
, "power-domains", "#power-domain-cells");
1453 WARNING_PROPERTY_PHANDLE_CELLS(pwms
, "pwms", "#pwm-cells");
1454 WARNING_PROPERTY_PHANDLE_CELLS(resets
, "resets", "#reset-cells");
1455 WARNING_PROPERTY_PHANDLE_CELLS(sound_dai
, "sound-dai", "#sound-dai-cells");
1456 WARNING_PROPERTY_PHANDLE_CELLS(thermal_sensors
, "thermal-sensors", "#thermal-sensor-cells");
1458 static bool prop_is_gpio(struct property
*prop
)
1463 * *-gpios and *-gpio can appear in property names,
1464 * so skip over any false matches (only one known ATM)
1466 if (strstr(prop
->name
, "nr-gpio"))
1469 str
= strrchr(prop
->name
, '-');
1474 if (!(streq(str
, "gpios") || streq(str
, "gpio")))
1480 static void check_gpios_property(struct check
*c
,
1481 struct dt_info
*dti
,
1484 struct property
*prop
;
1486 /* Skip GPIO hog nodes which have 'gpios' property */
1487 if (get_property(node
, "gpio-hog"))
1490 for_each_property(node
, prop
) {
1491 struct provider provider
;
1493 if (!prop_is_gpio(prop
))
1496 provider
.prop_name
= prop
->name
;
1497 provider
.cell_name
= "#gpio-cells";
1498 provider
.optional
= false;
1499 check_property_phandle_args(c
, dti
, node
, prop
, &provider
);
1503 WARNING(gpios_property
, check_gpios_property
, NULL
, &phandle_references
);
1505 static void check_deprecated_gpio_property(struct check
*c
,
1506 struct dt_info
*dti
,
1509 struct property
*prop
;
1511 for_each_property(node
, prop
) {
1514 if (!prop_is_gpio(prop
))
1517 str
= strstr(prop
->name
, "gpio");
1518 if (!streq(str
, "gpio"))
1521 FAIL_PROP(c
, dti
, node
, prop
,
1522 "'[*-]gpio' is deprecated, use '[*-]gpios' instead");
1526 CHECK(deprecated_gpio_property
, check_deprecated_gpio_property
, NULL
);
1528 static bool node_is_interrupt_provider(struct node
*node
)
1530 struct property
*prop
;
1532 prop
= get_property(node
, "interrupt-controller");
1536 prop
= get_property(node
, "interrupt-map");
1542 static void check_interrupts_property(struct check
*c
,
1543 struct dt_info
*dti
,
1546 struct node
*root
= dti
->dt
;
1547 struct node
*irq_node
= NULL
, *parent
= node
;
1548 struct property
*irq_prop
, *prop
= NULL
;
1549 int irq_cells
, phandle
;
1551 irq_prop
= get_property(node
, "interrupts");
1555 if (irq_prop
->val
.len
% sizeof(cell_t
))
1556 FAIL_PROP(c
, dti
, node
, irq_prop
, "size (%d) is invalid, expected multiple of %zu",
1557 irq_prop
->val
.len
, sizeof(cell_t
));
1559 while (parent
&& !prop
) {
1560 if (parent
!= node
&& node_is_interrupt_provider(parent
)) {
1565 prop
= get_property(parent
, "interrupt-parent");
1567 phandle
= propval_cell(prop
);
1568 if ((phandle
== 0) || (phandle
== -1)) {
1569 /* Give up if this is an overlay with
1570 * external references */
1571 if (dti
->dtsflags
& DTSF_PLUGIN
)
1573 FAIL_PROP(c
, dti
, parent
, prop
, "Invalid phandle");
1577 irq_node
= get_node_by_phandle(root
, phandle
);
1579 FAIL_PROP(c
, dti
, parent
, prop
, "Bad phandle");
1582 if (!node_is_interrupt_provider(irq_node
))
1583 FAIL(c
, dti
, irq_node
,
1584 "Missing interrupt-controller or interrupt-map property");
1589 parent
= parent
->parent
;
1593 FAIL(c
, dti
, node
, "Missing interrupt-parent");
1597 prop
= get_property(irq_node
, "#interrupt-cells");
1599 FAIL(c
, dti
, irq_node
, "Missing #interrupt-cells in interrupt-parent");
1603 irq_cells
= propval_cell(prop
);
1604 if (irq_prop
->val
.len
% (irq_cells
* sizeof(cell_t
))) {
1605 FAIL_PROP(c
, dti
, node
, prop
,
1606 "size is (%d), expected multiple of %d",
1607 irq_prop
->val
.len
, (int)(irq_cells
* sizeof(cell_t
)));
1610 WARNING(interrupts_property
, check_interrupts_property
, &phandle_references
);
1612 static const struct bus_type graph_port_bus
= {
1613 .name
= "graph-port",
1616 static const struct bus_type graph_ports_bus
= {
1617 .name
= "graph-ports",
1620 static void check_graph_nodes(struct check
*c
, struct dt_info
*dti
,
1625 for_each_child(node
, child
) {
1626 if (!(strprefixeq(child
->name
, child
->basenamelen
, "endpoint") ||
1627 get_property(child
, "remote-endpoint")))
1630 node
->bus
= &graph_port_bus
;
1632 /* The parent of 'port' nodes can be either 'ports' or a device */
1633 if (!node
->parent
->bus
&&
1634 (streq(node
->parent
->name
, "ports") || get_property(node
, "reg")))
1635 node
->parent
->bus
= &graph_ports_bus
;
1641 WARNING(graph_nodes
, check_graph_nodes
, NULL
);
1643 static void check_graph_child_address(struct check
*c
, struct dt_info
*dti
,
1649 if (node
->bus
!= &graph_ports_bus
&& node
->bus
!= &graph_port_bus
)
1652 for_each_child(node
, child
) {
1653 struct property
*prop
= get_property(child
, "reg");
1655 /* No error if we have any non-zero unit address */
1656 if (prop
&& propval_cell(prop
) != 0)
1662 if (cnt
== 1 && node
->addr_cells
!= -1)
1663 FAIL(c
, dti
, node
, "graph node has single child node '%s', #address-cells/#size-cells are not necessary",
1664 node
->children
->name
);
1666 WARNING(graph_child_address
, check_graph_child_address
, NULL
, &graph_nodes
);
1668 static void check_graph_reg(struct check
*c
, struct dt_info
*dti
,
1672 const char *unitname
= get_unitname(node
);
1673 struct property
*prop
;
1675 prop
= get_property(node
, "reg");
1676 if (!prop
|| !unitname
)
1679 if (!(prop
->val
.val
&& prop
->val
.len
== sizeof(cell_t
))) {
1680 FAIL(c
, dti
, node
, "graph node malformed 'reg' property");
1684 snprintf(unit_addr
, sizeof(unit_addr
), "%x", propval_cell(prop
));
1685 if (!streq(unitname
, unit_addr
))
1686 FAIL(c
, dti
, node
, "graph node unit address error, expected \"%s\"",
1689 if (node
->parent
->addr_cells
!= 1)
1690 FAIL_PROP(c
, dti
, node
, get_property(node
, "#address-cells"),
1691 "graph node '#address-cells' is %d, must be 1",
1692 node
->parent
->addr_cells
);
1693 if (node
->parent
->size_cells
!= 0)
1694 FAIL_PROP(c
, dti
, node
, get_property(node
, "#size-cells"),
1695 "graph node '#size-cells' is %d, must be 0",
1696 node
->parent
->size_cells
);
1699 static void check_graph_port(struct check
*c
, struct dt_info
*dti
,
1702 if (node
->bus
!= &graph_port_bus
)
1705 if (!strprefixeq(node
->name
, node
->basenamelen
, "port"))
1706 FAIL(c
, dti
, node
, "graph port node name should be 'port'");
1708 check_graph_reg(c
, dti
, node
);
1710 WARNING(graph_port
, check_graph_port
, NULL
, &graph_nodes
);
1712 static struct node
*get_remote_endpoint(struct check
*c
, struct dt_info
*dti
,
1713 struct node
*endpoint
)
1717 struct property
*prop
;
1719 prop
= get_property(endpoint
, "remote-endpoint");
1723 phandle
= propval_cell(prop
);
1724 /* Give up if this is an overlay with external references */
1725 if (phandle
== 0 || phandle
== -1)
1728 node
= get_node_by_phandle(dti
->dt
, phandle
);
1730 FAIL_PROP(c
, dti
, endpoint
, prop
, "graph phandle is not valid");
1735 static void check_graph_endpoint(struct check
*c
, struct dt_info
*dti
,
1738 struct node
*remote_node
;
1740 if (!node
->parent
|| node
->parent
->bus
!= &graph_port_bus
)
1743 if (!strprefixeq(node
->name
, node
->basenamelen
, "endpoint"))
1744 FAIL(c
, dti
, node
, "graph endpoint node name should be 'endpoint'");
1746 check_graph_reg(c
, dti
, node
);
1748 remote_node
= get_remote_endpoint(c
, dti
, node
);
1752 if (get_remote_endpoint(c
, dti
, remote_node
) != node
)
1753 FAIL(c
, dti
, node
, "graph connection to node '%s' is not bidirectional",
1754 remote_node
->fullpath
);
1756 WARNING(graph_endpoint
, check_graph_endpoint
, NULL
, &graph_nodes
);
1758 static struct check
*check_table
[] = {
1759 &duplicate_node_names
, &duplicate_property_names
,
1760 &node_name_chars
, &node_name_format
, &property_name_chars
,
1761 &name_is_string
, &name_properties
,
1766 &phandle_references
, &path_references
,
1769 &address_cells_is_cell
, &size_cells_is_cell
, &interrupt_cells_is_cell
,
1770 &device_type_is_string
, &model_is_string
, &status_is_string
,
1773 &compatible_is_string_list
, &names_is_string_list
,
1775 &property_name_chars_strict
,
1776 &node_name_chars_strict
,
1778 &addr_size_cells
, ®_format
, &ranges_format
,
1780 &unit_address_vs_reg
,
1781 &unit_address_format
,
1785 &pci_device_bus_num
,
1796 &avoid_default_addr_size
,
1797 &avoid_unnecessary_addr_size
,
1798 &unique_unit_address
,
1799 &unique_unit_address_if_enabled
,
1800 &obsolete_chosen_interrupt_controller
,
1801 &chosen_node_is_root
, &chosen_node_bootargs
, &chosen_node_stdout_path
,
1804 &cooling_device_property
,
1807 &interrupts_extended_property
,
1808 &io_channels_property
,
1811 &msi_parent_property
,
1812 &mux_controls_property
,
1814 &power_domains_property
,
1817 &sound_dai_property
,
1818 &thermal_sensors_property
,
1820 &deprecated_gpio_property
,
1822 &interrupts_property
,
1826 &graph_nodes
, &graph_child_address
, &graph_port
, &graph_endpoint
,
1831 static void enable_warning_error(struct check
*c
, bool warn
, bool error
)
1835 /* Raising level, also raise it for prereqs */
1836 if ((warn
&& !c
->warn
) || (error
&& !c
->error
))
1837 for (i
= 0; i
< c
->num_prereqs
; i
++)
1838 enable_warning_error(c
->prereq
[i
], warn
, error
);
1840 c
->warn
= c
->warn
|| warn
;
1841 c
->error
= c
->error
|| error
;
1844 static void disable_warning_error(struct check
*c
, bool warn
, bool error
)
1848 /* Lowering level, also lower it for things this is the prereq
1850 if ((warn
&& c
->warn
) || (error
&& c
->error
)) {
1851 for (i
= 0; i
< ARRAY_SIZE(check_table
); i
++) {
1852 struct check
*cc
= check_table
[i
];
1855 for (j
= 0; j
< cc
->num_prereqs
; j
++)
1856 if (cc
->prereq
[j
] == c
)
1857 disable_warning_error(cc
, warn
, error
);
1861 c
->warn
= c
->warn
&& !warn
;
1862 c
->error
= c
->error
&& !error
;
1865 void parse_checks_option(bool warn
, bool error
, const char *arg
)
1868 const char *name
= arg
;
1871 if ((strncmp(arg
, "no-", 3) == 0)
1872 || (strncmp(arg
, "no_", 3) == 0)) {
1877 for (i
= 0; i
< ARRAY_SIZE(check_table
); i
++) {
1878 struct check
*c
= check_table
[i
];
1880 if (streq(c
->name
, name
)) {
1882 enable_warning_error(c
, warn
, error
);
1884 disable_warning_error(c
, warn
, error
);
1889 die("Unrecognized check name \"%s\"\n", name
);
1892 void process_checks(bool force
, struct dt_info
*dti
)
1897 for (i
= 0; i
< ARRAY_SIZE(check_table
); i
++) {
1898 struct check
*c
= check_table
[i
];
1900 if (c
->warn
|| c
->error
)
1901 error
= error
|| run_check(c
, dti
);
1906 fprintf(stderr
, "ERROR: Input tree has errors, aborting "
1907 "(use -f to force output)\n");
1909 } else if (quiet
< 3) {
1910 fprintf(stderr
, "Warning: Input tree has errors, "