You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
385 B
19 lines
385 B
4 months ago
|
/*
|
||
|
* 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 */
|