19 lines
385 B
C
19 lines
385 B
C
/*
|
|
* Copyright (c) 2018-2019, ARM Limited and Contributors. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#ifndef IMX_UART_H
|
|
#define IMX_UART_H
|
|
|
|
#include <drivers/console.h>
|
|
|
|
#ifndef __ASSEMBLER__
|
|
|
|
int console_imx_uart_register(uintptr_t baseaddr, uint32_t clock, uint32_t baud,
|
|
console_t *console);
|
|
#endif /*__ASSEMBLER__*/
|
|
|
|
#endif /* IMX_UART_H */
|