mx8menlo.c 363 B

123456789101112131415161718
  1. // SPDX-License-Identifier: GPL-2.0+
  2. /*
  3. * Copyright 2021-2022 Marek Vasut <marex@denx.de>
  4. */
  5. #include <common.h>
  6. #include <asm/arch/clock.h>
  7. #include <asm/arch/imx8mm_pins.h>
  8. #include <asm/arch/sys_proto.h>
  9. #include <asm/global_data.h>
  10. #include <asm/io.h>
  11. #include <asm/mach-imx/iomux-v3.h>
  12. #include <spl.h>
  13. void board_early_init(void)
  14. {
  15. init_uart_clk(0);
  16. }