linflex.h 393 B

123456789101112131415161718
  1. /*
  2. * Copyright 2024 NXP
  3. *
  4. * SPDX-License-Identifier: BSD-3-Clause
  5. */
  6. #ifndef LINFLEX_H
  7. #define LINFLEX_H
  8. #ifndef __ASSEMBLER__
  9. #include <drivers/console.h>
  10. int console_linflex_core_init(uintptr_t baseaddr, uint32_t clock,
  11. uint32_t baud);
  12. int console_linflex_register(uintptr_t baseaddr, uint32_t clock,
  13. uint32_t baud, console_t *console);
  14. #endif
  15. #endif /* LINFLEX_H */