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