mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-08 14:14:32 +00:00
c661c511e9
Add initial support PHYTEC phyCORE-i.MX8MP SOM. Supported features: - 2GB LPDDR4 RAM - eMMC - external SD - debug UART2 - watchdog Signed-off-by: Teresa Remmet <t.remmet@phytec.de> Reviewed-by: Heiko Schocher <hs@denx.de>
11 lines
254 B
Makefile
11 lines
254 B
Makefile
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
#
|
|
# Copyright (C) 2020 PHYTEC Messtechnik GmbH
|
|
# Author: Teresa Remmet <t.remmet@phytec.de>
|
|
|
|
obj-y += phycore-imx8mp.o
|
|
|
|
ifdef CONFIG_SPL_BUILD
|
|
obj-y += spl.o
|
|
obj-$(CONFIG_IMX8M_LPDDR4) += lpddr4_timing.o
|
|
endif
|