mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 15:37:23 +00:00
f79753c3de
Add support command for debugging K3 power domains. This is useful with the HSM rearch setup, where power domains are directly controlled by SPL instead of going through the TI SCI layer. The debugging support is only available in the u-boot codebase though, so the raw register access power domain layer must be enabled on u-boot side for this to work. By default, u-boot side uses the TI SCI layer, and R5 SPL only uses the direct access methods. Signed-off-by: Tero Kristo <t-kristo@ti.com> Signed-off-by: Tero Kristo <kristo@kernel.org> Reviewed-by: Jaehoon Chung <jh80.chung@samsung.com>
18 lines
521 B
Text
18 lines
521 B
Text
menu "TI specific command line interface"
|
|
|
|
config CMD_DDR3
|
|
bool "command for verifying DDR features"
|
|
help
|
|
Support for testing ddr3 on TI platforms. This command
|
|
supports memory verification, memory comapre and ecc
|
|
verification if supported.
|
|
|
|
config CMD_PD
|
|
bool "command for verifying power domains"
|
|
depends on TI_POWER_DOMAIN
|
|
help
|
|
Debug command for K3 power domains. For this to work, the
|
|
K3 power domain driver must be enabled for the u-boot; by
|
|
default it is only enabled for SPL.
|
|
|
|
endmenu
|