1 /* SPDX-License-Identifier: GPL-2.0+ */ 2 /* 3 * Copyright (c) 2014 Google, Inc 4 */ 5 6 #ifndef __serial_mxc_h 7 #define __serial_mxc_h 8 9 /* Information about a serial port */ 10 struct mxc_serial_plat { 11 struct mxc_uart *reg; /* address of registers in physical memory */ 12 #if CONFIG_IS_ENABLED(CLK_CCF) 13 struct clk_bulk clks; 14 #endif 15 bool use_dte; 16 }; 17 18 #endif 19