mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-06 05:04:26 +00:00
a3aff5e5f3
Add i.MX8MM ccf driver support. Modifed from Linux Kernel 5.3.0-rc1, drop some entries that not used in U-Boot and adapt to U-Boot CCF style. Signed-off-by: Peng Fan <peng.fan@nxp.com> Cc: Lukasz Majewski <lukma@denx.de>
16 lines
503 B
Makefile
16 lines
503 B
Makefile
# Copyright 2018 NXP
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
obj-$(CONFIG_$(SPL_TPL_)CLK_CCF) += clk-gate2.o clk-pllv3.o clk-pfd.o
|
|
obj-$(CONFIG_$(SPL_TPL_)CLK_IMX6Q) += clk-imx6q.o
|
|
obj-$(CONFIG_CLK_IMX8) += clk-imx8.o
|
|
|
|
ifdef CONFIG_CLK_IMX8
|
|
obj-$(CONFIG_IMX8QXP) += clk-imx8qxp.o
|
|
obj-$(CONFIG_IMX8QM) += clk-imx8qm.o
|
|
endif
|
|
obj-$(CONFIG_$(SPL_TPL_)CLK_IMX8MM) += clk-imx8mm.o clk-pll14xx.o \
|
|
clk-composite-8m.o
|
|
obj-$(CONFIG_$(SPL_TPL_)CLK_IMX8MN) += clk-imx8mn.o clk-pll14xx.o \
|
|
clk-composite-8m.o
|