imx_uart.h 385 B

123456789101112131415161718
  1. /*
  2. * Copyright (c) 2018-2019, ARM Limited and Contributors. All rights reserved.
  3. *
  4. * SPDX-License-Identifier: BSD-3-Clause
  5. */
  6. #ifndef IMX_UART_H
  7. #define IMX_UART_H
  8. #include <drivers/console.h>
  9. #ifndef __ASSEMBLER__
  10. int console_imx_uart_register(uintptr_t baseaddr, uint32_t clock, uint32_t baud,
  11. console_t *console);
  12. #endif /*__ASSEMBLER__*/
  13. #endif /* IMX_UART_H */