1/*
2 *Copyright (C) 2011 LAPIS Semiconductor Co., Ltd.
3 *
4 *This program is free software; you can redistribute it and/or modify
5 *it under the terms of the GNU General Public License as published by
6 *the Free Software Foundation; version 2 of the License.
7 *
8 *This program is distributed in the hope that it will be useful,
9 *but WITHOUT ANY WARRANTY; without even the implied warranty of
10 *MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11 *GNU General Public License for more details.
12 *
13 *You should have received a copy of the GNU General Public License
14 *along with this program; if not, write to the Free Software
15 *Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307, USA.
16 */
17#include <linux/kernel.h>
18#include <linux/serial_reg.h>
19#include <linux/slab.h>
20#include <linux/module.h>
21#include <linux/pci.h>
22#include <linux/serial_core.h>
23#include <linux/tty.h>
24#include <linux/tty_flip.h>
25#include <linux/interrupt.h>
26#include <linux/io.h>
27#include <linux/dmi.h>
28#include <linux/console.h>
29#include <linux/nmi.h>
30#include <linux/delay.h>
31
32#include <linux/debugfs.h>
33#include <linux/dmaengine.h>
34#include <linux/pch_dma.h>
35
36enum {
37	PCH_UART_HANDLED_RX_INT_SHIFT,
38	PCH_UART_HANDLED_TX_INT_SHIFT,
39	PCH_UART_HANDLED_RX_ERR_INT_SHIFT,
40	PCH_UART_HANDLED_RX_TRG_INT_SHIFT,
41	PCH_UART_HANDLED_MS_INT_SHIFT,
42};
43
44enum {
45	PCH_UART_8LINE,
46	PCH_UART_2LINE,
47};
48
49#define PCH_UART_DRIVER_DEVICE "ttyPCH"
50
51/* Set the max number of UART port
52 * Intel EG20T PCH: 4 port
53 * LAPIS Semiconductor ML7213 IOH: 3 port
54 * LAPIS Semiconductor ML7223 IOH: 2 port
55*/
56#define PCH_UART_NR	4
57
58#define PCH_UART_HANDLED_RX_INT	(1<<((PCH_UART_HANDLED_RX_INT_SHIFT)<<1))
59#define PCH_UART_HANDLED_TX_INT	(1<<((PCH_UART_HANDLED_TX_INT_SHIFT)<<1))
60#define PCH_UART_HANDLED_RX_ERR_INT	(1<<((\
61					PCH_UART_HANDLED_RX_ERR_INT_SHIFT)<<1))
62#define PCH_UART_HANDLED_RX_TRG_INT	(1<<((\
63					PCH_UART_HANDLED_RX_TRG_INT_SHIFT)<<1))
64#define PCH_UART_HANDLED_MS_INT	(1<<((PCH_UART_HANDLED_MS_INT_SHIFT)<<1))
65
66#define PCH_UART_RBR		0x00
67#define PCH_UART_THR		0x00
68
69#define PCH_UART_IER_MASK	(PCH_UART_IER_ERBFI|PCH_UART_IER_ETBEI|\
70				PCH_UART_IER_ELSI|PCH_UART_IER_EDSSI)
71#define PCH_UART_IER_ERBFI	0x00000001
72#define PCH_UART_IER_ETBEI	0x00000002
73#define PCH_UART_IER_ELSI	0x00000004
74#define PCH_UART_IER_EDSSI	0x00000008
75
76#define PCH_UART_IIR_IP			0x00000001
77#define PCH_UART_IIR_IID		0x00000006
78#define PCH_UART_IIR_MSI		0x00000000
79#define PCH_UART_IIR_TRI		0x00000002
80#define PCH_UART_IIR_RRI		0x00000004
81#define PCH_UART_IIR_REI		0x00000006
82#define PCH_UART_IIR_TOI		0x00000008
83#define PCH_UART_IIR_FIFO256		0x00000020
84#define PCH_UART_IIR_FIFO64		PCH_UART_IIR_FIFO256
85#define PCH_UART_IIR_FE			0x000000C0
86
87#define PCH_UART_FCR_FIFOE		0x00000001
88#define PCH_UART_FCR_RFR		0x00000002
89#define PCH_UART_FCR_TFR		0x00000004
90#define PCH_UART_FCR_DMS		0x00000008
91#define PCH_UART_FCR_FIFO256		0x00000020
92#define PCH_UART_FCR_RFTL		0x000000C0
93
94#define PCH_UART_FCR_RFTL1		0x00000000
95#define PCH_UART_FCR_RFTL64		0x00000040
96#define PCH_UART_FCR_RFTL128		0x00000080
97#define PCH_UART_FCR_RFTL224		0x000000C0
98#define PCH_UART_FCR_RFTL16		PCH_UART_FCR_RFTL64
99#define PCH_UART_FCR_RFTL32		PCH_UART_FCR_RFTL128
100#define PCH_UART_FCR_RFTL56		PCH_UART_FCR_RFTL224
101#define PCH_UART_FCR_RFTL4		PCH_UART_FCR_RFTL64
102#define PCH_UART_FCR_RFTL8		PCH_UART_FCR_RFTL128
103#define PCH_UART_FCR_RFTL14		PCH_UART_FCR_RFTL224
104#define PCH_UART_FCR_RFTL_SHIFT		6
105
106#define PCH_UART_LCR_WLS	0x00000003
107#define PCH_UART_LCR_STB	0x00000004
108#define PCH_UART_LCR_PEN	0x00000008
109#define PCH_UART_LCR_EPS	0x00000010
110#define PCH_UART_LCR_SP		0x00000020
111#define PCH_UART_LCR_SB		0x00000040
112#define PCH_UART_LCR_DLAB	0x00000080
113#define PCH_UART_LCR_NP		0x00000000
114#define PCH_UART_LCR_OP		PCH_UART_LCR_PEN
115#define PCH_UART_LCR_EP		(PCH_UART_LCR_PEN | PCH_UART_LCR_EPS)
116#define PCH_UART_LCR_1P		(PCH_UART_LCR_PEN | PCH_UART_LCR_SP)
117#define PCH_UART_LCR_0P		(PCH_UART_LCR_PEN | PCH_UART_LCR_EPS |\
118				PCH_UART_LCR_SP)
119
120#define PCH_UART_LCR_5BIT	0x00000000
121#define PCH_UART_LCR_6BIT	0x00000001
122#define PCH_UART_LCR_7BIT	0x00000002
123#define PCH_UART_LCR_8BIT	0x00000003
124
125#define PCH_UART_MCR_DTR	0x00000001
126#define PCH_UART_MCR_RTS	0x00000002
127#define PCH_UART_MCR_OUT	0x0000000C
128#define PCH_UART_MCR_LOOP	0x00000010
129#define PCH_UART_MCR_AFE	0x00000020
130
131#define PCH_UART_LSR_DR		0x00000001
132#define PCH_UART_LSR_ERR	(1<<7)
133
134#define PCH_UART_MSR_DCTS	0x00000001
135#define PCH_UART_MSR_DDSR	0x00000002
136#define PCH_UART_MSR_TERI	0x00000004
137#define PCH_UART_MSR_DDCD	0x00000008
138#define PCH_UART_MSR_CTS	0x00000010
139#define PCH_UART_MSR_DSR	0x00000020
140#define PCH_UART_MSR_RI		0x00000040
141#define PCH_UART_MSR_DCD	0x00000080
142#define PCH_UART_MSR_DELTA	(PCH_UART_MSR_DCTS | PCH_UART_MSR_DDSR |\
143				PCH_UART_MSR_TERI | PCH_UART_MSR_DDCD)
144
145#define PCH_UART_DLL		0x00
146#define PCH_UART_DLM		0x01
147
148#define PCH_UART_BRCSR		0x0E
149
150#define PCH_UART_IID_RLS	(PCH_UART_IIR_REI)
151#define PCH_UART_IID_RDR	(PCH_UART_IIR_RRI)
152#define PCH_UART_IID_RDR_TO	(PCH_UART_IIR_RRI | PCH_UART_IIR_TOI)
153#define PCH_UART_IID_THRE	(PCH_UART_IIR_TRI)
154#define PCH_UART_IID_MS		(PCH_UART_IIR_MSI)
155
156#define PCH_UART_HAL_PARITY_NONE	(PCH_UART_LCR_NP)
157#define PCH_UART_HAL_PARITY_ODD		(PCH_UART_LCR_OP)
158#define PCH_UART_HAL_PARITY_EVEN	(PCH_UART_LCR_EP)
159#define PCH_UART_HAL_PARITY_FIX1	(PCH_UART_LCR_1P)
160#define PCH_UART_HAL_PARITY_FIX0	(PCH_UART_LCR_0P)
161#define PCH_UART_HAL_5BIT		(PCH_UART_LCR_5BIT)
162#define PCH_UART_HAL_6BIT		(PCH_UART_LCR_6BIT)
163#define PCH_UART_HAL_7BIT		(PCH_UART_LCR_7BIT)
164#define PCH_UART_HAL_8BIT		(PCH_UART_LCR_8BIT)
165#define PCH_UART_HAL_STB1		0
166#define PCH_UART_HAL_STB2		(PCH_UART_LCR_STB)
167
168#define PCH_UART_HAL_CLR_TX_FIFO	(PCH_UART_FCR_TFR)
169#define PCH_UART_HAL_CLR_RX_FIFO	(PCH_UART_FCR_RFR)
170#define PCH_UART_HAL_CLR_ALL_FIFO	(PCH_UART_HAL_CLR_TX_FIFO | \
171					PCH_UART_HAL_CLR_RX_FIFO)
172
173#define PCH_UART_HAL_DMA_MODE0		0
174#define PCH_UART_HAL_FIFO_DIS		0
175#define PCH_UART_HAL_FIFO16		(PCH_UART_FCR_FIFOE)
176#define PCH_UART_HAL_FIFO256		(PCH_UART_FCR_FIFOE | \
177					PCH_UART_FCR_FIFO256)
178#define PCH_UART_HAL_FIFO64		(PCH_UART_HAL_FIFO256)
179#define PCH_UART_HAL_TRIGGER1		(PCH_UART_FCR_RFTL1)
180#define PCH_UART_HAL_TRIGGER64		(PCH_UART_FCR_RFTL64)
181#define PCH_UART_HAL_TRIGGER128		(PCH_UART_FCR_RFTL128)
182#define PCH_UART_HAL_TRIGGER224		(PCH_UART_FCR_RFTL224)
183#define PCH_UART_HAL_TRIGGER16		(PCH_UART_FCR_RFTL16)
184#define PCH_UART_HAL_TRIGGER32		(PCH_UART_FCR_RFTL32)
185#define PCH_UART_HAL_TRIGGER56		(PCH_UART_FCR_RFTL56)
186#define PCH_UART_HAL_TRIGGER4		(PCH_UART_FCR_RFTL4)
187#define PCH_UART_HAL_TRIGGER8		(PCH_UART_FCR_RFTL8)
188#define PCH_UART_HAL_TRIGGER14		(PCH_UART_FCR_RFTL14)
189#define PCH_UART_HAL_TRIGGER_L		(PCH_UART_FCR_RFTL64)
190#define PCH_UART_HAL_TRIGGER_M		(PCH_UART_FCR_RFTL128)
191#define PCH_UART_HAL_TRIGGER_H		(PCH_UART_FCR_RFTL224)
192
193#define PCH_UART_HAL_RX_INT		(PCH_UART_IER_ERBFI)
194#define PCH_UART_HAL_TX_INT		(PCH_UART_IER_ETBEI)
195#define PCH_UART_HAL_RX_ERR_INT		(PCH_UART_IER_ELSI)
196#define PCH_UART_HAL_MS_INT		(PCH_UART_IER_EDSSI)
197#define PCH_UART_HAL_ALL_INT		(PCH_UART_IER_MASK)
198
199#define PCH_UART_HAL_DTR		(PCH_UART_MCR_DTR)
200#define PCH_UART_HAL_RTS		(PCH_UART_MCR_RTS)
201#define PCH_UART_HAL_OUT		(PCH_UART_MCR_OUT)
202#define PCH_UART_HAL_LOOP		(PCH_UART_MCR_LOOP)
203#define PCH_UART_HAL_AFE		(PCH_UART_MCR_AFE)
204
205#define PCI_VENDOR_ID_ROHM		0x10DB
206
207#define BOTH_EMPTY (UART_LSR_TEMT | UART_LSR_THRE)
208
209#define DEFAULT_UARTCLK   1843200 /*   1.8432 MHz */
210#define CMITC_UARTCLK   192000000 /* 192.0000 MHz */
211#define FRI2_64_UARTCLK  64000000 /*  64.0000 MHz */
212#define FRI2_48_UARTCLK  48000000 /*  48.0000 MHz */
213#define NTC1_UARTCLK     64000000 /*  64.0000 MHz */
214
215struct pch_uart_buffer {
216	unsigned char *buf;
217	int size;
218};
219
220struct eg20t_port {
221	struct uart_port port;
222	int port_type;
223	void __iomem *membase;
224	resource_size_t mapbase;
225	unsigned int iobase;
226	struct pci_dev *pdev;
227	int fifo_size;
228	int uartclk;
229	int start_tx;
230	int start_rx;
231	int tx_empty;
232	int int_dis_flag;
233	int trigger;
234	int trigger_level;
235	struct pch_uart_buffer rxbuf;
236	unsigned int dmsr;
237	unsigned int fcr;
238	unsigned int mcr;
239	unsigned int use_dma;
240	unsigned int use_dma_flag;
241	struct dma_async_tx_descriptor	*desc_tx;
242	struct dma_async_tx_descriptor	*desc_rx;
243	struct pch_dma_slave		param_tx;
244	struct pch_dma_slave		param_rx;
245	struct dma_chan			*chan_tx;
246	struct dma_chan			*chan_rx;
247	struct scatterlist		*sg_tx_p;
248	int				nent;
249	struct scatterlist		sg_rx;
250	int				tx_dma_use;
251	void				*rx_buf_virt;
252	dma_addr_t			rx_buf_dma;
253
254	struct dentry	*debugfs;
255};
256
257/**
258 * struct pch_uart_driver_data - private data structure for UART-DMA
259 * @port_type:			The number of DMA channel
260 * @line_no:			UART port line number (0, 1, 2...)
261 */
262struct pch_uart_driver_data {
263	int port_type;
264	int line_no;
265};
266
267enum pch_uart_num_t {
268	pch_et20t_uart0 = 0,
269	pch_et20t_uart1,
270	pch_et20t_uart2,
271	pch_et20t_uart3,
272	pch_ml7213_uart0,
273	pch_ml7213_uart1,
274	pch_ml7213_uart2,
275	pch_ml7223_uart0,
276	pch_ml7223_uart1,
277	pch_ml7831_uart0,
278	pch_ml7831_uart1,
279};
280
281static struct pch_uart_driver_data drv_dat[] = {
282	[pch_et20t_uart0] = {PCH_UART_8LINE, 0},
283	[pch_et20t_uart1] = {PCH_UART_2LINE, 1},
284	[pch_et20t_uart2] = {PCH_UART_2LINE, 2},
285	[pch_et20t_uart3] = {PCH_UART_2LINE, 3},
286	[pch_ml7213_uart0] = {PCH_UART_8LINE, 0},
287	[pch_ml7213_uart1] = {PCH_UART_2LINE, 1},
288	[pch_ml7213_uart2] = {PCH_UART_2LINE, 2},
289	[pch_ml7223_uart0] = {PCH_UART_8LINE, 0},
290	[pch_ml7223_uart1] = {PCH_UART_2LINE, 1},
291	[pch_ml7831_uart0] = {PCH_UART_8LINE, 0},
292	[pch_ml7831_uart1] = {PCH_UART_2LINE, 1},
293};
294
295#ifdef CONFIG_SERIAL_PCH_UART_CONSOLE
296static struct eg20t_port *pch_uart_ports[PCH_UART_NR];
297#endif
298static unsigned int default_baud = 9600;
299static unsigned int user_uartclk = 0;
300static const int trigger_level_256[4] = { 1, 64, 128, 224 };
301static const int trigger_level_64[4] = { 1, 16, 32, 56 };
302static const int trigger_level_16[4] = { 1, 4, 8, 14 };
303static const int trigger_level_1[4] = { 1, 1, 1, 1 };
304
305#ifdef CONFIG_DEBUG_FS
306
307#define PCH_REGS_BUFSIZE	1024
308
309
310static ssize_t port_show_regs(struct file *file, char __user *user_buf,
311				size_t count, loff_t *ppos)
312{
313	struct eg20t_port *priv = file->private_data;
314	char *buf;
315	u32 len = 0;
316	ssize_t ret;
317	unsigned char lcr;
318
319	buf = kzalloc(PCH_REGS_BUFSIZE, GFP_KERNEL);
320	if (!buf)
321		return 0;
322
323	len += snprintf(buf + len, PCH_REGS_BUFSIZE - len,
324			"PCH EG20T port[%d] regs:\n", priv->port.line);
325
326	len += snprintf(buf + len, PCH_REGS_BUFSIZE - len,
327			"=================================\n");
328	len += snprintf(buf + len, PCH_REGS_BUFSIZE - len,
329			"IER: \t0x%02x\n", ioread8(priv->membase + UART_IER));
330	len += snprintf(buf + len, PCH_REGS_BUFSIZE - len,
331			"IIR: \t0x%02x\n", ioread8(priv->membase + UART_IIR));
332	len += snprintf(buf + len, PCH_REGS_BUFSIZE - len,
333			"LCR: \t0x%02x\n", ioread8(priv->membase + UART_LCR));
334	len += snprintf(buf + len, PCH_REGS_BUFSIZE - len,
335			"MCR: \t0x%02x\n", ioread8(priv->membase + UART_MCR));
336	len += snprintf(buf + len, PCH_REGS_BUFSIZE - len,
337			"LSR: \t0x%02x\n", ioread8(priv->membase + UART_LSR));
338	len += snprintf(buf + len, PCH_REGS_BUFSIZE - len,
339			"MSR: \t0x%02x\n", ioread8(priv->membase + UART_MSR));
340	len += snprintf(buf + len, PCH_REGS_BUFSIZE - len,
341			"BRCSR: \t0x%02x\n",
342			ioread8(priv->membase + PCH_UART_BRCSR));
343
344	lcr = ioread8(priv->membase + UART_LCR);
345	iowrite8(PCH_UART_LCR_DLAB, priv->membase + UART_LCR);
346	len += snprintf(buf + len, PCH_REGS_BUFSIZE - len,
347			"DLL: \t0x%02x\n", ioread8(priv->membase + UART_DLL));
348	len += snprintf(buf + len, PCH_REGS_BUFSIZE - len,
349			"DLM: \t0x%02x\n", ioread8(priv->membase + UART_DLM));
350	iowrite8(lcr, priv->membase + UART_LCR);
351
352	if (len > PCH_REGS_BUFSIZE)
353		len = PCH_REGS_BUFSIZE;
354
355	ret =  simple_read_from_buffer(user_buf, count, ppos, buf, len);
356	kfree(buf);
357	return ret;
358}
359
360static const struct file_operations port_regs_ops = {
361	.owner		= THIS_MODULE,
362	.open		= simple_open,
363	.read		= port_show_regs,
364	.llseek		= default_llseek,
365};
366#endif	/* CONFIG_DEBUG_FS */
367
368/* Return UART clock, checking for board specific clocks. */
369static int pch_uart_get_uartclk(void)
370{
371	const char *cmp;
372
373	if (user_uartclk)
374		return user_uartclk;
375
376	cmp = dmi_get_system_info(DMI_BOARD_NAME);
377	if (cmp && strstr(cmp, "CM-iTC"))
378		return CMITC_UARTCLK;
379
380	cmp = dmi_get_system_info(DMI_BIOS_VERSION);
381	if (cmp && strnstr(cmp, "FRI2", 4))
382		return FRI2_64_UARTCLK;
383
384	cmp = dmi_get_system_info(DMI_PRODUCT_NAME);
385	if (cmp && strstr(cmp, "Fish River Island II"))
386		return FRI2_48_UARTCLK;
387
388	/* Kontron COMe-mTT10 (nanoETXexpress-TT) */
389	cmp = dmi_get_system_info(DMI_BOARD_NAME);
390	if (cmp && (strstr(cmp, "COMe-mTT") ||
391		    strstr(cmp, "nanoETXexpress-TT")))
392		return NTC1_UARTCLK;
393
394	return DEFAULT_UARTCLK;
395}
396
397static void pch_uart_hal_enable_interrupt(struct eg20t_port *priv,
398					  unsigned int flag)
399{
400	u8 ier = ioread8(priv->membase + UART_IER);
401	ier |= flag & PCH_UART_IER_MASK;
402	iowrite8(ier, priv->membase + UART_IER);
403}
404
405static void pch_uart_hal_disable_interrupt(struct eg20t_port *priv,
406					   unsigned int flag)
407{
408	u8 ier = ioread8(priv->membase + UART_IER);
409	ier &= ~(flag & PCH_UART_IER_MASK);
410	iowrite8(ier, priv->membase + UART_IER);
411}
412
413static int pch_uart_hal_set_line(struct eg20t_port *priv, int baud,
414				 unsigned int parity, unsigned int bits,
415				 unsigned int stb)
416{
417	unsigned int dll, dlm, lcr;
418	int div;
419
420	div = DIV_ROUND_CLOSEST(priv->uartclk / 16, baud);
421	if (div < 0 || USHRT_MAX <= div) {
422		dev_err(priv->port.dev, "Invalid Baud(div=0x%x)\n", div);
423		return -EINVAL;
424	}
425
426	dll = (unsigned int)div & 0x00FFU;
427	dlm = ((unsigned int)div >> 8) & 0x00FFU;
428
429	if (parity & ~(PCH_UART_LCR_PEN | PCH_UART_LCR_EPS | PCH_UART_LCR_SP)) {
430		dev_err(priv->port.dev, "Invalid parity(0x%x)\n", parity);
431		return -EINVAL;
432	}
433
434	if (bits & ~PCH_UART_LCR_WLS) {
435		dev_err(priv->port.dev, "Invalid bits(0x%x)\n", bits);
436		return -EINVAL;
437	}
438
439	if (stb & ~PCH_UART_LCR_STB) {
440		dev_err(priv->port.dev, "Invalid STB(0x%x)\n", stb);
441		return -EINVAL;
442	}
443
444	lcr = parity;
445	lcr |= bits;
446	lcr |= stb;
447
448	dev_dbg(priv->port.dev, "%s:baud = %d, div = %04x, lcr = %02x (%lu)\n",
449		 __func__, baud, div, lcr, jiffies);
450	iowrite8(PCH_UART_LCR_DLAB, priv->membase + UART_LCR);
451	iowrite8(dll, priv->membase + PCH_UART_DLL);
452	iowrite8(dlm, priv->membase + PCH_UART_DLM);
453	iowrite8(lcr, priv->membase + UART_LCR);
454
455	return 0;
456}
457
458static int pch_uart_hal_fifo_reset(struct eg20t_port *priv,
459				    unsigned int flag)
460{
461	if (flag & ~(PCH_UART_FCR_TFR | PCH_UART_FCR_RFR)) {
462		dev_err(priv->port.dev, "%s:Invalid flag(0x%x)\n",
463			__func__, flag);
464		return -EINVAL;
465	}
466
467	iowrite8(PCH_UART_FCR_FIFOE | priv->fcr, priv->membase + UART_FCR);
468	iowrite8(PCH_UART_FCR_FIFOE | priv->fcr | flag,
469		 priv->membase + UART_FCR);
470	iowrite8(priv->fcr, priv->membase + UART_FCR);
471
472	return 0;
473}
474
475static int pch_uart_hal_set_fifo(struct eg20t_port *priv,
476				 unsigned int dmamode,
477				 unsigned int fifo_size, unsigned int trigger)
478{
479	u8 fcr;
480
481	if (dmamode & ~PCH_UART_FCR_DMS) {
482		dev_err(priv->port.dev, "%s:Invalid DMA Mode(0x%x)\n",
483			__func__, dmamode);
484		return -EINVAL;
485	}
486
487	if (fifo_size & ~(PCH_UART_FCR_FIFOE | PCH_UART_FCR_FIFO256)) {
488		dev_err(priv->port.dev, "%s:Invalid FIFO SIZE(0x%x)\n",
489			__func__, fifo_size);
490		return -EINVAL;
491	}
492
493	if (trigger & ~PCH_UART_FCR_RFTL) {
494		dev_err(priv->port.dev, "%s:Invalid TRIGGER(0x%x)\n",
495			__func__, trigger);
496		return -EINVAL;
497	}
498
499	switch (priv->fifo_size) {
500	case 256:
501		priv->trigger_level =
502		    trigger_level_256[trigger >> PCH_UART_FCR_RFTL_SHIFT];
503		break;
504	case 64:
505		priv->trigger_level =
506		    trigger_level_64[trigger >> PCH_UART_FCR_RFTL_SHIFT];
507		break;
508	case 16:
509		priv->trigger_level =
510		    trigger_level_16[trigger >> PCH_UART_FCR_RFTL_SHIFT];
511		break;
512	default:
513		priv->trigger_level =
514		    trigger_level_1[trigger >> PCH_UART_FCR_RFTL_SHIFT];
515		break;
516	}
517	fcr =
518	    dmamode | fifo_size | trigger | PCH_UART_FCR_RFR | PCH_UART_FCR_TFR;
519	iowrite8(PCH_UART_FCR_FIFOE, priv->membase + UART_FCR);
520	iowrite8(PCH_UART_FCR_FIFOE | PCH_UART_FCR_RFR | PCH_UART_FCR_TFR,
521		 priv->membase + UART_FCR);
522	iowrite8(fcr, priv->membase + UART_FCR);
523	priv->fcr = fcr;
524
525	return 0;
526}
527
528static u8 pch_uart_hal_get_modem(struct eg20t_port *priv)
529{
530	unsigned int msr = ioread8(priv->membase + UART_MSR);
531	priv->dmsr = msr & PCH_UART_MSR_DELTA;
532	return (u8)msr;
533}
534
535static void pch_uart_hal_write(struct eg20t_port *priv,
536			      const unsigned char *buf, int tx_size)
537{
538	int i;
539	unsigned int thr;
540
541	for (i = 0; i < tx_size;) {
542		thr = buf[i++];
543		iowrite8(thr, priv->membase + PCH_UART_THR);
544	}
545}
546
547static int pch_uart_hal_read(struct eg20t_port *priv, unsigned char *buf,
548			     int rx_size)
549{
550	int i;
551	u8 rbr, lsr;
552
553	lsr = ioread8(priv->membase + UART_LSR);
554	for (i = 0, lsr = ioread8(priv->membase + UART_LSR);
555	     i < rx_size && lsr & UART_LSR_DR;
556	     lsr = ioread8(priv->membase + UART_LSR)) {
557		rbr = ioread8(priv->membase + PCH_UART_RBR);
558		buf[i++] = rbr;
559	}
560	return i;
561}
562
563static unsigned int pch_uart_hal_get_iid(struct eg20t_port *priv)
564{
565	unsigned int iir;
566	int ret;
567
568	iir = ioread8(priv->membase + UART_IIR);
569	ret = (iir & (PCH_UART_IIR_IID | PCH_UART_IIR_TOI | PCH_UART_IIR_IP));
570	return ret;
571}
572
573static u8 pch_uart_hal_get_line_status(struct eg20t_port *priv)
574{
575	return ioread8(priv->membase + UART_LSR);
576}
577
578static void pch_uart_hal_set_break(struct eg20t_port *priv, int on)
579{
580	unsigned int lcr;
581
582	lcr = ioread8(priv->membase + UART_LCR);
583	if (on)
584		lcr |= PCH_UART_LCR_SB;
585	else
586		lcr &= ~PCH_UART_LCR_SB;
587
588	iowrite8(lcr, priv->membase + UART_LCR);
589}
590
591static int push_rx(struct eg20t_port *priv, const unsigned char *buf,
592		   int size)
593{
594	struct uart_port *port;
595	struct tty_struct *tty;
596
597	port = &priv->port;
598	tty = tty_port_tty_get(&port->state->port);
599	if (!tty) {
600		dev_dbg(priv->port.dev, "%s:tty is busy now", __func__);
601		return -EBUSY;
602	}
603
604	tty_insert_flip_string(tty, buf, size);
605	tty_flip_buffer_push(tty);
606	tty_kref_put(tty);
607
608	return 0;
609}
610
611static int pop_tx_x(struct eg20t_port *priv, unsigned char *buf)
612{
613	int ret = 0;
614	struct uart_port *port = &priv->port;
615
616	if (port->x_char) {
617		dev_dbg(priv->port.dev, "%s:X character send %02x (%lu)\n",
618			__func__, port->x_char, jiffies);
619		buf[0] = port->x_char;
620		port->x_char = 0;
621		ret = 1;
622	}
623
624	return ret;
625}
626
627static int dma_push_rx(struct eg20t_port *priv, int size)
628{
629	struct tty_struct *tty;
630	int room;
631	struct uart_port *port = &priv->port;
632
633	port = &priv->port;
634	tty = tty_port_tty_get(&port->state->port);
635	if (!tty) {
636		dev_dbg(priv->port.dev, "%s:tty is busy now", __func__);
637		return 0;
638	}
639
640	room = tty_buffer_request_room(tty, size);
641
642	if (room < size)
643		dev_warn(port->dev, "Rx overrun: dropping %u bytes\n",
644			 size - room);
645	if (!room)
646		return room;
647
648	tty_insert_flip_string(tty, sg_virt(&priv->sg_rx), size);
649
650	port->icount.rx += room;
651	tty_kref_put(tty);
652
653	return room;
654}
655
656static void pch_free_dma(struct uart_port *port)
657{
658	struct eg20t_port *priv;
659	priv = container_of(port, struct eg20t_port, port);
660
661	if (priv->chan_tx) {
662		dma_release_channel(priv->chan_tx);
663		priv->chan_tx = NULL;
664	}
665	if (priv->chan_rx) {
666		dma_release_channel(priv->chan_rx);
667		priv->chan_rx = NULL;
668	}
669	if (sg_dma_address(&priv->sg_rx))
670		dma_free_coherent(port->dev, port->fifosize,
671				  sg_virt(&priv->sg_rx),
672				  sg_dma_address(&priv->sg_rx));
673
674	return;
675}
676
677static bool filter(struct dma_chan *chan, void *slave)
678{
679	struct pch_dma_slave *param = slave;
680
681	if ((chan->chan_id == param->chan_id) && (param->dma_dev ==
682						  chan->device->dev)) {
683		chan->private = param;
684		return true;
685	} else {
686		return false;
687	}
688}
689
690static void pch_request_dma(struct uart_port *port)
691{
692	dma_cap_mask_t mask;
693	struct dma_chan *chan;
694	struct pci_dev *dma_dev;
695	struct pch_dma_slave *param;
696	struct eg20t_port *priv =
697				container_of(port, struct eg20t_port, port);
698	dma_cap_zero(mask);
699	dma_cap_set(DMA_SLAVE, mask);
700
701	dma_dev = pci_get_bus_and_slot(priv->pdev->bus->number,
702				       PCI_DEVFN(0xa, 0)); /* Get DMA's dev
703								information */
704	/* Set Tx DMA */
705	param = &priv->param_tx;
706	param->dma_dev = &dma_dev->dev;
707	param->chan_id = priv->port.line * 2; /* Tx = 0, 2, 4, ... */
708
709	param->tx_reg = port->mapbase + UART_TX;
710	chan = dma_request_channel(mask, filter, param);
711	if (!chan) {
712		dev_err(priv->port.dev, "%s:dma_request_channel FAILS(Tx)\n",
713			__func__);
714		return;
715	}
716	priv->chan_tx = chan;
717
718	/* Set Rx DMA */
719	param = &priv->param_rx;
720	param->dma_dev = &dma_dev->dev;
721	param->chan_id = priv->port.line * 2 + 1; /* Rx = Tx + 1 */
722
723	param->rx_reg = port->mapbase + UART_RX;
724	chan = dma_request_channel(mask, filter, param);
725	if (!chan) {
726		dev_err(priv->port.dev, "%s:dma_request_channel FAILS(Rx)\n",
727			__func__);
728		dma_release_channel(priv->chan_tx);
729		priv->chan_tx = NULL;
730		return;
731	}
732
733	/* Get Consistent memory for DMA */
734	priv->rx_buf_virt = dma_alloc_coherent(port->dev, port->fifosize,
735				    &priv->rx_buf_dma, GFP_KERNEL);
736	priv->chan_rx = chan;
737}
738
739static void pch_dma_rx_complete(void *arg)
740{
741	struct eg20t_port *priv = arg;
742	struct uart_port *port = &priv->port;
743	struct tty_struct *tty = tty_port_tty_get(&port->state->port);
744	int count;
745
746	if (!tty) {
747		dev_dbg(priv->port.dev, "%s:tty is busy now", __func__);
748		return;
749	}
750
751	dma_sync_sg_for_cpu(port->dev, &priv->sg_rx, 1, DMA_FROM_DEVICE);
752	count = dma_push_rx(priv, priv->trigger_level);
753	if (count)
754		tty_flip_buffer_push(tty);
755	tty_kref_put(tty);
756	async_tx_ack(priv->desc_rx);
757	pch_uart_hal_enable_interrupt(priv, PCH_UART_HAL_RX_INT);
758}
759
760static void pch_dma_tx_complete(void *arg)
761{
762	struct eg20t_port *priv = arg;
763	struct uart_port *port = &priv->port;
764	struct circ_buf *xmit = &port->state->xmit;
765	struct scatterlist *sg = priv->sg_tx_p;
766	int i;
767
768	for (i = 0; i < priv->nent; i++, sg++) {
769		xmit->tail += sg_dma_len(sg);
770		port->icount.tx += sg_dma_len(sg);
771	}
772	xmit->tail &= UART_XMIT_SIZE - 1;
773	async_tx_ack(priv->desc_tx);
774	dma_unmap_sg(port->dev, sg, priv->nent, DMA_TO_DEVICE);
775	priv->tx_dma_use = 0;
776	priv->nent = 0;
777	kfree(priv->sg_tx_p);
778	pch_uart_hal_enable_interrupt(priv, PCH_UART_HAL_TX_INT);
779}
780
781static int pop_tx(struct eg20t_port *priv, int size)
782{
783	int count = 0;
784	struct uart_port *port = &priv->port;
785	struct circ_buf *xmit = &port->state->xmit;
786
787	if (uart_tx_stopped(port) || uart_circ_empty(xmit) || count >= size)
788		goto pop_tx_end;
789
790	do {
791		int cnt_to_end =
792		    CIRC_CNT_TO_END(xmit->head, xmit->tail, UART_XMIT_SIZE);
793		int sz = min(size - count, cnt_to_end);
794		pch_uart_hal_write(priv, &xmit->buf[xmit->tail], sz);
795		xmit->tail = (xmit->tail + sz) & (UART_XMIT_SIZE - 1);
796		count += sz;
797	} while (!uart_circ_empty(xmit) && count < size);
798
799pop_tx_end:
800	dev_dbg(priv->port.dev, "%d characters. Remained %d characters.(%lu)\n",
801		 count, size - count, jiffies);
802
803	return count;
804}
805
806static int handle_rx_to(struct eg20t_port *priv)
807{
808	struct pch_uart_buffer *buf;
809	int rx_size;
810	int ret;
811	if (!priv->start_rx) {
812		pch_uart_hal_disable_interrupt(priv, PCH_UART_HAL_RX_INT);
813		return 0;
814	}
815	buf = &priv->rxbuf;
816	do {
817		rx_size = pch_uart_hal_read(priv, buf->buf, buf->size);
818		ret = push_rx(priv, buf->buf, rx_size);
819		if (ret)
820			return 0;
821	} while (rx_size == buf->size);
822
823	return PCH_UART_HANDLED_RX_INT;
824}
825
826static int handle_rx(struct eg20t_port *priv)
827{
828	return handle_rx_to(priv);
829}
830
831static int dma_handle_rx(struct eg20t_port *priv)
832{
833	struct uart_port *port = &priv->port;
834	struct dma_async_tx_descriptor *desc;
835	struct scatterlist *sg;
836
837	priv = container_of(port, struct eg20t_port, port);
838	sg = &priv->sg_rx;
839
840	sg_init_table(&priv->sg_rx, 1); /* Initialize SG table */
841
842	sg_dma_len(sg) = priv->trigger_level;
843
844	sg_set_page(&priv->sg_rx, virt_to_page(priv->rx_buf_virt),
845		     sg_dma_len(sg), (unsigned long)priv->rx_buf_virt &
846		     ~PAGE_MASK);
847
848	sg_dma_address(sg) = priv->rx_buf_dma;
849
850	desc = dmaengine_prep_slave_sg(priv->chan_rx,
851			sg, 1, DMA_DEV_TO_MEM,
852			DMA_PREP_INTERRUPT | DMA_CTRL_ACK);
853
854	if (!desc)
855		return 0;
856
857	priv->desc_rx = desc;
858	desc->callback = pch_dma_rx_complete;
859	desc->callback_param = priv;
860	desc->tx_submit(desc);
861	dma_async_issue_pending(priv->chan_rx);
862
863	return PCH_UART_HANDLED_RX_INT;
864}
865
866static unsigned int handle_tx(struct eg20t_port *priv)
867{
868	struct uart_port *port = &priv->port;
869	struct circ_buf *xmit = &port->state->xmit;
870	int fifo_size;
871	int tx_size;
872	int size;
873	int tx_empty;
874
875	if (!priv->start_tx) {
876		dev_info(priv->port.dev, "%s:Tx isn't started. (%lu)\n",
877			__func__, jiffies);
878		pch_uart_hal_disable_interrupt(priv, PCH_UART_HAL_TX_INT);
879		priv->tx_empty = 1;
880		return 0;
881	}
882
883	fifo_size = max(priv->fifo_size, 1);
884	tx_empty = 1;
885	if (pop_tx_x(priv, xmit->buf)) {
886		pch_uart_hal_write(priv, xmit->buf, 1);
887		port->icount.tx++;
888		tx_empty = 0;
889		fifo_size--;
890	}
891	size = min(xmit->head - xmit->tail, fifo_size);
892	if (size < 0)
893		size = fifo_size;
894
895	tx_size = pop_tx(priv, size);
896	if (tx_size > 0) {
897		port->icount.tx += tx_size;
898		tx_empty = 0;
899	}
900
901	priv->tx_empty = tx_empty;
902
903	if (tx_empty) {
904		pch_uart_hal_disable_interrupt(priv, PCH_UART_HAL_TX_INT);
905		uart_write_wakeup(port);
906	}
907
908	return PCH_UART_HANDLED_TX_INT;
909}
910
911static unsigned int dma_handle_tx(struct eg20t_port *priv)
912{
913	struct uart_port *port = &priv->port;
914	struct circ_buf *xmit = &port->state->xmit;
915	struct scatterlist *sg;
916	int nent;
917	int fifo_size;
918	int tx_empty;
919	struct dma_async_tx_descriptor *desc;
920	int num;
921	int i;
922	int bytes;
923	int size;
924	int rem;
925
926	if (!priv->start_tx) {
927		dev_info(priv->port.dev, "%s:Tx isn't started. (%lu)\n",
928			__func__, jiffies);
929		pch_uart_hal_disable_interrupt(priv, PCH_UART_HAL_TX_INT);
930		priv->tx_empty = 1;
931		return 0;
932	}
933
934	if (priv->tx_dma_use) {
935		dev_dbg(priv->port.dev, "%s:Tx is not completed. (%lu)\n",
936			__func__, jiffies);
937		pch_uart_hal_disable_interrupt(priv, PCH_UART_HAL_TX_INT);
938		priv->tx_empty = 1;
939		return 0;
940	}
941
942	fifo_size = max(priv->fifo_size, 1);
943	tx_empty = 1;
944	if (pop_tx_x(priv, xmit->buf)) {
945		pch_uart_hal_write(priv, xmit->buf, 1);
946		port->icount.tx++;
947		tx_empty = 0;
948		fifo_size--;
949	}
950
951	bytes = min((int)CIRC_CNT(xmit->head, xmit->tail,
952			     UART_XMIT_SIZE), CIRC_CNT_TO_END(xmit->head,
953			     xmit->tail, UART_XMIT_SIZE));
954	if (!bytes) {
955		dev_dbg(priv->port.dev, "%s 0 bytes return\n", __func__);
956		pch_uart_hal_disable_interrupt(priv, PCH_UART_HAL_TX_INT);
957		uart_write_wakeup(port);
958		return 0;
959	}
960
961	if (bytes > fifo_size) {
962		num = bytes / fifo_size + 1;
963		size = fifo_size;
964		rem = bytes % fifo_size;
965	} else {
966		num = 1;
967		size = bytes;
968		rem = bytes;
969	}
970
971	dev_dbg(priv->port.dev, "%s num=%d size=%d rem=%d\n",
972		__func__, num, size, rem);
973
974	priv->tx_dma_use = 1;
975
976	priv->sg_tx_p = kzalloc(sizeof(struct scatterlist)*num, GFP_ATOMIC);
977
978	sg_init_table(priv->sg_tx_p, num); /* Initialize SG table */
979	sg = priv->sg_tx_p;
980
981	for (i = 0; i < num; i++, sg++) {
982		if (i == (num - 1))
983			sg_set_page(sg, virt_to_page(xmit->buf),
984				    rem, fifo_size * i);
985		else
986			sg_set_page(sg, virt_to_page(xmit->buf),
987				    size, fifo_size * i);
988	}
989
990	sg = priv->sg_tx_p;
991	nent = dma_map_sg(port->dev, sg, num, DMA_TO_DEVICE);
992	if (!nent) {
993		dev_err(priv->port.dev, "%s:dma_map_sg Failed\n", __func__);
994		return 0;
995	}
996	priv->nent = nent;
997
998	for (i = 0; i < nent; i++, sg++) {
999		sg->offset = (xmit->tail & (UART_XMIT_SIZE - 1)) +
1000			      fifo_size * i;
1001		sg_dma_address(sg) = (sg_dma_address(sg) &
1002				    ~(UART_XMIT_SIZE - 1)) + sg->offset;
1003		if (i == (nent - 1))
1004			sg_dma_len(sg) = rem;
1005		else
1006			sg_dma_len(sg) = size;
1007	}
1008
1009	desc = dmaengine_prep_slave_sg(priv->chan_tx,
1010					priv->sg_tx_p, nent, DMA_MEM_TO_DEV,
1011					DMA_PREP_INTERRUPT | DMA_CTRL_ACK);
1012	if (!desc) {
1013		dev_err(priv->port.dev, "%s:device_prep_slave_sg Failed\n",
1014			__func__);
1015		return 0;
1016	}
1017	dma_sync_sg_for_device(port->dev, priv->sg_tx_p, nent, DMA_TO_DEVICE);
1018	priv->desc_tx = desc;
1019	desc->callback = pch_dma_tx_complete;
1020	desc->callback_param = priv;
1021
1022	desc->tx_submit(desc);
1023
1024	dma_async_issue_pending(priv->chan_tx);
1025
1026	return PCH_UART_HANDLED_TX_INT;
1027}
1028
1029static void pch_uart_err_ir(struct eg20t_port *priv, unsigned int lsr)
1030{
1031	u8 fcr = ioread8(priv->membase + UART_FCR);
1032
1033	/* Reset FIFO */
1034	fcr |= UART_FCR_CLEAR_RCVR;
1035	iowrite8(fcr, priv->membase + UART_FCR);
1036
1037	if (lsr & PCH_UART_LSR_ERR)
1038		dev_err(&priv->pdev->dev, "Error data in FIFO\n");
1039
1040	if (lsr & UART_LSR_FE)
1041		dev_err(&priv->pdev->dev, "Framing Error\n");
1042
1043	if (lsr & UART_LSR_PE)
1044		dev_err(&priv->pdev->dev, "Parity Error\n");
1045
1046	if (lsr & UART_LSR_OE)
1047		dev_err(&priv->pdev->dev, "Overrun Error\n");
1048}
1049
1050static irqreturn_t pch_uart_interrupt(int irq, void *dev_id)
1051{
1052	struct eg20t_port *priv = dev_id;
1053	unsigned int handled;
1054	u8 lsr;
1055	int ret = 0;
1056	unsigned int iid;
1057	unsigned long flags;
1058
1059	spin_lock_irqsave(&priv->port.lock, flags);
1060	handled = 0;
1061	while ((iid = pch_uart_hal_get_iid(priv)) > 1) {
1062		switch (iid) {
1063		case PCH_UART_IID_RLS:	/* Receiver Line Status */
1064			lsr = pch_uart_hal_get_line_status(priv);
1065			if (lsr & (PCH_UART_LSR_ERR | UART_LSR_FE |
1066						UART_LSR_PE | UART_LSR_OE)) {
1067				pch_uart_err_ir(priv, lsr);
1068				ret = PCH_UART_HANDLED_RX_ERR_INT;
1069			}
1070			break;
1071		case PCH_UART_IID_RDR:	/* Received Data Ready */
1072			if (priv->use_dma) {
1073				pch_uart_hal_disable_interrupt(priv,
1074							PCH_UART_HAL_RX_INT);
1075				ret = dma_handle_rx(priv);
1076				if (!ret)
1077					pch_uart_hal_enable_interrupt(priv,
1078							PCH_UART_HAL_RX_INT);
1079			} else {
1080				ret = handle_rx(priv);
1081			}
1082			break;
1083		case PCH_UART_IID_RDR_TO:	/* Received Data Ready
1084						   (FIFO Timeout) */
1085			ret = handle_rx_to(priv);
1086			break;
1087		case PCH_UART_IID_THRE:	/* Transmitter Holding Register
1088						   Empty */
1089			if (priv->use_dma)
1090				ret = dma_handle_tx(priv);
1091			else
1092				ret = handle_tx(priv);
1093			break;
1094		case PCH_UART_IID_MS:	/* Modem Status */
1095			ret = PCH_UART_HANDLED_MS_INT;
1096			break;
1097		default:	/* Never junp to this label */
1098			dev_err(priv->port.dev, "%s:iid=%d (%lu)\n", __func__,
1099				iid, jiffies);
1100			ret = -1;
1101			break;
1102		}
1103		handled |= (unsigned int)ret;
1104	}
1105	if (handled == 0 && iid <= 1) {
1106		if (priv->int_dis_flag)
1107			priv->int_dis_flag = 0;
1108	}
1109
1110	spin_unlock_irqrestore(&priv->port.lock, flags);
1111	return IRQ_RETVAL(handled);
1112}
1113
1114/* This function tests whether the transmitter fifo and shifter for the port
1115						described by 'port' is empty. */
1116static unsigned int pch_uart_tx_empty(struct uart_port *port)
1117{
1118	struct eg20t_port *priv;
1119
1120	priv = container_of(port, struct eg20t_port, port);
1121	if (priv->tx_empty)
1122		return TIOCSER_TEMT;
1123	else
1124		return 0;
1125}
1126
1127/* Returns the current state of modem control inputs. */
1128static unsigned int pch_uart_get_mctrl(struct uart_port *port)
1129{
1130	struct eg20t_port *priv;
1131	u8 modem;
1132	unsigned int ret = 0;
1133
1134	priv = container_of(port, struct eg20t_port, port);
1135	modem = pch_uart_hal_get_modem(priv);
1136
1137	if (modem & UART_MSR_DCD)
1138		ret |= TIOCM_CAR;
1139
1140	if (modem & UART_MSR_RI)
1141		ret |= TIOCM_RNG;
1142
1143	if (modem & UART_MSR_DSR)
1144		ret |= TIOCM_DSR;
1145
1146	if (modem & UART_MSR_CTS)
1147		ret |= TIOCM_CTS;
1148
1149	return ret;
1150}
1151
1152static void pch_uart_set_mctrl(struct uart_port *port, unsigned int mctrl)
1153{
1154	u32 mcr = 0;
1155	struct eg20t_port *priv = container_of(port, struct eg20t_port, port);
1156
1157	if (mctrl & TIOCM_DTR)
1158		mcr |= UART_MCR_DTR;
1159	if (mctrl & TIOCM_RTS)
1160		mcr |= UART_MCR_RTS;
1161	if (mctrl & TIOCM_LOOP)
1162		mcr |= UART_MCR_LOOP;
1163
1164	if (priv->mcr & UART_MCR_AFE)
1165		mcr |= UART_MCR_AFE;
1166
1167	if (mctrl)
1168		iowrite8(mcr, priv->membase + UART_MCR);
1169}
1170
1171static void pch_uart_stop_tx(struct uart_port *port)
1172{
1173	struct eg20t_port *priv;
1174	priv = container_of(port, struct eg20t_port, port);
1175	priv->start_tx = 0;
1176	priv->tx_dma_use = 0;
1177}
1178
1179static void pch_uart_start_tx(struct uart_port *port)
1180{
1181	struct eg20t_port *priv;
1182
1183	priv = container_of(port, struct eg20t_port, port);
1184
1185	if (priv->use_dma) {
1186		if (priv->tx_dma_use) {
1187			dev_dbg(priv->port.dev, "%s : Tx DMA is NOT empty.\n",
1188				__func__);
1189			return;
1190		}
1191	}
1192
1193	priv->start_tx = 1;
1194	pch_uart_hal_enable_interrupt(priv, PCH_UART_HAL_TX_INT);
1195}
1196
1197static void pch_uart_stop_rx(struct uart_port *port)
1198{
1199	struct eg20t_port *priv;
1200	priv = container_of(port, struct eg20t_port, port);
1201	priv->start_rx = 0;
1202	pch_uart_hal_disable_interrupt(priv, PCH_UART_HAL_RX_INT);
1203	priv->int_dis_flag = 1;
1204}
1205
1206/* Enable the modem status interrupts. */
1207static void pch_uart_enable_ms(struct uart_port *port)
1208{
1209	struct eg20t_port *priv;
1210	priv = container_of(port, struct eg20t_port, port);
1211	pch_uart_hal_enable_interrupt(priv, PCH_UART_HAL_MS_INT);
1212}
1213
1214/* Control the transmission of a break signal. */
1215static void pch_uart_break_ctl(struct uart_port *port, int ctl)
1216{
1217	struct eg20t_port *priv;
1218	unsigned long flags;
1219
1220	priv = container_of(port, struct eg20t_port, port);
1221	spin_lock_irqsave(&port->lock, flags);
1222	pch_uart_hal_set_break(priv, ctl);
1223	spin_unlock_irqrestore(&port->lock, flags);
1224}
1225
1226/* Grab any interrupt resources and initialise any low level driver state. */
1227static int pch_uart_startup(struct uart_port *port)
1228{
1229	struct eg20t_port *priv;
1230	int ret;
1231	int fifo_size;
1232	int trigger_level;
1233
1234	priv = container_of(port, struct eg20t_port, port);
1235	priv->tx_empty = 1;
1236
1237	if (port->uartclk)
1238		priv->uartclk = port->uartclk;
1239	else
1240		port->uartclk = priv->uartclk;
1241
1242	pch_uart_hal_disable_interrupt(priv, PCH_UART_HAL_ALL_INT);
1243	ret = pch_uart_hal_set_line(priv, default_baud,
1244			      PCH_UART_HAL_PARITY_NONE, PCH_UART_HAL_8BIT,
1245			      PCH_UART_HAL_STB1);
1246	if (ret)
1247		return ret;
1248
1249	switch (priv->fifo_size) {
1250	case 256:
1251		fifo_size = PCH_UART_HAL_FIFO256;
1252		break;
1253	case 64:
1254		fifo_size = PCH_UART_HAL_FIFO64;
1255		break;
1256	case 16:
1257		fifo_size = PCH_UART_HAL_FIFO16;
1258	case 1:
1259	default:
1260		fifo_size = PCH_UART_HAL_FIFO_DIS;
1261		break;
1262	}
1263
1264	switch (priv->trigger) {
1265	case PCH_UART_HAL_TRIGGER1:
1266		trigger_level = 1;
1267		break;
1268	case PCH_UART_HAL_TRIGGER_L:
1269		trigger_level = priv->fifo_size / 4;
1270		break;
1271	case PCH_UART_HAL_TRIGGER_M:
1272		trigger_level = priv->fifo_size / 2;
1273		break;
1274	case PCH_UART_HAL_TRIGGER_H:
1275	default:
1276		trigger_level = priv->fifo_size - (priv->fifo_size / 8);
1277		break;
1278	}
1279
1280	priv->trigger_level = trigger_level;
1281	ret = pch_uart_hal_set_fifo(priv, PCH_UART_HAL_DMA_MODE0,
1282				    fifo_size, priv->trigger);
1283	if (ret < 0)
1284		return ret;
1285
1286	ret = request_irq(priv->port.irq, pch_uart_interrupt, IRQF_SHARED,
1287			KBUILD_MODNAME, priv);
1288	if (ret < 0)
1289		return ret;
1290
1291	if (priv->use_dma)
1292		pch_request_dma(port);
1293
1294	priv->start_rx = 1;
1295	pch_uart_hal_enable_interrupt(priv, PCH_UART_HAL_RX_INT);
1296	uart_update_timeout(port, CS8, default_baud);
1297
1298	return 0;
1299}
1300
1301static void pch_uart_shutdown(struct uart_port *port)
1302{
1303	struct eg20t_port *priv;
1304	int ret;
1305
1306	priv = container_of(port, struct eg20t_port, port);
1307	pch_uart_hal_disable_interrupt(priv, PCH_UART_HAL_ALL_INT);
1308	pch_uart_hal_fifo_reset(priv, PCH_UART_HAL_CLR_ALL_FIFO);
1309	ret = pch_uart_hal_set_fifo(priv, PCH_UART_HAL_DMA_MODE0,
1310			      PCH_UART_HAL_FIFO_DIS, PCH_UART_HAL_TRIGGER1);
1311	if (ret)
1312		dev_err(priv->port.dev,
1313			"pch_uart_hal_set_fifo Failed(ret=%d)\n", ret);
1314
1315	pch_free_dma(port);
1316
1317	free_irq(priv->port.irq, priv);
1318}
1319
1320/* Change the port parameters, including word length, parity, stop
1321 *bits.  Update read_status_mask and ignore_status_mask to indicate
1322 *the types of events we are interested in receiving.  */
1323static void pch_uart_set_termios(struct uart_port *port,
1324				 struct ktermios *termios, struct ktermios *old)
1325{
1326	int baud;
1327	int rtn;
1328	unsigned int parity, bits, stb;
1329	struct eg20t_port *priv;
1330	unsigned long flags;
1331
1332	priv = container_of(port, struct eg20t_port, port);
1333	switch (termios->c_cflag & CSIZE) {
1334	case CS5:
1335		bits = PCH_UART_HAL_5BIT;
1336		break;
1337	case CS6:
1338		bits = PCH_UART_HAL_6BIT;
1339		break;
1340	case CS7:
1341		bits = PCH_UART_HAL_7BIT;
1342		break;
1343	default:		/* CS8 */
1344		bits = PCH_UART_HAL_8BIT;
1345		break;
1346	}
1347	if (termios->c_cflag & CSTOPB)
1348		stb = PCH_UART_HAL_STB2;
1349	else
1350		stb = PCH_UART_HAL_STB1;
1351
1352	if (termios->c_cflag & PARENB) {
1353		if (!(termios->c_cflag & PARODD))
1354			parity = PCH_UART_HAL_PARITY_ODD;
1355		else
1356			parity = PCH_UART_HAL_PARITY_EVEN;
1357
1358	} else
1359		parity = PCH_UART_HAL_PARITY_NONE;
1360
1361	/* Only UART0 has auto hardware flow function */
1362	if ((termios->c_cflag & CRTSCTS) && (priv->fifo_size == 256))
1363		priv->mcr |= UART_MCR_AFE;
1364	else
1365		priv->mcr &= ~UART_MCR_AFE;
1366
1367	termios->c_cflag &= ~CMSPAR; /* Mark/Space parity is not supported */
1368
1369	baud = uart_get_baud_rate(port, termios, old, 0, port->uartclk / 16);
1370
1371	spin_lock_irqsave(&port->lock, flags);
1372
1373	uart_update_timeout(port, termios->c_cflag, baud);
1374	rtn = pch_uart_hal_set_line(priv, baud, parity, bits, stb);
1375	if (rtn)
1376		goto out;
1377
1378	pch_uart_set_mctrl(&priv->port, priv->port.mctrl);
1379	/* Don't rewrite B0 */
1380	if (tty_termios_baud_rate(termios))
1381		tty_termios_encode_baud_rate(termios, baud, baud);
1382
1383out:
1384	spin_unlock_irqrestore(&port->lock, flags);
1385}
1386
1387static const char *pch_uart_type(struct uart_port *port)
1388{
1389	return KBUILD_MODNAME;
1390}
1391
1392static void pch_uart_release_port(struct uart_port *port)
1393{
1394	struct eg20t_port *priv;
1395
1396	priv = container_of(port, struct eg20t_port, port);
1397	pci_iounmap(priv->pdev, priv->membase);
1398	pci_release_regions(priv->pdev);
1399}
1400
1401static int pch_uart_request_port(struct uart_port *port)
1402{
1403	struct eg20t_port *priv;
1404	int ret;
1405	void __iomem *membase;
1406
1407	priv = container_of(port, struct eg20t_port, port);
1408	ret = pci_request_regions(priv->pdev, KBUILD_MODNAME);
1409	if (ret < 0)
1410		return -EBUSY;
1411
1412	membase = pci_iomap(priv->pdev, 1, 0);
1413	if (!membase) {
1414		pci_release_regions(priv->pdev);
1415		return -EBUSY;
1416	}
1417	priv->membase = port->membase = membase;
1418
1419	return 0;
1420}
1421
1422static void pch_uart_config_port(struct uart_port *port, int type)
1423{
1424	struct eg20t_port *priv;
1425
1426	priv = container_of(port, struct eg20t_port, port);
1427	if (type & UART_CONFIG_TYPE) {
1428		port->type = priv->port_type;
1429		pch_uart_request_port(port);
1430	}
1431}
1432
1433static int pch_uart_verify_port(struct uart_port *port,
1434				struct serial_struct *serinfo)
1435{
1436	struct eg20t_port *priv;
1437
1438	priv = container_of(port, struct eg20t_port, port);
1439	if (serinfo->flags & UPF_LOW_LATENCY) {
1440		dev_info(priv->port.dev,
1441			"PCH UART : Use PIO Mode (without DMA)\n");
1442		priv->use_dma = 0;
1443		serinfo->flags &= ~UPF_LOW_LATENCY;
1444	} else {
1445#ifndef CONFIG_PCH_DMA
1446		dev_err(priv->port.dev, "%s : PCH DMA is not Loaded.\n",
1447			__func__);
1448		return -EOPNOTSUPP;
1449#endif
1450		priv->use_dma_flag = 1;
1451		dev_info(priv->port.dev, "PCH UART : Use DMA Mode\n");
1452		if (!priv->use_dma)
1453			pch_request_dma(port);
1454		priv->use_dma = 1;
1455	}
1456
1457	return 0;
1458}
1459
1460static struct uart_ops pch_uart_ops = {
1461	.tx_empty = pch_uart_tx_empty,
1462	.set_mctrl = pch_uart_set_mctrl,
1463	.get_mctrl = pch_uart_get_mctrl,
1464	.stop_tx = pch_uart_stop_tx,
1465	.start_tx = pch_uart_start_tx,
1466	.stop_rx = pch_uart_stop_rx,
1467	.enable_ms = pch_uart_enable_ms,
1468	.break_ctl = pch_uart_break_ctl,
1469	.startup = pch_uart_startup,
1470	.shutdown = pch_uart_shutdown,
1471	.set_termios = pch_uart_set_termios,
1472/*	.pm		= pch_uart_pm,		Not supported yet */
1473/*	.set_wake	= pch_uart_set_wake,	Not supported yet */
1474	.type = pch_uart_type,
1475	.release_port = pch_uart_release_port,
1476	.request_port = pch_uart_request_port,
1477	.config_port = pch_uart_config_port,
1478	.verify_port = pch_uart_verify_port
1479};
1480
1481#ifdef CONFIG_SERIAL_PCH_UART_CONSOLE
1482
1483/*
1484 *	Wait for transmitter & holding register to empty
1485 */
1486static void wait_for_xmitr(struct eg20t_port *up, int bits)
1487{
1488	unsigned int status, tmout = 10000;
1489
1490	/* Wait up to 10ms for the character(s) to be sent. */
1491	for (;;) {
1492		status = ioread8(up->membase + UART_LSR);
1493
1494		if ((status & bits) == bits)
1495			break;
1496		if (--tmout == 0)
1497			break;
1498		udelay(1);
1499	}
1500
1501	/* Wait up to 1s for flow control if necessary */
1502	if (up->port.flags & UPF_CONS_FLOW) {
1503		unsigned int tmout;
1504		for (tmout = 1000000; tmout; tmout--) {
1505			unsigned int msr = ioread8(up->membase + UART_MSR);
1506			if (msr & UART_MSR_CTS)
1507				break;
1508			udelay(1);
1509			touch_nmi_watchdog();
1510		}
1511	}
1512}
1513
1514static void pch_console_putchar(struct uart_port *port, int ch)
1515{
1516	struct eg20t_port *priv =
1517		container_of(port, struct eg20t_port, port);
1518
1519	wait_for_xmitr(priv, UART_LSR_THRE);
1520	iowrite8(ch, priv->membase + PCH_UART_THR);
1521}
1522
1523/*
1524 *	Print a string to the serial port trying not to disturb
1525 *	any possible real use of the port...
1526 *
1527 *	The console_lock must be held when we get here.
1528 */
1529static void
1530pch_console_write(struct console *co, const char *s, unsigned int count)
1531{
1532	struct eg20t_port *priv;
1533	unsigned long flags;
1534	u8 ier;
1535	int locked = 1;
1536
1537	priv = pch_uart_ports[co->index];
1538
1539	touch_nmi_watchdog();
1540
1541	local_irq_save(flags);
1542	if (priv->port.sysrq) {
1543		/* serial8250_handle_port() already took the lock */
1544		locked = 0;
1545	} else if (oops_in_progress) {
1546		locked = spin_trylock(&priv->port.lock);
1547	} else
1548		spin_lock(&priv->port.lock);
1549
1550	/*
1551	 *	First save the IER then disable the interrupts
1552	 */
1553	ier = ioread8(priv->membase + UART_IER);
1554
1555	pch_uart_hal_disable_interrupt(priv, PCH_UART_HAL_ALL_INT);
1556
1557	uart_console_write(&priv->port, s, count, pch_console_putchar);
1558
1559	/*
1560	 *	Finally, wait for transmitter to become empty
1561	 *	and restore the IER
1562	 */
1563	wait_for_xmitr(priv, BOTH_EMPTY);
1564	iowrite8(ier, priv->membase + UART_IER);
1565
1566	if (locked)
1567		spin_unlock(&priv->port.lock);
1568	local_irq_restore(flags);
1569}
1570
1571static int __init pch_console_setup(struct console *co, char *options)
1572{
1573	struct uart_port *port;
1574	int baud = default_baud;
1575	int bits = 8;
1576	int parity = 'n';
1577	int flow = 'n';
1578
1579	/*
1580	 * Check whether an invalid uart number has been specified, and
1581	 * if so, search for the first available port that does have
1582	 * console support.
1583	 */
1584	if (co->index >= PCH_UART_NR)
1585		co->index = 0;
1586	port = &pch_uart_ports[co->index]->port;
1587
1588	if (!port || (!port->iobase && !port->membase))
1589		return -ENODEV;
1590
1591	port->uartclk = pch_uart_get_uartclk();
1592
1593	if (options)
1594		uart_parse_options(options, &baud, &parity, &bits, &flow);
1595
1596	return uart_set_options(port, co, baud, parity, bits, flow);
1597}
1598
1599static struct uart_driver pch_uart_driver;
1600
1601static struct console pch_console = {
1602	.name		= PCH_UART_DRIVER_DEVICE,
1603	.write		= pch_console_write,
1604	.device		= uart_console_device,
1605	.setup		= pch_console_setup,
1606	.flags		= CON_PRINTBUFFER | CON_ANYTIME,
1607	.index		= -1,
1608	.data		= &pch_uart_driver,
1609};
1610
1611#define PCH_CONSOLE	(&pch_console)
1612#else
1613#define PCH_CONSOLE	NULL
1614#endif
1615
1616static struct uart_driver pch_uart_driver = {
1617	.owner = THIS_MODULE,
1618	.driver_name = KBUILD_MODNAME,
1619	.dev_name = PCH_UART_DRIVER_DEVICE,
1620	.major = 0,
1621	.minor = 0,
1622	.nr = PCH_UART_NR,
1623	.cons = PCH_CONSOLE,
1624};
1625
1626static struct eg20t_port *pch_uart_init_port(struct pci_dev *pdev,
1627					     const struct pci_device_id *id)
1628{
1629	struct eg20t_port *priv;
1630	int ret;
1631	unsigned int iobase;
1632	unsigned int mapbase;
1633	unsigned char *rxbuf;
1634	int fifosize;
1635	int port_type;
1636	struct pch_uart_driver_data *board;
1637	char name[32];	/* for debugfs file name */
1638
1639	board = &drv_dat[id->driver_data];
1640	port_type = board->port_type;
1641
1642	priv = kzalloc(sizeof(struct eg20t_port), GFP_KERNEL);
1643	if (priv == NULL)
1644		goto init_port_alloc_err;
1645
1646	rxbuf = (unsigned char *)__get_free_page(GFP_KERNEL);
1647	if (!rxbuf)
1648		goto init_port_free_txbuf;
1649
1650	switch (port_type) {
1651	case PORT_UNKNOWN:
1652		fifosize = 256; /* EG20T/ML7213: UART0 */
1653		break;
1654	case PORT_8250:
1655		fifosize = 64; /* EG20T:UART1~3  ML7213: UART1~2*/
1656		break;
1657	default:
1658		dev_err(&pdev->dev, "Invalid Port Type(=%d)\n", port_type);
1659		goto init_port_hal_free;
1660	}
1661
1662	pci_enable_msi(pdev);
1663	pci_set_master(pdev);
1664
1665	iobase = pci_resource_start(pdev, 0);
1666	mapbase = pci_resource_start(pdev, 1);
1667	priv->mapbase = mapbase;
1668	priv->iobase = iobase;
1669	priv->pdev = pdev;
1670	priv->tx_empty = 1;
1671	priv->rxbuf.buf = rxbuf;
1672	priv->rxbuf.size = PAGE_SIZE;
1673
1674	priv->fifo_size = fifosize;
1675	priv->uartclk = pch_uart_get_uartclk();
1676	priv->port_type = PORT_MAX_8250 + port_type + 1;
1677	priv->port.dev = &pdev->dev;
1678	priv->port.iobase = iobase;
1679	priv->port.membase = NULL;
1680	priv->port.mapbase = mapbase;
1681	priv->port.irq = pdev->irq;
1682	priv->port.iotype = UPIO_PORT;
1683	priv->port.ops = &pch_uart_ops;
1684	priv->port.flags = UPF_BOOT_AUTOCONF;
1685	priv->port.fifosize = fifosize;
1686	priv->port.line = board->line_no;
1687	priv->trigger = PCH_UART_HAL_TRIGGER_M;
1688
1689	spin_lock_init(&priv->port.lock);
1690
1691	pci_set_drvdata(pdev, priv);
1692	priv->trigger_level = 1;
1693	priv->fcr = 0;
1694
1695#ifdef CONFIG_SERIAL_PCH_UART_CONSOLE
1696	pch_uart_ports[board->line_no] = priv;
1697#endif
1698	ret = uart_add_one_port(&pch_uart_driver, &priv->port);
1699	if (ret < 0)
1700		goto init_port_hal_free;
1701
1702#ifdef CONFIG_DEBUG_FS
1703	snprintf(name, sizeof(name), "uart%d_regs", board->line_no);
1704	priv->debugfs = debugfs_create_file(name, S_IFREG | S_IRUGO,
1705				NULL, priv, &port_regs_ops);
1706#endif
1707
1708	return priv;
1709
1710init_port_hal_free:
1711#ifdef CONFIG_SERIAL_PCH_UART_CONSOLE
1712	pch_uart_ports[board->line_no] = NULL;
1713#endif
1714	free_page((unsigned long)rxbuf);
1715init_port_free_txbuf:
1716	kfree(priv);
1717init_port_alloc_err:
1718
1719	return NULL;
1720}
1721
1722static void pch_uart_exit_port(struct eg20t_port *priv)
1723{
1724
1725#ifdef CONFIG_DEBUG_FS
1726	if (priv->debugfs)
1727		debugfs_remove(priv->debugfs);
1728#endif
1729	uart_remove_one_port(&pch_uart_driver, &priv->port);
1730	pci_set_drvdata(priv->pdev, NULL);
1731	free_page((unsigned long)priv->rxbuf.buf);
1732}
1733
1734static void pch_uart_pci_remove(struct pci_dev *pdev)
1735{
1736	struct eg20t_port *priv = pci_get_drvdata(pdev);
1737
1738	pci_disable_msi(pdev);
1739
1740#ifdef CONFIG_SERIAL_PCH_UART_CONSOLE
1741	pch_uart_ports[priv->port.line] = NULL;
1742#endif
1743	pch_uart_exit_port(priv);
1744	pci_disable_device(pdev);
1745	kfree(priv);
1746	return;
1747}
1748#ifdef CONFIG_PM
1749static int pch_uart_pci_suspend(struct pci_dev *pdev, pm_message_t state)
1750{
1751	struct eg20t_port *priv = pci_get_drvdata(pdev);
1752
1753	uart_suspend_port(&pch_uart_driver, &priv->port);
1754
1755	pci_save_state(pdev);
1756	pci_set_power_state(pdev, pci_choose_state(pdev, state));
1757	return 0;
1758}
1759
1760static int pch_uart_pci_resume(struct pci_dev *pdev)
1761{
1762	struct eg20t_port *priv = pci_get_drvdata(pdev);
1763	int ret;
1764
1765	pci_set_power_state(pdev, PCI_D0);
1766	pci_restore_state(pdev);
1767
1768	ret = pci_enable_device(pdev);
1769	if (ret) {
1770		dev_err(&pdev->dev,
1771		"%s-pci_enable_device failed(ret=%d) ", __func__, ret);
1772		return ret;
1773	}
1774
1775	uart_resume_port(&pch_uart_driver, &priv->port);
1776
1777	return 0;
1778}
1779#else
1780#define pch_uart_pci_suspend NULL
1781#define pch_uart_pci_resume NULL
1782#endif
1783
1784static DEFINE_PCI_DEVICE_TABLE(pch_uart_pci_id) = {
1785	{PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x8811),
1786	 .driver_data = pch_et20t_uart0},
1787	{PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x8812),
1788	 .driver_data = pch_et20t_uart1},
1789	{PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x8813),
1790	 .driver_data = pch_et20t_uart2},
1791	{PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x8814),
1792	 .driver_data = pch_et20t_uart3},
1793	{PCI_DEVICE(PCI_VENDOR_ID_ROHM, 0x8027),
1794	 .driver_data = pch_ml7213_uart0},
1795	{PCI_DEVICE(PCI_VENDOR_ID_ROHM, 0x8028),
1796	 .driver_data = pch_ml7213_uart1},
1797	{PCI_DEVICE(PCI_VENDOR_ID_ROHM, 0x8029),
1798	 .driver_data = pch_ml7213_uart2},
1799	{PCI_DEVICE(PCI_VENDOR_ID_ROHM, 0x800C),
1800	 .driver_data = pch_ml7223_uart0},
1801	{PCI_DEVICE(PCI_VENDOR_ID_ROHM, 0x800D),
1802	 .driver_data = pch_ml7223_uart1},
1803	{PCI_DEVICE(PCI_VENDOR_ID_ROHM, 0x8811),
1804	 .driver_data = pch_ml7831_uart0},
1805	{PCI_DEVICE(PCI_VENDOR_ID_ROHM, 0x8812),
1806	 .driver_data = pch_ml7831_uart1},
1807	{0,},
1808};
1809
1810static int __devinit pch_uart_pci_probe(struct pci_dev *pdev,
1811					const struct pci_device_id *id)
1812{
1813	int ret;
1814	struct eg20t_port *priv;
1815
1816	ret = pci_enable_device(pdev);
1817	if (ret < 0)
1818		goto probe_error;
1819
1820	priv = pch_uart_init_port(pdev, id);
1821	if (!priv) {
1822		ret = -EBUSY;
1823		goto probe_disable_device;
1824	}
1825	pci_set_drvdata(pdev, priv);
1826
1827	return ret;
1828
1829probe_disable_device:
1830	pci_disable_msi(pdev);
1831	pci_disable_device(pdev);
1832probe_error:
1833	return ret;
1834}
1835
1836static struct pci_driver pch_uart_pci_driver = {
1837	.name = "pch_uart",
1838	.id_table = pch_uart_pci_id,
1839	.probe = pch_uart_pci_probe,
1840	.remove = __devexit_p(pch_uart_pci_remove),
1841	.suspend = pch_uart_pci_suspend,
1842	.resume = pch_uart_pci_resume,
1843};
1844
1845static int __init pch_uart_module_init(void)
1846{
1847	int ret;
1848
1849	/* register as UART driver */
1850	ret = uart_register_driver(&pch_uart_driver);
1851	if (ret < 0)
1852		return ret;
1853
1854	/* register as PCI driver */
1855	ret = pci_register_driver(&pch_uart_pci_driver);
1856	if (ret < 0)
1857		uart_unregister_driver(&pch_uart_driver);
1858
1859	return ret;
1860}
1861module_init(pch_uart_module_init);
1862
1863static void __exit pch_uart_module_exit(void)
1864{
1865	pci_unregister_driver(&pch_uart_pci_driver);
1866	uart_unregister_driver(&pch_uart_driver);
1867}
1868module_exit(pch_uart_module_exit);
1869
1870MODULE_LICENSE("GPL v2");
1871MODULE_DESCRIPTION("Intel EG20T PCH UART PCI Driver");
1872module_param(default_baud, uint, S_IRUGO);
1873MODULE_PARM_DESC(default_baud,
1874                 "Default BAUD for initial driver state and console (default 9600)");
1875module_param(user_uartclk, uint, S_IRUGO);
1876MODULE_PARM_DESC(user_uartclk,
1877                 "Override UART default or board specific UART clock");
1878