Merge branch 'core-debugobjects-for-linus' of git://git.kernel.org/pub/scm/linux...
[pandora-kernel.git] / arch / arm / mach-omap2 / serial.c
1 /*
2  * arch/arm/mach-omap2/serial.c
3  *
4  * OMAP2 serial support.
5  *
6  * Copyright (C) 2005-2008 Nokia Corporation
7  * Author: Paul Mundt <paul.mundt@nokia.com>
8  *
9  * Major rework for PM support by Kevin Hilman
10  *
11  * Based off of arch/arm/mach-omap/omap1/serial.c
12  *
13  * Copyright (C) 2009 Texas Instruments
14  * Added OMAP4 support - Santosh Shilimkar <santosh.shilimkar@ti.com
15  *
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>
22 #include <linux/serial_8250.h>
23 #include <linux/serial_reg.h>
24 #include <linux/clk.h>
25 #include <linux/io.h>
26 #include <linux/delay.h>
27
28 #include <plat/common.h>
29 #include <plat/board.h>
30 #include <plat/clock.h>
31 #include <plat/control.h>
32
33 #include "prm.h"
34 #include "pm.h"
35 #include "prm-regbits-34xx.h"
36
37 #define UART_OMAP_NO_EMPTY_FIFO_READ_IP_REV     0x52
38 #define UART_OMAP_WER           0x17    /* Wake-up enable register */
39
40 /*
41  * NOTE: By default the serial timeout is disabled as it causes lost characters
42  * over the serial ports. This means that the UART clocks will stay on until
43  * disabled via sysfs. This also causes that any deeper omap sleep states are
44  * blocked. 
45  */
46 #define DEFAULT_TIMEOUT 0
47
48 struct omap_uart_state {
49         int num;
50         int can_sleep;
51         struct timer_list timer;
52         u32 timeout;
53
54         void __iomem *wk_st;
55         void __iomem *wk_en;
56         u32 wk_mask;
57         u32 padconf;
58
59         struct clk *ick;
60         struct clk *fck;
61         int clocked;
62
63         struct plat_serial8250_port *p;
64         struct list_head node;
65         struct platform_device pdev;
66
67 #if defined(CONFIG_ARCH_OMAP3) && defined(CONFIG_PM)
68         int context_valid;
69
70         /* Registers to be saved/restored for OFF-mode */
71         u16 dll;
72         u16 dlh;
73         u16 ier;
74         u16 sysc;
75         u16 scr;
76         u16 wer;
77 #endif
78 };
79
80 static LIST_HEAD(uart_list);
81
82 static struct plat_serial8250_port serial_platform_data0[] = {
83         {
84                 .irq            = 72,
85                 .flags          = UPF_BOOT_AUTOCONF,
86                 .iotype         = UPIO_MEM,
87                 .regshift       = 2,
88                 .uartclk        = OMAP24XX_BASE_BAUD * 16,
89         }, {
90                 .flags          = 0
91         }
92 };
93
94 static struct plat_serial8250_port serial_platform_data1[] = {
95         {
96                 .irq            = 73,
97                 .flags          = UPF_BOOT_AUTOCONF,
98                 .iotype         = UPIO_MEM,
99                 .regshift       = 2,
100                 .uartclk        = OMAP24XX_BASE_BAUD * 16,
101         }, {
102                 .flags          = 0
103         }
104 };
105
106 static struct plat_serial8250_port serial_platform_data2[] = {
107         {
108                 .irq            = 74,
109                 .flags          = UPF_BOOT_AUTOCONF,
110                 .iotype         = UPIO_MEM,
111                 .regshift       = 2,
112                 .uartclk        = OMAP24XX_BASE_BAUD * 16,
113         }, {
114                 .flags          = 0
115         }
116 };
117
118 static struct plat_serial8250_port serial_platform_data3[] = {
119         {
120                 .irq            = 70,
121                 .flags          = UPF_BOOT_AUTOCONF,
122                 .iotype         = UPIO_MEM,
123                 .regshift       = 2,
124                 .uartclk        = OMAP24XX_BASE_BAUD * 16,
125         }, {
126                 .flags          = 0
127         }
128 };
129
130 void __init omap2_set_globals_uart(struct omap_globals *omap2_globals)
131 {
132         serial_platform_data0[0].mapbase = omap2_globals->uart1_phys;
133         serial_platform_data1[0].mapbase = omap2_globals->uart2_phys;
134         serial_platform_data2[0].mapbase = omap2_globals->uart3_phys;
135         serial_platform_data3[0].mapbase = omap2_globals->uart4_phys;
136 }
137
138 static inline unsigned int __serial_read_reg(struct uart_port *up,
139                                            int offset)
140 {
141         offset <<= up->regshift;
142         return (unsigned int)__raw_readb(up->membase + offset);
143 }
144
145 static inline unsigned int serial_read_reg(struct plat_serial8250_port *up,
146                                            int offset)
147 {
148         offset <<= up->regshift;
149         return (unsigned int)__raw_readb(up->membase + offset);
150 }
151
152 static inline void __serial_write_reg(struct uart_port *up, int offset,
153                 int value)
154 {
155         offset <<= up->regshift;
156         __raw_writeb(value, up->membase + offset);
157 }
158
159 static inline void serial_write_reg(struct plat_serial8250_port *p, int offset,
160                                     int value)
161 {
162         offset <<= p->regshift;
163         __raw_writeb(value, p->membase + offset);
164 }
165
166 /*
167  * Internal UARTs need to be initialized for the 8250 autoconfig to work
168  * properly. Note that the TX watermark initialization may not be needed
169  * once the 8250.c watermark handling code is merged.
170  */
171 static inline void __init omap_uart_reset(struct omap_uart_state *uart)
172 {
173         struct plat_serial8250_port *p = uart->p;
174
175         serial_write_reg(p, UART_OMAP_MDR1, 0x07);
176         serial_write_reg(p, UART_OMAP_SCR, 0x08);
177         serial_write_reg(p, UART_OMAP_MDR1, 0x00);
178         serial_write_reg(p, UART_OMAP_SYSC, (0x02 << 3) | (1 << 2) | (1 << 0));
179 }
180
181 #if defined(CONFIG_PM) && defined(CONFIG_ARCH_OMAP3)
182
183 static void omap_uart_save_context(struct omap_uart_state *uart)
184 {
185         u16 lcr = 0;
186         struct plat_serial8250_port *p = uart->p;
187
188         if (!enable_off_mode)
189                 return;
190
191         lcr = serial_read_reg(p, UART_LCR);
192         serial_write_reg(p, UART_LCR, 0xBF);
193         uart->dll = serial_read_reg(p, UART_DLL);
194         uart->dlh = serial_read_reg(p, UART_DLM);
195         serial_write_reg(p, UART_LCR, lcr);
196         uart->ier = serial_read_reg(p, UART_IER);
197         uart->sysc = serial_read_reg(p, UART_OMAP_SYSC);
198         uart->scr = serial_read_reg(p, UART_OMAP_SCR);
199         uart->wer = serial_read_reg(p, UART_OMAP_WER);
200
201         uart->context_valid = 1;
202 }
203
204 static void omap_uart_restore_context(struct omap_uart_state *uart)
205 {
206         u16 efr = 0;
207         struct plat_serial8250_port *p = uart->p;
208
209         if (!enable_off_mode)
210                 return;
211
212         if (!uart->context_valid)
213                 return;
214
215         uart->context_valid = 0;
216
217         serial_write_reg(p, UART_OMAP_MDR1, 0x7);
218         serial_write_reg(p, UART_LCR, 0xBF); /* Config B mode */
219         efr = serial_read_reg(p, UART_EFR);
220         serial_write_reg(p, UART_EFR, UART_EFR_ECB);
221         serial_write_reg(p, UART_LCR, 0x0); /* Operational mode */
222         serial_write_reg(p, UART_IER, 0x0);
223         serial_write_reg(p, UART_LCR, 0xBF); /* Config B mode */
224         serial_write_reg(p, UART_DLL, uart->dll);
225         serial_write_reg(p, UART_DLM, uart->dlh);
226         serial_write_reg(p, UART_LCR, 0x0); /* Operational mode */
227         serial_write_reg(p, UART_IER, uart->ier);
228         serial_write_reg(p, UART_FCR, 0xA1);
229         serial_write_reg(p, UART_LCR, 0xBF); /* Config B mode */
230         serial_write_reg(p, UART_EFR, efr);
231         serial_write_reg(p, UART_LCR, UART_LCR_WLEN8);
232         serial_write_reg(p, UART_OMAP_SCR, uart->scr);
233         serial_write_reg(p, UART_OMAP_WER, uart->wer);
234         serial_write_reg(p, UART_OMAP_SYSC, uart->sysc);
235         serial_write_reg(p, UART_OMAP_MDR1, 0x00); /* UART 16x mode */
236 }
237 #else
238 static inline void omap_uart_save_context(struct omap_uart_state *uart) {}
239 static inline void omap_uart_restore_context(struct omap_uart_state *uart) {}
240 #endif /* CONFIG_PM && CONFIG_ARCH_OMAP3 */
241
242 static inline void omap_uart_enable_clocks(struct omap_uart_state *uart)
243 {
244         if (uart->clocked)
245                 return;
246
247         clk_enable(uart->ick);
248         clk_enable(uart->fck);
249         uart->clocked = 1;
250         omap_uart_restore_context(uart);
251 }
252
253 #ifdef CONFIG_PM
254
255 static inline void omap_uart_disable_clocks(struct omap_uart_state *uart)
256 {
257         if (!uart->clocked)
258                 return;
259
260         omap_uart_save_context(uart);
261         uart->clocked = 0;
262         clk_disable(uart->ick);
263         clk_disable(uart->fck);
264 }
265
266 static void omap_uart_enable_wakeup(struct omap_uart_state *uart)
267 {
268         /* Set wake-enable bit */
269         if (uart->wk_en && uart->wk_mask) {
270                 u32 v = __raw_readl(uart->wk_en);
271                 v |= uart->wk_mask;
272                 __raw_writel(v, uart->wk_en);
273         }
274
275         /* Ensure IOPAD wake-enables are set */
276         if (cpu_is_omap34xx() && uart->padconf) {
277                 u16 v = omap_ctrl_readw(uart->padconf);
278                 v |= OMAP3_PADCONF_WAKEUPENABLE0;
279                 omap_ctrl_writew(v, uart->padconf);
280         }
281 }
282
283 static void omap_uart_disable_wakeup(struct omap_uart_state *uart)
284 {
285         /* Clear wake-enable bit */
286         if (uart->wk_en && uart->wk_mask) {
287                 u32 v = __raw_readl(uart->wk_en);
288                 v &= ~uart->wk_mask;
289                 __raw_writel(v, uart->wk_en);
290         }
291
292         /* Ensure IOPAD wake-enables are cleared */
293         if (cpu_is_omap34xx() && uart->padconf) {
294                 u16 v = omap_ctrl_readw(uart->padconf);
295                 v &= ~OMAP3_PADCONF_WAKEUPENABLE0;
296                 omap_ctrl_writew(v, uart->padconf);
297         }
298 }
299
300 static void omap_uart_smart_idle_enable(struct omap_uart_state *uart,
301                                           int enable)
302 {
303         struct plat_serial8250_port *p = uart->p;
304         u16 sysc;
305
306         sysc = serial_read_reg(p, UART_OMAP_SYSC) & 0x7;
307         if (enable)
308                 sysc |= 0x2 << 3;
309         else
310                 sysc |= 0x1 << 3;
311
312         serial_write_reg(p, UART_OMAP_SYSC, sysc);
313 }
314
315 static void omap_uart_block_sleep(struct omap_uart_state *uart)
316 {
317         omap_uart_enable_clocks(uart);
318
319         omap_uart_smart_idle_enable(uart, 0);
320         uart->can_sleep = 0;
321         if (uart->timeout)
322                 mod_timer(&uart->timer, jiffies + uart->timeout);
323         else
324                 del_timer(&uart->timer);
325 }
326
327 static void omap_uart_allow_sleep(struct omap_uart_state *uart)
328 {
329         if (device_may_wakeup(&uart->pdev.dev))
330                 omap_uart_enable_wakeup(uart);
331         else
332                 omap_uart_disable_wakeup(uart);
333
334         if (!uart->clocked)
335                 return;
336
337         omap_uart_smart_idle_enable(uart, 1);
338         uart->can_sleep = 1;
339         del_timer(&uart->timer);
340 }
341
342 static void omap_uart_idle_timer(unsigned long data)
343 {
344         struct omap_uart_state *uart = (struct omap_uart_state *)data;
345
346         omap_uart_allow_sleep(uart);
347 }
348
349 void omap_uart_prepare_idle(int num)
350 {
351         struct omap_uart_state *uart;
352
353         list_for_each_entry(uart, &uart_list, node) {
354                 if (num == uart->num && uart->can_sleep) {
355                         omap_uart_disable_clocks(uart);
356                         return;
357                 }
358         }
359 }
360
361 void omap_uart_resume_idle(int num)
362 {
363         struct omap_uart_state *uart;
364
365         list_for_each_entry(uart, &uart_list, node) {
366                 if (num == uart->num) {
367                         omap_uart_enable_clocks(uart);
368
369                         /* Check for IO pad wakeup */
370                         if (cpu_is_omap34xx() && uart->padconf) {
371                                 u16 p = omap_ctrl_readw(uart->padconf);
372
373                                 if (p & OMAP3_PADCONF_WAKEUPEVENT0)
374                                         omap_uart_block_sleep(uart);
375                         }
376
377                         /* Check for normal UART wakeup */
378                         if (__raw_readl(uart->wk_st) & uart->wk_mask)
379                                 omap_uart_block_sleep(uart);
380                         return;
381                 }
382         }
383 }
384
385 void omap_uart_prepare_suspend(void)
386 {
387         struct omap_uart_state *uart;
388
389         list_for_each_entry(uart, &uart_list, node) {
390                 omap_uart_allow_sleep(uart);
391         }
392 }
393
394 int omap_uart_can_sleep(void)
395 {
396         struct omap_uart_state *uart;
397         int can_sleep = 1;
398
399         list_for_each_entry(uart, &uart_list, node) {
400                 if (!uart->clocked)
401                         continue;
402
403                 if (!uart->can_sleep) {
404                         can_sleep = 0;
405                         continue;
406                 }
407
408                 /* This UART can now safely sleep. */
409                 omap_uart_allow_sleep(uart);
410         }
411
412         return can_sleep;
413 }
414
415 /**
416  * omap_uart_interrupt()
417  *
418  * This handler is used only to detect that *any* UART interrupt has
419  * occurred.  It does _nothing_ to handle the interrupt.  Rather,
420  * any UART interrupt will trigger the inactivity timer so the
421  * UART will not idle or sleep for its timeout period.
422  *
423  **/
424 static irqreturn_t omap_uart_interrupt(int irq, void *dev_id)
425 {
426         struct omap_uart_state *uart = dev_id;
427
428         omap_uart_block_sleep(uart);
429
430         return IRQ_NONE;
431 }
432
433 static void omap_uart_idle_init(struct omap_uart_state *uart)
434 {
435         struct plat_serial8250_port *p = uart->p;
436         int ret;
437
438         uart->can_sleep = 0;
439         uart->timeout = DEFAULT_TIMEOUT;
440         setup_timer(&uart->timer, omap_uart_idle_timer,
441                     (unsigned long) uart);
442         if (uart->timeout)
443                 mod_timer(&uart->timer, jiffies + uart->timeout);
444         omap_uart_smart_idle_enable(uart, 0);
445
446         if (cpu_is_omap34xx()) {
447                 u32 mod = (uart->num == 2) ? OMAP3430_PER_MOD : CORE_MOD;
448                 u32 wk_mask = 0;
449                 u32 padconf = 0;
450
451                 uart->wk_en = OMAP34XX_PRM_REGADDR(mod, PM_WKEN1);
452                 uart->wk_st = OMAP34XX_PRM_REGADDR(mod, PM_WKST1);
453                 switch (uart->num) {
454                 case 0:
455                         wk_mask = OMAP3430_ST_UART1_MASK;
456                         padconf = 0x182;
457                         break;
458                 case 1:
459                         wk_mask = OMAP3430_ST_UART2_MASK;
460                         padconf = 0x17a;
461                         break;
462                 case 2:
463                         wk_mask = OMAP3430_ST_UART3_MASK;
464                         padconf = 0x19e;
465                         break;
466                 }
467                 uart->wk_mask = wk_mask;
468                 uart->padconf = padconf;
469         } else if (cpu_is_omap24xx()) {
470                 u32 wk_mask = 0;
471
472                 if (cpu_is_omap2430()) {
473                         uart->wk_en = OMAP2430_PRM_REGADDR(CORE_MOD, PM_WKEN1);
474                         uart->wk_st = OMAP2430_PRM_REGADDR(CORE_MOD, PM_WKST1);
475                 } else if (cpu_is_omap2420()) {
476                         uart->wk_en = OMAP2420_PRM_REGADDR(CORE_MOD, PM_WKEN1);
477                         uart->wk_st = OMAP2420_PRM_REGADDR(CORE_MOD, PM_WKST1);
478                 }
479                 switch (uart->num) {
480                 case 0:
481                         wk_mask = OMAP24XX_ST_UART1_MASK;
482                         break;
483                 case 1:
484                         wk_mask = OMAP24XX_ST_UART2_MASK;
485                         break;
486                 case 2:
487                         wk_mask = OMAP24XX_ST_UART3_MASK;
488                         break;
489                 }
490                 uart->wk_mask = wk_mask;
491         } else {
492                 uart->wk_en = 0;
493                 uart->wk_st = 0;
494                 uart->wk_mask = 0;
495                 uart->padconf = 0;
496         }
497
498         p->irqflags |= IRQF_SHARED;
499         ret = request_irq(p->irq, omap_uart_interrupt, IRQF_SHARED,
500                           "serial idle", (void *)uart);
501         WARN_ON(ret);
502 }
503
504 void omap_uart_enable_irqs(int enable)
505 {
506         int ret;
507         struct omap_uart_state *uart;
508
509         list_for_each_entry(uart, &uart_list, node) {
510                 if (enable)
511                         ret = request_irq(uart->p->irq, omap_uart_interrupt,
512                                 IRQF_SHARED, "serial idle", (void *)uart);
513                 else
514                         free_irq(uart->p->irq, (void *)uart);
515         }
516 }
517
518 static ssize_t sleep_timeout_show(struct device *dev,
519                                   struct device_attribute *attr,
520                                   char *buf)
521 {
522         struct platform_device *pdev = container_of(dev,
523                                         struct platform_device, dev);
524         struct omap_uart_state *uart = container_of(pdev,
525                                         struct omap_uart_state, pdev);
526
527         return sprintf(buf, "%u\n", uart->timeout / HZ);
528 }
529
530 static ssize_t sleep_timeout_store(struct device *dev,
531                                    struct device_attribute *attr,
532                                    const char *buf, size_t n)
533 {
534         struct platform_device *pdev = container_of(dev,
535                                         struct platform_device, dev);
536         struct omap_uart_state *uart = container_of(pdev,
537                                         struct omap_uart_state, pdev);
538         unsigned int value;
539
540         if (sscanf(buf, "%u", &value) != 1) {
541                 dev_err(dev, "sleep_timeout_store: Invalid value\n");
542                 return -EINVAL;
543         }
544
545         uart->timeout = value * HZ;
546         if (uart->timeout)
547                 mod_timer(&uart->timer, jiffies + uart->timeout);
548         else
549                 /* A zero value means disable timeout feature */
550                 omap_uart_block_sleep(uart);
551
552         return n;
553 }
554
555 DEVICE_ATTR(sleep_timeout, 0644, sleep_timeout_show, sleep_timeout_store);
556 #define DEV_CREATE_FILE(dev, attr) WARN_ON(device_create_file(dev, attr))
557 #else
558 static inline void omap_uart_idle_init(struct omap_uart_state *uart) {}
559 #define DEV_CREATE_FILE(dev, attr)
560 #endif /* CONFIG_PM */
561
562 static struct omap_uart_state omap_uart[] = {
563         {
564                 .pdev = {
565                         .name                   = "serial8250",
566                         .id                     = PLAT8250_DEV_PLATFORM,
567                         .dev                    = {
568                                 .platform_data  = serial_platform_data0,
569                         },
570                 },
571         }, {
572                 .pdev = {
573                         .name                   = "serial8250",
574                         .id                     = PLAT8250_DEV_PLATFORM1,
575                         .dev                    = {
576                                 .platform_data  = serial_platform_data1,
577                         },
578                 },
579         }, {
580                 .pdev = {
581                         .name                   = "serial8250",
582                         .id                     = PLAT8250_DEV_PLATFORM2,
583                         .dev                    = {
584                                 .platform_data  = serial_platform_data2,
585                         },
586                 },
587         },
588 #if defined(CONFIG_ARCH_OMAP3) || defined(CONFIG_ARCH_OMAP4)
589         {
590                 .pdev = {
591                         .name                   = "serial8250",
592                         .id                     = 3,
593                         .dev                    = {
594                                 .platform_data  = serial_platform_data3,
595                         },
596                 },
597         },
598 #endif
599 };
600
601 /*
602  * Override the default 8250 read handler: mem_serial_in()
603  * Empty RX fifo read causes an abort on omap3630 and omap4
604  * This function makes sure that an empty rx fifo is not read on these silicons
605  * (OMAP1/2/3430 are not affected)
606  */
607 static unsigned int serial_in_override(struct uart_port *up, int offset)
608 {
609         if (UART_RX == offset) {
610                 unsigned int lsr;
611                 lsr = __serial_read_reg(up, UART_LSR);
612                 if (!(lsr & UART_LSR_DR))
613                         return -EPERM;
614         }
615
616         return __serial_read_reg(up, offset);
617 }
618
619 static void serial_out_override(struct uart_port *up, int offset, int value)
620 {
621         unsigned int status, tmout = 10000;
622
623         status = __serial_read_reg(up, UART_LSR);
624         while (!(status & UART_LSR_THRE)) {
625                 /* Wait up to 10ms for the character(s) to be sent. */
626                 if (--tmout == 0)
627                         break;
628                 udelay(1);
629                 status = __serial_read_reg(up, UART_LSR);
630         }
631         __serial_write_reg(up, offset, value);
632 }
633 void __init omap_serial_early_init(void)
634 {
635         int i, nr_ports;
636         char name[16];
637
638         if (!(cpu_is_omap3630() || cpu_is_omap4430()))
639                 nr_ports = 3;
640         else
641                 nr_ports = ARRAY_SIZE(omap_uart);
642
643         /*
644          * Make sure the serial ports are muxed on at this point.
645          * You have to mux them off in device drivers later on
646          * if not needed.
647          */
648
649         for (i = 0; i < nr_ports; i++) {
650                 struct omap_uart_state *uart = &omap_uart[i];
651                 struct platform_device *pdev = &uart->pdev;
652                 struct device *dev = &pdev->dev;
653                 struct plat_serial8250_port *p = dev->platform_data;
654
655                 /* Don't map zero-based physical address */
656                 if (p->mapbase == 0) {
657                         dev_warn(dev, "no physical address for uart#%d,"
658                                  " so skipping early_init...\n", i);
659                         continue;
660                 }
661                 /*
662                  * Module 4KB + L4 interconnect 4KB
663                  * Static mapping, never released
664                  */
665                 p->membase = ioremap(p->mapbase, SZ_8K);
666                 if (!p->membase) {
667                         dev_err(dev, "ioremap failed for uart%i\n", i + 1);
668                         continue;
669                 }
670
671                 sprintf(name, "uart%d_ick", i + 1);
672                 uart->ick = clk_get(NULL, name);
673                 if (IS_ERR(uart->ick)) {
674                         dev_err(dev, "Could not get uart%d_ick\n", i + 1);
675                         uart->ick = NULL;
676                 }
677
678                 sprintf(name, "uart%d_fck", i+1);
679                 uart->fck = clk_get(NULL, name);
680                 if (IS_ERR(uart->fck)) {
681                         dev_err(dev, "Could not get uart%d_fck\n", i + 1);
682                         uart->fck = NULL;
683                 }
684
685                 /* FIXME: Remove this once the clkdev is ready */
686                 if (!cpu_is_omap44xx()) {
687                         if (!uart->ick || !uart->fck)
688                                 continue;
689                 }
690
691                 uart->num = i;
692                 p->private_data = uart;
693                 uart->p = p;
694
695                 if (cpu_is_omap44xx())
696                         p->irq += 32;
697         }
698 }
699
700 /**
701  * omap_serial_init_port() - initialize single serial port
702  * @port: serial port number (0-3)
703  *
704  * This function initialies serial driver for given @port only.
705  * Platforms can call this function instead of omap_serial_init()
706  * if they don't plan to use all available UARTs as serial ports.
707  *
708  * Don't mix calls to omap_serial_init_port() and omap_serial_init(),
709  * use only one of the two.
710  */
711 void __init omap_serial_init_port(int port)
712 {
713         struct omap_uart_state *uart;
714         struct platform_device *pdev;
715         struct device *dev;
716
717         BUG_ON(port < 0);
718         BUG_ON(port >= ARRAY_SIZE(omap_uart));
719
720         uart = &omap_uart[port];
721         pdev = &uart->pdev;
722         dev = &pdev->dev;
723
724         /* Don't proceed if there's no clocks available */
725         if (unlikely(!uart->ick || !uart->fck)) {
726                 WARN(1, "%s: can't init uart%d, no clocks available\n",
727                      kobject_name(&dev->kobj), port);
728                 return;
729         }
730
731         omap_uart_enable_clocks(uart);
732
733         omap_uart_reset(uart);
734         omap_uart_idle_init(uart);
735
736         list_add_tail(&uart->node, &uart_list);
737
738         if (WARN_ON(platform_device_register(pdev)))
739                 return;
740
741         if ((cpu_is_omap34xx() && uart->padconf) ||
742             (uart->wk_en && uart->wk_mask)) {
743                 device_init_wakeup(dev, true);
744                 DEV_CREATE_FILE(dev, &dev_attr_sleep_timeout);
745         }
746
747         /*
748          * omap44xx: Never read empty UART fifo
749          * omap3xxx: Never read empty UART fifo on UARTs
750          * with IP rev >=0x52
751          */
752         if (cpu_is_omap44xx()) {
753                 uart->p->serial_in = serial_in_override;
754                 uart->p->serial_out = serial_out_override;
755         } else if ((serial_read_reg(uart->p, UART_OMAP_MVER) & 0xFF)
756                         >= UART_OMAP_NO_EMPTY_FIFO_READ_IP_REV) {
757                 uart->p->serial_in = serial_in_override;
758                 uart->p->serial_out = serial_out_override;
759         }
760 }
761
762 /**
763  * omap_serial_init() - intialize all supported serial ports
764  *
765  * Initializes all available UARTs as serial ports. Platforms
766  * can call this function when they want to have default behaviour
767  * for serial ports (e.g initialize them all as serial ports).
768  */
769 void __init omap_serial_init(void)
770 {
771         int i, nr_ports;
772
773         if (!(cpu_is_omap3630() || cpu_is_omap4430()))
774                 nr_ports = 3;
775         else
776                 nr_ports = ARRAY_SIZE(omap_uart);
777
778         for (i = 0; i < nr_ports; i++)
779                 omap_serial_init_port(i);
780 }