mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-02 01:19:49 +00:00
07112672a5
Add sdram driver to handle debug across rockchip SoCs. This would help to improve code debugging feature for sdram drivers in rockchip family, whoever wants to debug the driver should call these core debug code on their respective platform sdram drivers. Signed-off-by: Jagan Teki <jagan@amarulasolutions.com> Signed-off-by: YouMin Chen <cym@rock-chips.com> Reviewed-by: Kever Yang <Kever.yang@rock-chips.com>
26 lines
656 B
Text
26 lines
656 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.
|
|
|
|
endif # RAM_ROCKCHIP
|