1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * (C) Copyright 2016 Stephen Warren <swarren@wwwdotorg.org>
4  *
5  * Derived from pl01x code:
6  * Copyright (c) 2014 Google, Inc
7  */
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  */
17 struct bcm283x_mu_serial_plat {
18 	unsigned long base;
19 	unsigned int clock;
20 	bool skip_init;
21 };
22 
23 #endif
24