mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-15 01:17:39 +00:00
e3104d81f6
A388 Clearfog MMC is either SD Card or eMMC with different behaviour for both. Setting the device to non-removable in the u-boot.dtsi allows both to correctly detect the device. Signed-off-by: Martin Rowe <martin.p.rowe@gmail.com> Reviewed-by: Stefan Roese <sr@denx.de>
40 lines
443 B
Text
40 lines
443 B
Text
// SPDX-License-Identifier: GPL-2.0+
|
|
|
|
&spi1 {
|
|
bootph-pre-ram;
|
|
|
|
spi-flash@0 {
|
|
bootph-pre-ram;
|
|
};
|
|
};
|
|
|
|
&sdhci {
|
|
bootph-pre-ram;
|
|
non-removable; /* assume that the card is always present, required for eMMC variant */
|
|
};
|
|
|
|
&gpio0 {
|
|
bootph-pre-ram;
|
|
};
|
|
|
|
&ahci0 {
|
|
bootph-pre-ram;
|
|
};
|
|
|
|
&ahci1 {
|
|
bootph-pre-ram;
|
|
};
|
|
|
|
&i2c0 {
|
|
bootph-pre-ram;
|
|
|
|
eeprom@52 {
|
|
bootph-pre-ram;
|
|
};
|
|
|
|
eeprom@53 {
|
|
bootph-pre-ram;
|
|
};
|
|
};
|
|
|
|
#include "mvebu-u-boot.dtsi"
|