]> git.sur5r.net Git - u-boot/blob - include/dm/platform_data/serial_stm32x7.h
serial: bcm283x_mu: Detect disabled serial device
[u-boot] / include / dm / platform_data / serial_stm32x7.h
1 /*
2  * (C) Copyright 2016
3  * Vikas Manocha, <vikas.manocha@st.com>
4  *
5  * SPDX-License-Identifier:     GPL-2.0+
6  */
7
8 #ifndef __SERIAL_STM32x7_H
9 #define __SERIAL_STM32x7_H
10
11 /* Information about a serial port */
12 struct stm32x7_serial_platdata {
13         struct stm32_usart *base;  /* address of registers in physical memory */
14         unsigned int clock;
15 };
16
17 #endif /* __SERIAL_STM32x7_H */