xref: /optee_os/core/include/drivers/stm32_uart.h (revision 62f21181c547da3bd098908300e5699e9ae5cca9)
1 /* SPDX-License-Identifier: BSD-2-Clause */
2 /*
3  * Copyright (c) 2017-2018, STMicroelectronics
4  */
5 
6 #ifndef __STM32_UART_H__
7 #define __STM32_UART_H__
8 
9 #include <drivers/serial.h>
10 
11 struct console_pdata {
12 	struct io_pa_va base;
13 	struct serial_chip chip;
14 };
15 
16 void stm32_uart_init(struct console_pdata *pd, vaddr_t base);
17 
18 #endif /*__STM32_UART_H__*/
19