mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-17 01:04:19 +08:00
b41b0ce598
There are drivers which just need to get multiple interconnect paths, request some predefined amounts of bandwidth and then just toggle the paths between enabled/disabled state. The aim of this patch is simplify the above and to allow drivers to put all the path names and bandwidth data into a single static icc_bulk_data table and call the icc_bulk_* functions on that table in order to scale all the interconnect paths in parallel. Suggested-by: Evan Green <evgreen@chromium.org> Suggested-by: Bjorn Andersson <bjorn.andersson@linaro.org> Reviewed-by: Bjorn Andersson <bjorn.andersson@linaro.org> Link: https://lore.kernel.org/r/20200729123439.9961-1-georgi.djakov@linaro.org Signed-off-by: Georgi Djakov <georgi.djakov@linaro.org>
9 lines
224 B
Makefile
9 lines
224 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
CFLAGS_core.o := -I$(src)
|
|
icc-core-objs := core.o bulk.o
|
|
|
|
obj-$(CONFIG_INTERCONNECT) += icc-core.o
|
|
obj-$(CONFIG_INTERCONNECT_IMX) += imx/
|
|
obj-$(CONFIG_INTERCONNECT_QCOM) += qcom/
|