OMAP: UART: don't resume UARTs that are not enabled.
[linux-2.6-block.git] / arch / arm / mach-omap2 / serial.c
CommitLineData
1dbae815 1/*
f30c2269 2 * arch/arm/mach-omap2/serial.c
1dbae815
TL
3 *
4 * OMAP2 serial support.
5 *
6e81176d 6 * Copyright (C) 2005-2008 Nokia Corporation
1dbae815
TL
7 * Author: Paul Mundt <paul.mundt@nokia.com>
8 *
4af4016c
KH
9 * Major rework for PM support by Kevin Hilman
10 *
1dbae815
TL
11 * Based off of arch/arm/mach-omap/omap1/serial.c
12 *
44169075
SS
13 * Copyright (C) 2009 Texas Instruments
14 * Added OMAP4 support - Santosh Shilimkar <santosh.shilimkar@ti.com
15 *
1dbae815
TL
16 * This file is subject to the terms and conditions of the GNU General Public
17 * License. See the file "COPYING" in the main directory of this archive
18 * for more details.
19 */
20#include <linux/kernel.h>
21#include <linux/init.h>
1dbae815 22#include <linux/serial_reg.h>
f8ce2547 23#include <linux/clk.h>
fced80c7 24#include <linux/io.h>
e03d37d8 25#include <linux/delay.h>
6f251e9d
KH
26#include <linux/platform_device.h>
27#include <linux/slab.h>
28#include <linux/serial_8250.h>
3244fcd2 29#include <linux/pm_runtime.h>
6f251e9d
KH
30
31#ifdef CONFIG_SERIAL_OMAP
32#include <plat/omap-serial.h>
33#endif
1dbae815 34
ce491cf8
TL
35#include <plat/common.h>
36#include <plat/board.h>
37#include <plat/clock.h>
6f251e9d
KH
38#include <plat/dma.h>
39#include <plat/omap_hwmod.h>
40#include <plat/omap_device.h>
4af4016c
KH
41
42#include "prm.h"
43#include "pm.h"
6f251e9d 44#include "cm.h"
4af4016c 45#include "prm-regbits-34xx.h"
4814ced5 46#include "control.h"
4af4016c 47
ce13d471 48#define UART_OMAP_NO_EMPTY_FIFO_READ_IP_REV 0x52
4af4016c
KH
49#define UART_OMAP_WER 0x17 /* Wake-up enable register */
50
5a927b36 51#define UART_ERRATA_FIFO_FULL_ABORT (0x1 << 0)
00034509 52#define UART_ERRATA_i202_MDR1_ACCESS (0x1 << 1)
5a927b36 53
301fe8ee
TL
54/*
55 * NOTE: By default the serial timeout is disabled as it causes lost characters
56 * over the serial ports. This means that the UART clocks will stay on until
57 * disabled via sysfs. This also causes that any deeper omap sleep states are
58 * blocked.
59 */
60#define DEFAULT_TIMEOUT 0
4af4016c 61
6f251e9d
KH
62#define MAX_UART_HWMOD_NAME_LEN 16
63
4af4016c
KH
64struct omap_uart_state {
65 int num;
66 int can_sleep;
67 struct timer_list timer;
68 u32 timeout;
69
70 void __iomem *wk_st;
71 void __iomem *wk_en;
72 u32 wk_mask;
73 u32 padconf;
6f251e9d 74 u32 dma_enabled;
4af4016c
KH
75
76 struct clk *ick;
77 struct clk *fck;
78 int clocked;
79
6f251e9d
KH
80 int irq;
81 int regshift;
82 int irqflags;
83 void __iomem *membase;
84 resource_size_t mapbase;
85
4af4016c 86 struct list_head node;
6f251e9d
KH
87 struct omap_hwmod *oh;
88 struct platform_device *pdev;
1dbae815 89
5a927b36 90 u32 errata;
4af4016c
KH
91#if defined(CONFIG_ARCH_OMAP3) && defined(CONFIG_PM)
92 int context_valid;
93
94 /* Registers to be saved/restored for OFF-mode */
95 u16 dll;
96 u16 dlh;
97 u16 ier;
98 u16 sysc;
99 u16 scr;
100 u16 wer;
5ade4ff5 101 u16 mcr;
4af4016c
KH
102#endif
103};
104
4af4016c 105static LIST_HEAD(uart_list);
6f251e9d 106static u8 num_uarts;
1dbae815 107
8da37d9d
KH
108/*
109 * Since these idle/enable hooks are used in the idle path itself
110 * which has interrupts disabled, use the non-locking versions of
111 * the hwmod enable/disable functions.
112 */
113static int uart_idle_hwmod(struct omap_device *od)
114{
115 _omap_hwmod_idle(od->hwmods[0]);
116
117 return 0;
118}
119
120static int uart_enable_hwmod(struct omap_device *od)
121{
122 _omap_hwmod_enable(od->hwmods[0]);
123
124 return 0;
125}
126
6f251e9d
KH
127static struct omap_device_pm_latency omap_uart_latency[] = {
128 {
8da37d9d
KH
129 .deactivate_func = uart_idle_hwmod,
130 .activate_func = uart_enable_hwmod,
6f251e9d
KH
131 .flags = OMAP_DEVICE_LATENCY_AUTO_ADJUST,
132 },
133};
134
9230372a 135static inline unsigned int __serial_read_reg(struct uart_port *up,
6f251e9d 136 int offset)
9230372a
AS
137{
138 offset <<= up->regshift;
139 return (unsigned int)__raw_readb(up->membase + offset);
140}
141
6f251e9d 142static inline unsigned int serial_read_reg(struct omap_uart_state *uart,
1dbae815
TL
143 int offset)
144{
6f251e9d
KH
145 offset <<= uart->regshift;
146 return (unsigned int)__raw_readb(uart->membase + offset);
1dbae815
TL
147}
148
e03d37d8
SS
149static inline void __serial_write_reg(struct uart_port *up, int offset,
150 int value)
151{
152 offset <<= up->regshift;
153 __raw_writeb(value, up->membase + offset);
154}
155
6f251e9d 156static inline void serial_write_reg(struct omap_uart_state *uart, int offset,
1dbae815
TL
157 int value)
158{
6f251e9d
KH
159 offset <<= uart->regshift;
160 __raw_writeb(value, uart->membase + offset);
1dbae815
TL
161}
162
163/*
164 * Internal UARTs need to be initialized for the 8250 autoconfig to work
165 * properly. Note that the TX watermark initialization may not be needed
166 * once the 8250.c watermark handling code is merged.
167 */
6f251e9d 168
4af4016c 169static inline void __init omap_uart_reset(struct omap_uart_state *uart)
1dbae815 170{
6f251e9d
KH
171 serial_write_reg(uart, UART_OMAP_MDR1, 0x07);
172 serial_write_reg(uart, UART_OMAP_SCR, 0x08);
173 serial_write_reg(uart, UART_OMAP_MDR1, 0x00);
1dbae815
TL
174}
175
4af4016c
KH
176#if defined(CONFIG_PM) && defined(CONFIG_ARCH_OMAP3)
177
00034509
D
178/*
179 * Work Around for Errata i202 (3430 - 1.12, 3630 - 1.6)
180 * The access to uart register after MDR1 Access
181 * causes UART to corrupt data.
182 *
183 * Need a delay =
184 * 5 L4 clock cycles + 5 UART functional clock cycle (@48MHz = ~0.2uS)
185 * give 10 times as much
186 */
187static void omap_uart_mdr1_errataset(struct omap_uart_state *uart, u8 mdr1_val,
188 u8 fcr_val)
189{
00034509
D
190 u8 timeout = 255;
191
6f251e9d 192 serial_write_reg(uart, UART_OMAP_MDR1, mdr1_val);
00034509 193 udelay(2);
6f251e9d 194 serial_write_reg(uart, UART_FCR, fcr_val | UART_FCR_CLEAR_XMIT |
00034509
D
195 UART_FCR_CLEAR_RCVR);
196 /*
197 * Wait for FIFO to empty: when empty, RX_FIFO_E bit is 0 and
198 * TX_FIFO_E bit is 1.
199 */
6f251e9d 200 while (UART_LSR_THRE != (serial_read_reg(uart, UART_LSR) &
00034509
D
201 (UART_LSR_THRE | UART_LSR_DR))) {
202 timeout--;
203 if (!timeout) {
204 /* Should *never* happen. we warn and carry on */
6f251e9d
KH
205 dev_crit(&uart->pdev->dev, "Errata i202: timedout %x\n",
206 serial_read_reg(uart, UART_LSR));
00034509
D
207 break;
208 }
209 udelay(1);
210 }
211}
212
4af4016c 213static void omap_uart_save_context(struct omap_uart_state *uart)
6e81176d 214{
4af4016c 215 u16 lcr = 0;
4af4016c
KH
216
217 if (!enable_off_mode)
218 return;
219
6f251e9d
KH
220 lcr = serial_read_reg(uart, UART_LCR);
221 serial_write_reg(uart, UART_LCR, 0xBF);
222 uart->dll = serial_read_reg(uart, UART_DLL);
223 uart->dlh = serial_read_reg(uart, UART_DLM);
224 serial_write_reg(uart, UART_LCR, lcr);
225 uart->ier = serial_read_reg(uart, UART_IER);
226 uart->sysc = serial_read_reg(uart, UART_OMAP_SYSC);
227 uart->scr = serial_read_reg(uart, UART_OMAP_SCR);
228 uart->wer = serial_read_reg(uart, UART_OMAP_WER);
229 serial_write_reg(uart, UART_LCR, 0x80);
230 uart->mcr = serial_read_reg(uart, UART_MCR);
231 serial_write_reg(uart, UART_LCR, lcr);
4af4016c
KH
232
233 uart->context_valid = 1;
234}
235
236static void omap_uart_restore_context(struct omap_uart_state *uart)
237{
238 u16 efr = 0;
4af4016c
KH
239
240 if (!enable_off_mode)
241 return;
242
243 if (!uart->context_valid)
244 return;
245
246 uart->context_valid = 0;
247
00034509
D
248 if (uart->errata & UART_ERRATA_i202_MDR1_ACCESS)
249 omap_uart_mdr1_errataset(uart, 0x07, 0xA0);
250 else
6f251e9d
KH
251 serial_write_reg(uart, UART_OMAP_MDR1, 0x7);
252 serial_write_reg(uart, UART_LCR, 0xBF); /* Config B mode */
253 efr = serial_read_reg(uart, UART_EFR);
254 serial_write_reg(uart, UART_EFR, UART_EFR_ECB);
255 serial_write_reg(uart, UART_LCR, 0x0); /* Operational mode */
256 serial_write_reg(uart, UART_IER, 0x0);
257 serial_write_reg(uart, UART_LCR, 0xBF); /* Config B mode */
258 serial_write_reg(uart, UART_DLL, uart->dll);
259 serial_write_reg(uart, UART_DLM, uart->dlh);
260 serial_write_reg(uart, UART_LCR, 0x0); /* Operational mode */
261 serial_write_reg(uart, UART_IER, uart->ier);
262 serial_write_reg(uart, UART_LCR, 0x80);
263 serial_write_reg(uart, UART_MCR, uart->mcr);
264 serial_write_reg(uart, UART_LCR, 0xBF); /* Config B mode */
265 serial_write_reg(uart, UART_EFR, efr);
266 serial_write_reg(uart, UART_LCR, UART_LCR_WLEN8);
267 serial_write_reg(uart, UART_OMAP_SCR, uart->scr);
268 serial_write_reg(uart, UART_OMAP_WER, uart->wer);
269 serial_write_reg(uart, UART_OMAP_SYSC, uart->sysc);
00034509
D
270 if (uart->errata & UART_ERRATA_i202_MDR1_ACCESS)
271 omap_uart_mdr1_errataset(uart, 0x00, 0xA1);
272 else
6f251e9d
KH
273 /* UART 16x mode */
274 serial_write_reg(uart, UART_OMAP_MDR1, 0x00);
4af4016c
KH
275}
276#else
277static inline void omap_uart_save_context(struct omap_uart_state *uart) {}
278static inline void omap_uart_restore_context(struct omap_uart_state *uart) {}
279#endif /* CONFIG_PM && CONFIG_ARCH_OMAP3 */
280
281static inline void omap_uart_enable_clocks(struct omap_uart_state *uart)
282{
283 if (uart->clocked)
284 return;
285
6f251e9d 286 omap_device_enable(uart->pdev);
4af4016c
KH
287 uart->clocked = 1;
288 omap_uart_restore_context(uart);
289}
290
291#ifdef CONFIG_PM
292
293static inline void omap_uart_disable_clocks(struct omap_uart_state *uart)
294{
295 if (!uart->clocked)
296 return;
297
298 omap_uart_save_context(uart);
299 uart->clocked = 0;
6f251e9d 300 omap_device_idle(uart->pdev);
4af4016c
KH
301}
302
fd455ea8
KH
303static void omap_uart_enable_wakeup(struct omap_uart_state *uart)
304{
305 /* Set wake-enable bit */
306 if (uart->wk_en && uart->wk_mask) {
307 u32 v = __raw_readl(uart->wk_en);
308 v |= uart->wk_mask;
309 __raw_writel(v, uart->wk_en);
310 }
311
312 /* Ensure IOPAD wake-enables are set */
313 if (cpu_is_omap34xx() && uart->padconf) {
314 u16 v = omap_ctrl_readw(uart->padconf);
315 v |= OMAP3_PADCONF_WAKEUPENABLE0;
316 omap_ctrl_writew(v, uart->padconf);
317 }
318}
319
320static void omap_uart_disable_wakeup(struct omap_uart_state *uart)
321{
322 /* Clear wake-enable bit */
323 if (uart->wk_en && uart->wk_mask) {
324 u32 v = __raw_readl(uart->wk_en);
325 v &= ~uart->wk_mask;
326 __raw_writel(v, uart->wk_en);
327 }
328
329 /* Ensure IOPAD wake-enables are cleared */
330 if (cpu_is_omap34xx() && uart->padconf) {
331 u16 v = omap_ctrl_readw(uart->padconf);
332 v &= ~OMAP3_PADCONF_WAKEUPENABLE0;
333 omap_ctrl_writew(v, uart->padconf);
334 }
335}
336
4af4016c 337static void omap_uart_smart_idle_enable(struct omap_uart_state *uart,
6f251e9d 338 int enable)
4af4016c 339{
6f251e9d 340 u8 idlemode;
4af4016c 341
6f251e9d
KH
342 if (enable) {
343 /**
344 * Errata 2.15: [UART]:Cannot Acknowledge Idle Requests
345 * in Smartidle Mode When Configured for DMA Operations.
346 */
347 if (uart->dma_enabled)
348 idlemode = HWMOD_IDLEMODE_FORCE;
349 else
350 idlemode = HWMOD_IDLEMODE_SMART;
351 } else {
352 idlemode = HWMOD_IDLEMODE_NO;
353 }
4af4016c 354
6f251e9d 355 omap_hwmod_set_slave_idlemode(uart->oh, idlemode);
4af4016c
KH
356}
357
358static void omap_uart_block_sleep(struct omap_uart_state *uart)
359{
360 omap_uart_enable_clocks(uart);
361
362 omap_uart_smart_idle_enable(uart, 0);
363 uart->can_sleep = 0;
ba87a9be
JH
364 if (uart->timeout)
365 mod_timer(&uart->timer, jiffies + uart->timeout);
366 else
367 del_timer(&uart->timer);
4af4016c
KH
368}
369
370static void omap_uart_allow_sleep(struct omap_uart_state *uart)
371{
6f251e9d 372 if (device_may_wakeup(&uart->pdev->dev))
fd455ea8
KH
373 omap_uart_enable_wakeup(uart);
374 else
375 omap_uart_disable_wakeup(uart);
376
4af4016c
KH
377 if (!uart->clocked)
378 return;
379
380 omap_uart_smart_idle_enable(uart, 1);
381 uart->can_sleep = 1;
382 del_timer(&uart->timer);
383}
384
385static void omap_uart_idle_timer(unsigned long data)
386{
387 struct omap_uart_state *uart = (struct omap_uart_state *)data;
388
389 omap_uart_allow_sleep(uart);
390}
391
392void omap_uart_prepare_idle(int num)
393{
394 struct omap_uart_state *uart;
395
396 list_for_each_entry(uart, &uart_list, node) {
397 if (num == uart->num && uart->can_sleep) {
398 omap_uart_disable_clocks(uart);
399 return;
400 }
401 }
402}
403
404void omap_uart_resume_idle(int num)
405{
406 struct omap_uart_state *uart;
407
408 list_for_each_entry(uart, &uart_list, node) {
f910043c 409 if (num == uart->num && uart->can_sleep) {
4af4016c
KH
410 omap_uart_enable_clocks(uart);
411
412 /* Check for IO pad wakeup */
413 if (cpu_is_omap34xx() && uart->padconf) {
414 u16 p = omap_ctrl_readw(uart->padconf);
415
416 if (p & OMAP3_PADCONF_WAKEUPEVENT0)
417 omap_uart_block_sleep(uart);
6e81176d 418 }
4af4016c
KH
419
420 /* Check for normal UART wakeup */
421 if (__raw_readl(uart->wk_st) & uart->wk_mask)
422 omap_uart_block_sleep(uart);
4af4016c
KH
423 return;
424 }
425 }
426}
427
428void omap_uart_prepare_suspend(void)
429{
430 struct omap_uart_state *uart;
431
432 list_for_each_entry(uart, &uart_list, node) {
433 omap_uart_allow_sleep(uart);
434 }
435}
436
437int omap_uart_can_sleep(void)
438{
439 struct omap_uart_state *uart;
440 int can_sleep = 1;
441
442 list_for_each_entry(uart, &uart_list, node) {
443 if (!uart->clocked)
444 continue;
445
446 if (!uart->can_sleep) {
447 can_sleep = 0;
448 continue;
6e81176d 449 }
4af4016c
KH
450
451 /* This UART can now safely sleep. */
452 omap_uart_allow_sleep(uart);
6e81176d 453 }
4af4016c
KH
454
455 return can_sleep;
6e81176d
JH
456}
457
4af4016c
KH
458/**
459 * omap_uart_interrupt()
460 *
461 * This handler is used only to detect that *any* UART interrupt has
462 * occurred. It does _nothing_ to handle the interrupt. Rather,
463 * any UART interrupt will trigger the inactivity timer so the
464 * UART will not idle or sleep for its timeout period.
465 *
466 **/
6f251e9d 467/* static int first_interrupt; */
4af4016c
KH
468static irqreturn_t omap_uart_interrupt(int irq, void *dev_id)
469{
470 struct omap_uart_state *uart = dev_id;
471
472 omap_uart_block_sleep(uart);
473
474 return IRQ_NONE;
475}
476
477static void omap_uart_idle_init(struct omap_uart_state *uart)
478{
4af4016c
KH
479 int ret;
480
481 uart->can_sleep = 0;
fd455ea8 482 uart->timeout = DEFAULT_TIMEOUT;
4af4016c
KH
483 setup_timer(&uart->timer, omap_uart_idle_timer,
484 (unsigned long) uart);
301fe8ee
TL
485 if (uart->timeout)
486 mod_timer(&uart->timer, jiffies + uart->timeout);
4af4016c
KH
487 omap_uart_smart_idle_enable(uart, 0);
488
489 if (cpu_is_omap34xx()) {
52663aea 490 u32 mod = (uart->num > 1) ? OMAP3430_PER_MOD : CORE_MOD;
4af4016c
KH
491 u32 wk_mask = 0;
492 u32 padconf = 0;
493
494 uart->wk_en = OMAP34XX_PRM_REGADDR(mod, PM_WKEN1);
495 uart->wk_st = OMAP34XX_PRM_REGADDR(mod, PM_WKST1);
496 switch (uart->num) {
497 case 0:
498 wk_mask = OMAP3430_ST_UART1_MASK;
499 padconf = 0x182;
500 break;
501 case 1:
502 wk_mask = OMAP3430_ST_UART2_MASK;
503 padconf = 0x17a;
504 break;
505 case 2:
506 wk_mask = OMAP3430_ST_UART3_MASK;
507 padconf = 0x19e;
508 break;
52663aea
G
509 case 3:
510 wk_mask = OMAP3630_ST_UART4_MASK;
511 padconf = 0x0d2;
512 break;
4af4016c
KH
513 }
514 uart->wk_mask = wk_mask;
515 uart->padconf = padconf;
516 } else if (cpu_is_omap24xx()) {
517 u32 wk_mask = 0;
cb74f022 518 u32 wk_en = PM_WKEN1, wk_st = PM_WKST1;
4af4016c 519
4af4016c
KH
520 switch (uart->num) {
521 case 0:
522 wk_mask = OMAP24XX_ST_UART1_MASK;
523 break;
524 case 1:
525 wk_mask = OMAP24XX_ST_UART2_MASK;
526 break;
527 case 2:
cb74f022
KH
528 wk_en = OMAP24XX_PM_WKEN2;
529 wk_st = OMAP24XX_PM_WKST2;
4af4016c
KH
530 wk_mask = OMAP24XX_ST_UART3_MASK;
531 break;
532 }
533 uart->wk_mask = wk_mask;
cb74f022
KH
534 if (cpu_is_omap2430()) {
535 uart->wk_en = OMAP2430_PRM_REGADDR(CORE_MOD, wk_en);
536 uart->wk_st = OMAP2430_PRM_REGADDR(CORE_MOD, wk_st);
537 } else if (cpu_is_omap2420()) {
538 uart->wk_en = OMAP2420_PRM_REGADDR(CORE_MOD, wk_en);
539 uart->wk_st = OMAP2420_PRM_REGADDR(CORE_MOD, wk_st);
540 }
4af4016c 541 } else {
c54bae1f
NM
542 uart->wk_en = NULL;
543 uart->wk_st = NULL;
4af4016c
KH
544 uart->wk_mask = 0;
545 uart->padconf = 0;
546 }
547
6f251e9d
KH
548 uart->irqflags |= IRQF_SHARED;
549 ret = request_threaded_irq(uart->irq, NULL, omap_uart_interrupt,
550 IRQF_SHARED, "serial idle", (void *)uart);
4af4016c
KH
551 WARN_ON(ret);
552}
553
2466211e
TK
554void omap_uart_enable_irqs(int enable)
555{
556 int ret;
557 struct omap_uart_state *uart;
558
559 list_for_each_entry(uart, &uart_list, node) {
3244fcd2
KH
560 if (enable) {
561 pm_runtime_put_sync(&uart->pdev->dev);
6f251e9d
KH
562 ret = request_threaded_irq(uart->irq, NULL,
563 omap_uart_interrupt,
564 IRQF_SHARED,
565 "serial idle",
566 (void *)uart);
3244fcd2
KH
567 } else {
568 pm_runtime_get_noresume(&uart->pdev->dev);
6f251e9d 569 free_irq(uart->irq, (void *)uart);
3244fcd2 570 }
2466211e
TK
571 }
572}
573
fd455ea8
KH
574static ssize_t sleep_timeout_show(struct device *dev,
575 struct device_attribute *attr,
ba87a9be
JH
576 char *buf)
577{
6f251e9d
KH
578 struct platform_device *pdev = to_platform_device(dev);
579 struct omap_device *odev = to_omap_device(pdev);
580 struct omap_uart_state *uart = odev->hwmods[0]->dev_attr;
fd455ea8
KH
581
582 return sprintf(buf, "%u\n", uart->timeout / HZ);
ba87a9be
JH
583}
584
fd455ea8
KH
585static ssize_t sleep_timeout_store(struct device *dev,
586 struct device_attribute *attr,
ba87a9be
JH
587 const char *buf, size_t n)
588{
6f251e9d
KH
589 struct platform_device *pdev = to_platform_device(dev);
590 struct omap_device *odev = to_omap_device(pdev);
591 struct omap_uart_state *uart = odev->hwmods[0]->dev_attr;
ba87a9be
JH
592 unsigned int value;
593
594 if (sscanf(buf, "%u", &value) != 1) {
10c805eb 595 dev_err(dev, "sleep_timeout_store: Invalid value\n");
ba87a9be
JH
596 return -EINVAL;
597 }
fd455ea8
KH
598
599 uart->timeout = value * HZ;
600 if (uart->timeout)
601 mod_timer(&uart->timer, jiffies + uart->timeout);
602 else
603 /* A zero value means disable timeout feature */
604 omap_uart_block_sleep(uart);
605
ba87a9be
JH
606 return n;
607}
608
bfe6977a
NM
609static DEVICE_ATTR(sleep_timeout, 0644, sleep_timeout_show,
610 sleep_timeout_store);
fd455ea8 611#define DEV_CREATE_FILE(dev, attr) WARN_ON(device_create_file(dev, attr))
4af4016c
KH
612#else
613static inline void omap_uart_idle_init(struct omap_uart_state *uart) {}
a1b04cc1
SS
614static void omap_uart_block_sleep(struct omap_uart_state *uart)
615{
616 /* Needed to enable UART clocks when built without CONFIG_PM */
617 omap_uart_enable_clocks(uart);
618}
fd455ea8 619#define DEV_CREATE_FILE(dev, attr)
4af4016c
KH
620#endif /* CONFIG_PM */
621
6f251e9d 622#ifndef CONFIG_SERIAL_OMAP
ce13d471 623/*
624 * Override the default 8250 read handler: mem_serial_in()
625 * Empty RX fifo read causes an abort on omap3630 and omap4
626 * This function makes sure that an empty rx fifo is not read on these silicons
627 * (OMAP1/2/3430 are not affected)
628 */
629static unsigned int serial_in_override(struct uart_port *up, int offset)
630{
631 if (UART_RX == offset) {
632 unsigned int lsr;
9230372a 633 lsr = __serial_read_reg(up, UART_LSR);
ce13d471 634 if (!(lsr & UART_LSR_DR))
635 return -EPERM;
636 }
9230372a
AS
637
638 return __serial_read_reg(up, offset);
ce13d471 639}
640
e03d37d8
SS
641static void serial_out_override(struct uart_port *up, int offset, int value)
642{
643 unsigned int status, tmout = 10000;
644
645 status = __serial_read_reg(up, UART_LSR);
646 while (!(status & UART_LSR_THRE)) {
647 /* Wait up to 10ms for the character(s) to be sent. */
648 if (--tmout == 0)
649 break;
650 udelay(1);
651 status = __serial_read_reg(up, UART_LSR);
652 }
653 __serial_write_reg(up, offset, value);
654}
6f251e9d
KH
655#endif
656
b3c6df3a 657void __init omap_serial_early_init(void)
1dbae815 658{
6f251e9d 659 int i = 0;
1dbae815 660
6f251e9d
KH
661 do {
662 char oh_name[MAX_UART_HWMOD_NAME_LEN];
663 struct omap_hwmod *oh;
664 struct omap_uart_state *uart;
21b90340 665
6f251e9d
KH
666 snprintf(oh_name, MAX_UART_HWMOD_NAME_LEN,
667 "uart%d", i + 1);
668 oh = omap_hwmod_lookup(oh_name);
669 if (!oh)
670 break;
671
672 uart = kzalloc(sizeof(struct omap_uart_state), GFP_KERNEL);
673 if (WARN_ON(!uart))
674 return;
1dbae815 675
6f251e9d
KH
676 uart->oh = oh;
677 uart->num = i++;
678 list_add_tail(&uart->node, &uart_list);
679 num_uarts++;
1dbae815 680
84f90c9c 681 /*
6f251e9d
KH
682 * NOTE: omap_hwmod_init() has not yet been called,
683 * so no hwmod functions will work yet.
84f90c9c 684 */
6e81176d 685
6f251e9d
KH
686 /*
687 * During UART early init, device need to be probed
688 * to determine SoC specific init before omap_device
689 * is ready. Therefore, don't allow idle here
690 */
691 uart->oh->flags |= HWMOD_INIT_NO_IDLE | HWMOD_INIT_NO_RESET;
692 } while (1);
b3c6df3a
PW
693}
694
f62349ee
MW
695/**
696 * omap_serial_init_port() - initialize single serial port
697 * @port: serial port number (0-3)
698 *
699 * This function initialies serial driver for given @port only.
700 * Platforms can call this function instead of omap_serial_init()
701 * if they don't plan to use all available UARTs as serial ports.
702 *
703 * Don't mix calls to omap_serial_init_port() and omap_serial_init(),
704 * use only one of the two.
705 */
706void __init omap_serial_init_port(int port)
b3c6df3a 707{
f62349ee 708 struct omap_uart_state *uart;
6f251e9d
KH
709 struct omap_hwmod *oh;
710 struct omap_device *od;
711 void *pdata = NULL;
712 u32 pdata_size = 0;
713 char *name;
714#ifndef CONFIG_SERIAL_OMAP
715 struct plat_serial8250_port ports[2] = {
716 {},
717 {.flags = 0},
718 };
719 struct plat_serial8250_port *p = &ports[0];
720#else
721 struct omap_uart_port_info omap_up;
722#endif
970a724d 723
6f251e9d
KH
724 if (WARN_ON(port < 0))
725 return;
726 if (WARN_ON(port >= num_uarts))
e88d556d 727 return;
f62349ee 728
6f251e9d
KH
729 list_for_each_entry(uart, &uart_list, node)
730 if (port == uart->num)
731 break;
f2eeeae0 732
6f251e9d
KH
733 oh = uart->oh;
734 uart->dma_enabled = 0;
735#ifndef CONFIG_SERIAL_OMAP
736 name = "serial8250";
f62349ee 737
6f251e9d
KH
738 /*
739 * !! 8250 driver does not use standard IORESOURCE* It
740 * has it's own custom pdata that can be taken from
741 * the hwmod resource data. But, this needs to be
742 * done after the build.
743 *
744 * ?? does it have to be done before the register ??
745 * YES, because platform_device_data_add() copies
746 * pdata, it does not use a pointer.
747 */
748 p->flags = UPF_BOOT_AUTOCONF;
749 p->iotype = UPIO_MEM;
750 p->regshift = 2;
751 p->uartclk = OMAP24XX_BASE_BAUD * 16;
752 p->irq = oh->mpu_irqs[0].irq;
753 p->mapbase = oh->slaves[0]->addr->pa_start;
754 p->membase = omap_hwmod_get_mpu_rt_va(oh);
755 p->irqflags = IRQF_SHARED;
756 p->private_data = uart;
f62349ee 757
30e53bcc 758 /*
759 * omap44xx: Never read empty UART fifo
760 * omap3xxx: Never read empty UART fifo on UARTs
761 * with IP rev >=0x52
762 */
6f251e9d
KH
763 uart->regshift = p->regshift;
764 uart->membase = p->membase;
5a927b36
NM
765 if (cpu_is_omap44xx())
766 uart->errata |= UART_ERRATA_FIFO_FULL_ABORT;
6f251e9d 767 else if ((serial_read_reg(uart, UART_OMAP_MVER) & 0xFF)
5a927b36
NM
768 >= UART_OMAP_NO_EMPTY_FIFO_READ_IP_REV)
769 uart->errata |= UART_ERRATA_FIFO_FULL_ABORT;
770
771 if (uart->errata & UART_ERRATA_FIFO_FULL_ABORT) {
6f251e9d
KH
772 p->serial_in = serial_in_override;
773 p->serial_out = serial_out_override;
774 }
775
776 pdata = &ports[0];
777 pdata_size = 2 * sizeof(struct plat_serial8250_port);
778#else
779
780 name = DRIVER_NAME;
781
782 omap_up.dma_enabled = uart->dma_enabled;
783 omap_up.uartclk = OMAP24XX_BASE_BAUD * 16;
784 omap_up.mapbase = oh->slaves[0]->addr->pa_start;
785 omap_up.membase = omap_hwmod_get_mpu_rt_va(oh);
786 omap_up.irqflags = IRQF_SHARED;
787 omap_up.flags = UPF_BOOT_AUTOCONF | UPF_SHARE_IRQ;
788
789 pdata = &omap_up;
790 pdata_size = sizeof(struct omap_uart_port_info);
791#endif
792
793 if (WARN_ON(!oh))
794 return;
795
796 od = omap_device_build(name, uart->num, oh, pdata, pdata_size,
797 omap_uart_latency,
798 ARRAY_SIZE(omap_uart_latency), false);
799 WARN(IS_ERR(od), "Could not build omap_device for %s: %s.\n",
800 name, oh->name);
801
802 uart->irq = oh->mpu_irqs[0].irq;
803 uart->regshift = 2;
804 uart->mapbase = oh->slaves[0]->addr->pa_start;
805 uart->membase = omap_hwmod_get_mpu_rt_va(oh);
806 uart->pdev = &od->pdev;
807
808 oh->dev_attr = uart;
809
810 /*
811 * Because of early UART probing, UART did not get idled
812 * on init. Now that omap_device is ready, ensure full idle
813 * before doing omap_device_enable().
814 */
815 omap_hwmod_idle(uart->oh);
816
817 omap_device_enable(uart->pdev);
818 omap_uart_idle_init(uart);
819 omap_uart_reset(uart);
820 omap_hwmod_enable_wakeup(uart->oh);
821 omap_device_idle(uart->pdev);
822
823 /*
824 * Need to block sleep long enough for interrupt driven
825 * driver to start. Console driver is in polling mode
826 * so device needs to be kept enabled while polling driver
827 * is in use.
828 */
829 if (uart->timeout)
830 uart->timeout = (30 * HZ);
831 omap_uart_block_sleep(uart);
832 uart->timeout = DEFAULT_TIMEOUT;
833
834 if ((cpu_is_omap34xx() && uart->padconf) ||
835 (uart->wk_en && uart->wk_mask)) {
836 device_init_wakeup(&od->pdev.dev, true);
837 DEV_CREATE_FILE(&od->pdev.dev, &dev_attr_sleep_timeout);
e03d37d8 838 }
00034509
D
839
840 /* Enable the MDR1 errata for OMAP3 */
841 if (cpu_is_omap34xx())
842 uart->errata |= UART_ERRATA_i202_MDR1_ACCESS;
f62349ee
MW
843}
844
845/**
846 * omap_serial_init() - intialize all supported serial ports
847 *
848 * Initializes all available UARTs as serial ports. Platforms
849 * can call this function when they want to have default behaviour
850 * for serial ports (e.g initialize them all as serial ports).
851 */
852void __init omap_serial_init(void)
853{
6f251e9d 854 struct omap_uart_state *uart;
f62349ee 855
6f251e9d
KH
856 list_for_each_entry(uart, &uart_list, node)
857 omap_serial_init_port(uart->num);
1dbae815 858}