mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-12 07:57:21 +00:00
d239d9d946
Support pinctrl/clk/sdhc, include ddr4 timing data. Log: U-Boot SPL 2019.10-rc3-00356-g497c500423-dirty (Sep 16 2019 - 10:54:58 +0800) Normal Boot Trying to boot from BOOTROM image offset 0x8000, pagesize 0x200, ivt offset 0x0 U-Boot 2019.10-rc3-00356-g497c500423-dirty (Sep 16 2019 - 10:54:58 +0800) CPU: Freescale i.MX8MNano rev1.0 at 24 MHz Reset cause: POR Model: NXP i.MX8MNano DDR4 EVK board DRAM: 2 GiB MMC: FSL_SDHC: 1, FSL_SDHC: 2 Loading Environment from MMC... *** Warning - bad CRC, using default environment In: serial Out: serial Err: serial Net: No ethernet found. Hit any key to stop autoboot: 0 Signed-off-by: Peng Fan <peng.fan@nxp.com>
49 lines
710 B
Text
49 lines
710 B
Text
if ARCH_IMX8M
|
|
|
|
config IMX8M
|
|
bool
|
|
select ROM_UNIFIED_SECTIONS
|
|
|
|
config IMX8MQ
|
|
bool
|
|
select IMX8M
|
|
|
|
config IMX8MM
|
|
bool
|
|
select IMX8M
|
|
|
|
config IMX8MN
|
|
bool
|
|
select IMX8M
|
|
|
|
config SYS_SOC
|
|
default "imx8m"
|
|
|
|
choice
|
|
prompt "NXP i.MX8M board select"
|
|
optional
|
|
|
|
config TARGET_IMX8MQ_EVK
|
|
bool "imx8mq_evk"
|
|
select IMX8MQ
|
|
select IMX8M_LPDDR4
|
|
|
|
config TARGET_IMX8MM_EVK
|
|
bool "imx8mm LPDDR4 EVK board"
|
|
select IMX8MM
|
|
select SUPPORT_SPL
|
|
select IMX8M_LPDDR4
|
|
|
|
config TARGET_IMX8MN_EVK
|
|
bool "imx8mn DDR4 EVK board"
|
|
select IMX8MN
|
|
select SUPPORT_SPL
|
|
select IMX8M_DDR4
|
|
|
|
endchoice
|
|
|
|
source "board/freescale/imx8mq_evk/Kconfig"
|
|
source "board/freescale/imx8mm_evk/Kconfig"
|
|
source "board/freescale/imx8mn_evk/Kconfig"
|
|
|
|
endif
|