2 *Copyright (C) 2010 OKI SEMICONDUCTOR CO., LTD.
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.
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.
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.
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>
27 #include <linux/dmi.h>
29 #include <linux/dmaengine.h>
30 #include <linux/pch_dma.h>
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
,
45 #define PCH_UART_DRIVER_DEVICE "ttyPCH"
47 /* Set the max number of UART port
48 * Intel EG20T PCH: 4 port
49 * OKI SEMICONDUCTOR ML7213 IOH: 3 port
50 * OKI SEMICONDUCTOR ML7223 IOH: 2 port
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))
62 #define PCH_UART_RBR 0x00
63 #define PCH_UART_THR 0x00
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
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
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
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
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 |\
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
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
127 #define PCH_UART_LSR_DR 0x00000001
128 #define PCH_UART_LSR_ERR (1<<7)
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)
141 #define PCH_UART_DLL 0x00
142 #define PCH_UART_DLM 0x01
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)
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)
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)
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)
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)
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)
199 #define PCI_VENDOR_ID_ROHM 0x10DB
201 struct pch_uart_buffer
{
207 struct uart_port port
;
209 void __iomem
*membase
;
210 resource_size_t mapbase
;
212 struct pci_dev
*pdev
;
221 struct pch_uart_buffer rxbuf
;
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
;
235 struct scatterlist sg_rx
;
238 dma_addr_t rx_buf_dma
;
242 * struct pch_uart_driver_data - private data structure for UART-DMA
243 * @port_type: The number of DMA channel
244 * @line_no: UART port line number (0, 1, 2...)
246 struct pch_uart_driver_data
{
251 enum pch_uart_num_t
{
263 static struct pch_uart_driver_data drv_dat
[] = {
264 [pch_et20t_uart0
] = {PCH_UART_8LINE
, 0},
265 [pch_et20t_uart1
] = {PCH_UART_2LINE
, 1},
266 [pch_et20t_uart2
] = {PCH_UART_2LINE
, 2},
267 [pch_et20t_uart3
] = {PCH_UART_2LINE
, 3},
268 [pch_ml7213_uart0
] = {PCH_UART_8LINE
, 0},
269 [pch_ml7213_uart1
] = {PCH_UART_2LINE
, 1},
270 [pch_ml7213_uart2
] = {PCH_UART_2LINE
, 2},
271 [pch_ml7223_uart0
] = {PCH_UART_8LINE
, 0},
272 [pch_ml7223_uart1
] = {PCH_UART_2LINE
, 1},
275 static unsigned int default_baud
= 9600;
276 static const int trigger_level_256
[4] = { 1, 64, 128, 224 };
277 static const int trigger_level_64
[4] = { 1, 16, 32, 56 };
278 static const int trigger_level_16
[4] = { 1, 4, 8, 14 };
279 static const int trigger_level_1
[4] = { 1, 1, 1, 1 };
281 static void pch_uart_hal_request(struct pci_dev
*pdev
, int fifosize
,
284 struct eg20t_port
*priv
= pci_get_drvdata(pdev
);
286 priv
->trigger_level
= 1;
290 static unsigned int get_msr(struct eg20t_port
*priv
, void __iomem
*base
)
292 unsigned int msr
= ioread8(base
+ UART_MSR
);
293 priv
->dmsr
|= msr
& PCH_UART_MSR_DELTA
;
298 static void pch_uart_hal_enable_interrupt(struct eg20t_port
*priv
,
301 u8 ier
= ioread8(priv
->membase
+ UART_IER
);
302 ier
|= flag
& PCH_UART_IER_MASK
;
303 iowrite8(ier
, priv
->membase
+ UART_IER
);
306 static void pch_uart_hal_disable_interrupt(struct eg20t_port
*priv
,
309 u8 ier
= ioread8(priv
->membase
+ UART_IER
);
310 ier
&= ~(flag
& PCH_UART_IER_MASK
);
311 iowrite8(ier
, priv
->membase
+ UART_IER
);
314 static int pch_uart_hal_set_line(struct eg20t_port
*priv
, int baud
,
315 unsigned int parity
, unsigned int bits
,
318 unsigned int dll
, dlm
, lcr
;
321 div
= DIV_ROUND_CLOSEST(priv
->base_baud
/ 16, baud
);
322 if (div
< 0 || USHRT_MAX
<= div
) {
323 dev_err(priv
->port
.dev
, "Invalid Baud(div=0x%x)\n", div
);
327 dll
= (unsigned int)div
& 0x00FFU
;
328 dlm
= ((unsigned int)div
>> 8) & 0x00FFU
;
330 if (parity
& ~(PCH_UART_LCR_PEN
| PCH_UART_LCR_EPS
| PCH_UART_LCR_SP
)) {
331 dev_err(priv
->port
.dev
, "Invalid parity(0x%x)\n", parity
);
335 if (bits
& ~PCH_UART_LCR_WLS
) {
336 dev_err(priv
->port
.dev
, "Invalid bits(0x%x)\n", bits
);
340 if (stb
& ~PCH_UART_LCR_STB
) {
341 dev_err(priv
->port
.dev
, "Invalid STB(0x%x)\n", stb
);
349 dev_dbg(priv
->port
.dev
, "%s:baud = %d, div = %04x, lcr = %02x (%lu)\n",
350 __func__
, baud
, div
, lcr
, jiffies
);
351 iowrite8(PCH_UART_LCR_DLAB
, priv
->membase
+ UART_LCR
);
352 iowrite8(dll
, priv
->membase
+ PCH_UART_DLL
);
353 iowrite8(dlm
, priv
->membase
+ PCH_UART_DLM
);
354 iowrite8(lcr
, priv
->membase
+ UART_LCR
);
359 static int pch_uart_hal_fifo_reset(struct eg20t_port
*priv
,
362 if (flag
& ~(PCH_UART_FCR_TFR
| PCH_UART_FCR_RFR
)) {
363 dev_err(priv
->port
.dev
, "%s:Invalid flag(0x%x)\n",
368 iowrite8(PCH_UART_FCR_FIFOE
| priv
->fcr
, priv
->membase
+ UART_FCR
);
369 iowrite8(PCH_UART_FCR_FIFOE
| priv
->fcr
| flag
,
370 priv
->membase
+ UART_FCR
);
371 iowrite8(priv
->fcr
, priv
->membase
+ UART_FCR
);
376 static int pch_uart_hal_set_fifo(struct eg20t_port
*priv
,
377 unsigned int dmamode
,
378 unsigned int fifo_size
, unsigned int trigger
)
382 if (dmamode
& ~PCH_UART_FCR_DMS
) {
383 dev_err(priv
->port
.dev
, "%s:Invalid DMA Mode(0x%x)\n",
388 if (fifo_size
& ~(PCH_UART_FCR_FIFOE
| PCH_UART_FCR_FIFO256
)) {
389 dev_err(priv
->port
.dev
, "%s:Invalid FIFO SIZE(0x%x)\n",
390 __func__
, fifo_size
);
394 if (trigger
& ~PCH_UART_FCR_RFTL
) {
395 dev_err(priv
->port
.dev
, "%s:Invalid TRIGGER(0x%x)\n",
400 switch (priv
->fifo_size
) {
402 priv
->trigger_level
=
403 trigger_level_256
[trigger
>> PCH_UART_FCR_RFTL_SHIFT
];
406 priv
->trigger_level
=
407 trigger_level_64
[trigger
>> PCH_UART_FCR_RFTL_SHIFT
];
410 priv
->trigger_level
=
411 trigger_level_16
[trigger
>> PCH_UART_FCR_RFTL_SHIFT
];
414 priv
->trigger_level
=
415 trigger_level_1
[trigger
>> PCH_UART_FCR_RFTL_SHIFT
];
419 dmamode
| fifo_size
| trigger
| PCH_UART_FCR_RFR
| PCH_UART_FCR_TFR
;
420 iowrite8(PCH_UART_FCR_FIFOE
, priv
->membase
+ UART_FCR
);
421 iowrite8(PCH_UART_FCR_FIFOE
| PCH_UART_FCR_RFR
| PCH_UART_FCR_TFR
,
422 priv
->membase
+ UART_FCR
);
423 iowrite8(fcr
, priv
->membase
+ UART_FCR
);
429 static u8
pch_uart_hal_get_modem(struct eg20t_port
*priv
)
432 return get_msr(priv
, priv
->membase
);
435 static void pch_uart_hal_write(struct eg20t_port
*priv
,
436 const unsigned char *buf
, int tx_size
)
441 for (i
= 0; i
< tx_size
;) {
443 iowrite8(thr
, priv
->membase
+ PCH_UART_THR
);
447 static int pch_uart_hal_read(struct eg20t_port
*priv
, unsigned char *buf
,
453 lsr
= ioread8(priv
->membase
+ UART_LSR
);
454 for (i
= 0, lsr
= ioread8(priv
->membase
+ UART_LSR
);
455 i
< rx_size
&& lsr
& UART_LSR_DR
;
456 lsr
= ioread8(priv
->membase
+ UART_LSR
)) {
457 rbr
= ioread8(priv
->membase
+ PCH_UART_RBR
);
463 static unsigned int pch_uart_hal_get_iid(struct eg20t_port
*priv
)
468 iir
= ioread8(priv
->membase
+ UART_IIR
);
469 ret
= (iir
& (PCH_UART_IIR_IID
| PCH_UART_IIR_TOI
| PCH_UART_IIR_IP
));
473 static u8
pch_uart_hal_get_line_status(struct eg20t_port
*priv
)
475 return ioread8(priv
->membase
+ UART_LSR
);
478 static void pch_uart_hal_set_break(struct eg20t_port
*priv
, int on
)
482 lcr
= ioread8(priv
->membase
+ UART_LCR
);
484 lcr
|= PCH_UART_LCR_SB
;
486 lcr
&= ~PCH_UART_LCR_SB
;
488 iowrite8(lcr
, priv
->membase
+ UART_LCR
);
491 static int push_rx(struct eg20t_port
*priv
, const unsigned char *buf
,
494 struct uart_port
*port
;
495 struct tty_struct
*tty
;
498 tty
= tty_port_tty_get(&port
->state
->port
);
500 dev_dbg(priv
->port
.dev
, "%s:tty is busy now", __func__
);
504 tty_insert_flip_string(tty
, buf
, size
);
505 tty_flip_buffer_push(tty
);
511 static int pop_tx_x(struct eg20t_port
*priv
, unsigned char *buf
)
514 struct uart_port
*port
= &priv
->port
;
517 dev_dbg(priv
->port
.dev
, "%s:X character send %02x (%lu)\n",
518 __func__
, port
->x_char
, jiffies
);
519 buf
[0] = port
->x_char
;
529 static int dma_push_rx(struct eg20t_port
*priv
, int size
)
531 struct tty_struct
*tty
;
533 struct uart_port
*port
= &priv
->port
;
536 tty
= tty_port_tty_get(&port
->state
->port
);
538 dev_dbg(priv
->port
.dev
, "%s:tty is busy now", __func__
);
542 room
= tty_buffer_request_room(tty
, size
);
545 dev_warn(port
->dev
, "Rx overrun: dropping %u bytes\n",
550 tty_insert_flip_string(tty
, sg_virt(&priv
->sg_rx
), size
);
552 port
->icount
.rx
+= room
;
558 static void pch_free_dma(struct uart_port
*port
)
560 struct eg20t_port
*priv
;
561 priv
= container_of(port
, struct eg20t_port
, port
);
564 dma_release_channel(priv
->chan_tx
);
565 priv
->chan_tx
= NULL
;
568 dma_release_channel(priv
->chan_rx
);
569 priv
->chan_rx
= NULL
;
571 if (sg_dma_address(&priv
->sg_rx
))
572 dma_free_coherent(port
->dev
, port
->fifosize
,
573 sg_virt(&priv
->sg_rx
),
574 sg_dma_address(&priv
->sg_rx
));
579 static bool filter(struct dma_chan
*chan
, void *slave
)
581 struct pch_dma_slave
*param
= slave
;
583 if ((chan
->chan_id
== param
->chan_id
) && (param
->dma_dev
==
584 chan
->device
->dev
)) {
585 chan
->private = param
;
592 static void pch_request_dma(struct uart_port
*port
)
595 struct dma_chan
*chan
;
596 struct pci_dev
*dma_dev
;
597 struct pch_dma_slave
*param
;
598 struct eg20t_port
*priv
=
599 container_of(port
, struct eg20t_port
, port
);
601 dma_cap_set(DMA_SLAVE
, mask
);
603 dma_dev
= pci_get_bus_and_slot(priv
->pdev
->bus
->number
,
604 PCI_DEVFN(0xa, 0)); /* Get DMA's dev
607 param
= &priv
->param_tx
;
608 param
->dma_dev
= &dma_dev
->dev
;
609 param
->chan_id
= priv
->port
.line
* 2; /* Tx = 0, 2, 4, ... */
611 param
->tx_reg
= port
->mapbase
+ UART_TX
;
612 chan
= dma_request_channel(mask
, filter
, param
);
614 dev_err(priv
->port
.dev
, "%s:dma_request_channel FAILS(Tx)\n",
618 priv
->chan_tx
= chan
;
621 param
= &priv
->param_rx
;
622 param
->dma_dev
= &dma_dev
->dev
;
623 param
->chan_id
= priv
->port
.line
* 2 + 1; /* Rx = Tx + 1 */
625 param
->rx_reg
= port
->mapbase
+ UART_RX
;
626 chan
= dma_request_channel(mask
, filter
, param
);
628 dev_err(priv
->port
.dev
, "%s:dma_request_channel FAILS(Rx)\n",
630 dma_release_channel(priv
->chan_tx
);
634 /* Get Consistent memory for DMA */
635 priv
->rx_buf_virt
= dma_alloc_coherent(port
->dev
, port
->fifosize
,
636 &priv
->rx_buf_dma
, GFP_KERNEL
);
637 priv
->chan_rx
= chan
;
640 static void pch_dma_rx_complete(void *arg
)
642 struct eg20t_port
*priv
= arg
;
643 struct uart_port
*port
= &priv
->port
;
644 struct tty_struct
*tty
= tty_port_tty_get(&port
->state
->port
);
648 dev_dbg(priv
->port
.dev
, "%s:tty is busy now", __func__
);
652 dma_sync_sg_for_cpu(port
->dev
, &priv
->sg_rx
, 1, DMA_FROM_DEVICE
);
653 count
= dma_push_rx(priv
, priv
->trigger_level
);
655 tty_flip_buffer_push(tty
);
657 async_tx_ack(priv
->desc_rx
);
658 pch_uart_hal_enable_interrupt(priv
, PCH_UART_HAL_RX_INT
);
661 static void pch_dma_tx_complete(void *arg
)
663 struct eg20t_port
*priv
= arg
;
664 struct uart_port
*port
= &priv
->port
;
665 struct circ_buf
*xmit
= &port
->state
->xmit
;
666 struct scatterlist
*sg
= priv
->sg_tx_p
;
669 for (i
= 0; i
< priv
->nent
; i
++, sg
++) {
670 xmit
->tail
+= sg_dma_len(sg
);
671 port
->icount
.tx
+= sg_dma_len(sg
);
673 xmit
->tail
&= UART_XMIT_SIZE
- 1;
674 async_tx_ack(priv
->desc_tx
);
675 dma_unmap_sg(port
->dev
, sg
, priv
->nent
, DMA_TO_DEVICE
);
676 priv
->tx_dma_use
= 0;
678 kfree(priv
->sg_tx_p
);
679 pch_uart_hal_enable_interrupt(priv
, PCH_UART_HAL_TX_INT
);
682 static int pop_tx(struct eg20t_port
*priv
, int size
)
685 struct uart_port
*port
= &priv
->port
;
686 struct circ_buf
*xmit
= &port
->state
->xmit
;
688 if (uart_tx_stopped(port
) || uart_circ_empty(xmit
) || count
>= size
)
693 CIRC_CNT_TO_END(xmit
->head
, xmit
->tail
, UART_XMIT_SIZE
);
694 int sz
= min(size
- count
, cnt_to_end
);
695 pch_uart_hal_write(priv
, &xmit
->buf
[xmit
->tail
], sz
);
696 xmit
->tail
= (xmit
->tail
+ sz
) & (UART_XMIT_SIZE
- 1);
698 } while (!uart_circ_empty(xmit
) && count
< size
);
701 dev_dbg(priv
->port
.dev
, "%d characters. Remained %d characters.(%lu)\n",
702 count
, size
- count
, jiffies
);
707 static int handle_rx_to(struct eg20t_port
*priv
)
709 struct pch_uart_buffer
*buf
;
712 if (!priv
->start_rx
) {
713 pch_uart_hal_disable_interrupt(priv
, PCH_UART_HAL_RX_INT
);
718 rx_size
= pch_uart_hal_read(priv
, buf
->buf
, buf
->size
);
719 ret
= push_rx(priv
, buf
->buf
, rx_size
);
722 } while (rx_size
== buf
->size
);
724 return PCH_UART_HANDLED_RX_INT
;
727 static int handle_rx(struct eg20t_port
*priv
)
729 return handle_rx_to(priv
);
732 static int dma_handle_rx(struct eg20t_port
*priv
)
734 struct uart_port
*port
= &priv
->port
;
735 struct dma_async_tx_descriptor
*desc
;
736 struct scatterlist
*sg
;
738 priv
= container_of(port
, struct eg20t_port
, port
);
741 sg_init_table(&priv
->sg_rx
, 1); /* Initialize SG table */
743 sg_dma_len(sg
) = priv
->trigger_level
;
745 sg_set_page(&priv
->sg_rx
, virt_to_page(priv
->rx_buf_virt
),
746 sg_dma_len(sg
), (unsigned long)priv
->rx_buf_virt
&
749 sg_dma_address(sg
) = priv
->rx_buf_dma
;
751 desc
= priv
->chan_rx
->device
->device_prep_slave_sg(priv
->chan_rx
,
752 sg
, 1, DMA_FROM_DEVICE
,
753 DMA_PREP_INTERRUPT
| DMA_CTRL_ACK
);
758 priv
->desc_rx
= desc
;
759 desc
->callback
= pch_dma_rx_complete
;
760 desc
->callback_param
= priv
;
761 desc
->tx_submit(desc
);
762 dma_async_issue_pending(priv
->chan_rx
);
764 return PCH_UART_HANDLED_RX_INT
;
767 static unsigned int handle_tx(struct eg20t_port
*priv
)
769 struct uart_port
*port
= &priv
->port
;
770 struct circ_buf
*xmit
= &port
->state
->xmit
;
776 if (!priv
->start_tx
) {
777 dev_info(priv
->port
.dev
, "%s:Tx isn't started. (%lu)\n",
779 pch_uart_hal_disable_interrupt(priv
, PCH_UART_HAL_TX_INT
);
784 fifo_size
= max(priv
->fifo_size
, 1);
786 if (pop_tx_x(priv
, xmit
->buf
)) {
787 pch_uart_hal_write(priv
, xmit
->buf
, 1);
792 size
= min(xmit
->head
- xmit
->tail
, fifo_size
);
796 tx_size
= pop_tx(priv
, size
);
798 port
->icount
.tx
+= tx_size
;
802 priv
->tx_empty
= tx_empty
;
805 pch_uart_hal_disable_interrupt(priv
, PCH_UART_HAL_TX_INT
);
806 uart_write_wakeup(port
);
809 return PCH_UART_HANDLED_TX_INT
;
812 static unsigned int dma_handle_tx(struct eg20t_port
*priv
)
814 struct uart_port
*port
= &priv
->port
;
815 struct circ_buf
*xmit
= &port
->state
->xmit
;
816 struct scatterlist
*sg
;
820 struct dma_async_tx_descriptor
*desc
;
827 if (!priv
->start_tx
) {
828 dev_info(priv
->port
.dev
, "%s:Tx isn't started. (%lu)\n",
830 pch_uart_hal_disable_interrupt(priv
, PCH_UART_HAL_TX_INT
);
835 if (priv
->tx_dma_use
) {
836 dev_dbg(priv
->port
.dev
, "%s:Tx is not completed. (%lu)\n",
838 pch_uart_hal_disable_interrupt(priv
, PCH_UART_HAL_TX_INT
);
843 fifo_size
= max(priv
->fifo_size
, 1);
845 if (pop_tx_x(priv
, xmit
->buf
)) {
846 pch_uart_hal_write(priv
, xmit
->buf
, 1);
852 bytes
= min((int)CIRC_CNT(xmit
->head
, xmit
->tail
,
853 UART_XMIT_SIZE
), CIRC_CNT_TO_END(xmit
->head
,
854 xmit
->tail
, UART_XMIT_SIZE
));
856 dev_dbg(priv
->port
.dev
, "%s 0 bytes return\n", __func__
);
857 pch_uart_hal_disable_interrupt(priv
, PCH_UART_HAL_TX_INT
);
858 uart_write_wakeup(port
);
862 if (bytes
> fifo_size
) {
863 num
= bytes
/ fifo_size
+ 1;
865 rem
= bytes
% fifo_size
;
872 dev_dbg(priv
->port
.dev
, "%s num=%d size=%d rem=%d\n",
873 __func__
, num
, size
, rem
);
875 priv
->tx_dma_use
= 1;
877 priv
->sg_tx_p
= kzalloc(sizeof(struct scatterlist
)*num
, GFP_ATOMIC
);
879 sg_init_table(priv
->sg_tx_p
, num
); /* Initialize SG table */
882 for (i
= 0; i
< num
; i
++, sg
++) {
884 sg_set_page(sg
, virt_to_page(xmit
->buf
),
887 sg_set_page(sg
, virt_to_page(xmit
->buf
),
888 size
, fifo_size
* i
);
892 nent
= dma_map_sg(port
->dev
, sg
, num
, DMA_TO_DEVICE
);
894 dev_err(priv
->port
.dev
, "%s:dma_map_sg Failed\n", __func__
);
899 for (i
= 0; i
< nent
; i
++, sg
++) {
900 sg
->offset
= (xmit
->tail
& (UART_XMIT_SIZE
- 1)) +
902 sg_dma_address(sg
) = (sg_dma_address(sg
) &
903 ~(UART_XMIT_SIZE
- 1)) + sg
->offset
;
905 sg_dma_len(sg
) = rem
;
907 sg_dma_len(sg
) = size
;
910 desc
= priv
->chan_tx
->device
->device_prep_slave_sg(priv
->chan_tx
,
911 priv
->sg_tx_p
, nent
, DMA_TO_DEVICE
,
912 DMA_PREP_INTERRUPT
| DMA_CTRL_ACK
);
914 dev_err(priv
->port
.dev
, "%s:device_prep_slave_sg Failed\n",
918 dma_sync_sg_for_device(port
->dev
, priv
->sg_tx_p
, nent
, DMA_TO_DEVICE
);
919 priv
->desc_tx
= desc
;
920 desc
->callback
= pch_dma_tx_complete
;
921 desc
->callback_param
= priv
;
923 desc
->tx_submit(desc
);
925 dma_async_issue_pending(priv
->chan_tx
);
927 return PCH_UART_HANDLED_TX_INT
;
930 static void pch_uart_err_ir(struct eg20t_port
*priv
, unsigned int lsr
)
932 u8 fcr
= ioread8(priv
->membase
+ UART_FCR
);
935 fcr
|= UART_FCR_CLEAR_RCVR
;
936 iowrite8(fcr
, priv
->membase
+ UART_FCR
);
938 if (lsr
& PCH_UART_LSR_ERR
)
939 dev_err(&priv
->pdev
->dev
, "Error data in FIFO\n");
941 if (lsr
& UART_LSR_FE
)
942 dev_err(&priv
->pdev
->dev
, "Framing Error\n");
944 if (lsr
& UART_LSR_PE
)
945 dev_err(&priv
->pdev
->dev
, "Parity Error\n");
947 if (lsr
& UART_LSR_OE
)
948 dev_err(&priv
->pdev
->dev
, "Overrun Error\n");
951 static irqreturn_t
pch_uart_interrupt(int irq
, void *dev_id
)
953 struct eg20t_port
*priv
= dev_id
;
954 unsigned int handled
;
960 spin_lock_irqsave(&priv
->port
.lock
, flags
);
962 while ((iid
= pch_uart_hal_get_iid(priv
)) > 1) {
964 case PCH_UART_IID_RLS
: /* Receiver Line Status */
965 lsr
= pch_uart_hal_get_line_status(priv
);
966 if (lsr
& (PCH_UART_LSR_ERR
| UART_LSR_FE
|
967 UART_LSR_PE
| UART_LSR_OE
)) {
968 pch_uart_err_ir(priv
, lsr
);
969 ret
= PCH_UART_HANDLED_RX_ERR_INT
;
972 case PCH_UART_IID_RDR
: /* Received Data Ready */
974 pch_uart_hal_disable_interrupt(priv
,
975 PCH_UART_HAL_RX_INT
);
976 ret
= dma_handle_rx(priv
);
978 pch_uart_hal_enable_interrupt(priv
,
979 PCH_UART_HAL_RX_INT
);
981 ret
= handle_rx(priv
);
984 case PCH_UART_IID_RDR_TO
: /* Received Data Ready
986 ret
= handle_rx_to(priv
);
988 case PCH_UART_IID_THRE
: /* Transmitter Holding Register
991 ret
= dma_handle_tx(priv
);
993 ret
= handle_tx(priv
);
995 case PCH_UART_IID_MS
: /* Modem Status */
996 ret
= PCH_UART_HANDLED_MS_INT
;
998 default: /* Never junp to this label */
999 dev_err(priv
->port
.dev
, "%s:iid=%d (%lu)\n", __func__
,
1004 handled
|= (unsigned int)ret
;
1006 if (handled
== 0 && iid
<= 1) {
1007 if (priv
->int_dis_flag
)
1008 priv
->int_dis_flag
= 0;
1011 spin_unlock_irqrestore(&priv
->port
.lock
, flags
);
1012 return IRQ_RETVAL(handled
);
1015 /* This function tests whether the transmitter fifo and shifter for the port
1016 described by 'port' is empty. */
1017 static unsigned int pch_uart_tx_empty(struct uart_port
*port
)
1019 struct eg20t_port
*priv
;
1021 priv
= container_of(port
, struct eg20t_port
, port
);
1030 /* Returns the current state of modem control inputs. */
1031 static unsigned int pch_uart_get_mctrl(struct uart_port
*port
)
1033 struct eg20t_port
*priv
;
1035 unsigned int ret
= 0;
1037 priv
= container_of(port
, struct eg20t_port
, port
);
1038 modem
= pch_uart_hal_get_modem(priv
);
1040 if (modem
& UART_MSR_DCD
)
1043 if (modem
& UART_MSR_RI
)
1046 if (modem
& UART_MSR_DSR
)
1049 if (modem
& UART_MSR_CTS
)
1055 static void pch_uart_set_mctrl(struct uart_port
*port
, unsigned int mctrl
)
1058 struct eg20t_port
*priv
= container_of(port
, struct eg20t_port
, port
);
1060 if (mctrl
& TIOCM_DTR
)
1061 mcr
|= UART_MCR_DTR
;
1062 if (mctrl
& TIOCM_RTS
)
1063 mcr
|= UART_MCR_RTS
;
1064 if (mctrl
& TIOCM_LOOP
)
1065 mcr
|= UART_MCR_LOOP
;
1067 if (priv
->mcr
& UART_MCR_AFE
)
1068 mcr
|= UART_MCR_AFE
;
1071 iowrite8(mcr
, priv
->membase
+ UART_MCR
);
1074 static void pch_uart_stop_tx(struct uart_port
*port
)
1076 struct eg20t_port
*priv
;
1077 priv
= container_of(port
, struct eg20t_port
, port
);
1079 priv
->tx_dma_use
= 0;
1082 static void pch_uart_start_tx(struct uart_port
*port
)
1084 struct eg20t_port
*priv
;
1086 priv
= container_of(port
, struct eg20t_port
, port
);
1088 if (priv
->use_dma
) {
1089 if (priv
->tx_dma_use
) {
1090 dev_dbg(priv
->port
.dev
, "%s : Tx DMA is NOT empty.\n",
1097 pch_uart_hal_enable_interrupt(priv
, PCH_UART_HAL_TX_INT
);
1100 static void pch_uart_stop_rx(struct uart_port
*port
)
1102 struct eg20t_port
*priv
;
1103 priv
= container_of(port
, struct eg20t_port
, port
);
1105 pch_uart_hal_disable_interrupt(priv
, PCH_UART_HAL_RX_INT
);
1106 priv
->int_dis_flag
= 1;
1109 /* Enable the modem status interrupts. */
1110 static void pch_uart_enable_ms(struct uart_port
*port
)
1112 struct eg20t_port
*priv
;
1113 priv
= container_of(port
, struct eg20t_port
, port
);
1114 pch_uart_hal_enable_interrupt(priv
, PCH_UART_HAL_MS_INT
);
1117 /* Control the transmission of a break signal. */
1118 static void pch_uart_break_ctl(struct uart_port
*port
, int ctl
)
1120 struct eg20t_port
*priv
;
1121 unsigned long flags
;
1123 priv
= container_of(port
, struct eg20t_port
, port
);
1124 spin_lock_irqsave(&port
->lock
, flags
);
1125 pch_uart_hal_set_break(priv
, ctl
);
1126 spin_unlock_irqrestore(&port
->lock
, flags
);
1129 /* Grab any interrupt resources and initialise any low level driver state. */
1130 static int pch_uart_startup(struct uart_port
*port
)
1132 struct eg20t_port
*priv
;
1137 priv
= container_of(port
, struct eg20t_port
, port
);
1141 priv
->base_baud
= port
->uartclk
;
1143 port
->uartclk
= priv
->base_baud
;
1145 pch_uart_hal_disable_interrupt(priv
, PCH_UART_HAL_ALL_INT
);
1146 ret
= pch_uart_hal_set_line(priv
, default_baud
,
1147 PCH_UART_HAL_PARITY_NONE
, PCH_UART_HAL_8BIT
,
1152 switch (priv
->fifo_size
) {
1154 fifo_size
= PCH_UART_HAL_FIFO256
;
1157 fifo_size
= PCH_UART_HAL_FIFO64
;
1160 fifo_size
= PCH_UART_HAL_FIFO16
;
1163 fifo_size
= PCH_UART_HAL_FIFO_DIS
;
1167 switch (priv
->trigger
) {
1168 case PCH_UART_HAL_TRIGGER1
:
1171 case PCH_UART_HAL_TRIGGER_L
:
1172 trigger_level
= priv
->fifo_size
/ 4;
1174 case PCH_UART_HAL_TRIGGER_M
:
1175 trigger_level
= priv
->fifo_size
/ 2;
1177 case PCH_UART_HAL_TRIGGER_H
:
1179 trigger_level
= priv
->fifo_size
- (priv
->fifo_size
/ 8);
1183 priv
->trigger_level
= trigger_level
;
1184 ret
= pch_uart_hal_set_fifo(priv
, PCH_UART_HAL_DMA_MODE0
,
1185 fifo_size
, priv
->trigger
);
1189 ret
= request_irq(priv
->port
.irq
, pch_uart_interrupt
, IRQF_SHARED
,
1190 KBUILD_MODNAME
, priv
);
1195 pch_request_dma(port
);
1198 pch_uart_hal_enable_interrupt(priv
, PCH_UART_HAL_RX_INT
);
1199 uart_update_timeout(port
, CS8
, default_baud
);
1204 static void pch_uart_shutdown(struct uart_port
*port
)
1206 struct eg20t_port
*priv
;
1209 priv
= container_of(port
, struct eg20t_port
, port
);
1210 pch_uart_hal_disable_interrupt(priv
, PCH_UART_HAL_ALL_INT
);
1211 pch_uart_hal_fifo_reset(priv
, PCH_UART_HAL_CLR_ALL_FIFO
);
1212 ret
= pch_uart_hal_set_fifo(priv
, PCH_UART_HAL_DMA_MODE0
,
1213 PCH_UART_HAL_FIFO_DIS
, PCH_UART_HAL_TRIGGER1
);
1215 dev_err(priv
->port
.dev
,
1216 "pch_uart_hal_set_fifo Failed(ret=%d)\n", ret
);
1218 if (priv
->use_dma_flag
)
1221 free_irq(priv
->port
.irq
, priv
);
1224 /* Change the port parameters, including word length, parity, stop
1225 *bits. Update read_status_mask and ignore_status_mask to indicate
1226 *the types of events we are interested in receiving. */
1227 static void pch_uart_set_termios(struct uart_port
*port
,
1228 struct ktermios
*termios
, struct ktermios
*old
)
1232 unsigned int parity
, bits
, stb
;
1233 struct eg20t_port
*priv
;
1234 unsigned long flags
;
1236 priv
= container_of(port
, struct eg20t_port
, port
);
1237 switch (termios
->c_cflag
& CSIZE
) {
1239 bits
= PCH_UART_HAL_5BIT
;
1242 bits
= PCH_UART_HAL_6BIT
;
1245 bits
= PCH_UART_HAL_7BIT
;
1248 bits
= PCH_UART_HAL_8BIT
;
1251 if (termios
->c_cflag
& CSTOPB
)
1252 stb
= PCH_UART_HAL_STB2
;
1254 stb
= PCH_UART_HAL_STB1
;
1256 if (termios
->c_cflag
& PARENB
) {
1257 if (!(termios
->c_cflag
& PARODD
))
1258 parity
= PCH_UART_HAL_PARITY_ODD
;
1260 parity
= PCH_UART_HAL_PARITY_EVEN
;
1263 parity
= PCH_UART_HAL_PARITY_NONE
;
1266 /* Only UART0 has auto hardware flow function */
1267 if ((termios
->c_cflag
& CRTSCTS
) && (priv
->fifo_size
== 256))
1268 priv
->mcr
|= UART_MCR_AFE
;
1270 priv
->mcr
&= ~UART_MCR_AFE
;
1272 termios
->c_cflag
&= ~CMSPAR
; /* Mark/Space parity is not supported */
1274 baud
= uart_get_baud_rate(port
, termios
, old
, 0, port
->uartclk
/ 16);
1276 spin_lock_irqsave(&port
->lock
, flags
);
1278 uart_update_timeout(port
, termios
->c_cflag
, baud
);
1279 rtn
= pch_uart_hal_set_line(priv
, baud
, parity
, bits
, stb
);
1283 /* Don't rewrite B0 */
1284 if (tty_termios_baud_rate(termios
))
1285 tty_termios_encode_baud_rate(termios
, baud
, baud
);
1288 spin_unlock_irqrestore(&port
->lock
, flags
);
1291 static const char *pch_uart_type(struct uart_port
*port
)
1293 return KBUILD_MODNAME
;
1296 static void pch_uart_release_port(struct uart_port
*port
)
1298 struct eg20t_port
*priv
;
1300 priv
= container_of(port
, struct eg20t_port
, port
);
1301 pci_iounmap(priv
->pdev
, priv
->membase
);
1302 pci_release_regions(priv
->pdev
);
1305 static int pch_uart_request_port(struct uart_port
*port
)
1307 struct eg20t_port
*priv
;
1309 void __iomem
*membase
;
1311 priv
= container_of(port
, struct eg20t_port
, port
);
1312 ret
= pci_request_regions(priv
->pdev
, KBUILD_MODNAME
);
1316 membase
= pci_iomap(priv
->pdev
, 1, 0);
1318 pci_release_regions(priv
->pdev
);
1321 priv
->membase
= port
->membase
= membase
;
1326 static void pch_uart_config_port(struct uart_port
*port
, int type
)
1328 struct eg20t_port
*priv
;
1330 priv
= container_of(port
, struct eg20t_port
, port
);
1331 if (type
& UART_CONFIG_TYPE
) {
1332 port
->type
= priv
->port_type
;
1333 pch_uart_request_port(port
);
1337 static int pch_uart_verify_port(struct uart_port
*port
,
1338 struct serial_struct
*serinfo
)
1340 struct eg20t_port
*priv
;
1342 priv
= container_of(port
, struct eg20t_port
, port
);
1343 if (serinfo
->flags
& UPF_LOW_LATENCY
) {
1344 dev_info(priv
->port
.dev
,
1345 "PCH UART : Use PIO Mode (without DMA)\n");
1347 serinfo
->flags
&= ~UPF_LOW_LATENCY
;
1349 #ifndef CONFIG_PCH_DMA
1350 dev_err(priv
->port
.dev
, "%s : PCH DMA is not Loaded.\n",
1355 priv
->use_dma_flag
= 1;
1356 dev_info(priv
->port
.dev
, "PCH UART : Use DMA Mode\n");
1362 static struct uart_ops pch_uart_ops
= {
1363 .tx_empty
= pch_uart_tx_empty
,
1364 .set_mctrl
= pch_uart_set_mctrl
,
1365 .get_mctrl
= pch_uart_get_mctrl
,
1366 .stop_tx
= pch_uart_stop_tx
,
1367 .start_tx
= pch_uart_start_tx
,
1368 .stop_rx
= pch_uart_stop_rx
,
1369 .enable_ms
= pch_uart_enable_ms
,
1370 .break_ctl
= pch_uart_break_ctl
,
1371 .startup
= pch_uart_startup
,
1372 .shutdown
= pch_uart_shutdown
,
1373 .set_termios
= pch_uart_set_termios
,
1374 /* .pm = pch_uart_pm, Not supported yet */
1375 /* .set_wake = pch_uart_set_wake, Not supported yet */
1376 .type
= pch_uart_type
,
1377 .release_port
= pch_uart_release_port
,
1378 .request_port
= pch_uart_request_port
,
1379 .config_port
= pch_uart_config_port
,
1380 .verify_port
= pch_uart_verify_port
1383 static struct uart_driver pch_uart_driver
= {
1384 .owner
= THIS_MODULE
,
1385 .driver_name
= KBUILD_MODNAME
,
1386 .dev_name
= PCH_UART_DRIVER_DEVICE
,
1392 static struct eg20t_port
*pch_uart_init_port(struct pci_dev
*pdev
,
1393 const struct pci_device_id
*id
)
1395 struct eg20t_port
*priv
;
1397 unsigned int iobase
;
1398 unsigned int mapbase
;
1399 unsigned char *rxbuf
;
1400 int fifosize
, base_baud
;
1402 struct pch_uart_driver_data
*board
;
1403 const char *board_name
;
1405 board
= &drv_dat
[id
->driver_data
];
1406 port_type
= board
->port_type
;
1408 priv
= kzalloc(sizeof(struct eg20t_port
), GFP_KERNEL
);
1410 goto init_port_alloc_err
;
1412 rxbuf
= (unsigned char *)__get_free_page(GFP_KERNEL
);
1414 goto init_port_free_txbuf
;
1416 base_baud
= 1843200; /* 1.8432MHz */
1418 /* quirk for CM-iTC board */
1419 board_name
= dmi_get_system_info(DMI_BOARD_NAME
);
1420 if (board_name
&& strstr(board_name
, "CM-iTC"))
1421 base_baud
= 192000000; /* 192.0MHz */
1423 switch (port_type
) {
1425 fifosize
= 256; /* EG20T/ML7213: UART0 */
1428 fifosize
= 64; /* EG20T:UART1~3 ML7213: UART1~2*/
1431 dev_err(&pdev
->dev
, "Invalid Port Type(=%d)\n", port_type
);
1432 goto init_port_hal_free
;
1435 pci_enable_msi(pdev
);
1437 iobase
= pci_resource_start(pdev
, 0);
1438 mapbase
= pci_resource_start(pdev
, 1);
1439 priv
->mapbase
= mapbase
;
1440 priv
->iobase
= iobase
;
1443 priv
->rxbuf
.buf
= rxbuf
;
1444 priv
->rxbuf
.size
= PAGE_SIZE
;
1446 priv
->fifo_size
= fifosize
;
1447 priv
->base_baud
= base_baud
;
1448 priv
->port_type
= PORT_MAX_8250
+ port_type
+ 1;
1449 priv
->port
.dev
= &pdev
->dev
;
1450 priv
->port
.iobase
= iobase
;
1451 priv
->port
.membase
= NULL
;
1452 priv
->port
.mapbase
= mapbase
;
1453 priv
->port
.irq
= pdev
->irq
;
1454 priv
->port
.iotype
= UPIO_PORT
;
1455 priv
->port
.ops
= &pch_uart_ops
;
1456 priv
->port
.flags
= UPF_BOOT_AUTOCONF
;
1457 priv
->port
.fifosize
= fifosize
;
1458 priv
->port
.line
= board
->line_no
;
1459 priv
->trigger
= PCH_UART_HAL_TRIGGER_M
;
1461 spin_lock_init(&priv
->port
.lock
);
1463 pci_set_drvdata(pdev
, priv
);
1464 pch_uart_hal_request(pdev
, fifosize
, base_baud
);
1466 ret
= uart_add_one_port(&pch_uart_driver
, &priv
->port
);
1468 goto init_port_hal_free
;
1473 free_page((unsigned long)rxbuf
);
1474 init_port_free_txbuf
:
1476 init_port_alloc_err
:
1481 static void pch_uart_exit_port(struct eg20t_port
*priv
)
1483 uart_remove_one_port(&pch_uart_driver
, &priv
->port
);
1484 pci_set_drvdata(priv
->pdev
, NULL
);
1485 free_page((unsigned long)priv
->rxbuf
.buf
);
1488 static void pch_uart_pci_remove(struct pci_dev
*pdev
)
1490 struct eg20t_port
*priv
;
1492 priv
= (struct eg20t_port
*)pci_get_drvdata(pdev
);
1494 pci_disable_msi(pdev
);
1495 pch_uart_exit_port(priv
);
1496 pci_disable_device(pdev
);
1501 static int pch_uart_pci_suspend(struct pci_dev
*pdev
, pm_message_t state
)
1503 struct eg20t_port
*priv
= pci_get_drvdata(pdev
);
1505 uart_suspend_port(&pch_uart_driver
, &priv
->port
);
1507 pci_save_state(pdev
);
1508 pci_set_power_state(pdev
, pci_choose_state(pdev
, state
));
1512 static int pch_uart_pci_resume(struct pci_dev
*pdev
)
1514 struct eg20t_port
*priv
= pci_get_drvdata(pdev
);
1517 pci_set_power_state(pdev
, PCI_D0
);
1518 pci_restore_state(pdev
);
1520 ret
= pci_enable_device(pdev
);
1523 "%s-pci_enable_device failed(ret=%d) ", __func__
, ret
);
1527 uart_resume_port(&pch_uart_driver
, &priv
->port
);
1532 #define pch_uart_pci_suspend NULL
1533 #define pch_uart_pci_resume NULL
1536 static DEFINE_PCI_DEVICE_TABLE(pch_uart_pci_id
) = {
1537 {PCI_DEVICE(PCI_VENDOR_ID_INTEL
, 0x8811),
1538 .driver_data
= pch_et20t_uart0
},
1539 {PCI_DEVICE(PCI_VENDOR_ID_INTEL
, 0x8812),
1540 .driver_data
= pch_et20t_uart1
},
1541 {PCI_DEVICE(PCI_VENDOR_ID_INTEL
, 0x8813),
1542 .driver_data
= pch_et20t_uart2
},
1543 {PCI_DEVICE(PCI_VENDOR_ID_INTEL
, 0x8814),
1544 .driver_data
= pch_et20t_uart3
},
1545 {PCI_DEVICE(PCI_VENDOR_ID_ROHM
, 0x8027),
1546 .driver_data
= pch_ml7213_uart0
},
1547 {PCI_DEVICE(PCI_VENDOR_ID_ROHM
, 0x8028),
1548 .driver_data
= pch_ml7213_uart1
},
1549 {PCI_DEVICE(PCI_VENDOR_ID_ROHM
, 0x8029),
1550 .driver_data
= pch_ml7213_uart2
},
1551 {PCI_DEVICE(PCI_VENDOR_ID_ROHM
, 0x800C),
1552 .driver_data
= pch_ml7223_uart0
},
1553 {PCI_DEVICE(PCI_VENDOR_ID_ROHM
, 0x800D),
1554 .driver_data
= pch_ml7223_uart1
},
1558 static int __devinit
pch_uart_pci_probe(struct pci_dev
*pdev
,
1559 const struct pci_device_id
*id
)
1562 struct eg20t_port
*priv
;
1564 ret
= pci_enable_device(pdev
);
1568 priv
= pch_uart_init_port(pdev
, id
);
1571 goto probe_disable_device
;
1573 pci_set_drvdata(pdev
, priv
);
1577 probe_disable_device
:
1578 pci_disable_msi(pdev
);
1579 pci_disable_device(pdev
);
1584 static struct pci_driver pch_uart_pci_driver
= {
1586 .id_table
= pch_uart_pci_id
,
1587 .probe
= pch_uart_pci_probe
,
1588 .remove
= __devexit_p(pch_uart_pci_remove
),
1589 .suspend
= pch_uart_pci_suspend
,
1590 .resume
= pch_uart_pci_resume
,
1593 static int __init
pch_uart_module_init(void)
1597 /* register as UART driver */
1598 ret
= uart_register_driver(&pch_uart_driver
);
1602 /* register as PCI driver */
1603 ret
= pci_register_driver(&pch_uart_pci_driver
);
1605 uart_unregister_driver(&pch_uart_driver
);
1609 module_init(pch_uart_module_init
);
1611 static void __exit
pch_uart_module_exit(void)
1613 pci_unregister_driver(&pch_uart_pci_driver
);
1614 uart_unregister_driver(&pch_uart_driver
);
1616 module_exit(pch_uart_module_exit
);
1618 MODULE_LICENSE("GPL v2");
1619 MODULE_DESCRIPTION("Intel EG20T PCH UART PCI Driver");
1620 module_param(default_baud
, uint
, S_IRUGO
);