2018-05-06 17:58:06 -04:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0+ */
|
2014-10-01 19:57:27 -06:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2014 Google, Inc
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef __serial_mxc_h
|
|
|
|
|
#define __serial_mxc_h
|
|
|
|
|
|
|
|
|
|
/* Information about a serial port */
|
2020-12-03 16:55:23 -07:00
|
|
|
struct mxc_serial_plat {
|
2014-10-01 19:57:27 -06:00
|
|
|
struct mxc_uart *reg; /* address of registers in physical memory */
|
2016-07-13 00:25:35 -07:00
|
|
|
bool use_dte;
|
2014-10-01 19:57:27 -06:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif
|