mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2025-08-16 04:07:00 +02:00
This patch adds i.MX95 19x19 EVK board basic support. Messaging unit for EdgeLock Secure Enclave, messaging unit for System Manager, uSDHC for SD Card, gpio, lpuart are supported now. Signed-off-by: Ye Li <ye.li@nxp.com> Signed-off-by: Alice Guo <alice.guo@nxp.com> Reviewed-by: Peng Fan <peng.fan@nxp.com>
37 lines
515 B
C
37 lines
515 B
C
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* Copyright 2025 NXP
|
|
*/
|
|
|
|
#include <asm/arch/clock.h>
|
|
#include <asm/gpio.h>
|
|
#include <asm/mach-imx/sys_proto.h>
|
|
|
|
int board_early_init_f(void)
|
|
{
|
|
/* UART1: A55, UART2: M33, UART3: M7 */
|
|
init_uart_clk(0);
|
|
|
|
return 0;
|
|
}
|
|
|
|
int board_init(void)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
int board_late_init(void)
|
|
{
|
|
if (IS_ENABLED(CONFIG_ENV_IS_IN_MMC))
|
|
board_late_mmc_env_init();
|
|
|
|
return 0;
|
|
}
|
|
|
|
int board_phys_sdram_size(phys_size_t *size)
|
|
{
|
|
*size = PHYS_SDRAM_SIZE + PHYS_SDRAM_2_SIZE;
|
|
|
|
return 0;
|
|
}
|