mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-05 20:54:31 +00:00
db4510ff8e
i.MX8MP has similar architecture as i.MX8MN, but it has different clk root and index, so add that to make i.MX8MP could use the non-dm clock driver. Signed-off-by: Peng Fan <peng.fan@nxp.com>
8 lines
224 B
Makefile
8 lines
224 B
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
# Copyright 2017 NXP
|
|
|
|
obj-y += lowlevel_init.o
|
|
obj-y += clock_slice.o soc.o
|
|
obj-$(CONFIG_IMX8MQ) += clock_imx8mq.o
|
|
obj-$(CONFIG_IMX8MM)$(CONFIG_IMX8MN)$(CONFIG_IMX8MP) += clock_imx8mm.o
|