mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-22 12:34:19 +00:00

This is a UART controller found on NXP automotive parts. For instance: S32V, S32G and S32R. Change-Id: Iff0dd0c379633ac0651e5db287537c87666b57d2 Signed-off-by: Bogdan Hamciuc <bogdan.hamciuc@nxp.com> Signed-off-by: Ghennadi Procopciuc <ghennadi.procopciuc@nxp.com>
18 lines
393 B
C
18 lines
393 B
C
/*
|
|
* Copyright 2024 NXP
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
#ifndef LINFLEX_H
|
|
#define LINFLEX_H
|
|
|
|
#ifndef __ASSEMBLER__
|
|
#include <drivers/console.h>
|
|
|
|
int console_linflex_core_init(uintptr_t baseaddr, uint32_t clock,
|
|
uint32_t baud);
|
|
int console_linflex_register(uintptr_t baseaddr, uint32_t clock,
|
|
uint32_t baud, console_t *console);
|
|
#endif
|
|
|
|
#endif /* LINFLEX_H */
|