mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-06 05:04:26 +00:00
e10481be1e
Khadas vim series: Use devicetree for SMBIOS settings Add settings and enable the default sysinfo driver so that these can come from the device tree. Reviewed-by: Neil Armstrong <narmstrong@baylibre.com> Signed-off-by: Artem Lapkin <art@khadas.com> Signed-off-by: Neil Armstrong <narmstrong@baylibre.com>
43 lines
594 B
Text
43 lines
594 B
Text
// SPDX-License-Identifier: (GPL-2.0+ OR MIT)
|
|
/*
|
|
* Copyright (c) 2019 BayLibre, SAS.
|
|
* Author: Neil Armstrong <narmstrong@baylibre.com>
|
|
*/
|
|
|
|
#include "meson-gxl-u-boot.dtsi"
|
|
|
|
/ {
|
|
aliases {
|
|
spi0 = &spifc;
|
|
};
|
|
|
|
smbios {
|
|
compatible = "u-boot,sysinfo-smbios";
|
|
|
|
smbios {
|
|
system {
|
|
manufacturer = "khadas";
|
|
product = "VIM2";
|
|
};
|
|
|
|
baseboard {
|
|
manufacturer = "khadas";
|
|
product = "VIM2";
|
|
};
|
|
|
|
chassis {
|
|
manufacturer = "khadas";
|
|
product = "VIM2";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
|
|
&sd_emmc_c {
|
|
status = "okay";
|
|
pinctrl-0 = <&emmc_pins>;
|
|
};
|
|
|
|
&spifc {
|
|
status = "okay";
|
|
};
|