mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-18 02:44:37 +00:00

This commit introduces support for the Toradex sysinfo driver in U-Boot, which uses information from Toradex config block to print correct board model. In case the Toradex config block is not present sysinfo prints the model of the board provided by device tree removing per board specific prints. Acked-by: Marcel Ziswiler <marcel.ziswiler@toradex.com> Tested-by: Marcel Ziswiler <marcel.ziswiler@toradex.com> # Verdin iMX8M Plus Signed-off-by: Emanuele Ghidoli <emanuele.ghidoli@toradex.com> Signed-off-by: Francesco Dolcini <francesco.dolcini@toradex.com> Reviewed-by: Fabio Estevam <festevam@gmail.com>
148 lines
1.3 KiB
Text
148 lines
1.3 KiB
Text
// SPDX-License-Identifier: GPL-2.0+ OR X11
|
|
/*
|
|
* Copyright 2019 Toradex AG
|
|
*/
|
|
|
|
/ {
|
|
sysinfo {
|
|
compatible = "toradex,sysinfo";
|
|
};
|
|
};
|
|
|
|
&mu {
|
|
bootph-some-ram;
|
|
};
|
|
|
|
&clk {
|
|
bootph-some-ram;
|
|
};
|
|
|
|
&iomuxc {
|
|
bootph-some-ram;
|
|
};
|
|
|
|
&pd_lsio {
|
|
bootph-some-ram;
|
|
};
|
|
|
|
&pd_lsio_gpio0 {
|
|
bootph-some-ram;
|
|
};
|
|
|
|
&pd_lsio_gpio1 {
|
|
bootph-some-ram;
|
|
};
|
|
|
|
&pd_lsio_gpio2 {
|
|
bootph-some-ram;
|
|
};
|
|
|
|
&pd_lsio_gpio3 {
|
|
bootph-some-ram;
|
|
};
|
|
|
|
&pd_lsio_gpio4 {
|
|
bootph-some-ram;
|
|
};
|
|
|
|
&pd_lsio_gpio5 {
|
|
bootph-some-ram;
|
|
};
|
|
|
|
&pd_lsio_gpio6 {
|
|
bootph-some-ram;
|
|
};
|
|
|
|
&pd_lsio_gpio7 {
|
|
bootph-some-ram;
|
|
};
|
|
|
|
&pd_dma {
|
|
bootph-some-ram;
|
|
};
|
|
|
|
&pd_dma_lpuart1 {
|
|
bootph-some-ram;
|
|
};
|
|
|
|
&pd_conn {
|
|
bootph-some-ram;
|
|
};
|
|
|
|
&pd_conn_sdch0 {
|
|
bootph-some-ram;
|
|
};
|
|
|
|
&pd_conn_sdch1 {
|
|
bootph-some-ram;
|
|
};
|
|
|
|
&pd_conn_sdch2 {
|
|
bootph-some-ram;
|
|
};
|
|
|
|
&gpio0 {
|
|
bootph-some-ram;
|
|
};
|
|
|
|
&gpio1 {
|
|
bootph-some-ram;
|
|
};
|
|
|
|
&gpio2 {
|
|
bootph-some-ram;
|
|
};
|
|
|
|
&gpio3 {
|
|
bootph-some-ram;
|
|
};
|
|
|
|
&gpio4 {
|
|
bootph-some-ram;
|
|
|
|
usbh_en {
|
|
gpio-hog;
|
|
gpios = <4 GPIO_ACTIVE_HIGH>;
|
|
output-high;
|
|
};
|
|
};
|
|
|
|
&gpio5 {
|
|
bootph-some-ram;
|
|
};
|
|
|
|
&gpio6 {
|
|
bootph-some-ram;
|
|
};
|
|
|
|
&gpio7 {
|
|
bootph-some-ram;
|
|
};
|
|
|
|
&lpuart0 {
|
|
bootph-some-ram;
|
|
};
|
|
|
|
&lpuart1 {
|
|
bootph-some-ram;
|
|
};
|
|
|
|
&lpuart2 {
|
|
bootph-some-ram;
|
|
};
|
|
|
|
&lpuart3 {
|
|
bootph-some-ram;
|
|
};
|
|
|
|
&usdhc1 {
|
|
bootph-some-ram;
|
|
};
|
|
|
|
&usdhc2 {
|
|
bootph-some-ram;
|
|
};
|
|
|
|
&usdhc3 {
|
|
bootph-some-ram;
|
|
};
|