// SPDX-License-Identifier: GPL-2.0+ /* * Copyright 2025 NXP */ #include #include #include 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; }