diff options
author | Alper Nebi Yasak <alpernebiyasak@gmail.com> | 2020-10-28 00:15:11 +0300 |
---|---|---|
committer | Kever Yang <kever.yang@rock-chips.com> | 2020-11-13 18:15:08 +0800 |
commit | 13634bb6585ec0e789da7504146873fb492456e5 (patch) | |
tree | 1c77816139c5d0cf2c0b4e877339ee79bce5675b /configs/chromebook_bob_defconfig | |
parent | eb89025013a6d4b1d9cf307e5a2a087196ee9f02 (diff) | |
download | u-boot-13634bb6585ec0e789da7504146873fb492456e5.tar.gz |
rockchip: gru: Allow setting up clocks in U-Boot proper
Commit fe974716326c ("rockchip: rk3288: Allow setting up clocks in
U-Boot proper") fixes some clock issues when chainloading U-Boot on
rk3288 chromebooks. Part of that change is still available in veyron's
board_early_init_r() function. Since chain-loading U-Boot proper from
vendor firmware is possible on gru boards as well, do the same thing for
them too.
On rk3399, this needs to detect whether SPL was run via handoff, so
enable that and bloblist kconfigs it needs for chromebook_bob.
Signed-off-by: Alper Nebi Yasak <alpernebiyasak@gmail.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Kever Yang<kever.yang@rock-chips.com>
Diffstat (limited to 'configs/chromebook_bob_defconfig')
-rw-r--r-- | configs/chromebook_bob_defconfig | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/configs/chromebook_bob_defconfig b/configs/chromebook_bob_defconfig index 4608892fb5..73635f0d13 100644 --- a/configs/chromebook_bob_defconfig +++ b/configs/chromebook_bob_defconfig @@ -19,6 +19,11 @@ CONFIG_DEBUG_UART=y CONFIG_DEFAULT_FDT_FILE="rockchip/rk3399-gru-bob.dtb" # CONFIG_DISPLAY_CPUINFO is not set CONFIG_DISPLAY_BOARDINFO_LATE=y +CONFIG_BOARD_EARLY_INIT_R=y +CONFIG_BLOBLIST=y +CONFIG_BLOBLIST_SIZE=0x1000 +CONFIG_BLOBLIST_ADDR=0x100000 +CONFIG_HANDOFF=y # CONFIG_SPL_RAW_IMAGE_SUPPORT is not set CONFIG_SPL_STACK_R=y CONFIG_SPL_STACK_R_MALLOC_SIMPLE_LEN=0x4000 |