Tony Lindgren | 1dbae81 | 2005-11-10 14:26:51 +0000 | [diff] [blame] | 1 | /* |
Uwe Zeisberger | f30c226 | 2006-10-03 23:01:26 +0200 | [diff] [blame] | 2 | * arch/arm/mach-omap2/serial.c |
Tony Lindgren | 1dbae81 | 2005-11-10 14:26:51 +0000 | [diff] [blame] | 3 | * |
| 4 | * OMAP2 serial support. |
| 5 | * |
Jouni Hogander | 6e81176 | 2008-10-06 15:49:15 +0300 | [diff] [blame] | 6 | * Copyright (C) 2005-2008 Nokia Corporation |
Tony Lindgren | 1dbae81 | 2005-11-10 14:26:51 +0000 | [diff] [blame] | 7 | * Author: Paul Mundt <paul.mundt@nokia.com> |
| 8 | * |
Kevin Hilman | 4af4016 | 2009-02-04 10:51:40 -0800 | [diff] [blame] | 9 | * Major rework for PM support by Kevin Hilman |
| 10 | * |
Tony Lindgren | 1dbae81 | 2005-11-10 14:26:51 +0000 | [diff] [blame] | 11 | * Based off of arch/arm/mach-omap/omap1/serial.c |
| 12 | * |
Santosh Shilimkar | 4416907 | 2009-05-28 14:16:04 -0700 | [diff] [blame] | 13 | * Copyright (C) 2009 Texas Instruments |
| 14 | * Added OMAP4 support - Santosh Shilimkar <santosh.shilimkar@ti.com |
| 15 | * |
Tony Lindgren | 1dbae81 | 2005-11-10 14:26:51 +0000 | [diff] [blame] | 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> |
Russell King | f8ce254 | 2006-01-07 16:15:52 +0000 | [diff] [blame] | 24 | #include <linux/clk.h> |
Russell King | fced80c | 2008-09-06 12:10:45 +0100 | [diff] [blame] | 25 | #include <linux/io.h> |
Santosh Shilimkar | e03d37d | 2010-02-18 08:59:06 +0000 | [diff] [blame] | 26 | #include <linux/delay.h> |
Tony Lindgren | 1dbae81 | 2005-11-10 14:26:51 +0000 | [diff] [blame] | 27 | |
Tony Lindgren | ce491cf | 2009-10-20 09:40:47 -0700 | [diff] [blame] | 28 | #include <plat/common.h> |
| 29 | #include <plat/board.h> |
| 30 | #include <plat/clock.h> |
| 31 | #include <plat/control.h> |
Tony Lindgren | 1dbae81 | 2005-11-10 14:26:51 +0000 | [diff] [blame] | 32 | |
Kevin Hilman | 4af4016 | 2009-02-04 10:51:40 -0800 | [diff] [blame] | 33 | #include "prm.h" |
| 34 | #include "pm.h" |
| 35 | #include "prm-regbits-34xx.h" |
| 36 | |
vikram pandita | ce13d47 | 2009-12-11 16:16:37 -0800 | [diff] [blame] | 37 | #define UART_OMAP_NO_EMPTY_FIFO_READ_IP_REV 0x52 |
Kevin Hilman | 4af4016 | 2009-02-04 10:51:40 -0800 | [diff] [blame] | 38 | #define UART_OMAP_WER 0x17 /* Wake-up enable register */ |
| 39 | |
Tony Lindgren | 301fe8e | 2010-02-01 12:34:31 -0800 | [diff] [blame] | 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 |
Kevin Hilman | 4af4016 | 2009-02-04 10:51:40 -0800 | [diff] [blame] | 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; |
Kevin Hilman | fd455ea | 2009-04-27 12:27:36 -0700 | [diff] [blame] | 65 | struct platform_device pdev; |
Kevin Hilman | 4af4016 | 2009-02-04 10:51:40 -0800 | [diff] [blame] | 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 | |
Kevin Hilman | 4af4016 | 2009-02-04 10:51:40 -0800 | [diff] [blame] | 80 | static LIST_HEAD(uart_list); |
Tony Lindgren | 1dbae81 | 2005-11-10 14:26:51 +0000 | [diff] [blame] | 81 | |
Kevin Hilman | fd455ea | 2009-04-27 12:27:36 -0700 | [diff] [blame] | 82 | static struct plat_serial8250_port serial_platform_data0[] = { |
Tony Lindgren | 1dbae81 | 2005-11-10 14:26:51 +0000 | [diff] [blame] | 83 | { |
Tony Lindgren | 1dbae81 | 2005-11-10 14:26:51 +0000 | [diff] [blame] | 84 | .irq = 72, |
| 85 | .flags = UPF_BOOT_AUTOCONF, |
| 86 | .iotype = UPIO_MEM, |
| 87 | .regshift = 2, |
Jouni Hogander | 6e81176 | 2008-10-06 15:49:15 +0300 | [diff] [blame] | 88 | .uartclk = OMAP24XX_BASE_BAUD * 16, |
Tony Lindgren | 1dbae81 | 2005-11-10 14:26:51 +0000 | [diff] [blame] | 89 | }, { |
Kevin Hilman | fd455ea | 2009-04-27 12:27:36 -0700 | [diff] [blame] | 90 | .flags = 0 |
| 91 | } |
| 92 | }; |
| 93 | |
| 94 | static struct plat_serial8250_port serial_platform_data1[] = { |
| 95 | { |
Tony Lindgren | 1dbae81 | 2005-11-10 14:26:51 +0000 | [diff] [blame] | 96 | .irq = 73, |
| 97 | .flags = UPF_BOOT_AUTOCONF, |
| 98 | .iotype = UPIO_MEM, |
| 99 | .regshift = 2, |
Jouni Hogander | 6e81176 | 2008-10-06 15:49:15 +0300 | [diff] [blame] | 100 | .uartclk = OMAP24XX_BASE_BAUD * 16, |
Tony Lindgren | 1dbae81 | 2005-11-10 14:26:51 +0000 | [diff] [blame] | 101 | }, { |
Kevin Hilman | fd455ea | 2009-04-27 12:27:36 -0700 | [diff] [blame] | 102 | .flags = 0 |
| 103 | } |
| 104 | }; |
| 105 | |
| 106 | static struct plat_serial8250_port serial_platform_data2[] = { |
| 107 | { |
Tony Lindgren | 1dbae81 | 2005-11-10 14:26:51 +0000 | [diff] [blame] | 108 | .irq = 74, |
| 109 | .flags = UPF_BOOT_AUTOCONF, |
| 110 | .iotype = UPIO_MEM, |
| 111 | .regshift = 2, |
Jouni Hogander | 6e81176 | 2008-10-06 15:49:15 +0300 | [diff] [blame] | 112 | .uartclk = OMAP24XX_BASE_BAUD * 16, |
Tony Lindgren | 1dbae81 | 2005-11-10 14:26:51 +0000 | [diff] [blame] | 113 | }, { |
| 114 | .flags = 0 |
| 115 | } |
| 116 | }; |
| 117 | |
Santosh Shilimkar | 0e3eaad | 2009-08-22 13:30:11 +0530 | [diff] [blame] | 118 | static struct plat_serial8250_port serial_platform_data3[] = { |
| 119 | { |
Santosh Shilimkar | 0e3eaad | 2009-08-22 13:30:11 +0530 | [diff] [blame] | 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 | }; |
Tony Lindgren | a3a9b36 | 2010-02-15 09:27:25 -0800 | [diff] [blame] | 129 | |
Tony Lindgren | 4f2c49f | 2010-02-15 08:48:53 -0800 | [diff] [blame] | 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; |
Sergio Aguirre | 4b1bbd3 | 2010-02-26 19:58:47 -0600 | [diff] [blame] | 135 | serial_platform_data3[0].mapbase = omap2_globals->uart4_phys; |
Tony Lindgren | 4f2c49f | 2010-02-15 08:48:53 -0800 | [diff] [blame] | 136 | } |
| 137 | |
Alexander Shishkin | 9230372 | 2010-01-08 10:29:06 -0800 | [diff] [blame] | 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 | |
Tony Lindgren | 1dbae81 | 2005-11-10 14:26:51 +0000 | [diff] [blame] | 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 | |
Santosh Shilimkar | e03d37d | 2010-02-18 08:59:06 +0000 | [diff] [blame] | 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 | |
Tony Lindgren | 1dbae81 | 2005-11-10 14:26:51 +0000 | [diff] [blame] | 159 | static inline void serial_write_reg(struct plat_serial8250_port *p, int offset, |
| 160 | int value) |
| 161 | { |
| 162 | offset <<= p->regshift; |
Russell King | e8a91c9 | 2008-09-01 22:07:37 +0100 | [diff] [blame] | 163 | __raw_writeb(value, p->membase + offset); |
Tony Lindgren | 1dbae81 | 2005-11-10 14:26:51 +0000 | [diff] [blame] | 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 | */ |
Kevin Hilman | 4af4016 | 2009-02-04 10:51:40 -0800 | [diff] [blame] | 171 | static inline void __init omap_uart_reset(struct omap_uart_state *uart) |
Tony Lindgren | 1dbae81 | 2005-11-10 14:26:51 +0000 | [diff] [blame] | 172 | { |
Kevin Hilman | 4af4016 | 2009-02-04 10:51:40 -0800 | [diff] [blame] | 173 | struct plat_serial8250_port *p = uart->p; |
| 174 | |
Tony Lindgren | 1dbae81 | 2005-11-10 14:26:51 +0000 | [diff] [blame] | 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); |
Juha Yrjola | 671c723 | 2006-12-06 17:13:49 -0800 | [diff] [blame] | 178 | serial_write_reg(p, UART_OMAP_SYSC, (0x02 << 3) | (1 << 2) | (1 << 0)); |
Tony Lindgren | 1dbae81 | 2005-11-10 14:26:51 +0000 | [diff] [blame] | 179 | } |
| 180 | |
Kevin Hilman | 4af4016 | 2009-02-04 10:51:40 -0800 | [diff] [blame] | 181 | #if defined(CONFIG_PM) && defined(CONFIG_ARCH_OMAP3) |
| 182 | |
Kevin Hilman | 4af4016 | 2009-02-04 10:51:40 -0800 | [diff] [blame] | 183 | static void omap_uart_save_context(struct omap_uart_state *uart) |
Jouni Hogander | 6e81176 | 2008-10-06 15:49:15 +0300 | [diff] [blame] | 184 | { |
Kevin Hilman | 4af4016 | 2009-02-04 10:51:40 -0800 | [diff] [blame] | 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 | |
Kevin Hilman | fd455ea | 2009-04-27 12:27:36 -0700 | [diff] [blame] | 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 | |
Kevin Hilman | 4af4016 | 2009-02-04 10:51:40 -0800 | [diff] [blame] | 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; |
Jouni Hogander | ba87a9b | 2008-12-09 13:36:50 +0200 | [diff] [blame] | 321 | if (uart->timeout) |
| 322 | mod_timer(&uart->timer, jiffies + uart->timeout); |
| 323 | else |
| 324 | del_timer(&uart->timer); |
Kevin Hilman | 4af4016 | 2009-02-04 10:51:40 -0800 | [diff] [blame] | 325 | } |
| 326 | |
| 327 | static void omap_uart_allow_sleep(struct omap_uart_state *uart) |
| 328 | { |
Kevin Hilman | fd455ea | 2009-04-27 12:27:36 -0700 | [diff] [blame] | 329 | if (device_may_wakeup(&uart->pdev.dev)) |
| 330 | omap_uart_enable_wakeup(uart); |
| 331 | else |
| 332 | omap_uart_disable_wakeup(uart); |
| 333 | |
Kevin Hilman | 4af4016 | 2009-02-04 10:51:40 -0800 | [diff] [blame] | 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; |
Jouni Hogander | 6e81176 | 2008-10-06 15:49:15 +0300 | [diff] [blame] | 357 | } |
| 358 | } |
| 359 | } |
| 360 | |
Kevin Hilman | 4af4016 | 2009-02-04 10:51:40 -0800 | [diff] [blame] | 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); |
Kevin Hilman | 4af4016 | 2009-02-04 10:51:40 -0800 | [diff] [blame] | 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 | { |
Kevin Hilman | 4af4016 | 2009-02-04 10:51:40 -0800 | [diff] [blame] | 435 | struct plat_serial8250_port *p = uart->p; |
| 436 | int ret; |
| 437 | |
| 438 | uart->can_sleep = 0; |
Kevin Hilman | fd455ea | 2009-04-27 12:27:36 -0700 | [diff] [blame] | 439 | uart->timeout = DEFAULT_TIMEOUT; |
Kevin Hilman | 4af4016 | 2009-02-04 10:51:40 -0800 | [diff] [blame] | 440 | setup_timer(&uart->timer, omap_uart_idle_timer, |
| 441 | (unsigned long) uart); |
Tony Lindgren | 301fe8e | 2010-02-01 12:34:31 -0800 | [diff] [blame] | 442 | if (uart->timeout) |
| 443 | mod_timer(&uart->timer, jiffies + uart->timeout); |
Kevin Hilman | 4af4016 | 2009-02-04 10:51:40 -0800 | [diff] [blame] | 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 | |
Vikram Pandita | c426df8 | 2009-08-28 11:24:08 -0700 | [diff] [blame] | 498 | p->irqflags |= IRQF_SHARED; |
Kevin Hilman | 4af4016 | 2009-02-04 10:51:40 -0800 | [diff] [blame] | 499 | ret = request_irq(p->irq, omap_uart_interrupt, IRQF_SHARED, |
| 500 | "serial idle", (void *)uart); |
| 501 | WARN_ON(ret); |
| 502 | } |
| 503 | |
Tero Kristo | 2466211 | 2009-03-05 16:32:23 +0200 | [diff] [blame] | 504 | void omap_uart_enable_irqs(int enable) |
Jouni Hogander | ba87a9b | 2008-12-09 13:36:50 +0200 | [diff] [blame] | 505 | { |
Tero Kristo | 2466211 | 2009-03-05 16:32:23 +0200 | [diff] [blame] | 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 | } |
Jouni Hogander | ba87a9b | 2008-12-09 13:36:50 +0200 | [diff] [blame] | 516 | } |
| 517 | |
Kevin Hilman | fd455ea | 2009-04-27 12:27:36 -0700 | [diff] [blame] | 518 | static ssize_t sleep_timeout_show(struct device *dev, |
| 519 | struct device_attribute *attr, |
Jouni Hogander | ba87a9b | 2008-12-09 13:36:50 +0200 | [diff] [blame] | 520 | char *buf) |
| 521 | { |
Kevin Hilman | fd455ea | 2009-04-27 12:27:36 -0700 | [diff] [blame] | 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); |
Jouni Hogander | ba87a9b | 2008-12-09 13:36:50 +0200 | [diff] [blame] | 528 | } |
| 529 | |
Kevin Hilman | fd455ea | 2009-04-27 12:27:36 -0700 | [diff] [blame] | 530 | static ssize_t sleep_timeout_store(struct device *dev, |
| 531 | struct device_attribute *attr, |
Jouni Hogander | ba87a9b | 2008-12-09 13:36:50 +0200 | [diff] [blame] | 532 | const char *buf, size_t n) |
| 533 | { |
Kevin Hilman | fd455ea | 2009-04-27 12:27:36 -0700 | [diff] [blame] | 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); |
Jouni Hogander | ba87a9b | 2008-12-09 13:36:50 +0200 | [diff] [blame] | 538 | unsigned int value; |
| 539 | |
| 540 | if (sscanf(buf, "%u", &value) != 1) { |
Sergio Aguirre | 10c805e | 2010-03-09 13:22:14 -0600 | [diff] [blame] | 541 | dev_err(dev, "sleep_timeout_store: Invalid value\n"); |
Jouni Hogander | ba87a9b | 2008-12-09 13:36:50 +0200 | [diff] [blame] | 542 | return -EINVAL; |
| 543 | } |
Kevin Hilman | fd455ea | 2009-04-27 12:27:36 -0700 | [diff] [blame] | 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 | |
Jouni Hogander | ba87a9b | 2008-12-09 13:36:50 +0200 | [diff] [blame] | 552 | return n; |
| 553 | } |
| 554 | |
Kevin Hilman | fd455ea | 2009-04-27 12:27:36 -0700 | [diff] [blame] | 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)) |
Kevin Hilman | 4af4016 | 2009-02-04 10:51:40 -0800 | [diff] [blame] | 557 | #else |
| 558 | static inline void omap_uart_idle_init(struct omap_uart_state *uart) {} |
Kevin Hilman | fd455ea | 2009-04-27 12:27:36 -0700 | [diff] [blame] | 559 | #define DEV_CREATE_FILE(dev, attr) |
Kevin Hilman | 4af4016 | 2009-02-04 10:51:40 -0800 | [diff] [blame] | 560 | #endif /* CONFIG_PM */ |
| 561 | |
Alexander Shishkin | 9d30b99 | 2009-11-22 10:10:47 -0800 | [diff] [blame] | 562 | static struct omap_uart_state omap_uart[] = { |
Kevin Hilman | fd455ea | 2009-04-27 12:27:36 -0700 | [diff] [blame] | 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 | }, |
Vikram Pandita | 2aa57be | 2009-05-28 14:03:59 -0700 | [diff] [blame] | 587 | }, |
Tony Lindgren | a3a9b36 | 2010-02-15 09:27:25 -0800 | [diff] [blame] | 588 | #if defined(CONFIG_ARCH_OMAP3) || defined(CONFIG_ARCH_OMAP4) |
Santosh Shilimkar | 0e3eaad | 2009-08-22 13:30:11 +0530 | [diff] [blame] | 589 | { |
| 590 | .pdev = { |
| 591 | .name = "serial8250", |
Tony Lindgren | 61f04ee | 2009-09-24 16:23:07 -0700 | [diff] [blame] | 592 | .id = 3, |
Santosh Shilimkar | 0e3eaad | 2009-08-22 13:30:11 +0530 | [diff] [blame] | 593 | .dev = { |
| 594 | .platform_data = serial_platform_data3, |
| 595 | }, |
| 596 | }, |
| 597 | }, |
| 598 | #endif |
Vikram Pandita | 2aa57be | 2009-05-28 14:03:59 -0700 | [diff] [blame] | 599 | }; |
| 600 | |
vikram pandita | ce13d47 | 2009-12-11 16:16:37 -0800 | [diff] [blame] | 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; |
Alexander Shishkin | 9230372 | 2010-01-08 10:29:06 -0800 | [diff] [blame] | 611 | lsr = __serial_read_reg(up, UART_LSR); |
vikram pandita | ce13d47 | 2009-12-11 16:16:37 -0800 | [diff] [blame] | 612 | if (!(lsr & UART_LSR_DR)) |
| 613 | return -EPERM; |
| 614 | } |
Alexander Shishkin | 9230372 | 2010-01-08 10:29:06 -0800 | [diff] [blame] | 615 | |
| 616 | return __serial_read_reg(up, offset); |
vikram pandita | ce13d47 | 2009-12-11 16:16:37 -0800 | [diff] [blame] | 617 | } |
| 618 | |
Santosh Shilimkar | e03d37d | 2010-02-18 08:59:06 +0000 | [diff] [blame] | 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 | } |
Paul Walmsley | b3c6df3 | 2009-09-03 20:14:02 +0300 | [diff] [blame] | 633 | void __init omap_serial_early_init(void) |
Tony Lindgren | 1dbae81 | 2005-11-10 14:26:51 +0000 | [diff] [blame] | 634 | { |
Thomas Weber | 21b9034 | 2010-02-25 09:40:19 +0000 | [diff] [blame] | 635 | int i, nr_ports; |
Jouni Hogander | 6e81176 | 2008-10-06 15:49:15 +0300 | [diff] [blame] | 636 | char name[16]; |
Tony Lindgren | 1dbae81 | 2005-11-10 14:26:51 +0000 | [diff] [blame] | 637 | |
Thomas Weber | 21b9034 | 2010-02-25 09:40:19 +0000 | [diff] [blame] | 638 | if (!(cpu_is_omap3630() || cpu_is_omap4430())) |
| 639 | nr_ports = 3; |
| 640 | else |
| 641 | nr_ports = ARRAY_SIZE(omap_uart); |
| 642 | |
Tony Lindgren | 1dbae81 | 2005-11-10 14:26:51 +0000 | [diff] [blame] | 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 | |
Thomas Weber | 21b9034 | 2010-02-25 09:40:19 +0000 | [diff] [blame] | 649 | for (i = 0; i < nr_ports; i++) { |
Kevin Hilman | 4af4016 | 2009-02-04 10:51:40 -0800 | [diff] [blame] | 650 | struct omap_uart_state *uart = &omap_uart[i]; |
Kevin Hilman | fd455ea | 2009-04-27 12:27:36 -0700 | [diff] [blame] | 651 | struct platform_device *pdev = &uart->pdev; |
| 652 | struct device *dev = &pdev->dev; |
| 653 | struct plat_serial8250_port *p = dev->platform_data; |
Tony Lindgren | 1dbae81 | 2005-11-10 14:26:51 +0000 | [diff] [blame] | 654 | |
Sergio Aguirre | e88d556 | 2010-02-27 14:13:43 -0600 | [diff] [blame] | 655 | /* Don't map zero-based physical address */ |
| 656 | if (p->mapbase == 0) { |
Sergio Aguirre | 10c805e | 2010-03-09 13:22:14 -0600 | [diff] [blame] | 657 | dev_warn(dev, "no physical address for uart#%d," |
| 658 | " so skipping early_init...\n", i); |
Sergio Aguirre | e88d556 | 2010-02-27 14:13:43 -0600 | [diff] [blame] | 659 | continue; |
| 660 | } |
Tony Lindgren | 84f90c9 | 2009-10-16 09:53:00 -0700 | [diff] [blame] | 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) { |
Sergio Aguirre | 10c805e | 2010-03-09 13:22:14 -0600 | [diff] [blame] | 667 | dev_err(dev, "ioremap failed for uart%i\n", i + 1); |
Tony Lindgren | 84f90c9 | 2009-10-16 09:53:00 -0700 | [diff] [blame] | 668 | continue; |
| 669 | } |
| 670 | |
Thomas Weber | 21b9034 | 2010-02-25 09:40:19 +0000 | [diff] [blame] | 671 | sprintf(name, "uart%d_ick", i + 1); |
Kevin Hilman | 4af4016 | 2009-02-04 10:51:40 -0800 | [diff] [blame] | 672 | uart->ick = clk_get(NULL, name); |
| 673 | if (IS_ERR(uart->ick)) { |
Sergio Aguirre | 10c805e | 2010-03-09 13:22:14 -0600 | [diff] [blame] | 674 | dev_err(dev, "Could not get uart%d_ick\n", i + 1); |
Kevin Hilman | 4af4016 | 2009-02-04 10:51:40 -0800 | [diff] [blame] | 675 | uart->ick = NULL; |
| 676 | } |
Tony Lindgren | 1dbae81 | 2005-11-10 14:26:51 +0000 | [diff] [blame] | 677 | |
Jouni Hogander | 6e81176 | 2008-10-06 15:49:15 +0300 | [diff] [blame] | 678 | sprintf(name, "uart%d_fck", i+1); |
Kevin Hilman | 4af4016 | 2009-02-04 10:51:40 -0800 | [diff] [blame] | 679 | uart->fck = clk_get(NULL, name); |
| 680 | if (IS_ERR(uart->fck)) { |
Sergio Aguirre | 10c805e | 2010-03-09 13:22:14 -0600 | [diff] [blame] | 681 | dev_err(dev, "Could not get uart%d_fck\n", i + 1); |
Kevin Hilman | 4af4016 | 2009-02-04 10:51:40 -0800 | [diff] [blame] | 682 | uart->fck = NULL; |
| 683 | } |
Tony Lindgren | 1dbae81 | 2005-11-10 14:26:51 +0000 | [diff] [blame] | 684 | |
Santosh Shilimkar | aae290f | 2009-08-22 13:30:12 +0530 | [diff] [blame] | 685 | /* FIXME: Remove this once the clkdev is ready */ |
| 686 | if (!cpu_is_omap44xx()) { |
| 687 | if (!uart->ick || !uart->fck) |
| 688 | continue; |
| 689 | } |
Kevin Hilman | 4af4016 | 2009-02-04 10:51:40 -0800 | [diff] [blame] | 690 | |
| 691 | uart->num = i; |
| 692 | p->private_data = uart; |
| 693 | uart->p = p; |
Kevin Hilman | 4af4016 | 2009-02-04 10:51:40 -0800 | [diff] [blame] | 694 | |
Kevin Hilman | 4789998 | 2009-06-24 10:32:03 -0700 | [diff] [blame] | 695 | if (cpu_is_omap44xx()) |
| 696 | p->irq += 32; |
Paul Walmsley | b3c6df3 | 2009-09-03 20:14:02 +0300 | [diff] [blame] | 697 | } |
| 698 | } |
| 699 | |
Mika Westerberg | f62349e | 2009-12-11 16:16:35 -0800 | [diff] [blame] | 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 | |
Sergio Aguirre | e88d556 | 2010-02-27 14:13:43 -0600 | [diff] [blame] | 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 | |
Mika Westerberg | f2eeeae | 2009-12-14 13:59:18 +0000 | [diff] [blame] | 731 | omap_uart_enable_clocks(uart); |
| 732 | |
Mika Westerberg | f62349e | 2009-12-11 16:16:35 -0800 | [diff] [blame] | 733 | omap_uart_reset(uart); |
| 734 | omap_uart_idle_init(uart); |
| 735 | |
Mika Westerberg | f2eeeae | 2009-12-14 13:59:18 +0000 | [diff] [blame] | 736 | list_add_tail(&uart->node, &uart_list); |
| 737 | |
Mika Westerberg | f62349e | 2009-12-11 16:16:35 -0800 | [diff] [blame] | 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 | |
vikram pandita | 30e53bc | 2010-02-15 10:03:33 -0800 | [diff] [blame] | 747 | /* |
| 748 | * omap44xx: Never read empty UART fifo |
| 749 | * omap3xxx: Never read empty UART fifo on UARTs |
| 750 | * with IP rev >=0x52 |
| 751 | */ |
Santosh Shilimkar | e03d37d | 2010-02-18 08:59:06 +0000 | [diff] [blame] | 752 | if (cpu_is_omap44xx()) { |
vikram pandita | 30e53bc | 2010-02-15 10:03:33 -0800 | [diff] [blame] | 753 | uart->p->serial_in = serial_in_override; |
Santosh Shilimkar | e03d37d | 2010-02-18 08:59:06 +0000 | [diff] [blame] | 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) { |
vikram pandita | 30e53bc | 2010-02-15 10:03:33 -0800 | [diff] [blame] | 757 | uart->p->serial_in = serial_in_override; |
Santosh Shilimkar | e03d37d | 2010-02-18 08:59:06 +0000 | [diff] [blame] | 758 | uart->p->serial_out = serial_out_override; |
| 759 | } |
Mika Westerberg | f62349e | 2009-12-11 16:16:35 -0800 | [diff] [blame] | 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 | */ |
Paul Walmsley | b3c6df3 | 2009-09-03 20:14:02 +0300 | [diff] [blame] | 769 | void __init omap_serial_init(void) |
| 770 | { |
Tony Lindgren | a3a9b36 | 2010-02-15 09:27:25 -0800 | [diff] [blame] | 771 | int i, nr_ports; |
Paul Walmsley | b3c6df3 | 2009-09-03 20:14:02 +0300 | [diff] [blame] | 772 | |
Tony Lindgren | a3a9b36 | 2010-02-15 09:27:25 -0800 | [diff] [blame] | 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++) |
Mika Westerberg | f62349e | 2009-12-11 16:16:35 -0800 | [diff] [blame] | 779 | omap_serial_init_port(i); |
Tony Lindgren | 1dbae81 | 2005-11-10 14:26:51 +0000 | [diff] [blame] | 780 | } |