xref: /optee_os/core/include/drivers/stm32_uart.h (revision 107d5ec29332dbab4f776228db41a73104357243)
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 stm32_uart_pdata {
12 	struct io_pa_va base;
13 	struct serial_chip chip;
14 	bool secure;
15 };
16 
17 void stm32_uart_init(struct stm32_uart_pdata *pd, vaddr_t base);
18 
19 #endif /*__STM32_UART_H__*/
20