blob: 811697ce5c64207635388d3ce5420a5e0ed58777 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Simon Glassf35484d2014-09-22 17:30:57 -06002/*
3 * Copyright (c) 2014 Google, Inc
Simon Glassf35484d2014-09-22 17:30:57 -06004 */
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
Eric Anholtbe5a7dd2016-03-13 18:16:54 -070020 * @skip_init: Don't attempt to change port configuration (also means @clock
21 * is ignored)
Simon Glassf35484d2014-09-22 17:30:57 -060022 */
Lukasz Majewski58aec3f2023-05-19 12:43:52 +020023#include <dt-structs.h>
Simon Glassb75b15b2020-12-03 16:55:23 -070024struct pl01x_serial_plat {
Lukasz Majewski58aec3f2023-05-19 12:43:52 +020025#if CONFIG_IS_ENABLED(OF_PLATDATA)
26 struct dtd_serial_pl01x dtplat;
27#endif
Simon Glassf35484d2014-09-22 17:30:57 -060028 unsigned long base;
29 enum pl01x_type type;
30 unsigned int clock;
Eric Anholtbe5a7dd2016-03-13 18:16:54 -070031 bool skip_init;
Simon Glassf35484d2014-09-22 17:30:57 -060032};
33
34#endif