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