mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-05 20:54:31 +00:00
7505075dff
This allows SPL to load the main U-Boot image from MMC once DM_MMC is enabled. Signed-off-by: Dennis Gilmore <dennis@ausil.us> Reviewed-by: Stefan Roese <sr@denx.de> Signed-off-by: Stefan Roese <sr@denx.de>
26 lines
279 B
Text
26 lines
279 B
Text
// SPDX-License-Identifier: GPL-2.0+
|
|
|
|
/ {
|
|
aliases {
|
|
i2c0 = &i2c0;
|
|
i2c1 = &i2c1;
|
|
spi1 = &spi1;
|
|
};
|
|
};
|
|
|
|
ð0 {
|
|
phy-reset-gpios = <&gpio0 19 GPIO_ACTIVE_LOW>;
|
|
};
|
|
|
|
&spi1 {
|
|
u-boot,dm-spl;
|
|
};
|
|
|
|
&w25q32 {
|
|
status = "okay";
|
|
u-boot,dm-spl;
|
|
};
|
|
|
|
&sdhci {
|
|
u-boot,dm-spl;
|
|
};
|