mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-15 17:28:15 +00:00
b6cf08949d
Supporting LPDDR4 code support in RK3399 would increases the size of SPL/TPL. So add kconfig entry for RK3399 LPDDR4 code so-that the boards have LPDDR4 can enable them via defconfig. Signed-off-by: Jagan Teki <jagan@amarulasolutions.com> Reviewed-by: Kever Yang <Kever.yang@rock-chips.com>
33 lines
847 B
Text
33 lines
847 B
Text
config RAM_ROCKCHIP
|
|
bool "Ram drivers support for Rockchip SoCs"
|
|
depends on RAM && ARCH_ROCKCHIP
|
|
default y
|
|
help
|
|
This enables support for ram drivers Rockchip SoCs.
|
|
|
|
if RAM_ROCKCHIP
|
|
|
|
config RAM_ROCKCHIP_DEBUG
|
|
bool "Rockchip ram drivers debugging"
|
|
help
|
|
This enables debugging ram driver API's for the platforms
|
|
based on Rockchip SoCs.
|
|
|
|
This is an option for developers to understand the ram drivers
|
|
initialization, configurations and etc.
|
|
|
|
config RAM_RK3399
|
|
bool "Ram driver for Rockchip RK3399"
|
|
default ROCKCHIP_RK3399
|
|
help
|
|
This enables ram drivers support for the platforms based on
|
|
Rockchip RK3399 SoC.
|
|
|
|
config RAM_RK3399_LPDDR4
|
|
bool "LPDDR4 support for Rockchip RK3399"
|
|
depends on RAM_RK3399
|
|
help
|
|
This enables LPDDR4 sdram code support for the platforms based
|
|
on Rockchip RK3399 SoC.
|
|
|
|
endif # RAM_ROCKCHIP
|