arm-trusted-firmware/include/drivers/nxp/console/linflex.h
Ghennadi Procopciuc 306946b014 feat(nxp-drivers): add Linflex driver
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>
2024-04-25 11:22:25 +03:00

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 */