1 /* 2 * Copyright (c) 2015 Angelo Dureghello <angelo@sysam.it> 3 * 4 * SPDX-License-Identifier: GPL-2.0+ 5 */ 6 7 #ifndef __serial_coldfire_h 8 #define __serial_coldfire_h 9 10 /* 11 * struct coldfire_serial_platdata - information about a coldfire port 12 * 13 * @base: Uart port base register address 14 * @port: Uart port index, for cpu with pinmux for uart / gpio 15 * baudrtatre: Uart port baudrate 16 */ 17 struct coldfire_serial_platdata { 18 unsigned long base; 19 int port; 20 int baudrate; 21 }; 22 23 #endif /* __serial_coldfire_h */ 24