mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-06 05:04:26 +00:00
2aadff0feb
This patch enables CONFIG_BLK as well as CONFIG_DM_MMC for the PDU001 board. It depends on Patrice Chotard's patch 'power: regulator: denied disable on always-on regulator' which prevents power cycling the vmmc supply. Without this patch the board will not boot as vmmc is unfortunately used by other board components, not just eMMC and micro SD card. Furthermore my patch 'dts: am335x-pdu001: Fix polarity of card detection input' is required to boot from external micro SD card. Without this patch no SD card will be detected and hence booting will fail. Signed-off-by: Felix Brack <fb@ltec.ch> Reviewed-by: Tom Rini <trini@konsulko.com>
46 lines
475 B
Text
46 lines
475 B
Text
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* Copyright (C) 2018 EETS GmbH - https://www.eets.ch/
|
|
*/
|
|
|
|
/ {
|
|
ocp {
|
|
u-boot,dm-pre-reloc;
|
|
};
|
|
};
|
|
|
|
&l4_wkup {
|
|
u-boot,dm-pre-reloc;
|
|
};
|
|
|
|
&scm {
|
|
u-boot,dm-pre-reloc;
|
|
};
|
|
|
|
&am33xx_pinmux {
|
|
u-boot,dm-pre-reloc;
|
|
};
|
|
|
|
&uart3_pins {
|
|
u-boot,dm-pre-reloc;
|
|
};
|
|
|
|
&uart3 {
|
|
u-boot,dm-pre-reloc;
|
|
};
|
|
|
|
&mmc1 {
|
|
u-boot,dm-pre-reloc;
|
|
};
|
|
|
|
&mmc1_pins {
|
|
u-boot,dm-pre-reloc;
|
|
};
|
|
|
|
&mmc2 {
|
|
u-boot,dm-pre-reloc;
|
|
};
|
|
|
|
&mmc2_pins {
|
|
u-boot,dm-pre-reloc;
|
|
};
|