xref: /optee_os/core/include/drivers/amlogic_uart.h (revision 19a31ec40245ae01a9adcd206eec2a4bb4479fc9)
1 /* SPDX-License-Identifier: BSD-2-Clause */
2 
3 #ifndef __DRIVERS_AMLOGIC_UART_H
4 #define __DRIVERS_AMLOGIC_UART_H
5 
6 #include <types_ext.h>
7 #include <drivers/serial.h>
8 
9 struct amlogic_uart_data {
10 	struct io_pa_va base;
11 	struct serial_chip chip;
12 };
13 
14 void amlogic_uart_init(struct amlogic_uart_data *pd, paddr_t base);
15 
16 #endif /* __DRIVERS_AMLOGIC_UART_H */
17