2018-05-06 21:58:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2015-01-14 08:07:05 +00:00
|
|
|
|
|
|
|
#include <common.h>
|
2021-03-21 03:50:06 +00:00
|
|
|
#include <dm.h>
|
2020-05-10 17:40:02 +00:00
|
|
|
#include <init.h>
|
2021-03-21 03:50:06 +00:00
|
|
|
#include <sysinfo.h>
|
2020-10-31 03:38:53 +00:00
|
|
|
#include <asm/global_data.h>
|
2018-03-04 16:20:11 +00:00
|
|
|
#include <linux/libfdt.h>
|
2015-01-14 08:07:05 +00:00
|
|
|
#include <linux/compiler.h>
|
|
|
|
|
2021-03-21 03:50:06 +00:00
|
|
|
DECLARE_GLOBAL_DATA_PTR;
|
|
|
|
|
2015-01-14 08:07:05 +00:00
|
|
|
int __weak checkboard(void)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2023-11-13 02:58:28 +00:00
|
|
|
static const struct to_show {
|
|
|
|
const char *name;
|
|
|
|
enum sysinfo_id id;
|
|
|
|
} to_show[] = {
|
|
|
|
{ "Manufacturer", SYSINFO_ID_BOARD_MANUFACTURER},
|
|
|
|
{ "Prior-stage version", SYSINFO_ID_PRIOR_STAGE_VERSION },
|
|
|
|
{ "Prior-stage date", SYSINFO_ID_PRIOR_STAGE_DATE },
|
|
|
|
{ /* sentinel */ }
|
|
|
|
};
|
|
|
|
|
|
|
|
static int try_sysinfo(void)
|
|
|
|
{
|
|
|
|
struct udevice *dev;
|
|
|
|
char str[80];
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
/* This might provide more detail */
|
|
|
|
ret = sysinfo_get(&dev);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
ret = sysinfo_detect(dev);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
ret = sysinfo_get_str(dev, SYSINFO_ID_BOARD_MODEL, sizeof(str), str);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
printf("Model: %s\n", str);
|
|
|
|
|
|
|
|
if (IS_ENABLED(CONFIG_SYSINFO_EXTRA)) {
|
|
|
|
const struct to_show *item;
|
|
|
|
|
|
|
|
for (item = to_show; item->id; item++) {
|
|
|
|
ret = sysinfo_get_str(dev, item->id, sizeof(str), str);
|
|
|
|
if (!ret)
|
|
|
|
printf("%s: %s\n", item->name, str);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2023-11-13 02:58:27 +00:00
|
|
|
int show_board_info(void)
|
2015-01-14 08:07:05 +00:00
|
|
|
{
|
2021-03-21 03:50:06 +00:00
|
|
|
if (IS_ENABLED(CONFIG_OF_CONTROL)) {
|
|
|
|
int ret = -ENOSYS;
|
|
|
|
|
2023-11-13 02:58:28 +00:00
|
|
|
if (IS_ENABLED(CONFIG_SYSINFO))
|
|
|
|
ret = try_sysinfo();
|
2015-01-14 08:07:05 +00:00
|
|
|
|
2021-03-21 03:50:06 +00:00
|
|
|
/* Fail back to the main 'model' if available */
|
2023-11-13 02:58:28 +00:00
|
|
|
if (ret) {
|
|
|
|
const char *model;
|
2015-01-14 08:07:05 +00:00
|
|
|
|
2023-11-13 02:58:28 +00:00
|
|
|
model = fdt_getprop(gd->fdt_blob, 0, "model", NULL);
|
|
|
|
if (model)
|
|
|
|
printf("Model: %s\n", model);
|
|
|
|
}
|
2021-03-21 03:50:06 +00:00
|
|
|
}
|
2015-01-14 08:07:05 +00:00
|
|
|
|
|
|
|
return checkboard();
|
|
|
|
}
|