Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Masahiro Yamada | 9607f7a | 2015-01-14 17:07:05 +0900 | [diff] [blame] | 2 | |
3 | #include <common.h> | ||||
Simon Glass | 9758973 | 2020-05-10 11:40:02 -0600 | [diff] [blame] | 4 | #include <init.h> |
Simon Glass | 3ba929a | 2020-10-30 21:38:53 -0600 | [diff] [blame] | 5 | #include <asm/global_data.h> |
Masahiro Yamada | 75f82d0 | 2018-03-05 01:20:11 +0900 | [diff] [blame] | 6 | #include <linux/libfdt.h> |
Masahiro Yamada | 9607f7a | 2015-01-14 17:07:05 +0900 | [diff] [blame] | 7 | #include <linux/compiler.h> |
8 | |||||
9 | int __weak checkboard(void) | ||||
10 | { | ||||
Masahiro Yamada | 9607f7a | 2015-01-14 17:07:05 +0900 | [diff] [blame] | 11 | return 0; |
12 | } | ||||
13 | |||||
14 | /* | ||||
15 | * If the root node of the DTB has a "model" property, show it. | ||||
Haikun.Wang@freescale.com | 7f7335e | 2015-07-09 19:58:03 +0800 | [diff] [blame] | 16 | * Then call checkboard(). |
Masahiro Yamada | 9607f7a | 2015-01-14 17:07:05 +0900 | [diff] [blame] | 17 | */ |
Marcel Ziswiler | 6e8bc1a | 2016-11-16 17:49:20 +0100 | [diff] [blame] | 18 | int __weak show_board_info(void) |
Masahiro Yamada | 9607f7a | 2015-01-14 17:07:05 +0900 | [diff] [blame] | 19 | { |
Marcel Ziswiler | 7c701b3 | 2016-11-16 17:49:19 +0100 | [diff] [blame] | 20 | #ifdef CONFIG_OF_CONTROL |
Masahiro Yamada | 9607f7a | 2015-01-14 17:07:05 +0900 | [diff] [blame] | 21 | DECLARE_GLOBAL_DATA_PTR; |
22 | const char *model; | ||||
23 | |||||
24 | model = fdt_getprop(gd->fdt_blob, 0, "model", NULL); | ||||
25 | |||||
Haikun.Wang@freescale.com | 7f7335e | 2015-07-09 19:58:03 +0800 | [diff] [blame] | 26 | if (model) |
Masahiro Yamada | 9607f7a | 2015-01-14 17:07:05 +0900 | [diff] [blame] | 27 | printf("Model: %s\n", model); |
Masahiro Yamada | 9607f7a | 2015-01-14 17:07:05 +0900 | [diff] [blame] | 28 | #endif |
29 | |||||
30 | return checkboard(); | ||||
31 | } |