blob: e7d91d973d52f8e499da8869c3dc17f49b346b29 [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 }
659 if (sg_dma_address(&priv->sg_rx))
660 dma_free_coherent(port->dev, port->fifosize,
661 sg_virt(&priv->sg_rx),
662 sg_dma_address(&priv->sg_rx));
663
664 return;
665}
666
667static bool filter(struct dma_chan *chan, void *slave)
668{
669 struct pch_dma_slave *param = slave;
670
671 if ((chan->chan_id == param->chan_id) && (param->dma_dev ==
672 chan->device->dev)) {
673 chan->private = param;
674 return true;
675 } else {
676 return false;
677 }
678}
679
680static void pch_request_dma(struct uart_port *port)
681{
682 dma_cap_mask_t mask;
683 struct dma_chan *chan;
684 struct pci_dev *dma_dev;
685 struct pch_dma_slave *param;
686 struct eg20t_port *priv =
687 container_of(port, struct eg20t_port, port);
688 dma_cap_zero(mask);
689 dma_cap_set(DMA_SLAVE, mask);
690
Tomoya MORINAGA6c4b47d2011-07-20 20:17:49 +0900691 dma_dev = pci_get_bus_and_slot(priv->pdev->bus->number,
692 PCI_DEVFN(0xa, 0)); /* Get DMA's dev
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900693 information */
694 /* Set Tx DMA */
695 param = &priv->param_tx;
696 param->dma_dev = &dma_dev->dev;
Tomoya MORINAGAfec38d12011-02-23 10:03:19 +0900697 param->chan_id = priv->port.line * 2; /* Tx = 0, 2, 4, ... */
698
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900699 param->tx_reg = port->mapbase + UART_TX;
700 chan = dma_request_channel(mask, filter, param);
701 if (!chan) {
Tomoya MORINAGA23877fd2011-02-23 10:03:15 +0900702 dev_err(priv->port.dev, "%s:dma_request_channel FAILS(Tx)\n",
703 __func__);
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900704 return;
705 }
706 priv->chan_tx = chan;
707
708 /* Set Rx DMA */
709 param = &priv->param_rx;
710 param->dma_dev = &dma_dev->dev;
Tomoya MORINAGAfec38d12011-02-23 10:03:19 +0900711 param->chan_id = priv->port.line * 2 + 1; /* Rx = Tx + 1 */
712
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900713 param->rx_reg = port->mapbase + UART_RX;
714 chan = dma_request_channel(mask, filter, param);
715 if (!chan) {
Tomoya MORINAGA23877fd2011-02-23 10:03:15 +0900716 dev_err(priv->port.dev, "%s:dma_request_channel FAILS(Rx)\n",
717 __func__);
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900718 dma_release_channel(priv->chan_tx);
Tomoya MORINAGA90f04c22011-11-11 10:55:27 +0900719 priv->chan_tx = NULL;
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900720 return;
721 }
722
723 /* Get Consistent memory for DMA */
724 priv->rx_buf_virt = dma_alloc_coherent(port->dev, port->fifosize,
725 &priv->rx_buf_dma, GFP_KERNEL);
726 priv->chan_rx = chan;
727}
728
729static void pch_dma_rx_complete(void *arg)
730{
731 struct eg20t_port *priv = arg;
732 struct uart_port *port = &priv->port;
733 struct tty_struct *tty = tty_port_tty_get(&port->state->port);
Tomoya MORINAGAda3564e2011-02-23 10:03:12 +0900734 int count;
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900735
736 if (!tty) {
Tomoya MORINAGA23877fd2011-02-23 10:03:15 +0900737 dev_dbg(priv->port.dev, "%s:tty is busy now", __func__);
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900738 return;
739 }
740
Tomoya MORINAGAda3564e2011-02-23 10:03:12 +0900741 dma_sync_sg_for_cpu(port->dev, &priv->sg_rx, 1, DMA_FROM_DEVICE);
742 count = dma_push_rx(priv, priv->trigger_level);
743 if (count)
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900744 tty_flip_buffer_push(tty);
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900745 tty_kref_put(tty);
Tomoya MORINAGAda3564e2011-02-23 10:03:12 +0900746 async_tx_ack(priv->desc_rx);
747 pch_uart_hal_enable_interrupt(priv, PCH_UART_HAL_RX_INT);
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900748}
749
750static void pch_dma_tx_complete(void *arg)
751{
752 struct eg20t_port *priv = arg;
753 struct uart_port *port = &priv->port;
754 struct circ_buf *xmit = &port->state->xmit;
Tomoya MORINAGAda3564e2011-02-23 10:03:12 +0900755 struct scatterlist *sg = priv->sg_tx_p;
756 int i;
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900757
Tomoya MORINAGAda3564e2011-02-23 10:03:12 +0900758 for (i = 0; i < priv->nent; i++, sg++) {
759 xmit->tail += sg_dma_len(sg);
760 port->icount.tx += sg_dma_len(sg);
761 }
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900762 xmit->tail &= UART_XMIT_SIZE - 1;
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900763 async_tx_ack(priv->desc_tx);
Tomoya MORINAGAda3564e2011-02-23 10:03:12 +0900764 dma_unmap_sg(port->dev, sg, priv->nent, DMA_TO_DEVICE);
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900765 priv->tx_dma_use = 0;
Tomoya MORINAGAda3564e2011-02-23 10:03:12 +0900766 priv->nent = 0;
767 kfree(priv->sg_tx_p);
Tomoya MORINAGA60d10312011-02-23 10:03:18 +0900768 pch_uart_hal_enable_interrupt(priv, PCH_UART_HAL_TX_INT);
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900769}
770
Tomoya MORINAGA18220762011-02-23 10:03:14 +0900771static int pop_tx(struct eg20t_port *priv, int size)
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900772{
773 int count = 0;
774 struct uart_port *port = &priv->port;
775 struct circ_buf *xmit = &port->state->xmit;
776
777 if (uart_tx_stopped(port) || uart_circ_empty(xmit) || count >= size)
778 goto pop_tx_end;
779
780 do {
781 int cnt_to_end =
782 CIRC_CNT_TO_END(xmit->head, xmit->tail, UART_XMIT_SIZE);
783 int sz = min(size - count, cnt_to_end);
Tomoya MORINAGA18220762011-02-23 10:03:14 +0900784 pch_uart_hal_write(priv, &xmit->buf[xmit->tail], sz);
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900785 xmit->tail = (xmit->tail + sz) & (UART_XMIT_SIZE - 1);
786 count += sz;
787 } while (!uart_circ_empty(xmit) && count < size);
788
789pop_tx_end:
Tomoya MORINAGA23877fd2011-02-23 10:03:15 +0900790 dev_dbg(priv->port.dev, "%d characters. Remained %d characters.(%lu)\n",
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900791 count, size - count, jiffies);
792
793 return count;
794}
795
796static int handle_rx_to(struct eg20t_port *priv)
797{
798 struct pch_uart_buffer *buf;
799 int rx_size;
800 int ret;
801 if (!priv->start_rx) {
802 pch_uart_hal_disable_interrupt(priv, PCH_UART_HAL_RX_INT);
803 return 0;
804 }
805 buf = &priv->rxbuf;
806 do {
807 rx_size = pch_uart_hal_read(priv, buf->buf, buf->size);
808 ret = push_rx(priv, buf->buf, rx_size);
809 if (ret)
810 return 0;
811 } while (rx_size == buf->size);
812
813 return PCH_UART_HANDLED_RX_INT;
814}
815
816static int handle_rx(struct eg20t_port *priv)
817{
818 return handle_rx_to(priv);
819}
820
821static int dma_handle_rx(struct eg20t_port *priv)
822{
823 struct uart_port *port = &priv->port;
824 struct dma_async_tx_descriptor *desc;
825 struct scatterlist *sg;
826
827 priv = container_of(port, struct eg20t_port, port);
828 sg = &priv->sg_rx;
829
830 sg_init_table(&priv->sg_rx, 1); /* Initialize SG table */
831
Tomoya MORINAGAda3564e2011-02-23 10:03:12 +0900832 sg_dma_len(sg) = priv->trigger_level;
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900833
834 sg_set_page(&priv->sg_rx, virt_to_page(priv->rx_buf_virt),
Tomoya MORINAGA1c518992010-12-16 16:13:29 +0900835 sg_dma_len(sg), (unsigned long)priv->rx_buf_virt &
836 ~PAGE_MASK);
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900837
838 sg_dma_address(sg) = priv->rx_buf_dma;
839
Alexandre Bounine16052822012-03-08 16:11:18 -0500840 desc = dmaengine_prep_slave_sg(priv->chan_rx,
Vinod Koula485df42011-10-14 10:47:38 +0530841 sg, 1, DMA_DEV_TO_MEM,
Tomoya MORINAGAda3564e2011-02-23 10:03:12 +0900842 DMA_PREP_INTERRUPT | DMA_CTRL_ACK);
843
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900844 if (!desc)
845 return 0;
846
847 priv->desc_rx = desc;
848 desc->callback = pch_dma_rx_complete;
849 desc->callback_param = priv;
850 desc->tx_submit(desc);
851 dma_async_issue_pending(priv->chan_rx);
852
853 return PCH_UART_HANDLED_RX_INT;
854}
855
856static unsigned int handle_tx(struct eg20t_port *priv)
857{
858 struct uart_port *port = &priv->port;
859 struct circ_buf *xmit = &port->state->xmit;
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900860 int fifo_size;
861 int tx_size;
862 int size;
863 int tx_empty;
864
865 if (!priv->start_tx) {
Tomoya MORINAGA23877fd2011-02-23 10:03:15 +0900866 dev_info(priv->port.dev, "%s:Tx isn't started. (%lu)\n",
867 __func__, jiffies);
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900868 pch_uart_hal_disable_interrupt(priv, PCH_UART_HAL_TX_INT);
869 priv->tx_empty = 1;
870 return 0;
871 }
872
873 fifo_size = max(priv->fifo_size, 1);
874 tx_empty = 1;
875 if (pop_tx_x(priv, xmit->buf)) {
876 pch_uart_hal_write(priv, xmit->buf, 1);
877 port->icount.tx++;
878 tx_empty = 0;
879 fifo_size--;
880 }
881 size = min(xmit->head - xmit->tail, fifo_size);
Tomoya MORINAGAda3564e2011-02-23 10:03:12 +0900882 if (size < 0)
883 size = fifo_size;
884
Tomoya MORINAGA18220762011-02-23 10:03:14 +0900885 tx_size = pop_tx(priv, size);
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900886 if (tx_size > 0) {
Tomoya MORINAGA18220762011-02-23 10:03:14 +0900887 port->icount.tx += tx_size;
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900888 tx_empty = 0;
889 }
890
891 priv->tx_empty = tx_empty;
892
Tomoya MORINAGAda3564e2011-02-23 10:03:12 +0900893 if (tx_empty) {
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900894 pch_uart_hal_disable_interrupt(priv, PCH_UART_HAL_TX_INT);
Tomoya MORINAGAda3564e2011-02-23 10:03:12 +0900895 uart_write_wakeup(port);
896 }
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900897
898 return PCH_UART_HANDLED_TX_INT;
899}
900
901static unsigned int dma_handle_tx(struct eg20t_port *priv)
902{
903 struct uart_port *port = &priv->port;
904 struct circ_buf *xmit = &port->state->xmit;
Tomoya MORINAGAda3564e2011-02-23 10:03:12 +0900905 struct scatterlist *sg;
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900906 int nent;
907 int fifo_size;
908 int tx_empty;
909 struct dma_async_tx_descriptor *desc;
Tomoya MORINAGAda3564e2011-02-23 10:03:12 +0900910 int num;
911 int i;
912 int bytes;
913 int size;
914 int rem;
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900915
916 if (!priv->start_tx) {
Tomoya MORINAGA23877fd2011-02-23 10:03:15 +0900917 dev_info(priv->port.dev, "%s:Tx isn't started. (%lu)\n",
918 __func__, jiffies);
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900919 pch_uart_hal_disable_interrupt(priv, PCH_UART_HAL_TX_INT);
920 priv->tx_empty = 1;
921 return 0;
922 }
923
Tomoya MORINAGA60d10312011-02-23 10:03:18 +0900924 if (priv->tx_dma_use) {
925 dev_dbg(priv->port.dev, "%s:Tx is not completed. (%lu)\n",
926 __func__, jiffies);
927 pch_uart_hal_disable_interrupt(priv, PCH_UART_HAL_TX_INT);
928 priv->tx_empty = 1;
929 return 0;
930 }
931
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900932 fifo_size = max(priv->fifo_size, 1);
933 tx_empty = 1;
934 if (pop_tx_x(priv, xmit->buf)) {
935 pch_uart_hal_write(priv, xmit->buf, 1);
936 port->icount.tx++;
937 tx_empty = 0;
938 fifo_size--;
939 }
940
Tomoya MORINAGAda3564e2011-02-23 10:03:12 +0900941 bytes = min((int)CIRC_CNT(xmit->head, xmit->tail,
942 UART_XMIT_SIZE), CIRC_CNT_TO_END(xmit->head,
943 xmit->tail, UART_XMIT_SIZE));
944 if (!bytes) {
Tomoya MORINAGA23877fd2011-02-23 10:03:15 +0900945 dev_dbg(priv->port.dev, "%s 0 bytes return\n", __func__);
Tomoya MORINAGAda3564e2011-02-23 10:03:12 +0900946 pch_uart_hal_disable_interrupt(priv, PCH_UART_HAL_TX_INT);
947 uart_write_wakeup(port);
948 return 0;
949 }
950
951 if (bytes > fifo_size) {
952 num = bytes / fifo_size + 1;
953 size = fifo_size;
954 rem = bytes % fifo_size;
955 } else {
956 num = 1;
957 size = bytes;
958 rem = bytes;
959 }
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900960
Tomoya MORINAGA23877fd2011-02-23 10:03:15 +0900961 dev_dbg(priv->port.dev, "%s num=%d size=%d rem=%d\n",
962 __func__, num, size, rem);
963
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900964 priv->tx_dma_use = 1;
965
Tomoya MORINAGAda3564e2011-02-23 10:03:12 +0900966 priv->sg_tx_p = kzalloc(sizeof(struct scatterlist)*num, GFP_ATOMIC);
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900967
Tomoya MORINAGAda3564e2011-02-23 10:03:12 +0900968 sg_init_table(priv->sg_tx_p, num); /* Initialize SG table */
969 sg = priv->sg_tx_p;
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900970
Tomoya MORINAGAda3564e2011-02-23 10:03:12 +0900971 for (i = 0; i < num; i++, sg++) {
972 if (i == (num - 1))
973 sg_set_page(sg, virt_to_page(xmit->buf),
974 rem, fifo_size * i);
975 else
976 sg_set_page(sg, virt_to_page(xmit->buf),
977 size, fifo_size * i);
978 }
979
980 sg = priv->sg_tx_p;
981 nent = dma_map_sg(port->dev, sg, num, DMA_TO_DEVICE);
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900982 if (!nent) {
Tomoya MORINAGA23877fd2011-02-23 10:03:15 +0900983 dev_err(priv->port.dev, "%s:dma_map_sg Failed\n", __func__);
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900984 return 0;
985 }
Tomoya MORINAGAda3564e2011-02-23 10:03:12 +0900986 priv->nent = nent;
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900987
Tomoya MORINAGAda3564e2011-02-23 10:03:12 +0900988 for (i = 0; i < nent; i++, sg++) {
989 sg->offset = (xmit->tail & (UART_XMIT_SIZE - 1)) +
990 fifo_size * i;
991 sg_dma_address(sg) = (sg_dma_address(sg) &
992 ~(UART_XMIT_SIZE - 1)) + sg->offset;
993 if (i == (nent - 1))
994 sg_dma_len(sg) = rem;
995 else
996 sg_dma_len(sg) = size;
997 }
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +0900998
Alexandre Bounine16052822012-03-08 16:11:18 -0500999 desc = dmaengine_prep_slave_sg(priv->chan_tx,
Vinod Koula485df42011-10-14 10:47:38 +05301000 priv->sg_tx_p, nent, DMA_MEM_TO_DEV,
Tomoya MORINAGAda3564e2011-02-23 10:03:12 +09001001 DMA_PREP_INTERRUPT | DMA_CTRL_ACK);
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001002 if (!desc) {
Tomoya MORINAGA23877fd2011-02-23 10:03:15 +09001003 dev_err(priv->port.dev, "%s:device_prep_slave_sg Failed\n",
1004 __func__);
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001005 return 0;
1006 }
Tomoya MORINAGAda3564e2011-02-23 10:03:12 +09001007 dma_sync_sg_for_device(port->dev, priv->sg_tx_p, nent, DMA_TO_DEVICE);
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001008 priv->desc_tx = desc;
1009 desc->callback = pch_dma_tx_complete;
1010 desc->callback_param = priv;
1011
1012 desc->tx_submit(desc);
1013
1014 dma_async_issue_pending(priv->chan_tx);
1015
1016 return PCH_UART_HANDLED_TX_INT;
1017}
1018
1019static void pch_uart_err_ir(struct eg20t_port *priv, unsigned int lsr)
1020{
1021 u8 fcr = ioread8(priv->membase + UART_FCR);
1022
1023 /* Reset FIFO */
1024 fcr |= UART_FCR_CLEAR_RCVR;
1025 iowrite8(fcr, priv->membase + UART_FCR);
1026
1027 if (lsr & PCH_UART_LSR_ERR)
1028 dev_err(&priv->pdev->dev, "Error data in FIFO\n");
1029
1030 if (lsr & UART_LSR_FE)
1031 dev_err(&priv->pdev->dev, "Framing Error\n");
1032
1033 if (lsr & UART_LSR_PE)
1034 dev_err(&priv->pdev->dev, "Parity Error\n");
1035
1036 if (lsr & UART_LSR_OE)
1037 dev_err(&priv->pdev->dev, "Overrun Error\n");
1038}
1039
1040static irqreturn_t pch_uart_interrupt(int irq, void *dev_id)
1041{
1042 struct eg20t_port *priv = dev_id;
1043 unsigned int handled;
1044 u8 lsr;
1045 int ret = 0;
Tomoya MORINAGA2a583642012-03-26 14:43:01 +09001046 unsigned char iid;
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001047 unsigned long flags;
Tomoya MORINAGA5181fb32012-03-26 14:43:03 +09001048 int next = 1;
1049 u8 msr;
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001050
1051 spin_lock_irqsave(&priv->port.lock, flags);
1052 handled = 0;
Tomoya MORINAGA5181fb32012-03-26 14:43:03 +09001053 while (next) {
1054 iid = pch_uart_hal_get_iid(priv);
1055 if (iid & PCH_UART_IIR_IP) /* No Interrupt */
1056 break;
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001057 switch (iid) {
1058 case PCH_UART_IID_RLS: /* Receiver Line Status */
1059 lsr = pch_uart_hal_get_line_status(priv);
1060 if (lsr & (PCH_UART_LSR_ERR | UART_LSR_FE |
1061 UART_LSR_PE | UART_LSR_OE)) {
1062 pch_uart_err_ir(priv, lsr);
1063 ret = PCH_UART_HANDLED_RX_ERR_INT;
Tomoya MORINAGA04e2c2e2012-03-26 14:43:05 +09001064 } else {
1065 ret = PCH_UART_HANDLED_LS_INT;
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001066 }
1067 break;
1068 case PCH_UART_IID_RDR: /* Received Data Ready */
Tomoya MORINAGAda3564e2011-02-23 10:03:12 +09001069 if (priv->use_dma) {
1070 pch_uart_hal_disable_interrupt(priv,
1071 PCH_UART_HAL_RX_INT);
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001072 ret = dma_handle_rx(priv);
Tomoya MORINAGAda3564e2011-02-23 10:03:12 +09001073 if (!ret)
1074 pch_uart_hal_enable_interrupt(priv,
1075 PCH_UART_HAL_RX_INT);
1076 } else {
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001077 ret = handle_rx(priv);
Tomoya MORINAGAda3564e2011-02-23 10:03:12 +09001078 }
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001079 break;
1080 case PCH_UART_IID_RDR_TO: /* Received Data Ready
1081 (FIFO Timeout) */
1082 ret = handle_rx_to(priv);
1083 break;
1084 case PCH_UART_IID_THRE: /* Transmitter Holding Register
1085 Empty */
1086 if (priv->use_dma)
1087 ret = dma_handle_tx(priv);
1088 else
1089 ret = handle_tx(priv);
1090 break;
1091 case PCH_UART_IID_MS: /* Modem Status */
Tomoya MORINAGA5181fb32012-03-26 14:43:03 +09001092 msr = pch_uart_hal_get_modem(priv);
1093 next = 0; /* MS ir prioirty is the lowest. So, MS ir
1094 means final interrupt */
1095 if ((msr & UART_MSR_ANY_DELTA) == 0)
1096 break;
1097 ret |= PCH_UART_HANDLED_MS_INT;
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001098 break;
1099 default: /* Never junp to this label */
Tomoya MORINAGAb23954a32012-03-26 14:43:02 +09001100 dev_err(priv->port.dev, "%s:iid=%02x (%lu)\n", __func__,
Tomoya MORINAGA23877fd2011-02-23 10:03:15 +09001101 iid, jiffies);
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001102 ret = -1;
Tomoya MORINAGA5181fb32012-03-26 14:43:03 +09001103 next = 0;
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001104 break;
1105 }
1106 handled |= (unsigned int)ret;
1107 }
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001108
1109 spin_unlock_irqrestore(&priv->port.lock, flags);
1110 return IRQ_RETVAL(handled);
1111}
1112
1113/* This function tests whether the transmitter fifo and shifter for the port
1114 described by 'port' is empty. */
1115static unsigned int pch_uart_tx_empty(struct uart_port *port)
1116{
1117 struct eg20t_port *priv;
Feng Tang30c6c6b2012-02-06 17:24:44 +08001118
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001119 priv = container_of(port, struct eg20t_port, port);
1120 if (priv->tx_empty)
Feng Tang30c6c6b2012-02-06 17:24:44 +08001121 return TIOCSER_TEMT;
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001122 else
Feng Tang30c6c6b2012-02-06 17:24:44 +08001123 return 0;
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001124}
1125
1126/* Returns the current state of modem control inputs. */
1127static unsigned int pch_uart_get_mctrl(struct uart_port *port)
1128{
1129 struct eg20t_port *priv;
1130 u8 modem;
1131 unsigned int ret = 0;
1132
1133 priv = container_of(port, struct eg20t_port, port);
1134 modem = pch_uart_hal_get_modem(priv);
1135
1136 if (modem & UART_MSR_DCD)
1137 ret |= TIOCM_CAR;
1138
1139 if (modem & UART_MSR_RI)
1140 ret |= TIOCM_RNG;
1141
1142 if (modem & UART_MSR_DSR)
1143 ret |= TIOCM_DSR;
1144
1145 if (modem & UART_MSR_CTS)
1146 ret |= TIOCM_CTS;
1147
1148 return ret;
1149}
1150
1151static void pch_uart_set_mctrl(struct uart_port *port, unsigned int mctrl)
1152{
1153 u32 mcr = 0;
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001154 struct eg20t_port *priv = container_of(port, struct eg20t_port, port);
1155
1156 if (mctrl & TIOCM_DTR)
1157 mcr |= UART_MCR_DTR;
1158 if (mctrl & TIOCM_RTS)
1159 mcr |= UART_MCR_RTS;
1160 if (mctrl & TIOCM_LOOP)
1161 mcr |= UART_MCR_LOOP;
1162
Tomoya MORINAGA9af71552011-02-23 10:03:17 +09001163 if (priv->mcr & UART_MCR_AFE)
1164 mcr |= UART_MCR_AFE;
1165
1166 if (mctrl)
1167 iowrite8(mcr, priv->membase + UART_MCR);
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001168}
1169
1170static void pch_uart_stop_tx(struct uart_port *port)
1171{
1172 struct eg20t_port *priv;
1173 priv = container_of(port, struct eg20t_port, port);
1174 priv->start_tx = 0;
1175 priv->tx_dma_use = 0;
1176}
1177
1178static void pch_uart_start_tx(struct uart_port *port)
1179{
1180 struct eg20t_port *priv;
1181
1182 priv = container_of(port, struct eg20t_port, port);
1183
Tomoya MORINAGA23877fd2011-02-23 10:03:15 +09001184 if (priv->use_dma) {
1185 if (priv->tx_dma_use) {
1186 dev_dbg(priv->port.dev, "%s : Tx DMA is NOT empty.\n",
1187 __func__);
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001188 return;
Tomoya MORINAGA23877fd2011-02-23 10:03:15 +09001189 }
1190 }
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001191
1192 priv->start_tx = 1;
1193 pch_uart_hal_enable_interrupt(priv, PCH_UART_HAL_TX_INT);
1194}
1195
1196static void pch_uart_stop_rx(struct uart_port *port)
1197{
1198 struct eg20t_port *priv;
1199 priv = container_of(port, struct eg20t_port, port);
1200 priv->start_rx = 0;
1201 pch_uart_hal_disable_interrupt(priv, PCH_UART_HAL_RX_INT);
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001202}
1203
1204/* Enable the modem status interrupts. */
1205static void pch_uart_enable_ms(struct uart_port *port)
1206{
1207 struct eg20t_port *priv;
1208 priv = container_of(port, struct eg20t_port, port);
1209 pch_uart_hal_enable_interrupt(priv, PCH_UART_HAL_MS_INT);
1210}
1211
1212/* Control the transmission of a break signal. */
1213static void pch_uart_break_ctl(struct uart_port *port, int ctl)
1214{
1215 struct eg20t_port *priv;
1216 unsigned long flags;
1217
1218 priv = container_of(port, struct eg20t_port, port);
1219 spin_lock_irqsave(&port->lock, flags);
1220 pch_uart_hal_set_break(priv, ctl);
1221 spin_unlock_irqrestore(&port->lock, flags);
1222}
1223
1224/* Grab any interrupt resources and initialise any low level driver state. */
1225static int pch_uart_startup(struct uart_port *port)
1226{
1227 struct eg20t_port *priv;
1228 int ret;
1229 int fifo_size;
1230 int trigger_level;
1231
1232 priv = container_of(port, struct eg20t_port, port);
1233 priv->tx_empty = 1;
Tomoya MORINAGAaac6c0b2011-02-23 10:03:16 +09001234
1235 if (port->uartclk)
Darren Harta8a3ec92012-03-09 09:51:48 -08001236 priv->uartclk = port->uartclk;
Tomoya MORINAGAaac6c0b2011-02-23 10:03:16 +09001237 else
Darren Harta8a3ec92012-03-09 09:51:48 -08001238 port->uartclk = priv->uartclk;
Tomoya MORINAGAaac6c0b2011-02-23 10:03:16 +09001239
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001240 pch_uart_hal_disable_interrupt(priv, PCH_UART_HAL_ALL_INT);
1241 ret = pch_uart_hal_set_line(priv, default_baud,
1242 PCH_UART_HAL_PARITY_NONE, PCH_UART_HAL_8BIT,
1243 PCH_UART_HAL_STB1);
1244 if (ret)
1245 return ret;
1246
1247 switch (priv->fifo_size) {
1248 case 256:
1249 fifo_size = PCH_UART_HAL_FIFO256;
1250 break;
1251 case 64:
1252 fifo_size = PCH_UART_HAL_FIFO64;
1253 break;
1254 case 16:
1255 fifo_size = PCH_UART_HAL_FIFO16;
1256 case 1:
1257 default:
1258 fifo_size = PCH_UART_HAL_FIFO_DIS;
1259 break;
1260 }
1261
1262 switch (priv->trigger) {
1263 case PCH_UART_HAL_TRIGGER1:
1264 trigger_level = 1;
1265 break;
1266 case PCH_UART_HAL_TRIGGER_L:
1267 trigger_level = priv->fifo_size / 4;
1268 break;
1269 case PCH_UART_HAL_TRIGGER_M:
1270 trigger_level = priv->fifo_size / 2;
1271 break;
1272 case PCH_UART_HAL_TRIGGER_H:
1273 default:
1274 trigger_level = priv->fifo_size - (priv->fifo_size / 8);
1275 break;
1276 }
1277
1278 priv->trigger_level = trigger_level;
1279 ret = pch_uart_hal_set_fifo(priv, PCH_UART_HAL_DMA_MODE0,
1280 fifo_size, priv->trigger);
1281 if (ret < 0)
1282 return ret;
1283
1284 ret = request_irq(priv->port.irq, pch_uart_interrupt, IRQF_SHARED,
1285 KBUILD_MODNAME, priv);
1286 if (ret < 0)
1287 return ret;
1288
1289 if (priv->use_dma)
1290 pch_request_dma(port);
1291
1292 priv->start_rx = 1;
1293 pch_uart_hal_enable_interrupt(priv, PCH_UART_HAL_RX_INT);
1294 uart_update_timeout(port, CS8, default_baud);
1295
1296 return 0;
1297}
1298
1299static void pch_uart_shutdown(struct uart_port *port)
1300{
1301 struct eg20t_port *priv;
1302 int ret;
1303
1304 priv = container_of(port, struct eg20t_port, port);
1305 pch_uart_hal_disable_interrupt(priv, PCH_UART_HAL_ALL_INT);
1306 pch_uart_hal_fifo_reset(priv, PCH_UART_HAL_CLR_ALL_FIFO);
1307 ret = pch_uart_hal_set_fifo(priv, PCH_UART_HAL_DMA_MODE0,
1308 PCH_UART_HAL_FIFO_DIS, PCH_UART_HAL_TRIGGER1);
1309 if (ret)
Tomoya MORINAGA23877fd2011-02-23 10:03:15 +09001310 dev_err(priv->port.dev,
1311 "pch_uart_hal_set_fifo Failed(ret=%d)\n", ret);
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001312
Tomoya MORINAGA90f04c22011-11-11 10:55:27 +09001313 pch_free_dma(port);
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001314
1315 free_irq(priv->port.irq, priv);
1316}
1317
1318/* Change the port parameters, including word length, parity, stop
1319 *bits. Update read_status_mask and ignore_status_mask to indicate
1320 *the types of events we are interested in receiving. */
1321static void pch_uart_set_termios(struct uart_port *port,
1322 struct ktermios *termios, struct ktermios *old)
1323{
1324 int baud;
1325 int rtn;
1326 unsigned int parity, bits, stb;
1327 struct eg20t_port *priv;
1328 unsigned long flags;
1329
1330 priv = container_of(port, struct eg20t_port, port);
1331 switch (termios->c_cflag & CSIZE) {
1332 case CS5:
1333 bits = PCH_UART_HAL_5BIT;
1334 break;
1335 case CS6:
1336 bits = PCH_UART_HAL_6BIT;
1337 break;
1338 case CS7:
1339 bits = PCH_UART_HAL_7BIT;
1340 break;
1341 default: /* CS8 */
1342 bits = PCH_UART_HAL_8BIT;
1343 break;
1344 }
1345 if (termios->c_cflag & CSTOPB)
1346 stb = PCH_UART_HAL_STB2;
1347 else
1348 stb = PCH_UART_HAL_STB1;
1349
1350 if (termios->c_cflag & PARENB) {
1351 if (!(termios->c_cflag & PARODD))
1352 parity = PCH_UART_HAL_PARITY_ODD;
1353 else
1354 parity = PCH_UART_HAL_PARITY_EVEN;
1355
Feng Tang30c6c6b2012-02-06 17:24:44 +08001356 } else
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001357 parity = PCH_UART_HAL_PARITY_NONE;
Tomoya MORINAGA9af71552011-02-23 10:03:17 +09001358
1359 /* Only UART0 has auto hardware flow function */
1360 if ((termios->c_cflag & CRTSCTS) && (priv->fifo_size == 256))
1361 priv->mcr |= UART_MCR_AFE;
1362 else
1363 priv->mcr &= ~UART_MCR_AFE;
1364
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001365 termios->c_cflag &= ~CMSPAR; /* Mark/Space parity is not supported */
1366
1367 baud = uart_get_baud_rate(port, termios, old, 0, port->uartclk / 16);
1368
1369 spin_lock_irqsave(&port->lock, flags);
1370
1371 uart_update_timeout(port, termios->c_cflag, baud);
1372 rtn = pch_uart_hal_set_line(priv, baud, parity, bits, stb);
1373 if (rtn)
1374 goto out;
1375
Tomoya MORINAGAa1d7cfe2011-10-27 15:45:18 +09001376 pch_uart_set_mctrl(&priv->port, priv->port.mctrl);
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001377 /* Don't rewrite B0 */
1378 if (tty_termios_baud_rate(termios))
1379 tty_termios_encode_baud_rate(termios, baud, baud);
1380
1381out:
1382 spin_unlock_irqrestore(&port->lock, flags);
1383}
1384
1385static const char *pch_uart_type(struct uart_port *port)
1386{
1387 return KBUILD_MODNAME;
1388}
1389
1390static void pch_uart_release_port(struct uart_port *port)
1391{
1392 struct eg20t_port *priv;
1393
1394 priv = container_of(port, struct eg20t_port, port);
1395 pci_iounmap(priv->pdev, priv->membase);
1396 pci_release_regions(priv->pdev);
1397}
1398
1399static int pch_uart_request_port(struct uart_port *port)
1400{
1401 struct eg20t_port *priv;
1402 int ret;
1403 void __iomem *membase;
1404
1405 priv = container_of(port, struct eg20t_port, port);
1406 ret = pci_request_regions(priv->pdev, KBUILD_MODNAME);
1407 if (ret < 0)
1408 return -EBUSY;
1409
1410 membase = pci_iomap(priv->pdev, 1, 0);
1411 if (!membase) {
1412 pci_release_regions(priv->pdev);
1413 return -EBUSY;
1414 }
1415 priv->membase = port->membase = membase;
1416
1417 return 0;
1418}
1419
1420static void pch_uart_config_port(struct uart_port *port, int type)
1421{
1422 struct eg20t_port *priv;
1423
1424 priv = container_of(port, struct eg20t_port, port);
1425 if (type & UART_CONFIG_TYPE) {
1426 port->type = priv->port_type;
1427 pch_uart_request_port(port);
1428 }
1429}
1430
1431static int pch_uart_verify_port(struct uart_port *port,
1432 struct serial_struct *serinfo)
1433{
1434 struct eg20t_port *priv;
1435
1436 priv = container_of(port, struct eg20t_port, port);
1437 if (serinfo->flags & UPF_LOW_LATENCY) {
Tomoya MORINAGA23877fd2011-02-23 10:03:15 +09001438 dev_info(priv->port.dev,
1439 "PCH UART : Use PIO Mode (without DMA)\n");
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001440 priv->use_dma = 0;
1441 serinfo->flags &= ~UPF_LOW_LATENCY;
1442 } else {
1443#ifndef CONFIG_PCH_DMA
Tomoya MORINAGA23877fd2011-02-23 10:03:15 +09001444 dev_err(priv->port.dev, "%s : PCH DMA is not Loaded.\n",
1445 __func__);
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001446 return -EOPNOTSUPP;
1447#endif
1448 priv->use_dma = 1;
Tomoya MORINAGA23877fd2011-02-23 10:03:15 +09001449 dev_info(priv->port.dev, "PCH UART : Use DMA Mode\n");
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001450 }
1451
1452 return 0;
1453}
1454
1455static struct uart_ops pch_uart_ops = {
1456 .tx_empty = pch_uart_tx_empty,
1457 .set_mctrl = pch_uart_set_mctrl,
1458 .get_mctrl = pch_uart_get_mctrl,
1459 .stop_tx = pch_uart_stop_tx,
1460 .start_tx = pch_uart_start_tx,
1461 .stop_rx = pch_uart_stop_rx,
1462 .enable_ms = pch_uart_enable_ms,
1463 .break_ctl = pch_uart_break_ctl,
1464 .startup = pch_uart_startup,
1465 .shutdown = pch_uart_shutdown,
1466 .set_termios = pch_uart_set_termios,
1467/* .pm = pch_uart_pm, Not supported yet */
1468/* .set_wake = pch_uart_set_wake, Not supported yet */
1469 .type = pch_uart_type,
1470 .release_port = pch_uart_release_port,
1471 .request_port = pch_uart_request_port,
1472 .config_port = pch_uart_config_port,
1473 .verify_port = pch_uart_verify_port
1474};
1475
Alexander Steine30f8672011-11-15 15:04:07 -08001476#ifdef CONFIG_SERIAL_PCH_UART_CONSOLE
1477
1478/*
1479 * Wait for transmitter & holding register to empty
1480 */
1481static void wait_for_xmitr(struct eg20t_port *up, int bits)
1482{
1483 unsigned int status, tmout = 10000;
1484
1485 /* Wait up to 10ms for the character(s) to be sent. */
1486 for (;;) {
1487 status = ioread8(up->membase + UART_LSR);
1488
1489 if ((status & bits) == bits)
1490 break;
1491 if (--tmout == 0)
1492 break;
1493 udelay(1);
1494 }
1495
1496 /* Wait up to 1s for flow control if necessary */
1497 if (up->port.flags & UPF_CONS_FLOW) {
1498 unsigned int tmout;
1499 for (tmout = 1000000; tmout; tmout--) {
1500 unsigned int msr = ioread8(up->membase + UART_MSR);
1501 if (msr & UART_MSR_CTS)
1502 break;
1503 udelay(1);
1504 touch_nmi_watchdog();
1505 }
1506 }
1507}
1508
1509static void pch_console_putchar(struct uart_port *port, int ch)
1510{
1511 struct eg20t_port *priv =
1512 container_of(port, struct eg20t_port, port);
1513
1514 wait_for_xmitr(priv, UART_LSR_THRE);
1515 iowrite8(ch, priv->membase + PCH_UART_THR);
1516}
1517
1518/*
1519 * Print a string to the serial port trying not to disturb
1520 * any possible real use of the port...
1521 *
1522 * The console_lock must be held when we get here.
1523 */
1524static void
1525pch_console_write(struct console *co, const char *s, unsigned int count)
1526{
1527 struct eg20t_port *priv;
Alexander Steine30f8672011-11-15 15:04:07 -08001528 unsigned long flags;
1529 u8 ier;
1530 int locked = 1;
1531
1532 priv = pch_uart_ports[co->index];
1533
1534 touch_nmi_watchdog();
1535
1536 local_irq_save(flags);
1537 if (priv->port.sysrq) {
1538 /* serial8250_handle_port() already took the lock */
1539 locked = 0;
1540 } else if (oops_in_progress) {
1541 locked = spin_trylock(&priv->port.lock);
1542 } else
1543 spin_lock(&priv->port.lock);
1544
1545 /*
1546 * First save the IER then disable the interrupts
1547 */
1548 ier = ioread8(priv->membase + UART_IER);
1549
1550 pch_uart_hal_disable_interrupt(priv, PCH_UART_HAL_ALL_INT);
1551
1552 uart_console_write(&priv->port, s, count, pch_console_putchar);
1553
1554 /*
1555 * Finally, wait for transmitter to become empty
1556 * and restore the IER
1557 */
1558 wait_for_xmitr(priv, BOTH_EMPTY);
1559 iowrite8(ier, priv->membase + UART_IER);
1560
1561 if (locked)
1562 spin_unlock(&priv->port.lock);
1563 local_irq_restore(flags);
1564}
1565
1566static int __init pch_console_setup(struct console *co, char *options)
1567{
1568 struct uart_port *port;
Darren Hart7ce92512012-03-09 09:51:51 -08001569 int baud = default_baud;
Alexander Steine30f8672011-11-15 15:04:07 -08001570 int bits = 8;
1571 int parity = 'n';
1572 int flow = 'n';
1573
1574 /*
1575 * Check whether an invalid uart number has been specified, and
1576 * if so, search for the first available port that does have
1577 * console support.
1578 */
1579 if (co->index >= PCH_UART_NR)
1580 co->index = 0;
1581 port = &pch_uart_ports[co->index]->port;
1582
1583 if (!port || (!port->iobase && !port->membase))
1584 return -ENODEV;
1585
Darren Hart077175f2012-03-09 09:51:49 -08001586 port->uartclk = pch_uart_get_uartclk();
Alexander Steine30f8672011-11-15 15:04:07 -08001587
1588 if (options)
1589 uart_parse_options(options, &baud, &parity, &bits, &flow);
1590
1591 return uart_set_options(port, co, baud, parity, bits, flow);
1592}
1593
1594static struct uart_driver pch_uart_driver;
1595
1596static struct console pch_console = {
1597 .name = PCH_UART_DRIVER_DEVICE,
1598 .write = pch_console_write,
1599 .device = uart_console_device,
1600 .setup = pch_console_setup,
1601 .flags = CON_PRINTBUFFER | CON_ANYTIME,
1602 .index = -1,
1603 .data = &pch_uart_driver,
1604};
1605
1606#define PCH_CONSOLE (&pch_console)
1607#else
1608#define PCH_CONSOLE NULL
1609#endif
1610
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001611static struct uart_driver pch_uart_driver = {
1612 .owner = THIS_MODULE,
1613 .driver_name = KBUILD_MODNAME,
1614 .dev_name = PCH_UART_DRIVER_DEVICE,
1615 .major = 0,
1616 .minor = 0,
1617 .nr = PCH_UART_NR,
Alexander Steine30f8672011-11-15 15:04:07 -08001618 .cons = PCH_CONSOLE,
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001619};
1620
1621static struct eg20t_port *pch_uart_init_port(struct pci_dev *pdev,
Tomoya MORINAGA4564e1e2011-01-28 18:00:01 +09001622 const struct pci_device_id *id)
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001623{
1624 struct eg20t_port *priv;
1625 int ret;
1626 unsigned int iobase;
1627 unsigned int mapbase;
Tomoya MORINAGA1c518992010-12-16 16:13:29 +09001628 unsigned char *rxbuf;
Darren Hart077175f2012-03-09 09:51:49 -08001629 int fifosize;
Tomoya MORINAGAfec38d12011-02-23 10:03:19 +09001630 int port_type;
1631 struct pch_uart_driver_data *board;
Feng Tangd0114112012-02-06 17:24:43 +08001632 char name[32]; /* for debugfs file name */
Tomoya MORINAGAfec38d12011-02-23 10:03:19 +09001633
1634 board = &drv_dat[id->driver_data];
1635 port_type = board->port_type;
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001636
1637 priv = kzalloc(sizeof(struct eg20t_port), GFP_KERNEL);
1638 if (priv == NULL)
1639 goto init_port_alloc_err;
1640
Tomoya MORINAGA1c518992010-12-16 16:13:29 +09001641 rxbuf = (unsigned char *)__get_free_page(GFP_KERNEL);
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001642 if (!rxbuf)
1643 goto init_port_free_txbuf;
1644
1645 switch (port_type) {
1646 case PORT_UNKNOWN:
Tomoya MORINAGA4564e1e2011-01-28 18:00:01 +09001647 fifosize = 256; /* EG20T/ML7213: UART0 */
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001648 break;
1649 case PORT_8250:
Tomoya MORINAGA4564e1e2011-01-28 18:00:01 +09001650 fifosize = 64; /* EG20T:UART1~3 ML7213: UART1~2*/
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001651 break;
1652 default:
1653 dev_err(&pdev->dev, "Invalid Port Type(=%d)\n", port_type);
1654 goto init_port_hal_free;
1655 }
1656
Alexander Steine4635952011-07-04 08:58:31 +02001657 pci_enable_msi(pdev);
1658
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001659 iobase = pci_resource_start(pdev, 0);
1660 mapbase = pci_resource_start(pdev, 1);
1661 priv->mapbase = mapbase;
1662 priv->iobase = iobase;
1663 priv->pdev = pdev;
1664 priv->tx_empty = 1;
Tomoya MORINAGA1c518992010-12-16 16:13:29 +09001665 priv->rxbuf.buf = rxbuf;
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001666 priv->rxbuf.size = PAGE_SIZE;
1667
1668 priv->fifo_size = fifosize;
Darren Hart077175f2012-03-09 09:51:49 -08001669 priv->uartclk = pch_uart_get_uartclk();
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001670 priv->port_type = PORT_MAX_8250 + port_type + 1;
1671 priv->port.dev = &pdev->dev;
1672 priv->port.iobase = iobase;
1673 priv->port.membase = NULL;
1674 priv->port.mapbase = mapbase;
1675 priv->port.irq = pdev->irq;
1676 priv->port.iotype = UPIO_PORT;
1677 priv->port.ops = &pch_uart_ops;
1678 priv->port.flags = UPF_BOOT_AUTOCONF;
1679 priv->port.fifosize = fifosize;
Tomoya MORINAGAfec38d12011-02-23 10:03:19 +09001680 priv->port.line = board->line_no;
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001681 priv->trigger = PCH_UART_HAL_TRIGGER_M;
1682
Tomoya MORINAGA7e461322011-02-23 10:03:13 +09001683 spin_lock_init(&priv->port.lock);
1684
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001685 pci_set_drvdata(pdev, priv);
Feng Tang6f56d0f2012-02-06 17:24:45 +08001686 priv->trigger_level = 1;
1687 priv->fcr = 0;
Tomoya MORINAGA4564e1e2011-01-28 18:00:01 +09001688
Alexander Steine30f8672011-11-15 15:04:07 -08001689#ifdef CONFIG_SERIAL_PCH_UART_CONSOLE
1690 pch_uart_ports[board->line_no] = priv;
1691#endif
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001692 ret = uart_add_one_port(&pch_uart_driver, &priv->port);
1693 if (ret < 0)
1694 goto init_port_hal_free;
1695
Feng Tangd0114112012-02-06 17:24:43 +08001696#ifdef CONFIG_DEBUG_FS
1697 snprintf(name, sizeof(name), "uart%d_regs", board->line_no);
1698 priv->debugfs = debugfs_create_file(name, S_IFREG | S_IRUGO,
1699 NULL, priv, &port_regs_ops);
1700#endif
1701
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001702 return priv;
1703
1704init_port_hal_free:
Alexander Steine30f8672011-11-15 15:04:07 -08001705#ifdef CONFIG_SERIAL_PCH_UART_CONSOLE
1706 pch_uart_ports[board->line_no] = NULL;
1707#endif
Tomoya MORINAGA1c518992010-12-16 16:13:29 +09001708 free_page((unsigned long)rxbuf);
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001709init_port_free_txbuf:
1710 kfree(priv);
1711init_port_alloc_err:
1712
1713 return NULL;
1714}
1715
1716static void pch_uart_exit_port(struct eg20t_port *priv)
1717{
Feng Tangd0114112012-02-06 17:24:43 +08001718
1719#ifdef CONFIG_DEBUG_FS
1720 if (priv->debugfs)
1721 debugfs_remove(priv->debugfs);
1722#endif
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001723 uart_remove_one_port(&pch_uart_driver, &priv->port);
1724 pci_set_drvdata(priv->pdev, NULL);
Tomoya MORINAGA1c518992010-12-16 16:13:29 +09001725 free_page((unsigned long)priv->rxbuf.buf);
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001726}
1727
1728static void pch_uart_pci_remove(struct pci_dev *pdev)
1729{
Feng Tang6f56d0f2012-02-06 17:24:45 +08001730 struct eg20t_port *priv = pci_get_drvdata(pdev);
Alexander Steine4635952011-07-04 08:58:31 +02001731
1732 pci_disable_msi(pdev);
Alexander Steine30f8672011-11-15 15:04:07 -08001733
1734#ifdef CONFIG_SERIAL_PCH_UART_CONSOLE
1735 pch_uart_ports[priv->port.line] = NULL;
1736#endif
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001737 pch_uart_exit_port(priv);
1738 pci_disable_device(pdev);
1739 kfree(priv);
1740 return;
1741}
1742#ifdef CONFIG_PM
1743static int pch_uart_pci_suspend(struct pci_dev *pdev, pm_message_t state)
1744{
1745 struct eg20t_port *priv = pci_get_drvdata(pdev);
1746
1747 uart_suspend_port(&pch_uart_driver, &priv->port);
1748
1749 pci_save_state(pdev);
1750 pci_set_power_state(pdev, pci_choose_state(pdev, state));
1751 return 0;
1752}
1753
1754static int pch_uart_pci_resume(struct pci_dev *pdev)
1755{
1756 struct eg20t_port *priv = pci_get_drvdata(pdev);
1757 int ret;
1758
1759 pci_set_power_state(pdev, PCI_D0);
1760 pci_restore_state(pdev);
1761
1762 ret = pci_enable_device(pdev);
1763 if (ret) {
1764 dev_err(&pdev->dev,
1765 "%s-pci_enable_device failed(ret=%d) ", __func__, ret);
1766 return ret;
1767 }
1768
1769 uart_resume_port(&pch_uart_driver, &priv->port);
1770
1771 return 0;
1772}
1773#else
1774#define pch_uart_pci_suspend NULL
1775#define pch_uart_pci_resume NULL
1776#endif
1777
1778static DEFINE_PCI_DEVICE_TABLE(pch_uart_pci_id) = {
1779 {PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x8811),
Tomoya MORINAGAfec38d12011-02-23 10:03:19 +09001780 .driver_data = pch_et20t_uart0},
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001781 {PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x8812),
Tomoya MORINAGAfec38d12011-02-23 10:03:19 +09001782 .driver_data = pch_et20t_uart1},
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001783 {PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x8813),
Tomoya MORINAGAfec38d12011-02-23 10:03:19 +09001784 .driver_data = pch_et20t_uart2},
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001785 {PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x8814),
Tomoya MORINAGAfec38d12011-02-23 10:03:19 +09001786 .driver_data = pch_et20t_uart3},
Tomoya MORINAGA4564e1e2011-01-28 18:00:01 +09001787 {PCI_DEVICE(PCI_VENDOR_ID_ROHM, 0x8027),
Tomoya MORINAGAfec38d12011-02-23 10:03:19 +09001788 .driver_data = pch_ml7213_uart0},
Tomoya MORINAGA4564e1e2011-01-28 18:00:01 +09001789 {PCI_DEVICE(PCI_VENDOR_ID_ROHM, 0x8028),
Tomoya MORINAGAfec38d12011-02-23 10:03:19 +09001790 .driver_data = pch_ml7213_uart1},
Tomoya MORINAGA4564e1e2011-01-28 18:00:01 +09001791 {PCI_DEVICE(PCI_VENDOR_ID_ROHM, 0x8029),
Tomoya MORINAGAfec38d12011-02-23 10:03:19 +09001792 .driver_data = pch_ml7213_uart2},
Tomoya MORINAGA177c2cb2011-05-09 17:25:20 +09001793 {PCI_DEVICE(PCI_VENDOR_ID_ROHM, 0x800C),
1794 .driver_data = pch_ml7223_uart0},
1795 {PCI_DEVICE(PCI_VENDOR_ID_ROHM, 0x800D),
1796 .driver_data = pch_ml7223_uart1},
Tomoya MORINAGA8249f742011-10-28 09:38:49 +09001797 {PCI_DEVICE(PCI_VENDOR_ID_ROHM, 0x8811),
1798 .driver_data = pch_ml7831_uart0},
1799 {PCI_DEVICE(PCI_VENDOR_ID_ROHM, 0x8812),
1800 .driver_data = pch_ml7831_uart1},
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001801 {0,},
1802};
1803
1804static int __devinit pch_uart_pci_probe(struct pci_dev *pdev,
1805 const struct pci_device_id *id)
1806{
1807 int ret;
1808 struct eg20t_port *priv;
1809
1810 ret = pci_enable_device(pdev);
1811 if (ret < 0)
1812 goto probe_error;
1813
Tomoya MORINAGA4564e1e2011-01-28 18:00:01 +09001814 priv = pch_uart_init_port(pdev, id);
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001815 if (!priv) {
1816 ret = -EBUSY;
1817 goto probe_disable_device;
1818 }
1819 pci_set_drvdata(pdev, priv);
1820
1821 return ret;
1822
1823probe_disable_device:
Alexander Steine4635952011-07-04 08:58:31 +02001824 pci_disable_msi(pdev);
Tomoya MORINAGA3c6a4832010-11-17 09:55:54 +09001825 pci_disable_device(pdev);
1826probe_error:
1827 return ret;
1828}
1829
1830static struct pci_driver pch_uart_pci_driver = {
1831 .name = "pch_uart",
1832 .id_table = pch_uart_pci_id,
1833 .probe = pch_uart_pci_probe,
1834 .remove = __devexit_p(pch_uart_pci_remove),
1835 .suspend = pch_uart_pci_suspend,
1836 .resume = pch_uart_pci_resume,
1837};
1838
1839static int __init pch_uart_module_init(void)
1840{
1841 int ret;
1842
1843 /* register as UART driver */
1844 ret = uart_register_driver(&pch_uart_driver);
1845 if (ret < 0)
1846 return ret;
1847
1848 /* register as PCI driver */
1849 ret = pci_register_driver(&pch_uart_pci_driver);
1850 if (ret < 0)
1851 uart_unregister_driver(&pch_uart_driver);
1852
1853 return ret;
1854}
1855module_init(pch_uart_module_init);
1856
1857static void __exit pch_uart_module_exit(void)
1858{
1859 pci_unregister_driver(&pch_uart_pci_driver);
1860 uart_unregister_driver(&pch_uart_driver);
1861}
1862module_exit(pch_uart_module_exit);
1863
1864MODULE_LICENSE("GPL v2");
1865MODULE_DESCRIPTION("Intel EG20T PCH UART PCI Driver");
1866module_param(default_baud, uint, S_IRUGO);
Darren Harta46f5532012-03-09 09:51:52 -08001867MODULE_PARM_DESC(default_baud,
1868 "Default BAUD for initial driver state and console (default 9600)");
Darren Hart2a44feb2012-03-09 09:51:50 -08001869module_param(user_uartclk, uint, S_IRUGO);
Darren Harta46f5532012-03-09 09:51:52 -08001870MODULE_PARM_DESC(user_uartclk,
1871 "Override UART default or board specific UART clock");