blob: 5e068f390bd2bee97885fb74f4484d4a12278e5f [file] [log] [blame]
Simon Glassaed2fbe2014-09-22 17:30:57 -06001/*
2 * Copyright (c) 2014 Google, Inc
3 * SPDX-License-Identifier: GPL-2.0+
4 */
5
6#ifndef __serial_pl01x_h
7#define __serial_pl01x_h
8
9enum pl01x_type {
10 TYPE_PL010,
11 TYPE_PL011,
12};
13
14/*
15 *Information about a serial port
16 *
17 * @base: Register base address
18 * @type: Port type
19 * @clock: Input clock rate, used for calculating the baud rate divisor
20 */
21struct pl01x_serial_platdata {
22 unsigned long base;
23 enum pl01x_type type;
24 unsigned int clock;
25};
26
27#endif