1 /* 2 * (C) Copyright 2016 Stephen Warren <swarren@wwwdotorg.org> 3 * 4 * Derived from pl01x code: 5 * Copyright (c) 2014 Google, Inc 6 * 7 * SPDX-License-Identifier: GPL-2.0+ 8 */ 9 10 #ifndef __serial_bcm283x_mu_h 11 #define __serial_bcm283x_mu_h 12 13 /* 14 *Information about a serial port 15 * 16 * @base: Register base address 17 */ 18 struct bcm283x_mu_serial_platdata { 19 unsigned long base; 20 unsigned int clock; 21 bool skip_init; 22 bool disabled; 23 }; 24 25 #endif 26