blob: 37f5174dbf2ed6a833517cdf36eb4d0a493a79fa [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Stephen Warren3917c262016-03-18 21:41:38 -06002/*
3 * (C) Copyright 2016 Stephen Warren <swarren@wwwdotorg.org>
4 *
5 * Derived from pl01x code:
6 * Copyright (c) 2014 Google, Inc
Stephen Warren3917c262016-03-18 21:41:38 -06007 */
8
9#ifndef __serial_bcm283x_mu_h
10#define __serial_bcm283x_mu_h
11
12/*
13 *Information about a serial port
14 *
15 * @base: Register base address
16 */
17struct bcm283x_mu_serial_platdata {
18 unsigned long base;
19 unsigned int clock;
20 bool skip_init;
Stephen Warren3917c262016-03-18 21:41:38 -060021};
22
23#endif