diff options
| author | Anshul Dalal <[email protected]> | 2025-04-15 15:21:36 +0530 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2025-04-24 08:24:17 -0600 |
| commit | 243a6dbfb680f9773e3c2a1e2e17e69068830666 (patch) | |
| tree | 7b73b05c8e0275546b38cdbc38979ace6d4042e2 | |
| parent | 7d8c3fa26c954f575842d739b4e0b9def4eefae6 (diff) | |
arm: dts: am62a: allow booting from eMMC
The bootph-all property in u-boot enables driver initialization prior to
relocation, this is necessary to use the device as boot media.
sdhci0 is the phandle for eMMC on am62a, so this change allows us to use
eMMC as a boot media.
Signed-off-by: Anshul Dalal <[email protected]>
| -rw-r--r-- | arch/arm/dts/k3-am62a7-sk-u-boot.dtsi | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/arm/dts/k3-am62a7-sk-u-boot.dtsi b/arch/arm/dts/k3-am62a7-sk-u-boot.dtsi index 7dfbeb10c32..a70fc88317e 100644 --- a/arch/arm/dts/k3-am62a7-sk-u-boot.dtsi +++ b/arch/arm/dts/k3-am62a7-sk-u-boot.dtsi @@ -100,6 +100,10 @@ bootph-all; }; +&sdhci0 { + bootph-all; +}; + &sdhci1 { bootph-all; }; |
