1/* SPDX-License-Identifier: GPL-2.0+ */
2/* Synopsys DesignWare 8250 library header file. */
3
4#include <linux/types.h>
5
6#include "8250.h"
7
8struct dw8250_port_data {
9	/* Port properties */
10	int			line;
11
12	/* DMA operations */
13	struct uart_8250_dma	dma;
14
15	/* Hardware configuration */
16	u8			dlf_size;
17};
18
19void dw8250_setup_port(struct uart_port *p);
20