mirror of
https://github.com/torvalds/linux.git
synced 2024-11-24 13:11:40 +00:00
b9d6c47a2b
The DTPM framework does support now the hierarchy description. The platform specific code can call the hierarchy creation function with an array of struct dtpm_node pointing to their parent. This patch provides a description of the big / Little CPUs and the GPU and tie them together under a virtual 'package' name. Only rk3399 is described now. The description could be extended in the future with the memory controller with devfreq. The description is always a module and it describes the soft dependencies. The userspace has to load the softdeps module in the right order. Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org> Reviewed-by; Heiko Stuebner <heiko@sntech.de> Link: https://lore.kernel.org/r/20220128163537.212248-6-daniel.lezcano@linaro.org
9 lines
238 B
Makefile
9 lines
238 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
#
|
|
# Rockchip Soc drivers
|
|
#
|
|
obj-$(CONFIG_ROCKCHIP_GRF) += grf.o
|
|
obj-$(CONFIG_ROCKCHIP_IODOMAIN) += io-domain.o
|
|
obj-$(CONFIG_ROCKCHIP_PM_DOMAINS) += pm_domains.o
|
|
obj-$(CONFIG_ROCKCHIP_DTPM) += dtpm.o
|