mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-28 15:41:40 +00:00
arm64: mvebu: Use devicetree for SMBIOS settings on uDPU
Add settings and enable the default sysinfo driver so that these can come from the device tree. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
This commit is contained in:
parent
a1d63bc135
commit
fa9e1bcfc4
2 changed files with 22 additions and 1 deletions
|
@ -1,5 +1,25 @@
|
|||
// SPDX-License-Identifier: GPL-2.0+
|
||||
|
||||
/ {
|
||||
smbios {
|
||||
compatible = "u-boot,sysinfo-smbios";
|
||||
|
||||
smbios {
|
||||
system {
|
||||
product = "uDPU";
|
||||
};
|
||||
|
||||
baseboard {
|
||||
product = "uDPU";
|
||||
};
|
||||
|
||||
chassis {
|
||||
product = "uDPU";
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
&spi0 {
|
||||
u-boot,dm-pre-reloc;
|
||||
|
||||
|
|
|
@ -11,7 +11,6 @@ CONFIG_DM_GPIO=y
|
|||
CONFIG_DEBUG_UART_BASE=0xd0012000
|
||||
CONFIG_DEBUG_UART_CLOCK=25804800
|
||||
CONFIG_DEFAULT_DEVICE_TREE="armada-3720-uDPU"
|
||||
CONFIG_SMBIOS_PRODUCT_NAME="uDPU"
|
||||
CONFIG_DEBUG_UART=y
|
||||
CONFIG_AHCI=y
|
||||
CONFIG_DISTRO_DEFAULTS=y
|
||||
|
@ -97,3 +96,5 @@ CONFIG_USB_ETHER_RTL8152=y
|
|||
CONFIG_USB_ETHER_SMSC95XX=y
|
||||
CONFIG_LZO=y
|
||||
CONFIG_SPL_LZO=y
|
||||
CONFIG_SYSINFO=y
|
||||
CONFIG_SYSINFO_SMBIOS=y
|
||||
|
|
Loading…
Reference in a new issue