blob: 5e265e9087d9711b5a763ba8bfa9fc996757b530 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
angelo@sysam.itb2d1e2a2016-04-27 21:51:13 +02002/*
3 * Copyright (c) 2015 Angelo Dureghello <angelo@sysam.it>
angelo@sysam.itb2d1e2a2016-04-27 21:51:13 +02004 */
5
6#ifndef __serial_coldfire_h
7#define __serial_coldfire_h
8
9/*
Simon Glassb75b15b2020-12-03 16:55:23 -070010 * struct coldfire_serial_plat - information about a coldfire port
angelo@sysam.itb2d1e2a2016-04-27 21:51:13 +020011 *
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 */
Simon Glassb75b15b2020-12-03 16:55:23 -070016struct coldfire_serial_plat {
angelo@sysam.itb2d1e2a2016-04-27 21:51:13 +020017 unsigned long base;
18 int port;
19 int baudrate;
20};
21
22#endif /* __serial_coldfire_h */