mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-21 04:14:34 +00:00
xilinx: common: Separate display cpu info function
Move the print_cpuinfo function of CONFIG_DISPLAY_CPUINFO into its own source file to support reuse by other board vendors. Signed-off-by: Stefan Herbrechtsmeier <stefan.herbrechtsmeier@weidmueller.com> Link: https://lore.kernel.org/r/20220620163650.18756-10-stefan.herbrechtsmeier-oss@weidmueller.com Signed-off-by: Michal Simek <michal.simek@amd.com>
This commit is contained in:
parent
381ede9e38
commit
86ceedd84e
3 changed files with 38 additions and 29 deletions
|
@ -5,6 +5,9 @@
|
||||||
#
|
#
|
||||||
|
|
||||||
obj-y += board.o
|
obj-y += board.o
|
||||||
|
ifndef CONFIG_ARCH_ZYNQ
|
||||||
|
obj-$(CONFIG_DISPLAY_CPUINFO) += cpu-info.o
|
||||||
|
endif
|
||||||
ifndef CONFIG_SPL_BUILD
|
ifndef CONFIG_SPL_BUILD
|
||||||
obj-$(CONFIG_CMD_FRU) += fru.o fru_ops.o
|
obj-$(CONFIG_CMD_FRU) += fru.o fru_ops.o
|
||||||
endif
|
endif
|
||||||
|
|
|
@ -485,35 +485,6 @@ int __maybe_unused board_fit_config_name_match(const char *name)
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
#if defined(CONFIG_DISPLAY_CPUINFO) && !defined(CONFIG_ARCH_ZYNQ)
|
|
||||||
int print_cpuinfo(void)
|
|
||||||
{
|
|
||||||
struct udevice *soc;
|
|
||||||
char name[SOC_MAX_STR_SIZE];
|
|
||||||
int ret;
|
|
||||||
|
|
||||||
ret = soc_get(&soc);
|
|
||||||
if (ret) {
|
|
||||||
printf("CPU: UNKNOWN\n");
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
ret = soc_get_family(soc, name, SOC_MAX_STR_SIZE);
|
|
||||||
if (ret)
|
|
||||||
printf("CPU: %s\n", name);
|
|
||||||
|
|
||||||
ret = soc_get_revision(soc, name, SOC_MAX_STR_SIZE);
|
|
||||||
if (ret)
|
|
||||||
printf("Silicon: %s\n", name);
|
|
||||||
|
|
||||||
ret = soc_get_machine(soc, name, SOC_MAX_STR_SIZE);
|
|
||||||
if (ret)
|
|
||||||
printf("Chip: %s\n", name);
|
|
||||||
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if CONFIG_IS_ENABLED(DTB_RESELECT)
|
#if CONFIG_IS_ENABLED(DTB_RESELECT)
|
||||||
#define MAX_NAME_LENGTH 50
|
#define MAX_NAME_LENGTH 50
|
||||||
|
|
||||||
|
|
35
board/xilinx/common/cpu-info.c
Normal file
35
board/xilinx/common/cpu-info.c
Normal file
|
@ -0,0 +1,35 @@
|
||||||
|
// SPDX-License-Identifier: GPL-2.0+
|
||||||
|
/*
|
||||||
|
* (C) Copyright 2014 - 2020 Xilinx, Inc.
|
||||||
|
* Michal Simek <michal.simek@xilinx.com>
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <common.h>
|
||||||
|
#include <soc.h>
|
||||||
|
|
||||||
|
int print_cpuinfo(void)
|
||||||
|
{
|
||||||
|
struct udevice *soc;
|
||||||
|
char name[SOC_MAX_STR_SIZE];
|
||||||
|
int ret;
|
||||||
|
|
||||||
|
ret = soc_get(&soc);
|
||||||
|
if (ret) {
|
||||||
|
printf("CPU: UNKNOWN\n");
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
ret = soc_get_family(soc, name, SOC_MAX_STR_SIZE);
|
||||||
|
if (ret)
|
||||||
|
printf("CPU: %s\n", name);
|
||||||
|
|
||||||
|
ret = soc_get_revision(soc, name, SOC_MAX_STR_SIZE);
|
||||||
|
if (ret)
|
||||||
|
printf("Silicon: %s\n", name);
|
||||||
|
|
||||||
|
ret = soc_get_machine(soc, name, SOC_MAX_STR_SIZE);
|
||||||
|
if (ret)
|
||||||
|
printf("Chip: %s\n", name);
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue