diff options
| author | Manivannan Sadhasivam <[email protected]> | 2019-07-29 19:22:27 +0530 |
|---|---|---|
| committer | Kever Yang <[email protected]> | 2019-08-05 21:14:04 +0800 |
| commit | 0b5130fa3ec65fcb80f7c48b5dc4f7c219168db5 (patch) | |
| tree | d3ee0aa03f01d85e58d0a55724e75cbe75ed4383 | |
| parent | a5f1249bd303e49f35d1bc3b665aad62dd90b9c9 (diff) | |
arm: dts: rock960: Enable booting from eMMC when using SPL
This commits enables booting from eMMC when using SPL on 96Boards
Rock960 board by adding SDHCI to boot order. Since the SDHCI driver
already has the reloc flag, this works straightaway. While we are at it,
let's also include the common u-boot dtsi for rk3399.
Signed-off-by: Manivannan Sadhasivam <[email protected]>
Reviewed-by: Kever Yang <[email protected]>
| -rw-r--r-- | arch/arm/dts/rk3399-rock960-u-boot.dtsi | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/arch/arm/dts/rk3399-rock960-u-boot.dtsi b/arch/arm/dts/rk3399-rock960-u-boot.dtsi index 5256f6d3f24..4850debdf0b 100644 --- a/arch/arm/dts/rk3399-rock960-u-boot.dtsi +++ b/arch/arm/dts/rk3399-rock960-u-boot.dtsi @@ -3,4 +3,11 @@ * Copyright (C) 2019 Jagan Teki <[email protected]> */ +#include "rk3399-u-boot.dtsi" #include "rk3399-sdram-lpddr3-2GB-1600.dtsi" + +/ { + chosen { + u-boot,spl-boot-order = &sdhci, &sdmmc; + }; +}; |
