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