blob: bbbec4a74cfb5c30b3f9ba6c5f5fdfbed122d1ed [file] [log] [blame]
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001/*
Tomoya MORINAGAeca9dfa2011-10-28 09:38:50 +09002 *Copyright (C) 2011 LAPIS Semiconductor Co., Ltd.
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09003 *
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 */
Uwe Kleine-König0e2adc02011-05-26 10:41:17 +020017#include <linux/kernel.h>
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +090018#include <linux/serial_reg.h>
Andrew Morton023bc8e2011-05-24 17:13:44 -070019#include <linux/slab.h>
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +090020#include <linux/module.h>
21#include <linux/pci.h>
22#include <linux/serial_core.h>
Jiri Slabyee160a32011-09-01 16:20:57 +020023#include <linux/tty.h>
24#include <linux/tty_flip.h>
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +090025#include <linux/interrupt.h>
26#include <linux/io.h>
Denis Turischev6ae705b2011-03-10 15:14:00 +020027#include <linux/dmi.h>
Alexander Steine30f8672011-11-15 15:04:07 -080028#include <linux/console.h>
29#include <linux/nmi.h>
30#include <linux/delay.h>
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +090031
Feng Tangd0114112012-02-06 17:24:43 +080032#include <linux/debugfs.h>
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +090033#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
Tomoya MORINAGA4564e1e2011-01-28 18:00:01 +090051/* Set the max number of UART port
52 * Intel EG20T PCH: 4 port
Tomoya MORINAGAeca9dfa2011-10-28 09:38:50 +090053 * LAPIS Semiconductor ML7213 IOH: 3 port
54 * LAPIS Semiconductor ML7223 IOH: 2 port
Tomoya MORINAGA4564e1e2011-01-28 18:00:01 +090055*/
56#define PCH_UART_NR 4
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +090057
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
Feng Tangd0114112012-02-06 17:24:43 +0800148#define PCH_UART_BRCSR 0x0E
149
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900150#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
Tomoya MORINAGA4564e1e2011-01-28 18:00:01 +0900205#define PCI_VENDOR_ID_ROHM 0x10DB
206
Alexander Steine30f8672011-11-15 15:04:07 -0800207#define BOTH_EMPTY (UART_LSR_TEMT | UART_LSR_THRE)
208
Darren Hart077175f2012-03-09 09:51:49 -0800209#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 */
Michael Brunner11bbd5b2012-03-23 11:06:37 +0100213#define NTC1_UARTCLK 64000000 /* 64.0000 MHz */
Alexander Steine30f8672011-11-15 15:04:07 -0800214
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900215struct 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;
Darren Harta8a3ec92012-03-09 09:51:48 -0800228 int uartclk;
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900229 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;
Tomoya MORINAGA9af71552011-02-23 10:03:17 +0900238 unsigned int mcr;
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900239 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;
Tomoya MORINAGAda3564e2011-02-23 10:03:12 +0900247 struct scatterlist *sg_tx_p;
248 int nent;
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900249 struct scatterlist sg_rx;
250 int tx_dma_use;
251 void *rx_buf_virt;
252 dma_addr_t rx_buf_dma;
Feng Tangd0114112012-02-06 17:24:43 +0800253
254 struct dentry *debugfs;
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900255};
256
Tomoya MORINAGAfec38d12011-02-23 10:03:19 +0900257/**
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,
Tomoya MORINAGA177c2cb2011-05-09 17:25:20 +0900275 pch_ml7223_uart0,
276 pch_ml7223_uart1,
Tomoya MORINAGA8249f742011-10-28 09:38:49 +0900277 pch_ml7831_uart0,
278 pch_ml7831_uart1,
Tomoya MORINAGAfec38d12011-02-23 10:03:19 +0900279};
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},
Tomoya MORINAGA177c2cb2011-05-09 17:25:20 +0900289 [pch_ml7223_uart0] = {PCH_UART_8LINE, 0},
290 [pch_ml7223_uart1] = {PCH_UART_2LINE, 1},
Tomoya MORINAGA8249f742011-10-28 09:38:49 +0900291 [pch_ml7831_uart0] = {PCH_UART_8LINE, 0},
292 [pch_ml7831_uart1] = {PCH_UART_2LINE, 1},
Tomoya MORINAGAfec38d12011-02-23 10:03:19 +0900293};
294
Alexander Steine30f8672011-11-15 15:04:07 -0800295#ifdef CONFIG_SERIAL_PCH_UART_CONSOLE
296static struct eg20t_port *pch_uart_ports[PCH_UART_NR];
297#endif
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900298static unsigned int default_baud = 9600;
Darren Hart2a44feb2012-03-09 09:51:50 -0800299static unsigned int user_uartclk = 0;
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900300static 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
Feng Tangd0114112012-02-06 17:24:43 +0800305#ifdef CONFIG_DEBUG_FS
306
307#define PCH_REGS_BUFSIZE 1024
Stephen Boyd234e3402012-04-05 14:25:11 -0700308
Feng Tangd0114112012-02-06 17:24:43 +0800309
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,
Stephen Boyd234e3402012-04-05 14:25:11 -0700362 .open = simple_open,
Feng Tangd0114112012-02-06 17:24:43 +0800363 .read = port_show_regs,
364 .llseek = default_llseek,
365};
366#endif /* CONFIG_DEBUG_FS */
367
Darren Hart077175f2012-03-09 09:51:49 -0800368/* Return UART clock, checking for board specific clocks. */
369static int pch_uart_get_uartclk(void)
370{
371 const char *cmp;
372
Darren Hart2a44feb2012-03-09 09:51:50 -0800373 if (user_uartclk)
374 return user_uartclk;
375
Darren Hart077175f2012-03-09 09:51:49 -0800376 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
Michael Brunner11bbd5b2012-03-23 11:06:37 +0100388 /* 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
Darren Hart077175f2012-03-09 09:51:49 -0800394 return DEFAULT_UARTCLK;
395}
396
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900397static 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
Darren Harta8a3ec92012-03-09 09:51:48 -0800420 div = DIV_ROUND_CLOSEST(priv->uartclk / 16, baud);
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900421 if (div < 0 || USHRT_MAX <= div) {
Tomoya MORINAGA23877fd2011-02-23 10:03:15 +0900422 dev_err(priv->port.dev, "Invalid Baud(div=0x%x)\n", div);
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900423 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)) {
Tomoya MORINAGA23877fd2011-02-23 10:03:15 +0900430 dev_err(priv->port.dev, "Invalid parity(0x%x)\n", parity);
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900431 return -EINVAL;
432 }
433
434 if (bits & ~PCH_UART_LCR_WLS) {
Tomoya MORINAGA23877fd2011-02-23 10:03:15 +0900435 dev_err(priv->port.dev, "Invalid bits(0x%x)\n", bits);
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900436 return -EINVAL;
437 }
438
439 if (stb & ~PCH_UART_LCR_STB) {
Tomoya MORINAGA23877fd2011-02-23 10:03:15 +0900440 dev_err(priv->port.dev, "Invalid STB(0x%x)\n", stb);
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900441 return -EINVAL;
442 }
443
444 lcr = parity;
445 lcr |= bits;
446 lcr |= stb;
447
Tomoya MORINAGA23877fd2011-02-23 10:03:15 +0900448 dev_dbg(priv->port.dev, "%s:baud = %d, div = %04x, lcr = %02x (%lu)\n",
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900449 __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)) {
Tomoya MORINAGA23877fd2011-02-23 10:03:15 +0900462 dev_err(priv->port.dev, "%s:Invalid flag(0x%x)\n",
463 __func__, flag);
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900464 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) {
Tomoya MORINAGA23877fd2011-02-23 10:03:15 +0900482 dev_err(priv->port.dev, "%s:Invalid DMA Mode(0x%x)\n",
483 __func__, dmamode);
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900484 return -EINVAL;
485 }
486
487 if (fifo_size & ~(PCH_UART_FCR_FIFOE | PCH_UART_FCR_FIFO256)) {
Tomoya MORINAGA23877fd2011-02-23 10:03:15 +0900488 dev_err(priv->port.dev, "%s:Invalid FIFO SIZE(0x%x)\n",
489 __func__, fifo_size);
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900490 return -EINVAL;
491 }
492
493 if (trigger & ~PCH_UART_FCR_RFTL) {
Tomoya MORINAGA23877fd2011-02-23 10:03:15 +0900494 dev_err(priv->port.dev, "%s:Invalid TRIGGER(0x%x)\n",
495 __func__, trigger);
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900496 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{
Feng Tang30c6c6b2012-02-06 17:24:44 +0800530 unsigned int msr = ioread8(priv->membase + UART_MSR);
531 priv->dmsr = msr & PCH_UART_MSR_DELTA;
532 return (u8)msr;
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900533}
534
Tomoya MORINAGA18220762011-02-23 10:03:14 +0900535static void pch_uart_hal_write(struct eg20t_port *priv,
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900536 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 }
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900545}
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) {
Tomoya MORINAGA23877fd2011-02-23 10:03:15 +0900600 dev_dbg(priv->port.dev, "%s:tty is busy now", __func__);
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900601 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{
Feng Tang30c6c6b2012-02-06 17:24:44 +0800613 int ret = 0;
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900614 struct uart_port *port = &priv->port;
615
616 if (port->x_char) {
Tomoya MORINAGA23877fd2011-02-23 10:03:15 +0900617 dev_dbg(priv->port.dev, "%s:X character send %02x (%lu)\n",
618 __func__, port->x_char, jiffies);
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900619 buf[0] = port->x_char;
620 port->x_char = 0;
621 ret = 1;
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900622 }
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) {
Tomoya MORINAGA23877fd2011-02-23 10:03:15 +0900636 dev_dbg(priv->port.dev, "%s:tty is busy now", __func__);
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900637 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
Tomoya MORINAGA6c4b47d2011-07-20 20:17:49 +0900701 dma_dev = pci_get_bus_and_slot(priv->pdev->bus->number,
702 PCI_DEVFN(0xa, 0)); /* Get DMA's dev
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900703 information */
704 /* Set Tx DMA */
705 param = &priv->param_tx;
706 param->dma_dev = &dma_dev->dev;
Tomoya MORINAGAfec38d12011-02-23 10:03:19 +0900707 param->chan_id = priv->port.line * 2; /* Tx = 0, 2, 4, ... */
708
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900709 param->tx_reg = port->mapbase + UART_TX;
710 chan = dma_request_channel(mask, filter, param);
711 if (!chan) {
Tomoya MORINAGA23877fd2011-02-23 10:03:15 +0900712 dev_err(priv->port.dev, "%s:dma_request_channel FAILS(Tx)\n",
713 __func__);
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900714 return;
715 }
716 priv->chan_tx = chan;
717
718 /* Set Rx DMA */
719 param = &priv->param_rx;
720 param->dma_dev = &dma_dev->dev;
Tomoya MORINAGAfec38d12011-02-23 10:03:19 +0900721 param->chan_id = priv->port.line * 2 + 1; /* Rx = Tx + 1 */
722
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900723 param->rx_reg = port->mapbase + UART_RX;
724 chan = dma_request_channel(mask, filter, param);
725 if (!chan) {
Tomoya MORINAGA23877fd2011-02-23 10:03:15 +0900726 dev_err(priv->port.dev, "%s:dma_request_channel FAILS(Rx)\n",
727 __func__);
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900728 dma_release_channel(priv->chan_tx);
Tomoya MORINAGA90f04c22011-11-11 10:55:27 +0900729 priv->chan_tx = NULL;
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900730 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);
Tomoya MORINAGAda3564e2011-02-23 10:03:12 +0900744 int count;
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900745
746 if (!tty) {
Tomoya MORINAGA23877fd2011-02-23 10:03:15 +0900747 dev_dbg(priv->port.dev, "%s:tty is busy now", __func__);
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900748 return;
749 }
750
Tomoya MORINAGAda3564e2011-02-23 10:03:12 +0900751 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)
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900754 tty_flip_buffer_push(tty);
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900755 tty_kref_put(tty);
Tomoya MORINAGAda3564e2011-02-23 10:03:12 +0900756 async_tx_ack(priv->desc_rx);
757 pch_uart_hal_enable_interrupt(priv, PCH_UART_HAL_RX_INT);
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900758}
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;
Tomoya MORINAGAda3564e2011-02-23 10:03:12 +0900765 struct scatterlist *sg = priv->sg_tx_p;
766 int i;
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900767
Tomoya MORINAGAda3564e2011-02-23 10:03:12 +0900768 for (i = 0; i < priv->nent; i++, sg++) {
769 xmit->tail += sg_dma_len(sg);
770 port->icount.tx += sg_dma_len(sg);
771 }
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900772 xmit->tail &= UART_XMIT_SIZE - 1;
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900773 async_tx_ack(priv->desc_tx);
Tomoya MORINAGAda3564e2011-02-23 10:03:12 +0900774 dma_unmap_sg(port->dev, sg, priv->nent, DMA_TO_DEVICE);
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900775 priv->tx_dma_use = 0;
Tomoya MORINAGAda3564e2011-02-23 10:03:12 +0900776 priv->nent = 0;
777 kfree(priv->sg_tx_p);
Tomoya MORINAGA60d10312011-02-23 10:03:18 +0900778 pch_uart_hal_enable_interrupt(priv, PCH_UART_HAL_TX_INT);
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900779}
780
Tomoya MORINAGA18220762011-02-23 10:03:14 +0900781static int pop_tx(struct eg20t_port *priv, int size)
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900782{
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);
Tomoya MORINAGA18220762011-02-23 10:03:14 +0900794 pch_uart_hal_write(priv, &xmit->buf[xmit->tail], sz);
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900795 xmit->tail = (xmit->tail + sz) & (UART_XMIT_SIZE - 1);
796 count += sz;
797 } while (!uart_circ_empty(xmit) && count < size);
798
799pop_tx_end:
Tomoya MORINAGA23877fd2011-02-23 10:03:15 +0900800 dev_dbg(priv->port.dev, "%d characters. Remained %d characters.(%lu)\n",
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900801 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
Tomoya MORINAGAda3564e2011-02-23 10:03:12 +0900842 sg_dma_len(sg) = priv->trigger_level;
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900843
844 sg_set_page(&priv->sg_rx, virt_to_page(priv->rx_buf_virt),
Tomoya MORINAGA1c518992010-12-16 16:13:29 +0900845 sg_dma_len(sg), (unsigned long)priv->rx_buf_virt &
846 ~PAGE_MASK);
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900847
848 sg_dma_address(sg) = priv->rx_buf_dma;
849
Alexandre Bounine16052822012-03-08 16:11:18 -0500850 desc = dmaengine_prep_slave_sg(priv->chan_rx,
Vinod Koula485df42011-10-14 10:47:38 +0530851 sg, 1, DMA_DEV_TO_MEM,
Tomoya MORINAGAda3564e2011-02-23 10:03:12 +0900852 DMA_PREP_INTERRUPT | DMA_CTRL_ACK);
853
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900854 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;
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900870 int fifo_size;
871 int tx_size;
872 int size;
873 int tx_empty;
874
875 if (!priv->start_tx) {
Tomoya MORINAGA23877fd2011-02-23 10:03:15 +0900876 dev_info(priv->port.dev, "%s:Tx isn't started. (%lu)\n",
877 __func__, jiffies);
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900878 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);
Tomoya MORINAGAda3564e2011-02-23 10:03:12 +0900892 if (size < 0)
893 size = fifo_size;
894
Tomoya MORINAGA18220762011-02-23 10:03:14 +0900895 tx_size = pop_tx(priv, size);
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900896 if (tx_size > 0) {
Tomoya MORINAGA18220762011-02-23 10:03:14 +0900897 port->icount.tx += tx_size;
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900898 tx_empty = 0;
899 }
900
901 priv->tx_empty = tx_empty;
902
Tomoya MORINAGAda3564e2011-02-23 10:03:12 +0900903 if (tx_empty) {
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900904 pch_uart_hal_disable_interrupt(priv, PCH_UART_HAL_TX_INT);
Tomoya MORINAGAda3564e2011-02-23 10:03:12 +0900905 uart_write_wakeup(port);
906 }
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900907
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;
Tomoya MORINAGAda3564e2011-02-23 10:03:12 +0900915 struct scatterlist *sg;
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900916 int nent;
917 int fifo_size;
918 int tx_empty;
919 struct dma_async_tx_descriptor *desc;
Tomoya MORINAGAda3564e2011-02-23 10:03:12 +0900920 int num;
921 int i;
922 int bytes;
923 int size;
924 int rem;
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900925
926 if (!priv->start_tx) {
Tomoya MORINAGA23877fd2011-02-23 10:03:15 +0900927 dev_info(priv->port.dev, "%s:Tx isn't started. (%lu)\n",
928 __func__, jiffies);
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900929 pch_uart_hal_disable_interrupt(priv, PCH_UART_HAL_TX_INT);
930 priv->tx_empty = 1;
931 return 0;
932 }
933
Tomoya MORINAGA60d10312011-02-23 10:03:18 +0900934 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
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900942 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
Tomoya MORINAGAda3564e2011-02-23 10:03:12 +0900951 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) {
Tomoya MORINAGA23877fd2011-02-23 10:03:15 +0900955 dev_dbg(priv->port.dev, "%s 0 bytes return\n", __func__);
Tomoya MORINAGAda3564e2011-02-23 10:03:12 +0900956 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 }
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900970
Tomoya MORINAGA23877fd2011-02-23 10:03:15 +0900971 dev_dbg(priv->port.dev, "%s num=%d size=%d rem=%d\n",
972 __func__, num, size, rem);
973
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900974 priv->tx_dma_use = 1;
975
Tomoya MORINAGAda3564e2011-02-23 10:03:12 +0900976 priv->sg_tx_p = kzalloc(sizeof(struct scatterlist)*num, GFP_ATOMIC);
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900977
Tomoya MORINAGAda3564e2011-02-23 10:03:12 +0900978 sg_init_table(priv->sg_tx_p, num); /* Initialize SG table */
979 sg = priv->sg_tx_p;
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900980
Tomoya MORINAGAda3564e2011-02-23 10:03:12 +0900981 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);
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900992 if (!nent) {
Tomoya MORINAGA23877fd2011-02-23 10:03:15 +0900993 dev_err(priv->port.dev, "%s:dma_map_sg Failed\n", __func__);
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900994 return 0;
995 }
Tomoya MORINAGAda3564e2011-02-23 10:03:12 +0900996 priv->nent = nent;
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900997
Tomoya MORINAGAda3564e2011-02-23 10:03:12 +0900998 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 }
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001008
Alexandre Bounine16052822012-03-08 16:11:18 -05001009 desc = dmaengine_prep_slave_sg(priv->chan_tx,
Vinod Koula485df42011-10-14 10:47:38 +05301010 priv->sg_tx_p, nent, DMA_MEM_TO_DEV,
Tomoya MORINAGAda3564e2011-02-23 10:03:12 +09001011 DMA_PREP_INTERRUPT | DMA_CTRL_ACK);
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001012 if (!desc) {
Tomoya MORINAGA23877fd2011-02-23 10:03:15 +09001013 dev_err(priv->port.dev, "%s:device_prep_slave_sg Failed\n",
1014 __func__);
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001015 return 0;
1016 }
Tomoya MORINAGAda3564e2011-02-23 10:03:12 +09001017 dma_sync_sg_for_device(port->dev, priv->sg_tx_p, nent, DMA_TO_DEVICE);
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001018 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 */
Tomoya MORINAGAda3564e2011-02-23 10:03:12 +09001072 if (priv->use_dma) {
1073 pch_uart_hal_disable_interrupt(priv,
1074 PCH_UART_HAL_RX_INT);
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001075 ret = dma_handle_rx(priv);
Tomoya MORINAGAda3564e2011-02-23 10:03:12 +09001076 if (!ret)
1077 pch_uart_hal_enable_interrupt(priv,
1078 PCH_UART_HAL_RX_INT);
1079 } else {
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001080 ret = handle_rx(priv);
Tomoya MORINAGAda3564e2011-02-23 10:03:12 +09001081 }
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001082 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 */
Tomoya MORINAGA23877fd2011-02-23 10:03:15 +09001098 dev_err(priv->port.dev, "%s:iid=%d (%lu)\n", __func__,
1099 iid, jiffies);
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001100 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;
Feng Tang30c6c6b2012-02-06 17:24:44 +08001119
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001120 priv = container_of(port, struct eg20t_port, port);
1121 if (priv->tx_empty)
Feng Tang30c6c6b2012-02-06 17:24:44 +08001122 return TIOCSER_TEMT;
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001123 else
Feng Tang30c6c6b2012-02-06 17:24:44 +08001124 return 0;
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001125}
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;
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001155 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
Tomoya MORINAGA9af71552011-02-23 10:03:17 +09001164 if (priv->mcr & UART_MCR_AFE)
1165 mcr |= UART_MCR_AFE;
1166
1167 if (mctrl)
1168 iowrite8(mcr, priv->membase + UART_MCR);
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001169}
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
Tomoya MORINAGA23877fd2011-02-23 10:03:15 +09001185 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__);
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001189 return;
Tomoya MORINAGA23877fd2011-02-23 10:03:15 +09001190 }
1191 }
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001192
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;
Tomoya MORINAGAaac6c0b2011-02-23 10:03:16 +09001236
1237 if (port->uartclk)
Darren Harta8a3ec92012-03-09 09:51:48 -08001238 priv->uartclk = port->uartclk;
Tomoya MORINAGAaac6c0b2011-02-23 10:03:16 +09001239 else
Darren Harta8a3ec92012-03-09 09:51:48 -08001240 port->uartclk = priv->uartclk;
Tomoya MORINAGAaac6c0b2011-02-23 10:03:16 +09001241
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001242 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)
Tomoya MORINAGA23877fd2011-02-23 10:03:15 +09001312 dev_err(priv->port.dev,
1313 "pch_uart_hal_set_fifo Failed(ret=%d)\n", ret);
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001314
Tomoya MORINAGA90f04c22011-11-11 10:55:27 +09001315 pch_free_dma(port);
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001316
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
Feng Tang30c6c6b2012-02-06 17:24:44 +08001358 } else
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001359 parity = PCH_UART_HAL_PARITY_NONE;
Tomoya MORINAGA9af71552011-02-23 10:03:17 +09001360
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
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001367 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
Tomoya MORINAGAa1d7cfe2011-10-27 15:45:18 +09001378 pch_uart_set_mctrl(&priv->port, priv->port.mctrl);
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001379 /* 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) {
Tomoya MORINAGA23877fd2011-02-23 10:03:15 +09001440 dev_info(priv->port.dev,
1441 "PCH UART : Use PIO Mode (without DMA)\n");
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001442 priv->use_dma = 0;
1443 serinfo->flags &= ~UPF_LOW_LATENCY;
1444 } else {
1445#ifndef CONFIG_PCH_DMA
Tomoya MORINAGA23877fd2011-02-23 10:03:15 +09001446 dev_err(priv->port.dev, "%s : PCH DMA is not Loaded.\n",
1447 __func__);
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001448 return -EOPNOTSUPP;
1449#endif
1450 priv->use_dma = 1;
1451 priv->use_dma_flag = 1;
Tomoya MORINAGA23877fd2011-02-23 10:03:15 +09001452 dev_info(priv->port.dev, "PCH UART : Use DMA Mode\n");
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001453 }
1454
1455 return 0;
1456}
1457
1458static struct uart_ops pch_uart_ops = {
1459 .tx_empty = pch_uart_tx_empty,
1460 .set_mctrl = pch_uart_set_mctrl,
1461 .get_mctrl = pch_uart_get_mctrl,
1462 .stop_tx = pch_uart_stop_tx,
1463 .start_tx = pch_uart_start_tx,
1464 .stop_rx = pch_uart_stop_rx,
1465 .enable_ms = pch_uart_enable_ms,
1466 .break_ctl = pch_uart_break_ctl,
1467 .startup = pch_uart_startup,
1468 .shutdown = pch_uart_shutdown,
1469 .set_termios = pch_uart_set_termios,
1470/* .pm = pch_uart_pm, Not supported yet */
1471/* .set_wake = pch_uart_set_wake, Not supported yet */
1472 .type = pch_uart_type,
1473 .release_port = pch_uart_release_port,
1474 .request_port = pch_uart_request_port,
1475 .config_port = pch_uart_config_port,
1476 .verify_port = pch_uart_verify_port
1477};
1478
Alexander Steine30f8672011-11-15 15:04:07 -08001479#ifdef CONFIG_SERIAL_PCH_UART_CONSOLE
1480
1481/*
1482 * Wait for transmitter & holding register to empty
1483 */
1484static void wait_for_xmitr(struct eg20t_port *up, int bits)
1485{
1486 unsigned int status, tmout = 10000;
1487
1488 /* Wait up to 10ms for the character(s) to be sent. */
1489 for (;;) {
1490 status = ioread8(up->membase + UART_LSR);
1491
1492 if ((status & bits) == bits)
1493 break;
1494 if (--tmout == 0)
1495 break;
1496 udelay(1);
1497 }
1498
1499 /* Wait up to 1s for flow control if necessary */
1500 if (up->port.flags & UPF_CONS_FLOW) {
1501 unsigned int tmout;
1502 for (tmout = 1000000; tmout; tmout--) {
1503 unsigned int msr = ioread8(up->membase + UART_MSR);
1504 if (msr & UART_MSR_CTS)
1505 break;
1506 udelay(1);
1507 touch_nmi_watchdog();
1508 }
1509 }
1510}
1511
1512static void pch_console_putchar(struct uart_port *port, int ch)
1513{
1514 struct eg20t_port *priv =
1515 container_of(port, struct eg20t_port, port);
1516
1517 wait_for_xmitr(priv, UART_LSR_THRE);
1518 iowrite8(ch, priv->membase + PCH_UART_THR);
1519}
1520
1521/*
1522 * Print a string to the serial port trying not to disturb
1523 * any possible real use of the port...
1524 *
1525 * The console_lock must be held when we get here.
1526 */
1527static void
1528pch_console_write(struct console *co, const char *s, unsigned int count)
1529{
1530 struct eg20t_port *priv;
Alexander Steine30f8672011-11-15 15:04:07 -08001531 unsigned long flags;
1532 u8 ier;
1533 int locked = 1;
1534
1535 priv = pch_uart_ports[co->index];
1536
1537 touch_nmi_watchdog();
1538
1539 local_irq_save(flags);
1540 if (priv->port.sysrq) {
1541 /* serial8250_handle_port() already took the lock */
1542 locked = 0;
1543 } else if (oops_in_progress) {
1544 locked = spin_trylock(&priv->port.lock);
1545 } else
1546 spin_lock(&priv->port.lock);
1547
1548 /*
1549 * First save the IER then disable the interrupts
1550 */
1551 ier = ioread8(priv->membase + UART_IER);
1552
1553 pch_uart_hal_disable_interrupt(priv, PCH_UART_HAL_ALL_INT);
1554
1555 uart_console_write(&priv->port, s, count, pch_console_putchar);
1556
1557 /*
1558 * Finally, wait for transmitter to become empty
1559 * and restore the IER
1560 */
1561 wait_for_xmitr(priv, BOTH_EMPTY);
1562 iowrite8(ier, priv->membase + UART_IER);
1563
1564 if (locked)
1565 spin_unlock(&priv->port.lock);
1566 local_irq_restore(flags);
1567}
1568
1569static int __init pch_console_setup(struct console *co, char *options)
1570{
1571 struct uart_port *port;
Darren Hart7ce92512012-03-09 09:51:51 -08001572 int baud = default_baud;
Alexander Steine30f8672011-11-15 15:04:07 -08001573 int bits = 8;
1574 int parity = 'n';
1575 int flow = 'n';
1576
1577 /*
1578 * Check whether an invalid uart number has been specified, and
1579 * if so, search for the first available port that does have
1580 * console support.
1581 */
1582 if (co->index >= PCH_UART_NR)
1583 co->index = 0;
1584 port = &pch_uart_ports[co->index]->port;
1585
1586 if (!port || (!port->iobase && !port->membase))
1587 return -ENODEV;
1588
Darren Hart077175f2012-03-09 09:51:49 -08001589 port->uartclk = pch_uart_get_uartclk();
Alexander Steine30f8672011-11-15 15:04:07 -08001590
1591 if (options)
1592 uart_parse_options(options, &baud, &parity, &bits, &flow);
1593
1594 return uart_set_options(port, co, baud, parity, bits, flow);
1595}
1596
1597static struct uart_driver pch_uart_driver;
1598
1599static struct console pch_console = {
1600 .name = PCH_UART_DRIVER_DEVICE,
1601 .write = pch_console_write,
1602 .device = uart_console_device,
1603 .setup = pch_console_setup,
1604 .flags = CON_PRINTBUFFER | CON_ANYTIME,
1605 .index = -1,
1606 .data = &pch_uart_driver,
1607};
1608
1609#define PCH_CONSOLE (&pch_console)
1610#else
1611#define PCH_CONSOLE NULL
1612#endif
1613
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001614static struct uart_driver pch_uart_driver = {
1615 .owner = THIS_MODULE,
1616 .driver_name = KBUILD_MODNAME,
1617 .dev_name = PCH_UART_DRIVER_DEVICE,
1618 .major = 0,
1619 .minor = 0,
1620 .nr = PCH_UART_NR,
Alexander Steine30f8672011-11-15 15:04:07 -08001621 .cons = PCH_CONSOLE,
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001622};
1623
1624static struct eg20t_port *pch_uart_init_port(struct pci_dev *pdev,
Tomoya MORINAGA4564e1e2011-01-28 18:00:01 +09001625 const struct pci_device_id *id)
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001626{
1627 struct eg20t_port *priv;
1628 int ret;
1629 unsigned int iobase;
1630 unsigned int mapbase;
Tomoya MORINAGA1c518992010-12-16 16:13:29 +09001631 unsigned char *rxbuf;
Darren Hart077175f2012-03-09 09:51:49 -08001632 int fifosize;
Tomoya MORINAGAfec38d12011-02-23 10:03:19 +09001633 int port_type;
1634 struct pch_uart_driver_data *board;
Feng Tangd0114112012-02-06 17:24:43 +08001635 char name[32]; /* for debugfs file name */
Tomoya MORINAGAfec38d12011-02-23 10:03:19 +09001636
1637 board = &drv_dat[id->driver_data];
1638 port_type = board->port_type;
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001639
1640 priv = kzalloc(sizeof(struct eg20t_port), GFP_KERNEL);
1641 if (priv == NULL)
1642 goto init_port_alloc_err;
1643
Tomoya MORINAGA1c518992010-12-16 16:13:29 +09001644 rxbuf = (unsigned char *)__get_free_page(GFP_KERNEL);
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001645 if (!rxbuf)
1646 goto init_port_free_txbuf;
1647
1648 switch (port_type) {
1649 case PORT_UNKNOWN:
Tomoya MORINAGA4564e1e2011-01-28 18:00:01 +09001650 fifosize = 256; /* EG20T/ML7213: UART0 */
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001651 break;
1652 case PORT_8250:
Tomoya MORINAGA4564e1e2011-01-28 18:00:01 +09001653 fifosize = 64; /* EG20T:UART1~3 ML7213: UART1~2*/
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001654 break;
1655 default:
1656 dev_err(&pdev->dev, "Invalid Port Type(=%d)\n", port_type);
1657 goto init_port_hal_free;
1658 }
1659
Alexander Steine4635952011-07-04 08:58:31 +02001660 pci_enable_msi(pdev);
Tomoya MORINAGA867c9022012-04-02 14:36:22 +09001661 pci_set_master(pdev);
Alexander Steine4635952011-07-04 08:58:31 +02001662
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001663 iobase = pci_resource_start(pdev, 0);
1664 mapbase = pci_resource_start(pdev, 1);
1665 priv->mapbase = mapbase;
1666 priv->iobase = iobase;
1667 priv->pdev = pdev;
1668 priv->tx_empty = 1;
Tomoya MORINAGA1c518992010-12-16 16:13:29 +09001669 priv->rxbuf.buf = rxbuf;
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001670 priv->rxbuf.size = PAGE_SIZE;
1671
1672 priv->fifo_size = fifosize;
Darren Hart077175f2012-03-09 09:51:49 -08001673 priv->uartclk = pch_uart_get_uartclk();
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001674 priv->port_type = PORT_MAX_8250 + port_type + 1;
1675 priv->port.dev = &pdev->dev;
1676 priv->port.iobase = iobase;
1677 priv->port.membase = NULL;
1678 priv->port.mapbase = mapbase;
1679 priv->port.irq = pdev->irq;
1680 priv->port.iotype = UPIO_PORT;
1681 priv->port.ops = &pch_uart_ops;
1682 priv->port.flags = UPF_BOOT_AUTOCONF;
1683 priv->port.fifosize = fifosize;
Tomoya MORINAGAfec38d12011-02-23 10:03:19 +09001684 priv->port.line = board->line_no;
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001685 priv->trigger = PCH_UART_HAL_TRIGGER_M;
1686
Tomoya MORINAGA7e461322011-02-23 10:03:13 +09001687 spin_lock_init(&priv->port.lock);
1688
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001689 pci_set_drvdata(pdev, priv);
Feng Tang6f56d0f2012-02-06 17:24:45 +08001690 priv->trigger_level = 1;
1691 priv->fcr = 0;
Tomoya MORINAGA4564e1e2011-01-28 18:00:01 +09001692
Alexander Steine30f8672011-11-15 15:04:07 -08001693#ifdef CONFIG_SERIAL_PCH_UART_CONSOLE
1694 pch_uart_ports[board->line_no] = priv;
1695#endif
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001696 ret = uart_add_one_port(&pch_uart_driver, &priv->port);
1697 if (ret < 0)
1698 goto init_port_hal_free;
1699
Feng Tangd0114112012-02-06 17:24:43 +08001700#ifdef CONFIG_DEBUG_FS
1701 snprintf(name, sizeof(name), "uart%d_regs", board->line_no);
1702 priv->debugfs = debugfs_create_file(name, S_IFREG | S_IRUGO,
1703 NULL, priv, &port_regs_ops);
1704#endif
1705
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001706 return priv;
1707
1708init_port_hal_free:
Alexander Steine30f8672011-11-15 15:04:07 -08001709#ifdef CONFIG_SERIAL_PCH_UART_CONSOLE
1710 pch_uart_ports[board->line_no] = NULL;
1711#endif
Tomoya MORINAGA1c518992010-12-16 16:13:29 +09001712 free_page((unsigned long)rxbuf);
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001713init_port_free_txbuf:
1714 kfree(priv);
1715init_port_alloc_err:
1716
1717 return NULL;
1718}
1719
1720static void pch_uart_exit_port(struct eg20t_port *priv)
1721{
Feng Tangd0114112012-02-06 17:24:43 +08001722
1723#ifdef CONFIG_DEBUG_FS
1724 if (priv->debugfs)
1725 debugfs_remove(priv->debugfs);
1726#endif
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001727 uart_remove_one_port(&pch_uart_driver, &priv->port);
1728 pci_set_drvdata(priv->pdev, NULL);
Tomoya MORINAGA1c518992010-12-16 16:13:29 +09001729 free_page((unsigned long)priv->rxbuf.buf);
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001730}
1731
1732static void pch_uart_pci_remove(struct pci_dev *pdev)
1733{
Feng Tang6f56d0f2012-02-06 17:24:45 +08001734 struct eg20t_port *priv = pci_get_drvdata(pdev);
Alexander Steine4635952011-07-04 08:58:31 +02001735
1736 pci_disable_msi(pdev);
Alexander Steine30f8672011-11-15 15:04:07 -08001737
1738#ifdef CONFIG_SERIAL_PCH_UART_CONSOLE
1739 pch_uart_ports[priv->port.line] = NULL;
1740#endif
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001741 pch_uart_exit_port(priv);
1742 pci_disable_device(pdev);
1743 kfree(priv);
1744 return;
1745}
1746#ifdef CONFIG_PM
1747static int pch_uart_pci_suspend(struct pci_dev *pdev, pm_message_t state)
1748{
1749 struct eg20t_port *priv = pci_get_drvdata(pdev);
1750
1751 uart_suspend_port(&pch_uart_driver, &priv->port);
1752
1753 pci_save_state(pdev);
1754 pci_set_power_state(pdev, pci_choose_state(pdev, state));
1755 return 0;
1756}
1757
1758static int pch_uart_pci_resume(struct pci_dev *pdev)
1759{
1760 struct eg20t_port *priv = pci_get_drvdata(pdev);
1761 int ret;
1762
1763 pci_set_power_state(pdev, PCI_D0);
1764 pci_restore_state(pdev);
1765
1766 ret = pci_enable_device(pdev);
1767 if (ret) {
1768 dev_err(&pdev->dev,
1769 "%s-pci_enable_device failed(ret=%d) ", __func__, ret);
1770 return ret;
1771 }
1772
1773 uart_resume_port(&pch_uart_driver, &priv->port);
1774
1775 return 0;
1776}
1777#else
1778#define pch_uart_pci_suspend NULL
1779#define pch_uart_pci_resume NULL
1780#endif
1781
1782static DEFINE_PCI_DEVICE_TABLE(pch_uart_pci_id) = {
1783 {PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x8811),
Tomoya MORINAGAfec38d12011-02-23 10:03:19 +09001784 .driver_data = pch_et20t_uart0},
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001785 {PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x8812),
Tomoya MORINAGAfec38d12011-02-23 10:03:19 +09001786 .driver_data = pch_et20t_uart1},
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001787 {PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x8813),
Tomoya MORINAGAfec38d12011-02-23 10:03:19 +09001788 .driver_data = pch_et20t_uart2},
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001789 {PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x8814),
Tomoya MORINAGAfec38d12011-02-23 10:03:19 +09001790 .driver_data = pch_et20t_uart3},
Tomoya MORINAGA4564e1e2011-01-28 18:00:01 +09001791 {PCI_DEVICE(PCI_VENDOR_ID_ROHM, 0x8027),
Tomoya MORINAGAfec38d12011-02-23 10:03:19 +09001792 .driver_data = pch_ml7213_uart0},
Tomoya MORINAGA4564e1e2011-01-28 18:00:01 +09001793 {PCI_DEVICE(PCI_VENDOR_ID_ROHM, 0x8028),
Tomoya MORINAGAfec38d12011-02-23 10:03:19 +09001794 .driver_data = pch_ml7213_uart1},
Tomoya MORINAGA4564e1e2011-01-28 18:00:01 +09001795 {PCI_DEVICE(PCI_VENDOR_ID_ROHM, 0x8029),
Tomoya MORINAGAfec38d12011-02-23 10:03:19 +09001796 .driver_data = pch_ml7213_uart2},
Tomoya MORINAGA177c2cb2011-05-09 17:25:20 +09001797 {PCI_DEVICE(PCI_VENDOR_ID_ROHM, 0x800C),
1798 .driver_data = pch_ml7223_uart0},
1799 {PCI_DEVICE(PCI_VENDOR_ID_ROHM, 0x800D),
1800 .driver_data = pch_ml7223_uart1},
Tomoya MORINAGA8249f742011-10-28 09:38:49 +09001801 {PCI_DEVICE(PCI_VENDOR_ID_ROHM, 0x8811),
1802 .driver_data = pch_ml7831_uart0},
1803 {PCI_DEVICE(PCI_VENDOR_ID_ROHM, 0x8812),
1804 .driver_data = pch_ml7831_uart1},
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001805 {0,},
1806};
1807
1808static int __devinit pch_uart_pci_probe(struct pci_dev *pdev,
1809 const struct pci_device_id *id)
1810{
1811 int ret;
1812 struct eg20t_port *priv;
1813
1814 ret = pci_enable_device(pdev);
1815 if (ret < 0)
1816 goto probe_error;
1817
Tomoya MORINAGA4564e1e2011-01-28 18:00:01 +09001818 priv = pch_uart_init_port(pdev, id);
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001819 if (!priv) {
1820 ret = -EBUSY;
1821 goto probe_disable_device;
1822 }
1823 pci_set_drvdata(pdev, priv);
1824
1825 return ret;
1826
1827probe_disable_device:
Alexander Steine4635952011-07-04 08:58:31 +02001828 pci_disable_msi(pdev);
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001829 pci_disable_device(pdev);
1830probe_error:
1831 return ret;
1832}
1833
1834static struct pci_driver pch_uart_pci_driver = {
1835 .name = "pch_uart",
1836 .id_table = pch_uart_pci_id,
1837 .probe = pch_uart_pci_probe,
1838 .remove = __devexit_p(pch_uart_pci_remove),
1839 .suspend = pch_uart_pci_suspend,
1840 .resume = pch_uart_pci_resume,
1841};
1842
1843static int __init pch_uart_module_init(void)
1844{
1845 int ret;
1846
1847 /* register as UART driver */
1848 ret = uart_register_driver(&pch_uart_driver);
1849 if (ret < 0)
1850 return ret;
1851
1852 /* register as PCI driver */
1853 ret = pci_register_driver(&pch_uart_pci_driver);
1854 if (ret < 0)
1855 uart_unregister_driver(&pch_uart_driver);
1856
1857 return ret;
1858}
1859module_init(pch_uart_module_init);
1860
1861static void __exit pch_uart_module_exit(void)
1862{
1863 pci_unregister_driver(&pch_uart_pci_driver);
1864 uart_unregister_driver(&pch_uart_driver);
1865}
1866module_exit(pch_uart_module_exit);
1867
1868MODULE_LICENSE("GPL v2");
1869MODULE_DESCRIPTION("Intel EG20T PCH UART PCI Driver");
1870module_param(default_baud, uint, S_IRUGO);
Darren Harta46f5532012-03-09 09:51:52 -08001871MODULE_PARM_DESC(default_baud,
1872 "Default BAUD for initial driver state and console (default 9600)");
Darren Hart2a44feb2012-03-09 09:51:50 -08001873module_param(user_uartclk, uint, S_IRUGO);
Darren Harta46f5532012-03-09 09:51:52 -08001874MODULE_PARM_DESC(user_uartclk,
1875 "Override UART default or board specific UART clock");