Ghennadi Procopciuc | 28d692a | 2024-01-26 15:25:24 +0200 | [diff] [blame] | 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 */ |