xref: /rk3399_rockchip-uboot/include/dm/platform_data/serial_mxc.h (revision 86256b796ee757b7d1407233d0ca71576a7b8182)
1*86256b79SMasahiro Yamada /*
2*86256b79SMasahiro Yamada  * Copyright (c) 2014 Google, Inc
3*86256b79SMasahiro Yamada  * SPDX-License-Identifier:	GPL-2.0+
4*86256b79SMasahiro Yamada  */
5*86256b79SMasahiro Yamada 
6*86256b79SMasahiro Yamada #ifndef __serial_mxc_h
7*86256b79SMasahiro Yamada #define __serial_mxc_h
8*86256b79SMasahiro Yamada 
9*86256b79SMasahiro Yamada /* Information about a serial port */
10*86256b79SMasahiro Yamada struct mxc_serial_platdata {
11*86256b79SMasahiro Yamada 	struct mxc_uart *reg;  /* address of registers in physical memory */
12*86256b79SMasahiro Yamada };
13*86256b79SMasahiro Yamada 
14*86256b79SMasahiro Yamada #endif
15