blob: 6e96304b7c8feb436d4c6dbeaac8037266c3c52a [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,
Tomoya MORINAGA04e2c2e2012-03-26 14:43:05 +090042 PCH_UART_HANDLED_LS_INT_SHIFT,
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +090043};
44
45enum {
46 PCH_UART_8LINE,
47 PCH_UART_2LINE,
48};
49
50#define PCH_UART_DRIVER_DEVICE "ttyPCH"
51
Tomoya MORINAGA4564e1e2011-01-28 18:00:01 +090052/* Set the max number of UART port
53 * Intel EG20T PCH: 4 port
Tomoya MORINAGAeca9dfa2011-10-28 09:38:50 +090054 * LAPIS Semiconductor ML7213 IOH: 3 port
55 * LAPIS Semiconductor ML7223 IOH: 2 port
Tomoya MORINAGA4564e1e2011-01-28 18:00:01 +090056*/
57#define PCH_UART_NR 4
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +090058
59#define PCH_UART_HANDLED_RX_INT (1<<((PCH_UART_HANDLED_RX_INT_SHIFT)<<1))
60#define PCH_UART_HANDLED_TX_INT (1<<((PCH_UART_HANDLED_TX_INT_SHIFT)<<1))
61#define PCH_UART_HANDLED_RX_ERR_INT (1<<((\
62 PCH_UART_HANDLED_RX_ERR_INT_SHIFT)<<1))
63#define PCH_UART_HANDLED_RX_TRG_INT (1<<((\
64 PCH_UART_HANDLED_RX_TRG_INT_SHIFT)<<1))
65#define PCH_UART_HANDLED_MS_INT (1<<((PCH_UART_HANDLED_MS_INT_SHIFT)<<1))
66
Tomoya MORINAGA04e2c2e2012-03-26 14:43:05 +090067#define PCH_UART_HANDLED_LS_INT (1<<((PCH_UART_HANDLED_LS_INT_SHIFT)<<1))
68
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +090069#define PCH_UART_RBR 0x00
70#define PCH_UART_THR 0x00
71
72#define PCH_UART_IER_MASK (PCH_UART_IER_ERBFI|PCH_UART_IER_ETBEI|\
73 PCH_UART_IER_ELSI|PCH_UART_IER_EDSSI)
74#define PCH_UART_IER_ERBFI 0x00000001
75#define PCH_UART_IER_ETBEI 0x00000002
76#define PCH_UART_IER_ELSI 0x00000004
77#define PCH_UART_IER_EDSSI 0x00000008
78
79#define PCH_UART_IIR_IP 0x00000001
80#define PCH_UART_IIR_IID 0x00000006
81#define PCH_UART_IIR_MSI 0x00000000
82#define PCH_UART_IIR_TRI 0x00000002
83#define PCH_UART_IIR_RRI 0x00000004
84#define PCH_UART_IIR_REI 0x00000006
85#define PCH_UART_IIR_TOI 0x00000008
86#define PCH_UART_IIR_FIFO256 0x00000020
87#define PCH_UART_IIR_FIFO64 PCH_UART_IIR_FIFO256
88#define PCH_UART_IIR_FE 0x000000C0
89
90#define PCH_UART_FCR_FIFOE 0x00000001
91#define PCH_UART_FCR_RFR 0x00000002
92#define PCH_UART_FCR_TFR 0x00000004
93#define PCH_UART_FCR_DMS 0x00000008
94#define PCH_UART_FCR_FIFO256 0x00000020
95#define PCH_UART_FCR_RFTL 0x000000C0
96
97#define PCH_UART_FCR_RFTL1 0x00000000
98#define PCH_UART_FCR_RFTL64 0x00000040
99#define PCH_UART_FCR_RFTL128 0x00000080
100#define PCH_UART_FCR_RFTL224 0x000000C0
101#define PCH_UART_FCR_RFTL16 PCH_UART_FCR_RFTL64
102#define PCH_UART_FCR_RFTL32 PCH_UART_FCR_RFTL128
103#define PCH_UART_FCR_RFTL56 PCH_UART_FCR_RFTL224
104#define PCH_UART_FCR_RFTL4 PCH_UART_FCR_RFTL64
105#define PCH_UART_FCR_RFTL8 PCH_UART_FCR_RFTL128
106#define PCH_UART_FCR_RFTL14 PCH_UART_FCR_RFTL224
107#define PCH_UART_FCR_RFTL_SHIFT 6
108
109#define PCH_UART_LCR_WLS 0x00000003
110#define PCH_UART_LCR_STB 0x00000004
111#define PCH_UART_LCR_PEN 0x00000008
112#define PCH_UART_LCR_EPS 0x00000010
113#define PCH_UART_LCR_SP 0x00000020
114#define PCH_UART_LCR_SB 0x00000040
115#define PCH_UART_LCR_DLAB 0x00000080
116#define PCH_UART_LCR_NP 0x00000000
117#define PCH_UART_LCR_OP PCH_UART_LCR_PEN
118#define PCH_UART_LCR_EP (PCH_UART_LCR_PEN | PCH_UART_LCR_EPS)
119#define PCH_UART_LCR_1P (PCH_UART_LCR_PEN | PCH_UART_LCR_SP)
120#define PCH_UART_LCR_0P (PCH_UART_LCR_PEN | PCH_UART_LCR_EPS |\
121 PCH_UART_LCR_SP)
122
123#define PCH_UART_LCR_5BIT 0x00000000
124#define PCH_UART_LCR_6BIT 0x00000001
125#define PCH_UART_LCR_7BIT 0x00000002
126#define PCH_UART_LCR_8BIT 0x00000003
127
128#define PCH_UART_MCR_DTR 0x00000001
129#define PCH_UART_MCR_RTS 0x00000002
130#define PCH_UART_MCR_OUT 0x0000000C
131#define PCH_UART_MCR_LOOP 0x00000010
132#define PCH_UART_MCR_AFE 0x00000020
133
134#define PCH_UART_LSR_DR 0x00000001
135#define PCH_UART_LSR_ERR (1<<7)
136
137#define PCH_UART_MSR_DCTS 0x00000001
138#define PCH_UART_MSR_DDSR 0x00000002
139#define PCH_UART_MSR_TERI 0x00000004
140#define PCH_UART_MSR_DDCD 0x00000008
141#define PCH_UART_MSR_CTS 0x00000010
142#define PCH_UART_MSR_DSR 0x00000020
143#define PCH_UART_MSR_RI 0x00000040
144#define PCH_UART_MSR_DCD 0x00000080
145#define PCH_UART_MSR_DELTA (PCH_UART_MSR_DCTS | PCH_UART_MSR_DDSR |\
146 PCH_UART_MSR_TERI | PCH_UART_MSR_DDCD)
147
148#define PCH_UART_DLL 0x00
149#define PCH_UART_DLM 0x01
150
Feng Tangd0114112012-02-06 17:24:43 +0800151#define PCH_UART_BRCSR 0x0E
152
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900153#define PCH_UART_IID_RLS (PCH_UART_IIR_REI)
154#define PCH_UART_IID_RDR (PCH_UART_IIR_RRI)
155#define PCH_UART_IID_RDR_TO (PCH_UART_IIR_RRI | PCH_UART_IIR_TOI)
156#define PCH_UART_IID_THRE (PCH_UART_IIR_TRI)
157#define PCH_UART_IID_MS (PCH_UART_IIR_MSI)
158
159#define PCH_UART_HAL_PARITY_NONE (PCH_UART_LCR_NP)
160#define PCH_UART_HAL_PARITY_ODD (PCH_UART_LCR_OP)
161#define PCH_UART_HAL_PARITY_EVEN (PCH_UART_LCR_EP)
162#define PCH_UART_HAL_PARITY_FIX1 (PCH_UART_LCR_1P)
163#define PCH_UART_HAL_PARITY_FIX0 (PCH_UART_LCR_0P)
164#define PCH_UART_HAL_5BIT (PCH_UART_LCR_5BIT)
165#define PCH_UART_HAL_6BIT (PCH_UART_LCR_6BIT)
166#define PCH_UART_HAL_7BIT (PCH_UART_LCR_7BIT)
167#define PCH_UART_HAL_8BIT (PCH_UART_LCR_8BIT)
168#define PCH_UART_HAL_STB1 0
169#define PCH_UART_HAL_STB2 (PCH_UART_LCR_STB)
170
171#define PCH_UART_HAL_CLR_TX_FIFO (PCH_UART_FCR_TFR)
172#define PCH_UART_HAL_CLR_RX_FIFO (PCH_UART_FCR_RFR)
173#define PCH_UART_HAL_CLR_ALL_FIFO (PCH_UART_HAL_CLR_TX_FIFO | \
174 PCH_UART_HAL_CLR_RX_FIFO)
175
176#define PCH_UART_HAL_DMA_MODE0 0
177#define PCH_UART_HAL_FIFO_DIS 0
178#define PCH_UART_HAL_FIFO16 (PCH_UART_FCR_FIFOE)
179#define PCH_UART_HAL_FIFO256 (PCH_UART_FCR_FIFOE | \
180 PCH_UART_FCR_FIFO256)
181#define PCH_UART_HAL_FIFO64 (PCH_UART_HAL_FIFO256)
182#define PCH_UART_HAL_TRIGGER1 (PCH_UART_FCR_RFTL1)
183#define PCH_UART_HAL_TRIGGER64 (PCH_UART_FCR_RFTL64)
184#define PCH_UART_HAL_TRIGGER128 (PCH_UART_FCR_RFTL128)
185#define PCH_UART_HAL_TRIGGER224 (PCH_UART_FCR_RFTL224)
186#define PCH_UART_HAL_TRIGGER16 (PCH_UART_FCR_RFTL16)
187#define PCH_UART_HAL_TRIGGER32 (PCH_UART_FCR_RFTL32)
188#define PCH_UART_HAL_TRIGGER56 (PCH_UART_FCR_RFTL56)
189#define PCH_UART_HAL_TRIGGER4 (PCH_UART_FCR_RFTL4)
190#define PCH_UART_HAL_TRIGGER8 (PCH_UART_FCR_RFTL8)
191#define PCH_UART_HAL_TRIGGER14 (PCH_UART_FCR_RFTL14)
192#define PCH_UART_HAL_TRIGGER_L (PCH_UART_FCR_RFTL64)
193#define PCH_UART_HAL_TRIGGER_M (PCH_UART_FCR_RFTL128)
194#define PCH_UART_HAL_TRIGGER_H (PCH_UART_FCR_RFTL224)
195
196#define PCH_UART_HAL_RX_INT (PCH_UART_IER_ERBFI)
197#define PCH_UART_HAL_TX_INT (PCH_UART_IER_ETBEI)
198#define PCH_UART_HAL_RX_ERR_INT (PCH_UART_IER_ELSI)
199#define PCH_UART_HAL_MS_INT (PCH_UART_IER_EDSSI)
200#define PCH_UART_HAL_ALL_INT (PCH_UART_IER_MASK)
201
202#define PCH_UART_HAL_DTR (PCH_UART_MCR_DTR)
203#define PCH_UART_HAL_RTS (PCH_UART_MCR_RTS)
204#define PCH_UART_HAL_OUT (PCH_UART_MCR_OUT)
205#define PCH_UART_HAL_LOOP (PCH_UART_MCR_LOOP)
206#define PCH_UART_HAL_AFE (PCH_UART_MCR_AFE)
207
Tomoya MORINAGA4564e1e2011-01-28 18:00:01 +0900208#define PCI_VENDOR_ID_ROHM 0x10DB
209
Alexander Steine30f8672011-11-15 15:04:07 -0800210#define BOTH_EMPTY (UART_LSR_TEMT | UART_LSR_THRE)
211
Darren Hart077175f2012-03-09 09:51:49 -0800212#define DEFAULT_UARTCLK 1843200 /* 1.8432 MHz */
213#define CMITC_UARTCLK 192000000 /* 192.0000 MHz */
214#define FRI2_64_UARTCLK 64000000 /* 64.0000 MHz */
215#define FRI2_48_UARTCLK 48000000 /* 48.0000 MHz */
Alexander Steine30f8672011-11-15 15:04:07 -0800216
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900217struct pch_uart_buffer {
218 unsigned char *buf;
219 int size;
220};
221
222struct eg20t_port {
223 struct uart_port port;
224 int port_type;
225 void __iomem *membase;
226 resource_size_t mapbase;
227 unsigned int iobase;
228 struct pci_dev *pdev;
229 int fifo_size;
Darren Harta8a3ec92012-03-09 09:51:48 -0800230 int uartclk;
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900231 int start_tx;
232 int start_rx;
233 int tx_empty;
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900234 int trigger;
235 int trigger_level;
236 struct pch_uart_buffer rxbuf;
237 unsigned int dmsr;
238 unsigned int fcr;
Tomoya MORINAGA9af71552011-02-23 10:03:17 +0900239 unsigned int mcr;
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900240 unsigned int use_dma;
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900241 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
388 return DEFAULT_UARTCLK;
389}
390
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900391static void pch_uart_hal_enable_interrupt(struct eg20t_port *priv,
392 unsigned int flag)
393{
394 u8 ier = ioread8(priv->membase + UART_IER);
395 ier |= flag & PCH_UART_IER_MASK;
396 iowrite8(ier, priv->membase + UART_IER);
397}
398
399static void pch_uart_hal_disable_interrupt(struct eg20t_port *priv,
400 unsigned int flag)
401{
402 u8 ier = ioread8(priv->membase + UART_IER);
403 ier &= ~(flag & PCH_UART_IER_MASK);
404 iowrite8(ier, priv->membase + UART_IER);
405}
406
407static int pch_uart_hal_set_line(struct eg20t_port *priv, int baud,
408 unsigned int parity, unsigned int bits,
409 unsigned int stb)
410{
411 unsigned int dll, dlm, lcr;
412 int div;
413
Darren Harta8a3ec92012-03-09 09:51:48 -0800414 div = DIV_ROUND_CLOSEST(priv->uartclk / 16, baud);
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900415 if (div < 0 || USHRT_MAX <= div) {
Tomoya MORINAGA23877fd2011-02-23 10:03:15 +0900416 dev_err(priv->port.dev, "Invalid Baud(div=0x%x)\n", div);
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900417 return -EINVAL;
418 }
419
420 dll = (unsigned int)div & 0x00FFU;
421 dlm = ((unsigned int)div >> 8) & 0x00FFU;
422
423 if (parity & ~(PCH_UART_LCR_PEN | PCH_UART_LCR_EPS | PCH_UART_LCR_SP)) {
Tomoya MORINAGA23877fd2011-02-23 10:03:15 +0900424 dev_err(priv->port.dev, "Invalid parity(0x%x)\n", parity);
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900425 return -EINVAL;
426 }
427
428 if (bits & ~PCH_UART_LCR_WLS) {
Tomoya MORINAGA23877fd2011-02-23 10:03:15 +0900429 dev_err(priv->port.dev, "Invalid bits(0x%x)\n", bits);
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900430 return -EINVAL;
431 }
432
433 if (stb & ~PCH_UART_LCR_STB) {
Tomoya MORINAGA23877fd2011-02-23 10:03:15 +0900434 dev_err(priv->port.dev, "Invalid STB(0x%x)\n", stb);
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900435 return -EINVAL;
436 }
437
438 lcr = parity;
439 lcr |= bits;
440 lcr |= stb;
441
Tomoya MORINAGA23877fd2011-02-23 10:03:15 +0900442 dev_dbg(priv->port.dev, "%s:baud = %d, div = %04x, lcr = %02x (%lu)\n",
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900443 __func__, baud, div, lcr, jiffies);
444 iowrite8(PCH_UART_LCR_DLAB, priv->membase + UART_LCR);
445 iowrite8(dll, priv->membase + PCH_UART_DLL);
446 iowrite8(dlm, priv->membase + PCH_UART_DLM);
447 iowrite8(lcr, priv->membase + UART_LCR);
448
449 return 0;
450}
451
452static int pch_uart_hal_fifo_reset(struct eg20t_port *priv,
453 unsigned int flag)
454{
455 if (flag & ~(PCH_UART_FCR_TFR | PCH_UART_FCR_RFR)) {
Tomoya MORINAGA23877fd2011-02-23 10:03:15 +0900456 dev_err(priv->port.dev, "%s:Invalid flag(0x%x)\n",
457 __func__, flag);
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900458 return -EINVAL;
459 }
460
461 iowrite8(PCH_UART_FCR_FIFOE | priv->fcr, priv->membase + UART_FCR);
462 iowrite8(PCH_UART_FCR_FIFOE | priv->fcr | flag,
463 priv->membase + UART_FCR);
464 iowrite8(priv->fcr, priv->membase + UART_FCR);
465
466 return 0;
467}
468
469static int pch_uart_hal_set_fifo(struct eg20t_port *priv,
470 unsigned int dmamode,
471 unsigned int fifo_size, unsigned int trigger)
472{
473 u8 fcr;
474
475 if (dmamode & ~PCH_UART_FCR_DMS) {
Tomoya MORINAGA23877fd2011-02-23 10:03:15 +0900476 dev_err(priv->port.dev, "%s:Invalid DMA Mode(0x%x)\n",
477 __func__, dmamode);
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900478 return -EINVAL;
479 }
480
481 if (fifo_size & ~(PCH_UART_FCR_FIFOE | PCH_UART_FCR_FIFO256)) {
Tomoya MORINAGA23877fd2011-02-23 10:03:15 +0900482 dev_err(priv->port.dev, "%s:Invalid FIFO SIZE(0x%x)\n",
483 __func__, fifo_size);
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900484 return -EINVAL;
485 }
486
487 if (trigger & ~PCH_UART_FCR_RFTL) {
Tomoya MORINAGA23877fd2011-02-23 10:03:15 +0900488 dev_err(priv->port.dev, "%s:Invalid TRIGGER(0x%x)\n",
489 __func__, trigger);
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900490 return -EINVAL;
491 }
492
493 switch (priv->fifo_size) {
494 case 256:
495 priv->trigger_level =
496 trigger_level_256[trigger >> PCH_UART_FCR_RFTL_SHIFT];
497 break;
498 case 64:
499 priv->trigger_level =
500 trigger_level_64[trigger >> PCH_UART_FCR_RFTL_SHIFT];
501 break;
502 case 16:
503 priv->trigger_level =
504 trigger_level_16[trigger >> PCH_UART_FCR_RFTL_SHIFT];
505 break;
506 default:
507 priv->trigger_level =
508 trigger_level_1[trigger >> PCH_UART_FCR_RFTL_SHIFT];
509 break;
510 }
511 fcr =
512 dmamode | fifo_size | trigger | PCH_UART_FCR_RFR | PCH_UART_FCR_TFR;
513 iowrite8(PCH_UART_FCR_FIFOE, priv->membase + UART_FCR);
514 iowrite8(PCH_UART_FCR_FIFOE | PCH_UART_FCR_RFR | PCH_UART_FCR_TFR,
515 priv->membase + UART_FCR);
516 iowrite8(fcr, priv->membase + UART_FCR);
517 priv->fcr = fcr;
518
519 return 0;
520}
521
522static u8 pch_uart_hal_get_modem(struct eg20t_port *priv)
523{
Feng Tang30c6c6b2012-02-06 17:24:44 +0800524 unsigned int msr = ioread8(priv->membase + UART_MSR);
525 priv->dmsr = msr & PCH_UART_MSR_DELTA;
526 return (u8)msr;
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900527}
528
Tomoya MORINAGA18220762011-02-23 10:03:14 +0900529static void pch_uart_hal_write(struct eg20t_port *priv,
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900530 const unsigned char *buf, int tx_size)
531{
532 int i;
533 unsigned int thr;
534
535 for (i = 0; i < tx_size;) {
536 thr = buf[i++];
537 iowrite8(thr, priv->membase + PCH_UART_THR);
538 }
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900539}
540
541static int pch_uart_hal_read(struct eg20t_port *priv, unsigned char *buf,
542 int rx_size)
543{
544 int i;
545 u8 rbr, lsr;
546
547 lsr = ioread8(priv->membase + UART_LSR);
548 for (i = 0, lsr = ioread8(priv->membase + UART_LSR);
549 i < rx_size && lsr & UART_LSR_DR;
550 lsr = ioread8(priv->membase + UART_LSR)) {
551 rbr = ioread8(priv->membase + PCH_UART_RBR);
552 buf[i++] = rbr;
553 }
554 return i;
555}
556
Tomoya MORINAGA2a583642012-03-26 14:43:01 +0900557static unsigned char pch_uart_hal_get_iid(struct eg20t_port *priv)
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900558{
Tomoya MORINAGA2a583642012-03-26 14:43:01 +0900559 return ioread8(priv->membase + UART_IIR) &\
560 (PCH_UART_IIR_IID | PCH_UART_IIR_TOI | PCH_UART_IIR_IP);
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900561}
562
563static u8 pch_uart_hal_get_line_status(struct eg20t_port *priv)
564{
565 return ioread8(priv->membase + UART_LSR);
566}
567
568static void pch_uart_hal_set_break(struct eg20t_port *priv, int on)
569{
570 unsigned int lcr;
571
572 lcr = ioread8(priv->membase + UART_LCR);
573 if (on)
574 lcr |= PCH_UART_LCR_SB;
575 else
576 lcr &= ~PCH_UART_LCR_SB;
577
578 iowrite8(lcr, priv->membase + UART_LCR);
579}
580
581static int push_rx(struct eg20t_port *priv, const unsigned char *buf,
582 int size)
583{
584 struct uart_port *port;
585 struct tty_struct *tty;
586
587 port = &priv->port;
588 tty = tty_port_tty_get(&port->state->port);
589 if (!tty) {
Tomoya MORINAGA23877fd2011-02-23 10:03:15 +0900590 dev_dbg(priv->port.dev, "%s:tty is busy now", __func__);
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900591 return -EBUSY;
592 }
593
594 tty_insert_flip_string(tty, buf, size);
595 tty_flip_buffer_push(tty);
596 tty_kref_put(tty);
597
598 return 0;
599}
600
601static int pop_tx_x(struct eg20t_port *priv, unsigned char *buf)
602{
Feng Tang30c6c6b2012-02-06 17:24:44 +0800603 int ret = 0;
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900604 struct uart_port *port = &priv->port;
605
606 if (port->x_char) {
Tomoya MORINAGA23877fd2011-02-23 10:03:15 +0900607 dev_dbg(priv->port.dev, "%s:X character send %02x (%lu)\n",
608 __func__, port->x_char, jiffies);
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900609 buf[0] = port->x_char;
610 port->x_char = 0;
611 ret = 1;
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900612 }
613
614 return ret;
615}
616
617static int dma_push_rx(struct eg20t_port *priv, int size)
618{
619 struct tty_struct *tty;
620 int room;
621 struct uart_port *port = &priv->port;
622
623 port = &priv->port;
624 tty = tty_port_tty_get(&port->state->port);
625 if (!tty) {
Tomoya MORINAGA23877fd2011-02-23 10:03:15 +0900626 dev_dbg(priv->port.dev, "%s:tty is busy now", __func__);
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900627 return 0;
628 }
629
630 room = tty_buffer_request_room(tty, size);
631
632 if (room < size)
633 dev_warn(port->dev, "Rx overrun: dropping %u bytes\n",
634 size - room);
635 if (!room)
636 return room;
637
638 tty_insert_flip_string(tty, sg_virt(&priv->sg_rx), size);
639
640 port->icount.rx += room;
641 tty_kref_put(tty);
642
643 return room;
644}
645
646static void pch_free_dma(struct uart_port *port)
647{
648 struct eg20t_port *priv;
649 priv = container_of(port, struct eg20t_port, port);
650
651 if (priv->chan_tx) {
652 dma_release_channel(priv->chan_tx);
653 priv->chan_tx = NULL;
654 }
655 if (priv->chan_rx) {
656 dma_release_channel(priv->chan_rx);
657 priv->chan_rx = NULL;
658 }
Tomoya MORINAGAef4f9d42012-03-26 14:43:06 +0900659
660 if (priv->rx_buf_dma) {
661 dma_free_coherent(port->dev, port->fifosize, priv->rx_buf_virt,
662 priv->rx_buf_dma);
663 priv->rx_buf_virt = NULL;
664 priv->rx_buf_dma = 0;
665 }
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900666
667 return;
668}
669
670static bool filter(struct dma_chan *chan, void *slave)
671{
672 struct pch_dma_slave *param = slave;
673
674 if ((chan->chan_id == param->chan_id) && (param->dma_dev ==
675 chan->device->dev)) {
676 chan->private = param;
677 return true;
678 } else {
679 return false;
680 }
681}
682
683static void pch_request_dma(struct uart_port *port)
684{
685 dma_cap_mask_t mask;
686 struct dma_chan *chan;
687 struct pci_dev *dma_dev;
688 struct pch_dma_slave *param;
689 struct eg20t_port *priv =
690 container_of(port, struct eg20t_port, port);
691 dma_cap_zero(mask);
692 dma_cap_set(DMA_SLAVE, mask);
693
Tomoya MORINAGA6c4b47d2011-07-20 20:17:49 +0900694 dma_dev = pci_get_bus_and_slot(priv->pdev->bus->number,
695 PCI_DEVFN(0xa, 0)); /* Get DMA's dev
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900696 information */
697 /* Set Tx DMA */
698 param = &priv->param_tx;
699 param->dma_dev = &dma_dev->dev;
Tomoya MORINAGAfec38d12011-02-23 10:03:19 +0900700 param->chan_id = priv->port.line * 2; /* Tx = 0, 2, 4, ... */
701
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900702 param->tx_reg = port->mapbase + UART_TX;
703 chan = dma_request_channel(mask, filter, param);
704 if (!chan) {
Tomoya MORINAGA23877fd2011-02-23 10:03:15 +0900705 dev_err(priv->port.dev, "%s:dma_request_channel FAILS(Tx)\n",
706 __func__);
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900707 return;
708 }
709 priv->chan_tx = chan;
710
711 /* Set Rx DMA */
712 param = &priv->param_rx;
713 param->dma_dev = &dma_dev->dev;
Tomoya MORINAGAfec38d12011-02-23 10:03:19 +0900714 param->chan_id = priv->port.line * 2 + 1; /* Rx = Tx + 1 */
715
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900716 param->rx_reg = port->mapbase + UART_RX;
717 chan = dma_request_channel(mask, filter, param);
718 if (!chan) {
Tomoya MORINAGA23877fd2011-02-23 10:03:15 +0900719 dev_err(priv->port.dev, "%s:dma_request_channel FAILS(Rx)\n",
720 __func__);
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900721 dma_release_channel(priv->chan_tx);
Tomoya MORINAGA90f04c22011-11-11 10:55:27 +0900722 priv->chan_tx = NULL;
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900723 return;
724 }
725
726 /* Get Consistent memory for DMA */
727 priv->rx_buf_virt = dma_alloc_coherent(port->dev, port->fifosize,
728 &priv->rx_buf_dma, GFP_KERNEL);
729 priv->chan_rx = chan;
730}
731
732static void pch_dma_rx_complete(void *arg)
733{
734 struct eg20t_port *priv = arg;
735 struct uart_port *port = &priv->port;
736 struct tty_struct *tty = tty_port_tty_get(&port->state->port);
Tomoya MORINAGAda3564e2011-02-23 10:03:12 +0900737 int count;
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900738
739 if (!tty) {
Tomoya MORINAGA23877fd2011-02-23 10:03:15 +0900740 dev_dbg(priv->port.dev, "%s:tty is busy now", __func__);
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900741 return;
742 }
743
Tomoya MORINAGAda3564e2011-02-23 10:03:12 +0900744 dma_sync_sg_for_cpu(port->dev, &priv->sg_rx, 1, DMA_FROM_DEVICE);
745 count = dma_push_rx(priv, priv->trigger_level);
746 if (count)
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900747 tty_flip_buffer_push(tty);
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900748 tty_kref_put(tty);
Tomoya MORINAGAda3564e2011-02-23 10:03:12 +0900749 async_tx_ack(priv->desc_rx);
750 pch_uart_hal_enable_interrupt(priv, PCH_UART_HAL_RX_INT);
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900751}
752
753static void pch_dma_tx_complete(void *arg)
754{
755 struct eg20t_port *priv = arg;
756 struct uart_port *port = &priv->port;
757 struct circ_buf *xmit = &port->state->xmit;
Tomoya MORINAGAda3564e2011-02-23 10:03:12 +0900758 struct scatterlist *sg = priv->sg_tx_p;
759 int i;
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900760
Tomoya MORINAGAda3564e2011-02-23 10:03:12 +0900761 for (i = 0; i < priv->nent; i++, sg++) {
762 xmit->tail += sg_dma_len(sg);
763 port->icount.tx += sg_dma_len(sg);
764 }
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900765 xmit->tail &= UART_XMIT_SIZE - 1;
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900766 async_tx_ack(priv->desc_tx);
Tomoya MORINAGAda3564e2011-02-23 10:03:12 +0900767 dma_unmap_sg(port->dev, sg, priv->nent, DMA_TO_DEVICE);
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900768 priv->tx_dma_use = 0;
Tomoya MORINAGAda3564e2011-02-23 10:03:12 +0900769 priv->nent = 0;
770 kfree(priv->sg_tx_p);
Tomoya MORINAGA60d10312011-02-23 10:03:18 +0900771 pch_uart_hal_enable_interrupt(priv, PCH_UART_HAL_TX_INT);
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900772}
773
Tomoya MORINAGA18220762011-02-23 10:03:14 +0900774static int pop_tx(struct eg20t_port *priv, int size)
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900775{
776 int count = 0;
777 struct uart_port *port = &priv->port;
778 struct circ_buf *xmit = &port->state->xmit;
779
780 if (uart_tx_stopped(port) || uart_circ_empty(xmit) || count >= size)
781 goto pop_tx_end;
782
783 do {
784 int cnt_to_end =
785 CIRC_CNT_TO_END(xmit->head, xmit->tail, UART_XMIT_SIZE);
786 int sz = min(size - count, cnt_to_end);
Tomoya MORINAGA18220762011-02-23 10:03:14 +0900787 pch_uart_hal_write(priv, &xmit->buf[xmit->tail], sz);
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900788 xmit->tail = (xmit->tail + sz) & (UART_XMIT_SIZE - 1);
789 count += sz;
790 } while (!uart_circ_empty(xmit) && count < size);
791
792pop_tx_end:
Tomoya MORINAGA23877fd2011-02-23 10:03:15 +0900793 dev_dbg(priv->port.dev, "%d characters. Remained %d characters.(%lu)\n",
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900794 count, size - count, jiffies);
795
796 return count;
797}
798
799static int handle_rx_to(struct eg20t_port *priv)
800{
801 struct pch_uart_buffer *buf;
802 int rx_size;
803 int ret;
804 if (!priv->start_rx) {
805 pch_uart_hal_disable_interrupt(priv, PCH_UART_HAL_RX_INT);
806 return 0;
807 }
808 buf = &priv->rxbuf;
809 do {
810 rx_size = pch_uart_hal_read(priv, buf->buf, buf->size);
811 ret = push_rx(priv, buf->buf, rx_size);
812 if (ret)
813 return 0;
814 } while (rx_size == buf->size);
815
816 return PCH_UART_HANDLED_RX_INT;
817}
818
819static int handle_rx(struct eg20t_port *priv)
820{
821 return handle_rx_to(priv);
822}
823
824static int dma_handle_rx(struct eg20t_port *priv)
825{
826 struct uart_port *port = &priv->port;
827 struct dma_async_tx_descriptor *desc;
828 struct scatterlist *sg;
829
830 priv = container_of(port, struct eg20t_port, port);
831 sg = &priv->sg_rx;
832
833 sg_init_table(&priv->sg_rx, 1); /* Initialize SG table */
834
Tomoya MORINAGAda3564e2011-02-23 10:03:12 +0900835 sg_dma_len(sg) = priv->trigger_level;
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900836
837 sg_set_page(&priv->sg_rx, virt_to_page(priv->rx_buf_virt),
Tomoya MORINAGA1c518992010-12-16 16:13:29 +0900838 sg_dma_len(sg), (unsigned long)priv->rx_buf_virt &
839 ~PAGE_MASK);
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900840
841 sg_dma_address(sg) = priv->rx_buf_dma;
842
Alexandre Bounine16052822012-03-08 16:11:18 -0500843 desc = dmaengine_prep_slave_sg(priv->chan_rx,
Vinod Koula485df42011-10-14 10:47:38 +0530844 sg, 1, DMA_DEV_TO_MEM,
Tomoya MORINAGAda3564e2011-02-23 10:03:12 +0900845 DMA_PREP_INTERRUPT | DMA_CTRL_ACK);
846
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900847 if (!desc)
848 return 0;
849
850 priv->desc_rx = desc;
851 desc->callback = pch_dma_rx_complete;
852 desc->callback_param = priv;
853 desc->tx_submit(desc);
854 dma_async_issue_pending(priv->chan_rx);
855
856 return PCH_UART_HANDLED_RX_INT;
857}
858
859static unsigned int handle_tx(struct eg20t_port *priv)
860{
861 struct uart_port *port = &priv->port;
862 struct circ_buf *xmit = &port->state->xmit;
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900863 int fifo_size;
864 int tx_size;
865 int size;
866 int tx_empty;
867
868 if (!priv->start_tx) {
Tomoya MORINAGA23877fd2011-02-23 10:03:15 +0900869 dev_info(priv->port.dev, "%s:Tx isn't started. (%lu)\n",
870 __func__, jiffies);
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900871 pch_uart_hal_disable_interrupt(priv, PCH_UART_HAL_TX_INT);
872 priv->tx_empty = 1;
873 return 0;
874 }
875
876 fifo_size = max(priv->fifo_size, 1);
877 tx_empty = 1;
878 if (pop_tx_x(priv, xmit->buf)) {
879 pch_uart_hal_write(priv, xmit->buf, 1);
880 port->icount.tx++;
881 tx_empty = 0;
882 fifo_size--;
883 }
884 size = min(xmit->head - xmit->tail, fifo_size);
Tomoya MORINAGAda3564e2011-02-23 10:03:12 +0900885 if (size < 0)
886 size = fifo_size;
887
Tomoya MORINAGA18220762011-02-23 10:03:14 +0900888 tx_size = pop_tx(priv, size);
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900889 if (tx_size > 0) {
Tomoya MORINAGA18220762011-02-23 10:03:14 +0900890 port->icount.tx += tx_size;
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900891 tx_empty = 0;
892 }
893
894 priv->tx_empty = tx_empty;
895
Tomoya MORINAGAda3564e2011-02-23 10:03:12 +0900896 if (tx_empty) {
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900897 pch_uart_hal_disable_interrupt(priv, PCH_UART_HAL_TX_INT);
Tomoya MORINAGAda3564e2011-02-23 10:03:12 +0900898 uart_write_wakeup(port);
899 }
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900900
901 return PCH_UART_HANDLED_TX_INT;
902}
903
904static unsigned int dma_handle_tx(struct eg20t_port *priv)
905{
906 struct uart_port *port = &priv->port;
907 struct circ_buf *xmit = &port->state->xmit;
Tomoya MORINAGAda3564e2011-02-23 10:03:12 +0900908 struct scatterlist *sg;
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900909 int nent;
910 int fifo_size;
911 int tx_empty;
912 struct dma_async_tx_descriptor *desc;
Tomoya MORINAGAda3564e2011-02-23 10:03:12 +0900913 int num;
914 int i;
915 int bytes;
916 int size;
917 int rem;
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900918
919 if (!priv->start_tx) {
Tomoya MORINAGA23877fd2011-02-23 10:03:15 +0900920 dev_info(priv->port.dev, "%s:Tx isn't started. (%lu)\n",
921 __func__, jiffies);
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900922 pch_uart_hal_disable_interrupt(priv, PCH_UART_HAL_TX_INT);
923 priv->tx_empty = 1;
924 return 0;
925 }
926
Tomoya MORINAGA60d10312011-02-23 10:03:18 +0900927 if (priv->tx_dma_use) {
928 dev_dbg(priv->port.dev, "%s:Tx is not completed. (%lu)\n",
929 __func__, jiffies);
930 pch_uart_hal_disable_interrupt(priv, PCH_UART_HAL_TX_INT);
931 priv->tx_empty = 1;
932 return 0;
933 }
934
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900935 fifo_size = max(priv->fifo_size, 1);
936 tx_empty = 1;
937 if (pop_tx_x(priv, xmit->buf)) {
938 pch_uart_hal_write(priv, xmit->buf, 1);
939 port->icount.tx++;
940 tx_empty = 0;
941 fifo_size--;
942 }
943
Tomoya MORINAGAda3564e2011-02-23 10:03:12 +0900944 bytes = min((int)CIRC_CNT(xmit->head, xmit->tail,
945 UART_XMIT_SIZE), CIRC_CNT_TO_END(xmit->head,
946 xmit->tail, UART_XMIT_SIZE));
947 if (!bytes) {
Tomoya MORINAGA23877fd2011-02-23 10:03:15 +0900948 dev_dbg(priv->port.dev, "%s 0 bytes return\n", __func__);
Tomoya MORINAGAda3564e2011-02-23 10:03:12 +0900949 pch_uart_hal_disable_interrupt(priv, PCH_UART_HAL_TX_INT);
950 uart_write_wakeup(port);
951 return 0;
952 }
953
954 if (bytes > fifo_size) {
955 num = bytes / fifo_size + 1;
956 size = fifo_size;
957 rem = bytes % fifo_size;
958 } else {
959 num = 1;
960 size = bytes;
961 rem = bytes;
962 }
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900963
Tomoya MORINAGA23877fd2011-02-23 10:03:15 +0900964 dev_dbg(priv->port.dev, "%s num=%d size=%d rem=%d\n",
965 __func__, num, size, rem);
966
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900967 priv->tx_dma_use = 1;
968
Tomoya MORINAGAda3564e2011-02-23 10:03:12 +0900969 priv->sg_tx_p = kzalloc(sizeof(struct scatterlist)*num, GFP_ATOMIC);
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900970
Tomoya MORINAGAda3564e2011-02-23 10:03:12 +0900971 sg_init_table(priv->sg_tx_p, num); /* Initialize SG table */
972 sg = priv->sg_tx_p;
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900973
Tomoya MORINAGAda3564e2011-02-23 10:03:12 +0900974 for (i = 0; i < num; i++, sg++) {
975 if (i == (num - 1))
976 sg_set_page(sg, virt_to_page(xmit->buf),
977 rem, fifo_size * i);
978 else
979 sg_set_page(sg, virt_to_page(xmit->buf),
980 size, fifo_size * i);
981 }
982
983 sg = priv->sg_tx_p;
984 nent = dma_map_sg(port->dev, sg, num, DMA_TO_DEVICE);
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900985 if (!nent) {
Tomoya MORINAGA23877fd2011-02-23 10:03:15 +0900986 dev_err(priv->port.dev, "%s:dma_map_sg Failed\n", __func__);
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900987 return 0;
988 }
Tomoya MORINAGAda3564e2011-02-23 10:03:12 +0900989 priv->nent = nent;
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900990
Tomoya MORINAGAda3564e2011-02-23 10:03:12 +0900991 for (i = 0; i < nent; i++, sg++) {
992 sg->offset = (xmit->tail & (UART_XMIT_SIZE - 1)) +
993 fifo_size * i;
994 sg_dma_address(sg) = (sg_dma_address(sg) &
995 ~(UART_XMIT_SIZE - 1)) + sg->offset;
996 if (i == (nent - 1))
997 sg_dma_len(sg) = rem;
998 else
999 sg_dma_len(sg) = size;
1000 }
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001001
Alexandre Bounine16052822012-03-08 16:11:18 -05001002 desc = dmaengine_prep_slave_sg(priv->chan_tx,
Vinod Koula485df42011-10-14 10:47:38 +05301003 priv->sg_tx_p, nent, DMA_MEM_TO_DEV,
Tomoya MORINAGAda3564e2011-02-23 10:03:12 +09001004 DMA_PREP_INTERRUPT | DMA_CTRL_ACK);
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001005 if (!desc) {
Tomoya MORINAGA23877fd2011-02-23 10:03:15 +09001006 dev_err(priv->port.dev, "%s:device_prep_slave_sg Failed\n",
1007 __func__);
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001008 return 0;
1009 }
Tomoya MORINAGAda3564e2011-02-23 10:03:12 +09001010 dma_sync_sg_for_device(port->dev, priv->sg_tx_p, nent, DMA_TO_DEVICE);
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001011 priv->desc_tx = desc;
1012 desc->callback = pch_dma_tx_complete;
1013 desc->callback_param = priv;
1014
1015 desc->tx_submit(desc);
1016
1017 dma_async_issue_pending(priv->chan_tx);
1018
1019 return PCH_UART_HANDLED_TX_INT;
1020}
1021
1022static void pch_uart_err_ir(struct eg20t_port *priv, unsigned int lsr)
1023{
1024 u8 fcr = ioread8(priv->membase + UART_FCR);
1025
1026 /* Reset FIFO */
1027 fcr |= UART_FCR_CLEAR_RCVR;
1028 iowrite8(fcr, priv->membase + UART_FCR);
1029
1030 if (lsr & PCH_UART_LSR_ERR)
1031 dev_err(&priv->pdev->dev, "Error data in FIFO\n");
1032
1033 if (lsr & UART_LSR_FE)
1034 dev_err(&priv->pdev->dev, "Framing Error\n");
1035
1036 if (lsr & UART_LSR_PE)
1037 dev_err(&priv->pdev->dev, "Parity Error\n");
1038
1039 if (lsr & UART_LSR_OE)
1040 dev_err(&priv->pdev->dev, "Overrun Error\n");
1041}
1042
1043static irqreturn_t pch_uart_interrupt(int irq, void *dev_id)
1044{
1045 struct eg20t_port *priv = dev_id;
1046 unsigned int handled;
1047 u8 lsr;
1048 int ret = 0;
Tomoya MORINAGA2a583642012-03-26 14:43:01 +09001049 unsigned char iid;
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001050 unsigned long flags;
Tomoya MORINAGA5181fb32012-03-26 14:43:03 +09001051 int next = 1;
1052 u8 msr;
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001053
1054 spin_lock_irqsave(&priv->port.lock, flags);
1055 handled = 0;
Tomoya MORINAGA5181fb32012-03-26 14:43:03 +09001056 while (next) {
1057 iid = pch_uart_hal_get_iid(priv);
1058 if (iid & PCH_UART_IIR_IP) /* No Interrupt */
1059 break;
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001060 switch (iid) {
1061 case PCH_UART_IID_RLS: /* Receiver Line Status */
1062 lsr = pch_uart_hal_get_line_status(priv);
1063 if (lsr & (PCH_UART_LSR_ERR | UART_LSR_FE |
1064 UART_LSR_PE | UART_LSR_OE)) {
1065 pch_uart_err_ir(priv, lsr);
1066 ret = PCH_UART_HANDLED_RX_ERR_INT;
Tomoya MORINAGA04e2c2e2012-03-26 14:43:05 +09001067 } else {
1068 ret = PCH_UART_HANDLED_LS_INT;
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001069 }
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 */
Tomoya MORINAGA5181fb32012-03-26 14:43:03 +09001095 msr = pch_uart_hal_get_modem(priv);
1096 next = 0; /* MS ir prioirty is the lowest. So, MS ir
1097 means final interrupt */
1098 if ((msr & UART_MSR_ANY_DELTA) == 0)
1099 break;
1100 ret |= PCH_UART_HANDLED_MS_INT;
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001101 break;
1102 default: /* Never junp to this label */
Tomoya MORINAGAb23954a32012-03-26 14:43:02 +09001103 dev_err(priv->port.dev, "%s:iid=%02x (%lu)\n", __func__,
Tomoya MORINAGA23877fd2011-02-23 10:03:15 +09001104 iid, jiffies);
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001105 ret = -1;
Tomoya MORINAGA5181fb32012-03-26 14:43:03 +09001106 next = 0;
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001107 break;
1108 }
1109 handled |= (unsigned int)ret;
1110 }
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001111
1112 spin_unlock_irqrestore(&priv->port.lock, flags);
1113 return IRQ_RETVAL(handled);
1114}
1115
1116/* This function tests whether the transmitter fifo and shifter for the port
1117 described by 'port' is empty. */
1118static unsigned int pch_uart_tx_empty(struct uart_port *port)
1119{
1120 struct eg20t_port *priv;
Feng Tang30c6c6b2012-02-06 17:24:44 +08001121
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001122 priv = container_of(port, struct eg20t_port, port);
1123 if (priv->tx_empty)
Feng Tang30c6c6b2012-02-06 17:24:44 +08001124 return TIOCSER_TEMT;
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001125 else
Feng Tang30c6c6b2012-02-06 17:24:44 +08001126 return 0;
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001127}
1128
1129/* Returns the current state of modem control inputs. */
1130static unsigned int pch_uart_get_mctrl(struct uart_port *port)
1131{
1132 struct eg20t_port *priv;
1133 u8 modem;
1134 unsigned int ret = 0;
1135
1136 priv = container_of(port, struct eg20t_port, port);
1137 modem = pch_uart_hal_get_modem(priv);
1138
1139 if (modem & UART_MSR_DCD)
1140 ret |= TIOCM_CAR;
1141
1142 if (modem & UART_MSR_RI)
1143 ret |= TIOCM_RNG;
1144
1145 if (modem & UART_MSR_DSR)
1146 ret |= TIOCM_DSR;
1147
1148 if (modem & UART_MSR_CTS)
1149 ret |= TIOCM_CTS;
1150
1151 return ret;
1152}
1153
1154static void pch_uart_set_mctrl(struct uart_port *port, unsigned int mctrl)
1155{
1156 u32 mcr = 0;
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001157 struct eg20t_port *priv = container_of(port, struct eg20t_port, port);
1158
1159 if (mctrl & TIOCM_DTR)
1160 mcr |= UART_MCR_DTR;
1161 if (mctrl & TIOCM_RTS)
1162 mcr |= UART_MCR_RTS;
1163 if (mctrl & TIOCM_LOOP)
1164 mcr |= UART_MCR_LOOP;
1165
Tomoya MORINAGA9af71552011-02-23 10:03:17 +09001166 if (priv->mcr & UART_MCR_AFE)
1167 mcr |= UART_MCR_AFE;
1168
1169 if (mctrl)
1170 iowrite8(mcr, priv->membase + UART_MCR);
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001171}
1172
1173static void pch_uart_stop_tx(struct uart_port *port)
1174{
1175 struct eg20t_port *priv;
1176 priv = container_of(port, struct eg20t_port, port);
1177 priv->start_tx = 0;
1178 priv->tx_dma_use = 0;
1179}
1180
1181static void pch_uart_start_tx(struct uart_port *port)
1182{
1183 struct eg20t_port *priv;
1184
1185 priv = container_of(port, struct eg20t_port, port);
1186
Tomoya MORINAGA23877fd2011-02-23 10:03:15 +09001187 if (priv->use_dma) {
1188 if (priv->tx_dma_use) {
1189 dev_dbg(priv->port.dev, "%s : Tx DMA is NOT empty.\n",
1190 __func__);
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001191 return;
Tomoya MORINAGA23877fd2011-02-23 10:03:15 +09001192 }
1193 }
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001194
1195 priv->start_tx = 1;
1196 pch_uart_hal_enable_interrupt(priv, PCH_UART_HAL_TX_INT);
1197}
1198
1199static void pch_uart_stop_rx(struct uart_port *port)
1200{
1201 struct eg20t_port *priv;
1202 priv = container_of(port, struct eg20t_port, port);
1203 priv->start_rx = 0;
1204 pch_uart_hal_disable_interrupt(priv, PCH_UART_HAL_RX_INT);
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001205}
1206
1207/* Enable the modem status interrupts. */
1208static void pch_uart_enable_ms(struct uart_port *port)
1209{
1210 struct eg20t_port *priv;
1211 priv = container_of(port, struct eg20t_port, port);
1212 pch_uart_hal_enable_interrupt(priv, PCH_UART_HAL_MS_INT);
1213}
1214
1215/* Control the transmission of a break signal. */
1216static void pch_uart_break_ctl(struct uart_port *port, int ctl)
1217{
1218 struct eg20t_port *priv;
1219 unsigned long flags;
1220
1221 priv = container_of(port, struct eg20t_port, port);
1222 spin_lock_irqsave(&port->lock, flags);
1223 pch_uart_hal_set_break(priv, ctl);
1224 spin_unlock_irqrestore(&port->lock, flags);
1225}
1226
1227/* Grab any interrupt resources and initialise any low level driver state. */
1228static int pch_uart_startup(struct uart_port *port)
1229{
1230 struct eg20t_port *priv;
1231 int ret;
1232 int fifo_size;
1233 int trigger_level;
1234
1235 priv = container_of(port, struct eg20t_port, port);
1236 priv->tx_empty = 1;
Tomoya MORINAGAaac6c0b2011-02-23 10:03:16 +09001237
1238 if (port->uartclk)
Darren Harta8a3ec92012-03-09 09:51:48 -08001239 priv->uartclk = port->uartclk;
Tomoya MORINAGAaac6c0b2011-02-23 10:03:16 +09001240 else
Darren Harta8a3ec92012-03-09 09:51:48 -08001241 port->uartclk = priv->uartclk;
Tomoya MORINAGAaac6c0b2011-02-23 10:03:16 +09001242
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001243 pch_uart_hal_disable_interrupt(priv, PCH_UART_HAL_ALL_INT);
1244 ret = pch_uart_hal_set_line(priv, default_baud,
1245 PCH_UART_HAL_PARITY_NONE, PCH_UART_HAL_8BIT,
1246 PCH_UART_HAL_STB1);
1247 if (ret)
1248 return ret;
1249
1250 switch (priv->fifo_size) {
1251 case 256:
1252 fifo_size = PCH_UART_HAL_FIFO256;
1253 break;
1254 case 64:
1255 fifo_size = PCH_UART_HAL_FIFO64;
1256 break;
1257 case 16:
1258 fifo_size = PCH_UART_HAL_FIFO16;
1259 case 1:
1260 default:
1261 fifo_size = PCH_UART_HAL_FIFO_DIS;
1262 break;
1263 }
1264
1265 switch (priv->trigger) {
1266 case PCH_UART_HAL_TRIGGER1:
1267 trigger_level = 1;
1268 break;
1269 case PCH_UART_HAL_TRIGGER_L:
1270 trigger_level = priv->fifo_size / 4;
1271 break;
1272 case PCH_UART_HAL_TRIGGER_M:
1273 trigger_level = priv->fifo_size / 2;
1274 break;
1275 case PCH_UART_HAL_TRIGGER_H:
1276 default:
1277 trigger_level = priv->fifo_size - (priv->fifo_size / 8);
1278 break;
1279 }
1280
1281 priv->trigger_level = trigger_level;
1282 ret = pch_uart_hal_set_fifo(priv, PCH_UART_HAL_DMA_MODE0,
1283 fifo_size, priv->trigger);
1284 if (ret < 0)
1285 return ret;
1286
1287 ret = request_irq(priv->port.irq, pch_uart_interrupt, IRQF_SHARED,
1288 KBUILD_MODNAME, priv);
1289 if (ret < 0)
1290 return ret;
1291
1292 if (priv->use_dma)
1293 pch_request_dma(port);
1294
1295 priv->start_rx = 1;
1296 pch_uart_hal_enable_interrupt(priv, PCH_UART_HAL_RX_INT);
1297 uart_update_timeout(port, CS8, default_baud);
1298
1299 return 0;
1300}
1301
1302static void pch_uart_shutdown(struct uart_port *port)
1303{
1304 struct eg20t_port *priv;
1305 int ret;
1306
1307 priv = container_of(port, struct eg20t_port, port);
1308 pch_uart_hal_disable_interrupt(priv, PCH_UART_HAL_ALL_INT);
1309 pch_uart_hal_fifo_reset(priv, PCH_UART_HAL_CLR_ALL_FIFO);
1310 ret = pch_uart_hal_set_fifo(priv, PCH_UART_HAL_DMA_MODE0,
1311 PCH_UART_HAL_FIFO_DIS, PCH_UART_HAL_TRIGGER1);
1312 if (ret)
Tomoya MORINAGA23877fd2011-02-23 10:03:15 +09001313 dev_err(priv->port.dev,
1314 "pch_uart_hal_set_fifo Failed(ret=%d)\n", ret);
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001315
Tomoya MORINAGA90f04c22011-11-11 10:55:27 +09001316 pch_free_dma(port);
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001317
1318 free_irq(priv->port.irq, priv);
1319}
1320
1321/* Change the port parameters, including word length, parity, stop
1322 *bits. Update read_status_mask and ignore_status_mask to indicate
1323 *the types of events we are interested in receiving. */
1324static void pch_uart_set_termios(struct uart_port *port,
1325 struct ktermios *termios, struct ktermios *old)
1326{
1327 int baud;
1328 int rtn;
1329 unsigned int parity, bits, stb;
1330 struct eg20t_port *priv;
1331 unsigned long flags;
1332
1333 priv = container_of(port, struct eg20t_port, port);
1334 switch (termios->c_cflag & CSIZE) {
1335 case CS5:
1336 bits = PCH_UART_HAL_5BIT;
1337 break;
1338 case CS6:
1339 bits = PCH_UART_HAL_6BIT;
1340 break;
1341 case CS7:
1342 bits = PCH_UART_HAL_7BIT;
1343 break;
1344 default: /* CS8 */
1345 bits = PCH_UART_HAL_8BIT;
1346 break;
1347 }
1348 if (termios->c_cflag & CSTOPB)
1349 stb = PCH_UART_HAL_STB2;
1350 else
1351 stb = PCH_UART_HAL_STB1;
1352
1353 if (termios->c_cflag & PARENB) {
1354 if (!(termios->c_cflag & PARODD))
1355 parity = PCH_UART_HAL_PARITY_ODD;
1356 else
1357 parity = PCH_UART_HAL_PARITY_EVEN;
1358
Feng Tang30c6c6b2012-02-06 17:24:44 +08001359 } else
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001360 parity = PCH_UART_HAL_PARITY_NONE;
Tomoya MORINAGA9af71552011-02-23 10:03:17 +09001361
1362 /* Only UART0 has auto hardware flow function */
1363 if ((termios->c_cflag & CRTSCTS) && (priv->fifo_size == 256))
1364 priv->mcr |= UART_MCR_AFE;
1365 else
1366 priv->mcr &= ~UART_MCR_AFE;
1367
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001368 termios->c_cflag &= ~CMSPAR; /* Mark/Space parity is not supported */
1369
1370 baud = uart_get_baud_rate(port, termios, old, 0, port->uartclk / 16);
1371
1372 spin_lock_irqsave(&port->lock, flags);
1373
1374 uart_update_timeout(port, termios->c_cflag, baud);
1375 rtn = pch_uart_hal_set_line(priv, baud, parity, bits, stb);
1376 if (rtn)
1377 goto out;
1378
Tomoya MORINAGAa1d7cfe2011-10-27 15:45:18 +09001379 pch_uart_set_mctrl(&priv->port, priv->port.mctrl);
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001380 /* Don't rewrite B0 */
1381 if (tty_termios_baud_rate(termios))
1382 tty_termios_encode_baud_rate(termios, baud, baud);
1383
1384out:
1385 spin_unlock_irqrestore(&port->lock, flags);
1386}
1387
1388static const char *pch_uart_type(struct uart_port *port)
1389{
1390 return KBUILD_MODNAME;
1391}
1392
1393static void pch_uart_release_port(struct uart_port *port)
1394{
1395 struct eg20t_port *priv;
1396
1397 priv = container_of(port, struct eg20t_port, port);
1398 pci_iounmap(priv->pdev, priv->membase);
1399 pci_release_regions(priv->pdev);
1400}
1401
1402static int pch_uart_request_port(struct uart_port *port)
1403{
1404 struct eg20t_port *priv;
1405 int ret;
1406 void __iomem *membase;
1407
1408 priv = container_of(port, struct eg20t_port, port);
1409 ret = pci_request_regions(priv->pdev, KBUILD_MODNAME);
1410 if (ret < 0)
1411 return -EBUSY;
1412
1413 membase = pci_iomap(priv->pdev, 1, 0);
1414 if (!membase) {
1415 pci_release_regions(priv->pdev);
1416 return -EBUSY;
1417 }
1418 priv->membase = port->membase = membase;
1419
1420 return 0;
1421}
1422
1423static void pch_uart_config_port(struct uart_port *port, int type)
1424{
1425 struct eg20t_port *priv;
1426
1427 priv = container_of(port, struct eg20t_port, port);
1428 if (type & UART_CONFIG_TYPE) {
1429 port->type = priv->port_type;
1430 pch_uart_request_port(port);
1431 }
1432}
1433
1434static int pch_uart_verify_port(struct uart_port *port,
1435 struct serial_struct *serinfo)
1436{
1437 struct eg20t_port *priv;
1438
1439 priv = container_of(port, struct eg20t_port, port);
1440 if (serinfo->flags & UPF_LOW_LATENCY) {
Tomoya MORINAGA23877fd2011-02-23 10:03:15 +09001441 dev_info(priv->port.dev,
1442 "PCH UART : Use PIO Mode (without DMA)\n");
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001443 priv->use_dma = 0;
1444 serinfo->flags &= ~UPF_LOW_LATENCY;
1445 } else {
1446#ifndef CONFIG_PCH_DMA
Tomoya MORINAGA23877fd2011-02-23 10:03:15 +09001447 dev_err(priv->port.dev, "%s : PCH DMA is not Loaded.\n",
1448 __func__);
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001449 return -EOPNOTSUPP;
1450#endif
1451 priv->use_dma = 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);
1661
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001662 iobase = pci_resource_start(pdev, 0);
1663 mapbase = pci_resource_start(pdev, 1);
1664 priv->mapbase = mapbase;
1665 priv->iobase = iobase;
1666 priv->pdev = pdev;
1667 priv->tx_empty = 1;
Tomoya MORINAGA1c518992010-12-16 16:13:29 +09001668 priv->rxbuf.buf = rxbuf;
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001669 priv->rxbuf.size = PAGE_SIZE;
1670
1671 priv->fifo_size = fifosize;
Darren Hart077175f2012-03-09 09:51:49 -08001672 priv->uartclk = pch_uart_get_uartclk();
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001673 priv->port_type = PORT_MAX_8250 + port_type + 1;
1674 priv->port.dev = &pdev->dev;
1675 priv->port.iobase = iobase;
1676 priv->port.membase = NULL;
1677 priv->port.mapbase = mapbase;
1678 priv->port.irq = pdev->irq;
1679 priv->port.iotype = UPIO_PORT;
1680 priv->port.ops = &pch_uart_ops;
1681 priv->port.flags = UPF_BOOT_AUTOCONF;
1682 priv->port.fifosize = fifosize;
Tomoya MORINAGAfec38d12011-02-23 10:03:19 +09001683 priv->port.line = board->line_no;
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001684 priv->trigger = PCH_UART_HAL_TRIGGER_M;
1685
Tomoya MORINAGA7e461322011-02-23 10:03:13 +09001686 spin_lock_init(&priv->port.lock);
1687
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001688 pci_set_drvdata(pdev, priv);
Feng Tang6f56d0f2012-02-06 17:24:45 +08001689 priv->trigger_level = 1;
1690 priv->fcr = 0;
Tomoya MORINAGA4564e1e2011-01-28 18:00:01 +09001691
Alexander Steine30f8672011-11-15 15:04:07 -08001692#ifdef CONFIG_SERIAL_PCH_UART_CONSOLE
1693 pch_uart_ports[board->line_no] = priv;
1694#endif
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001695 ret = uart_add_one_port(&pch_uart_driver, &priv->port);
1696 if (ret < 0)
1697 goto init_port_hal_free;
1698
Feng Tangd0114112012-02-06 17:24:43 +08001699#ifdef CONFIG_DEBUG_FS
1700 snprintf(name, sizeof(name), "uart%d_regs", board->line_no);
1701 priv->debugfs = debugfs_create_file(name, S_IFREG | S_IRUGO,
1702 NULL, priv, &port_regs_ops);
1703#endif
1704
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001705 return priv;
1706
1707init_port_hal_free:
Alexander Steine30f8672011-11-15 15:04:07 -08001708#ifdef CONFIG_SERIAL_PCH_UART_CONSOLE
1709 pch_uart_ports[board->line_no] = NULL;
1710#endif
Tomoya MORINAGA1c518992010-12-16 16:13:29 +09001711 free_page((unsigned long)rxbuf);
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001712init_port_free_txbuf:
1713 kfree(priv);
1714init_port_alloc_err:
1715
1716 return NULL;
1717}
1718
1719static void pch_uart_exit_port(struct eg20t_port *priv)
1720{
Feng Tangd0114112012-02-06 17:24:43 +08001721
1722#ifdef CONFIG_DEBUG_FS
1723 if (priv->debugfs)
1724 debugfs_remove(priv->debugfs);
1725#endif
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001726 uart_remove_one_port(&pch_uart_driver, &priv->port);
1727 pci_set_drvdata(priv->pdev, NULL);
Tomoya MORINAGA1c518992010-12-16 16:13:29 +09001728 free_page((unsigned long)priv->rxbuf.buf);
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001729}
1730
1731static void pch_uart_pci_remove(struct pci_dev *pdev)
1732{
Feng Tang6f56d0f2012-02-06 17:24:45 +08001733 struct eg20t_port *priv = pci_get_drvdata(pdev);
Alexander Steine4635952011-07-04 08:58:31 +02001734
1735 pci_disable_msi(pdev);
Alexander Steine30f8672011-11-15 15:04:07 -08001736
1737#ifdef CONFIG_SERIAL_PCH_UART_CONSOLE
1738 pch_uart_ports[priv->port.line] = NULL;
1739#endif
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001740 pch_uart_exit_port(priv);
1741 pci_disable_device(pdev);
1742 kfree(priv);
1743 return;
1744}
1745#ifdef CONFIG_PM
1746static int pch_uart_pci_suspend(struct pci_dev *pdev, pm_message_t state)
1747{
1748 struct eg20t_port *priv = pci_get_drvdata(pdev);
1749
1750 uart_suspend_port(&pch_uart_driver, &priv->port);
1751
1752 pci_save_state(pdev);
1753 pci_set_power_state(pdev, pci_choose_state(pdev, state));
1754 return 0;
1755}
1756
1757static int pch_uart_pci_resume(struct pci_dev *pdev)
1758{
1759 struct eg20t_port *priv = pci_get_drvdata(pdev);
1760 int ret;
1761
1762 pci_set_power_state(pdev, PCI_D0);
1763 pci_restore_state(pdev);
1764
1765 ret = pci_enable_device(pdev);
1766 if (ret) {
1767 dev_err(&pdev->dev,
1768 "%s-pci_enable_device failed(ret=%d) ", __func__, ret);
1769 return ret;
1770 }
1771
1772 uart_resume_port(&pch_uart_driver, &priv->port);
1773
1774 return 0;
1775}
1776#else
1777#define pch_uart_pci_suspend NULL
1778#define pch_uart_pci_resume NULL
1779#endif
1780
1781static DEFINE_PCI_DEVICE_TABLE(pch_uart_pci_id) = {
1782 {PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x8811),
Tomoya MORINAGAfec38d12011-02-23 10:03:19 +09001783 .driver_data = pch_et20t_uart0},
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001784 {PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x8812),
Tomoya MORINAGAfec38d12011-02-23 10:03:19 +09001785 .driver_data = pch_et20t_uart1},
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001786 {PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x8813),
Tomoya MORINAGAfec38d12011-02-23 10:03:19 +09001787 .driver_data = pch_et20t_uart2},
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001788 {PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x8814),
Tomoya MORINAGAfec38d12011-02-23 10:03:19 +09001789 .driver_data = pch_et20t_uart3},
Tomoya MORINAGA4564e1e2011-01-28 18:00:01 +09001790 {PCI_DEVICE(PCI_VENDOR_ID_ROHM, 0x8027),
Tomoya MORINAGAfec38d12011-02-23 10:03:19 +09001791 .driver_data = pch_ml7213_uart0},
Tomoya MORINAGA4564e1e2011-01-28 18:00:01 +09001792 {PCI_DEVICE(PCI_VENDOR_ID_ROHM, 0x8028),
Tomoya MORINAGAfec38d12011-02-23 10:03:19 +09001793 .driver_data = pch_ml7213_uart1},
Tomoya MORINAGA4564e1e2011-01-28 18:00:01 +09001794 {PCI_DEVICE(PCI_VENDOR_ID_ROHM, 0x8029),
Tomoya MORINAGAfec38d12011-02-23 10:03:19 +09001795 .driver_data = pch_ml7213_uart2},
Tomoya MORINAGA177c2cb2011-05-09 17:25:20 +09001796 {PCI_DEVICE(PCI_VENDOR_ID_ROHM, 0x800C),
1797 .driver_data = pch_ml7223_uart0},
1798 {PCI_DEVICE(PCI_VENDOR_ID_ROHM, 0x800D),
1799 .driver_data = pch_ml7223_uart1},
Tomoya MORINAGA8249f742011-10-28 09:38:49 +09001800 {PCI_DEVICE(PCI_VENDOR_ID_ROHM, 0x8811),
1801 .driver_data = pch_ml7831_uart0},
1802 {PCI_DEVICE(PCI_VENDOR_ID_ROHM, 0x8812),
1803 .driver_data = pch_ml7831_uart1},
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001804 {0,},
1805};
1806
1807static int __devinit pch_uart_pci_probe(struct pci_dev *pdev,
1808 const struct pci_device_id *id)
1809{
1810 int ret;
1811 struct eg20t_port *priv;
1812
1813 ret = pci_enable_device(pdev);
1814 if (ret < 0)
1815 goto probe_error;
1816
Tomoya MORINAGA4564e1e2011-01-28 18:00:01 +09001817 priv = pch_uart_init_port(pdev, id);
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001818 if (!priv) {
1819 ret = -EBUSY;
1820 goto probe_disable_device;
1821 }
1822 pci_set_drvdata(pdev, priv);
1823
1824 return ret;
1825
1826probe_disable_device:
Alexander Steine4635952011-07-04 08:58:31 +02001827 pci_disable_msi(pdev);
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001828 pci_disable_device(pdev);
1829probe_error:
1830 return ret;
1831}
1832
1833static struct pci_driver pch_uart_pci_driver = {
1834 .name = "pch_uart",
1835 .id_table = pch_uart_pci_id,
1836 .probe = pch_uart_pci_probe,
1837 .remove = __devexit_p(pch_uart_pci_remove),
1838 .suspend = pch_uart_pci_suspend,
1839 .resume = pch_uart_pci_resume,
1840};
1841
1842static int __init pch_uart_module_init(void)
1843{
1844 int ret;
1845
1846 /* register as UART driver */
1847 ret = uart_register_driver(&pch_uart_driver);
1848 if (ret < 0)
1849 return ret;
1850
1851 /* register as PCI driver */
1852 ret = pci_register_driver(&pch_uart_pci_driver);
1853 if (ret < 0)
1854 uart_unregister_driver(&pch_uart_driver);
1855
1856 return ret;
1857}
1858module_init(pch_uart_module_init);
1859
1860static void __exit pch_uart_module_exit(void)
1861{
1862 pci_unregister_driver(&pch_uart_pci_driver);
1863 uart_unregister_driver(&pch_uart_driver);
1864}
1865module_exit(pch_uart_module_exit);
1866
1867MODULE_LICENSE("GPL v2");
1868MODULE_DESCRIPTION("Intel EG20T PCH UART PCI Driver");
1869module_param(default_baud, uint, S_IRUGO);
Darren Harta46f5532012-03-09 09:51:52 -08001870MODULE_PARM_DESC(default_baud,
1871 "Default BAUD for initial driver state and console (default 9600)");
Darren Hart2a44feb2012-03-09 09:51:50 -08001872module_param(user_uartclk, uint, S_IRUGO);
Darren Harta46f5532012-03-09 09:51:52 -08001873MODULE_PARM_DESC(user_uartclk,
1874 "Override UART default or board specific UART clock");