mirror of
https://github.com/smaeul/u-boot.git
synced 2025-09-15 06:26:07 +01:00
The phyCORE-i.MX 93 is available in various variants. Relevant variant options for the spl/u-boot are: - with or without HS400 support for the eMMC - with 1GB ram chip, or 2GB ram chip The phyCORE's eeprom contains all information about the existing variant options. Add evaluation of the eeprom data to the spl/u-boot to enable/disable HS400 and to select the appropriate ram configuration at startup. Signed-off-by: Christoph Stoidner <c.stoidner@phytec.de> Reviewed-by: Wadim Egorov <w.egorov@phytec.de> Reviewed-by: Yannic Moog <y.moog@phytec.de> Tested-by: Primoz Fiser <primoz.fiser@norik.com>
14 lines
420 B
Makefile
14 lines
420 B
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
# Copyright (C) 2023 PHYTEC Messtechnik GmbH
|
|
# Author: Teresa Remmet <t.remmet@phytec.de>
|
|
|
|
ifdef CONFIG_XPL_BUILD
|
|
# necessary to create built-in.o
|
|
obj- := __dummy__.o
|
|
endif
|
|
|
|
obj-y += phytec_som_detection.o phytec_som_detection_blocks.o
|
|
obj-$(CONFIG_ARCH_K3) += am6_som_detection.o k3/
|
|
obj-$(CONFIG_ARCH_IMX8M) += imx8m_som_detection.o
|
|
obj-$(CONFIG_ARCH_IMX9) += imx93_som_detection.o
|