diff mbox series

[U-Boot,02/15] rockchip: Kconfig: move rk322x config into its Kconfig

Message ID 20190709141429.21442-3-kever.yang@rock-chips.com
State Accepted
Commit 45c1d341577ac565ba944672d148738f5b570e50
Delegated to: Kever Yang
Headers show
Series rockchip: clean up board defconfig and Kconfig defines | expand

Commit Message

Kever Yang July 9, 2019, 2:14 p.m. UTC
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>
---

 arch/arm/mach-rockchip/Kconfig        | 13 -------------
 arch/arm/mach-rockchip/rk322x/Kconfig | 10 ++++++++++
 2 files changed, 10 insertions(+), 13 deletions(-)
diff mbox series

Patch

diff --git a/arch/arm/mach-rockchip/Kconfig b/arch/arm/mach-rockchip/Kconfig
index 1090d21879..3f28782a09 100644
--- a/arch/arm/mach-rockchip/Kconfig
+++ b/arch/arm/mach-rockchip/Kconfig
@@ -68,19 +68,6 @@  config ROCKCHIP_RK322X
 	  and video codec support. Peripherals include Gigabit Ethernet,
 	  USB2 host and OTG, SDIO, I2S, UART, SPI, I2C and PWMs.
 
-if ROCKCHIP_RK322X
-
-config TPL_TEXT_BASE
-        default 0x10081000
-
-config TPL_MAX_SIZE
-        default 28672
-
-config TPL_STACK
-        default 0x10088000
-
-endif
-
 config ROCKCHIP_RK3288
 	bool "Support Rockchip RK3288"
 	select CPU_V7A
diff --git a/arch/arm/mach-rockchip/rk322x/Kconfig b/arch/arm/mach-rockchip/rk322x/Kconfig
index 8a1f95f785..cffb53183b 100644
--- a/arch/arm/mach-rockchip/rk322x/Kconfig
+++ b/arch/arm/mach-rockchip/rk322x/Kconfig
@@ -1,5 +1,6 @@ 
 if ROCKCHIP_RK322X
 
+
 config TARGET_EVB_RK3229
 	bool "EVB_RK3229"
 	select BOARD_LATE_INIT
@@ -13,6 +14,15 @@  config SYS_MALLOC_F_LEN
 config SPL_SERIAL_SUPPORT
 	default y
 
+config TPL_MAX_SIZE
+        default 28672
+
+config TPL_STACK
+        default 0x10088000
+
+config TPL_TEXT_BASE
+        default 0x10081000
+
 source "board/rockchip/evb_rk3229/Kconfig"
 
 endif