mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-07 21:54:45 +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>
9 lines
219 B
Makefile
9 lines
219 B
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
# Copyright (C) 2017 Texas Instruments Incorporated - http://www.ti.com/
|
|
|
|
obj- += dummy.o
|
|
|
|
ifndef CONFIG_SPL_BUILD
|
|
obj-$(CONFIG_CMD_DDR3) += ddr3.o
|
|
obj-$(CONFIG_CMD_PD) += pd.o
|
|
endif
|