diff options
author | Kever Yang <kever.yang@rock-chips.com> | 2019-07-09 22:14:18 +0800 |
---|---|---|
committer | Kever Yang <kever.yang@rock-chips.com> | 2019-07-20 23:59:44 +0800 |
commit | 97fd39c69ef710881f8d9c8db934bd5b4318b297 (patch) | |
tree | c3959780f423ab9289973a665eda6bad50194b89 /arch/arm | |
parent | 59591267711bef800858b805ed58d119425c9a11 (diff) | |
download | u-boot-97fd39c69ef710881f8d9c8db934bd5b4318b297.tar.gz u-boot-97fd39c69ef710881f8d9c8db934bd5b4318b297.tar.xz u-boot-97fd39c69ef710881f8d9c8db934bd5b4318b297.zip |
rockchip: Kconfig: move rk3368 config into its Kconfig
Each SoC have its config setting and its Kconfig, move
the specific setting to its own Kconfig file.
Signed-off-by: Kever Yang <kever.yang@rock-chips.com>
Diffstat (limited to 'arch/arm')
-rw-r--r-- | arch/arm/mach-rockchip/Kconfig | 13 | ||||
-rw-r--r-- | arch/arm/mach-rockchip/rk3368/Kconfig | 9 |
2 files changed, 9 insertions, 13 deletions
diff --git a/arch/arm/mach-rockchip/Kconfig b/arch/arm/mach-rockchip/Kconfig index 9ae8ec64c4..c41f143954 100644 --- a/arch/arm/mach-rockchip/Kconfig +++ b/arch/arm/mach-rockchip/Kconfig @@ -136,19 +136,6 @@ config ROCKCHIP_RK3368 On-chip peripherals include Gigabit Ethernet, USB2 host and OTG, SDIO, I2S, UARTs, SPI, I2C and PWMs. -if ROCKCHIP_RK3368 - -config TPL_TEXT_BASE - default 0xff8c1000 - -config TPL_MAX_SIZE - default 28672 - -config TPL_STACK - default 0xff8cffff - -endif - config ROCKCHIP_RK3399 bool "Support Rockchip RK3399" select ARM64 diff --git a/arch/arm/mach-rockchip/rk3368/Kconfig b/arch/arm/mach-rockchip/rk3368/Kconfig index 325572a7e4..31ef243a75 100644 --- a/arch/arm/mach-rockchip/rk3368/Kconfig +++ b/arch/arm/mach-rockchip/rk3368/Kconfig @@ -53,4 +53,13 @@ source "board/rockchip/evb_px5/Kconfig" config SPL_LDSCRIPT default "arch/arm/cpu/armv8/u-boot-spl.lds" +config TPL_MAX_SIZE + default 28672 + +config TPL_STACK + default 0xff8cffff + +config TPL_TEXT_BASE + default 0xff8c1000 + endif |