blob: ba916fece3d174e7037272bcecb809ed00008674 [file] [log] [blame]
Googler25e92cf2023-12-13 10:05:01 +00001/* 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_platdata - 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_platdata {
17 unsigned long base;
18 int port;
19 int baudrate;
20};
21
22#endif /* __serial_coldfire_h */