xref: /openbmc/u-boot/common/board_info.c (revision 7a1af7a7)
1 /*
2  * SPDX-License-Identifier:	GPL-2.0+
3  */
4 
5 #include <common.h>
6 #include <libfdt.h>
7 #include <linux/compiler.h>
8 
9 int __weak checkboard(void)
10 {
11 	printf("Board: Unknown\n");
12 	return 0;
13 }
14 
15 /*
16  * If the root node of the DTB has a "model" property, show it.
17  * Then call checkboard().
18  */
19 int show_board_info(void)
20 {
21 #ifdef CONFIG_OF_CONTROL
22 	DECLARE_GLOBAL_DATA_PTR;
23 	const char *model;
24 
25 	model = fdt_getprop(gd->fdt_blob, 0, "model", NULL);
26 
27 	if (model)
28 		printf("Model: %s\n", model);
29 #endif
30 
31 	return checkboard();
32 }
33