diff options
Diffstat (limited to 'arch/arm/mach-omap2/serial.c')
| -rw-r--r-- | arch/arm/mach-omap2/serial.c | 465 |
1 files changed, 428 insertions, 37 deletions
diff --git a/arch/arm/mach-omap2/serial.c b/arch/arm/mach-omap2/serial.c index 4dcf39c285b9..b094c15bfe47 100644 --- a/arch/arm/mach-omap2/serial.c +++ b/arch/arm/mach-omap2/serial.c | |||
| @@ -6,8 +6,13 @@ | |||
| 6 | * Copyright (C) 2005-2008 Nokia Corporation | 6 | * Copyright (C) 2005-2008 Nokia Corporation |
| 7 | * Author: Paul Mundt <paul.mundt@nokia.com> | 7 | * Author: Paul Mundt <paul.mundt@nokia.com> |
| 8 | * | 8 | * |
| 9 | * Major rework for PM support by Kevin Hilman | ||
| 10 | * | ||
| 9 | * Based off of arch/arm/mach-omap/omap1/serial.c | 11 | * Based off of arch/arm/mach-omap/omap1/serial.c |
| 10 | * | 12 | * |
| 13 | * Copyright (C) 2009 Texas Instruments | ||
| 14 | * Added OMAP4 support - Santosh Shilimkar <santosh.shilimkar@ti.com | ||
| 15 | * | ||
| 11 | * This file is subject to the terms and conditions of the GNU General Public | 16 | * This file is subject to the terms and conditions of the GNU General Public |
| 12 | * License. See the file "COPYING" in the main directory of this archive | 17 | * License. See the file "COPYING" in the main directory of this archive |
| 13 | * for more details. | 18 | * for more details. |
| @@ -21,9 +26,50 @@ | |||
| 21 | 26 | ||
| 22 | #include <mach/common.h> | 27 | #include <mach/common.h> |
| 23 | #include <mach/board.h> | 28 | #include <mach/board.h> |
| 29 | #include <mach/clock.h> | ||
| 30 | #include <mach/control.h> | ||
| 31 | |||
| 32 | #include "prm.h" | ||
| 33 | #include "pm.h" | ||
| 34 | #include "prm-regbits-34xx.h" | ||
| 35 | |||
| 36 | #define UART_OMAP_WER 0x17 /* Wake-up enable register */ | ||
| 37 | |||
| 38 | #define DEFAULT_TIMEOUT (5 * HZ) | ||
| 24 | 39 | ||
| 25 | static struct clk *uart_ick[OMAP_MAX_NR_PORTS]; | 40 | struct omap_uart_state { |
| 26 | static struct clk *uart_fck[OMAP_MAX_NR_PORTS]; | 41 | int num; |
| 42 | int can_sleep; | ||
| 43 | struct timer_list timer; | ||
| 44 | u32 timeout; | ||
| 45 | |||
| 46 | void __iomem *wk_st; | ||
| 47 | void __iomem *wk_en; | ||
| 48 | u32 wk_mask; | ||
| 49 | u32 padconf; | ||
| 50 | |||
| 51 | struct clk *ick; | ||
| 52 | struct clk *fck; | ||
| 53 | int clocked; | ||
| 54 | |||
| 55 | struct plat_serial8250_port *p; | ||
| 56 | struct list_head node; | ||
| 57 | |||
| 58 | #if defined(CONFIG_ARCH_OMAP3) && defined(CONFIG_PM) | ||
| 59 | int context_valid; | ||
| 60 | |||
| 61 | /* Registers to be saved/restored for OFF-mode */ | ||
| 62 | u16 dll; | ||
| 63 | u16 dlh; | ||
| 64 | u16 ier; | ||
| 65 | u16 sysc; | ||
| 66 | u16 scr; | ||
| 67 | u16 wer; | ||
| 68 | #endif | ||
| 69 | }; | ||
| 70 | |||
| 71 | static struct omap_uart_state omap_uart[OMAP_MAX_NR_PORTS]; | ||
| 72 | static LIST_HEAD(uart_list); | ||
| 27 | 73 | ||
| 28 | static struct plat_serial8250_port serial_platform_data[] = { | 74 | static struct plat_serial8250_port serial_platform_data[] = { |
| 29 | { | 75 | { |
| @@ -74,33 +120,369 @@ static inline void serial_write_reg(struct plat_serial8250_port *p, int offset, | |||
| 74 | * properly. Note that the TX watermark initialization may not be needed | 120 | * properly. Note that the TX watermark initialization may not be needed |
| 75 | * once the 8250.c watermark handling code is merged. | 121 | * once the 8250.c watermark handling code is merged. |
| 76 | */ | 122 | */ |
| 77 | static inline void __init omap_serial_reset(struct plat_serial8250_port *p) | 123 | static inline void __init omap_uart_reset(struct omap_uart_state *uart) |
| 78 | { | 124 | { |
| 125 | struct plat_serial8250_port *p = uart->p; | ||
| 126 | |||
| 79 | serial_write_reg(p, UART_OMAP_MDR1, 0x07); | 127 | serial_write_reg(p, UART_OMAP_MDR1, 0x07); |
| 80 | serial_write_reg(p, UART_OMAP_SCR, 0x08); | 128 | serial_write_reg(p, UART_OMAP_SCR, 0x08); |
| 81 | serial_write_reg(p, UART_OMAP_MDR1, 0x00); | 129 | serial_write_reg(p, UART_OMAP_MDR1, 0x00); |
| 82 | serial_write_reg(p, UART_OMAP_SYSC, (0x02 << 3) | (1 << 2) | (1 << 0)); | 130 | serial_write_reg(p, UART_OMAP_SYSC, (0x02 << 3) | (1 << 2) | (1 << 0)); |
| 83 | } | 131 | } |
| 84 | 132 | ||
| 85 | void omap_serial_enable_clocks(int enable) | 133 | #if defined(CONFIG_PM) && defined(CONFIG_ARCH_OMAP3) |
| 134 | |||
| 135 | static int enable_off_mode; /* to be removed by full off-mode patches */ | ||
| 136 | |||
| 137 | static void omap_uart_save_context(struct omap_uart_state *uart) | ||
| 86 | { | 138 | { |
| 87 | int i; | 139 | u16 lcr = 0; |
| 88 | for (i = 0; i < OMAP_MAX_NR_PORTS; i++) { | 140 | struct plat_serial8250_port *p = uart->p; |
| 89 | if (uart_ick[i] && uart_fck[i]) { | 141 | |
| 90 | if (enable) { | 142 | if (!enable_off_mode) |
| 91 | clk_enable(uart_ick[i]); | 143 | return; |
| 92 | clk_enable(uart_fck[i]); | 144 | |
| 93 | } else { | 145 | lcr = serial_read_reg(p, UART_LCR); |
| 94 | clk_disable(uart_ick[i]); | 146 | serial_write_reg(p, UART_LCR, 0xBF); |
| 95 | clk_disable(uart_fck[i]); | 147 | uart->dll = serial_read_reg(p, UART_DLL); |
| 148 | uart->dlh = serial_read_reg(p, UART_DLM); | ||
| 149 | serial_write_reg(p, UART_LCR, lcr); | ||
| 150 | uart->ier = serial_read_reg(p, UART_IER); | ||
| 151 | uart->sysc = serial_read_reg(p, UART_OMAP_SYSC); | ||
| 152 | uart->scr = serial_read_reg(p, UART_OMAP_SCR); | ||
| 153 | uart->wer = serial_read_reg(p, UART_OMAP_WER); | ||
| 154 | |||
| 155 | uart->context_valid = 1; | ||
| 156 | } | ||
| 157 | |||
| 158 | static void omap_uart_restore_context(struct omap_uart_state *uart) | ||
| 159 | { | ||
| 160 | u16 efr = 0; | ||
| 161 | struct plat_serial8250_port *p = uart->p; | ||
| 162 | |||
| 163 | if (!enable_off_mode) | ||
| 164 | return; | ||
| 165 | |||
| 166 | if (!uart->context_valid) | ||
| 167 | return; | ||
| 168 | |||
| 169 | uart->context_valid = 0; | ||
| 170 | |||
| 171 | serial_write_reg(p, UART_OMAP_MDR1, 0x7); | ||
| 172 | serial_write_reg(p, UART_LCR, 0xBF); /* Config B mode */ | ||
| 173 | efr = serial_read_reg(p, UART_EFR); | ||
| 174 | serial_write_reg(p, UART_EFR, UART_EFR_ECB); | ||
| 175 | serial_write_reg(p, UART_LCR, 0x0); /* Operational mode */ | ||
| 176 | serial_write_reg(p, UART_IER, 0x0); | ||
| 177 | serial_write_reg(p, UART_LCR, 0xBF); /* Config B mode */ | ||
| 178 | serial_write_reg(p, UART_DLL, uart->dll); | ||
| 179 | serial_write_reg(p, UART_DLM, uart->dlh); | ||
| 180 | serial_write_reg(p, UART_LCR, 0x0); /* Operational mode */ | ||
| 181 | serial_write_reg(p, UART_IER, uart->ier); | ||
| 182 | serial_write_reg(p, UART_FCR, 0xA1); | ||
| 183 | serial_write_reg(p, UART_LCR, 0xBF); /* Config B mode */ | ||
| 184 | serial_write_reg(p, UART_EFR, efr); | ||
| 185 | serial_write_reg(p, UART_LCR, UART_LCR_WLEN8); | ||
| 186 | serial_write_reg(p, UART_OMAP_SCR, uart->scr); | ||
| 187 | serial_write_reg(p, UART_OMAP_WER, uart->wer); | ||
| 188 | serial_write_reg(p, UART_OMAP_SYSC, uart->sysc); | ||
| 189 | serial_write_reg(p, UART_OMAP_MDR1, 0x00); /* UART 16x mode */ | ||
| 190 | } | ||
| 191 | #else | ||
| 192 | static inline void omap_uart_save_context(struct omap_uart_state *uart) {} | ||
| 193 | static inline void omap_uart_restore_context(struct omap_uart_state *uart) {} | ||
| 194 | #endif /* CONFIG_PM && CONFIG_ARCH_OMAP3 */ | ||
| 195 | |||
| 196 | static inline void omap_uart_enable_clocks(struct omap_uart_state *uart) | ||
| 197 | { | ||
| 198 | if (uart->clocked) | ||
| 199 | return; | ||
| 200 | |||
| 201 | clk_enable(uart->ick); | ||
| 202 | clk_enable(uart->fck); | ||
| 203 | uart->clocked = 1; | ||
| 204 | omap_uart_restore_context(uart); | ||
| 205 | } | ||
| 206 | |||
| 207 | #ifdef CONFIG_PM | ||
| 208 | |||
| 209 | static inline void omap_uart_disable_clocks(struct omap_uart_state *uart) | ||
| 210 | { | ||
| 211 | if (!uart->clocked) | ||
| 212 | return; | ||
| 213 | |||
| 214 | omap_uart_save_context(uart); | ||
| 215 | uart->clocked = 0; | ||
| 216 | clk_disable(uart->ick); | ||
| 217 | clk_disable(uart->fck); | ||
| 218 | } | ||
| 219 | |||
| 220 | static void omap_uart_smart_idle_enable(struct omap_uart_state *uart, | ||
| 221 | int enable) | ||
| 222 | { | ||
| 223 | struct plat_serial8250_port *p = uart->p; | ||
| 224 | u16 sysc; | ||
| 225 | |||
| 226 | sysc = serial_read_reg(p, UART_OMAP_SYSC) & 0x7; | ||
| 227 | if (enable) | ||
| 228 | sysc |= 0x2 << 3; | ||
| 229 | else | ||
| 230 | sysc |= 0x1 << 3; | ||
| 231 | |||
| 232 | serial_write_reg(p, UART_OMAP_SYSC, sysc); | ||
| 233 | } | ||
| 234 | |||
| 235 | static void omap_uart_block_sleep(struct omap_uart_state *uart) | ||
| 236 | { | ||
| 237 | omap_uart_enable_clocks(uart); | ||
| 238 | |||
| 239 | omap_uart_smart_idle_enable(uart, 0); | ||
| 240 | uart->can_sleep = 0; | ||
| 241 | if (uart->timeout) | ||
| 242 | mod_timer(&uart->timer, jiffies + uart->timeout); | ||
| 243 | else | ||
| 244 | del_timer(&uart->timer); | ||
| 245 | } | ||
| 246 | |||
| 247 | static void omap_uart_allow_sleep(struct omap_uart_state *uart) | ||
| 248 | { | ||
| 249 | if (!uart->clocked) | ||
| 250 | return; | ||
| 251 | |||
| 252 | omap_uart_smart_idle_enable(uart, 1); | ||
| 253 | uart->can_sleep = 1; | ||
| 254 | del_timer(&uart->timer); | ||
| 255 | } | ||
| 256 | |||
| 257 | static void omap_uart_idle_timer(unsigned long data) | ||
| 258 | { | ||
| 259 | struct omap_uart_state *uart = (struct omap_uart_state *)data; | ||
| 260 | |||
| 261 | omap_uart_allow_sleep(uart); | ||
| 262 | } | ||
| 263 | |||
| 264 | void omap_uart_prepare_idle(int num) | ||
| 265 | { | ||
| 266 | struct omap_uart_state *uart; | ||
| 267 | |||
| 268 | list_for_each_entry(uart, &uart_list, node) { | ||
| 269 | if (num == uart->num && uart->can_sleep) { | ||
| 270 | omap_uart_disable_clocks(uart); | ||
| 271 | return; | ||
| 272 | } | ||
| 273 | } | ||
| 274 | } | ||
| 275 | |||
| 276 | void omap_uart_resume_idle(int num) | ||
| 277 | { | ||
| 278 | struct omap_uart_state *uart; | ||
| 279 | |||
| 280 | list_for_each_entry(uart, &uart_list, node) { | ||
| 281 | if (num == uart->num) { | ||
| 282 | omap_uart_enable_clocks(uart); | ||
| 283 | |||
| 284 | /* Check for IO pad wakeup */ | ||
| 285 | if (cpu_is_omap34xx() && uart->padconf) { | ||
| 286 | u16 p = omap_ctrl_readw(uart->padconf); | ||
| 287 | |||
| 288 | if (p & OMAP3_PADCONF_WAKEUPEVENT0) | ||
| 289 | omap_uart_block_sleep(uart); | ||
| 96 | } | 290 | } |
| 291 | |||
| 292 | /* Check for normal UART wakeup */ | ||
| 293 | if (__raw_readl(uart->wk_st) & uart->wk_mask) | ||
| 294 | omap_uart_block_sleep(uart); | ||
| 295 | |||
| 296 | return; | ||
| 97 | } | 297 | } |
| 98 | } | 298 | } |
| 99 | } | 299 | } |
| 100 | 300 | ||
| 301 | void omap_uart_prepare_suspend(void) | ||
| 302 | { | ||
| 303 | struct omap_uart_state *uart; | ||
| 304 | |||
| 305 | list_for_each_entry(uart, &uart_list, node) { | ||
| 306 | omap_uart_allow_sleep(uart); | ||
| 307 | } | ||
| 308 | } | ||
| 309 | |||
| 310 | int omap_uart_can_sleep(void) | ||
| 311 | { | ||
| 312 | struct omap_uart_state *uart; | ||
| 313 | int can_sleep = 1; | ||
| 314 | |||
| 315 | list_for_each_entry(uart, &uart_list, node) { | ||
| 316 | if (!uart->clocked) | ||
| 317 | continue; | ||
| 318 | |||
| 319 | if (!uart->can_sleep) { | ||
| 320 | can_sleep = 0; | ||
| 321 | continue; | ||
| 322 | } | ||
| 323 | |||
| 324 | /* This UART can now safely sleep. */ | ||
| 325 | omap_uart_allow_sleep(uart); | ||
| 326 | } | ||
| 327 | |||
| 328 | return can_sleep; | ||
| 329 | } | ||
| 330 | |||
| 331 | /** | ||
| 332 | * omap_uart_interrupt() | ||
| 333 | * | ||
| 334 | * This handler is used only to detect that *any* UART interrupt has | ||
| 335 | * occurred. It does _nothing_ to handle the interrupt. Rather, | ||
| 336 | * any UART interrupt will trigger the inactivity timer so the | ||
| 337 | * UART will not idle or sleep for its timeout period. | ||
| 338 | * | ||
| 339 | **/ | ||
| 340 | static irqreturn_t omap_uart_interrupt(int irq, void *dev_id) | ||
| 341 | { | ||
| 342 | struct omap_uart_state *uart = dev_id; | ||
| 343 | |||
| 344 | omap_uart_block_sleep(uart); | ||
| 345 | |||
| 346 | return IRQ_NONE; | ||
| 347 | } | ||
| 348 | |||
| 349 | static u32 sleep_timeout = DEFAULT_TIMEOUT; | ||
| 350 | |||
| 351 | static void omap_uart_idle_init(struct omap_uart_state *uart) | ||
| 352 | { | ||
| 353 | u32 v; | ||
| 354 | struct plat_serial8250_port *p = uart->p; | ||
| 355 | int ret; | ||
| 356 | |||
| 357 | uart->can_sleep = 0; | ||
| 358 | uart->timeout = sleep_timeout; | ||
| 359 | setup_timer(&uart->timer, omap_uart_idle_timer, | ||
| 360 | (unsigned long) uart); | ||
| 361 | mod_timer(&uart->timer, jiffies + uart->timeout); | ||
| 362 | omap_uart_smart_idle_enable(uart, 0); | ||
| 363 | |||
| 364 | if (cpu_is_omap34xx()) { | ||
| 365 | u32 mod = (uart->num == 2) ? OMAP3430_PER_MOD : CORE_MOD; | ||
| 366 | u32 wk_mask = 0; | ||
| 367 | u32 padconf = 0; | ||
| 368 | |||
| 369 | uart->wk_en = OMAP34XX_PRM_REGADDR(mod, PM_WKEN1); | ||
| 370 | uart->wk_st = OMAP34XX_PRM_REGADDR(mod, PM_WKST1); | ||
| 371 | switch (uart->num) { | ||
| 372 | case 0: | ||
| 373 | wk_mask = OMAP3430_ST_UART1_MASK; | ||
| 374 | padconf = 0x182; | ||
| 375 | break; | ||
| 376 | case 1: | ||
| 377 | wk_mask = OMAP3430_ST_UART2_MASK; | ||
| 378 | padconf = 0x17a; | ||
| 379 | break; | ||
| 380 | case 2: | ||
| 381 | wk_mask = OMAP3430_ST_UART3_MASK; | ||
| 382 | padconf = 0x19e; | ||
| 383 | break; | ||
| 384 | } | ||
| 385 | uart->wk_mask = wk_mask; | ||
| 386 | uart->padconf = padconf; | ||
| 387 | } else if (cpu_is_omap24xx()) { | ||
| 388 | u32 wk_mask = 0; | ||
| 389 | |||
| 390 | if (cpu_is_omap2430()) { | ||
| 391 | uart->wk_en = OMAP2430_PRM_REGADDR(CORE_MOD, PM_WKEN1); | ||
| 392 | uart->wk_st = OMAP2430_PRM_REGADDR(CORE_MOD, PM_WKST1); | ||
| 393 | } else if (cpu_is_omap2420()) { | ||
| 394 | uart->wk_en = OMAP2420_PRM_REGADDR(CORE_MOD, PM_WKEN1); | ||
| 395 | uart->wk_st = OMAP2420_PRM_REGADDR(CORE_MOD, PM_WKST1); | ||
| 396 | } | ||
| 397 | switch (uart->num) { | ||
| 398 | case 0: | ||
| 399 | wk_mask = OMAP24XX_ST_UART1_MASK; | ||
| 400 | break; | ||
| 401 | case 1: | ||
| 402 | wk_mask = OMAP24XX_ST_UART2_MASK; | ||
| 403 | break; | ||
| 404 | case 2: | ||
| 405 | wk_mask = OMAP24XX_ST_UART3_MASK; | ||
| 406 | break; | ||
| 407 | } | ||
| 408 | uart->wk_mask = wk_mask; | ||
| 409 | } else { | ||
| 410 | uart->wk_en = 0; | ||
| 411 | uart->wk_st = 0; | ||
| 412 | uart->wk_mask = 0; | ||
| 413 | uart->padconf = 0; | ||
| 414 | } | ||
| 415 | |||
| 416 | /* Set wake-enable bit */ | ||
| 417 | if (uart->wk_en && uart->wk_mask) { | ||
| 418 | v = __raw_readl(uart->wk_en); | ||
| 419 | v |= uart->wk_mask; | ||
| 420 | __raw_writel(v, uart->wk_en); | ||
| 421 | } | ||
| 422 | |||
| 423 | /* Ensure IOPAD wake-enables are set */ | ||
| 424 | if (cpu_is_omap34xx() && uart->padconf) { | ||
| 425 | u16 v; | ||
| 426 | |||
| 427 | v = omap_ctrl_readw(uart->padconf); | ||
| 428 | v |= OMAP3_PADCONF_WAKEUPENABLE0; | ||
| 429 | omap_ctrl_writew(v, uart->padconf); | ||
| 430 | } | ||
| 431 | |||
| 432 | p->flags |= UPF_SHARE_IRQ; | ||
| 433 | ret = request_irq(p->irq, omap_uart_interrupt, IRQF_SHARED, | ||
| 434 | "serial idle", (void *)uart); | ||
| 435 | WARN_ON(ret); | ||
| 436 | } | ||
| 437 | |||
| 438 | static ssize_t sleep_timeout_show(struct kobject *kobj, | ||
| 439 | struct kobj_attribute *attr, | ||
| 440 | char *buf) | ||
| 441 | { | ||
| 442 | return sprintf(buf, "%u\n", sleep_timeout / HZ); | ||
| 443 | } | ||
| 444 | |||
| 445 | static ssize_t sleep_timeout_store(struct kobject *kobj, | ||
| 446 | struct kobj_attribute *attr, | ||
| 447 | const char *buf, size_t n) | ||
| 448 | { | ||
| 449 | struct omap_uart_state *uart; | ||
| 450 | unsigned int value; | ||
| 451 | |||
| 452 | if (sscanf(buf, "%u", &value) != 1) { | ||
| 453 | printk(KERN_ERR "sleep_timeout_store: Invalid value\n"); | ||
| 454 | return -EINVAL; | ||
| 455 | } | ||
| 456 | sleep_timeout = value * HZ; | ||
| 457 | list_for_each_entry(uart, &uart_list, node) { | ||
| 458 | uart->timeout = sleep_timeout; | ||
| 459 | if (uart->timeout) | ||
| 460 | mod_timer(&uart->timer, jiffies + uart->timeout); | ||
| 461 | else | ||
| 462 | /* A zero value means disable timeout feature */ | ||
| 463 | omap_uart_block_sleep(uart); | ||
| 464 | } | ||
| 465 | return n; | ||
| 466 | } | ||
| 467 | |||
| 468 | static struct kobj_attribute sleep_timeout_attr = | ||
| 469 | __ATTR(sleep_timeout, 0644, sleep_timeout_show, sleep_timeout_store); | ||
| 470 | |||
| 471 | #else | ||
| 472 | static inline void omap_uart_idle_init(struct omap_uart_state *uart) {} | ||
| 473 | #endif /* CONFIG_PM */ | ||
| 474 | |||
| 475 | static struct platform_device serial_device = { | ||
| 476 | .name = "serial8250", | ||
| 477 | .id = PLAT8250_DEV_PLATFORM, | ||
| 478 | .dev = { | ||
| 479 | .platform_data = serial_platform_data, | ||
| 480 | }, | ||
| 481 | }; | ||
| 482 | |||
| 101 | void __init omap_serial_init(void) | 483 | void __init omap_serial_init(void) |
| 102 | { | 484 | { |
| 103 | int i; | 485 | int i, err; |
| 104 | const struct omap_uart_config *info; | 486 | const struct omap_uart_config *info; |
| 105 | char name[16]; | 487 | char name[16]; |
| 106 | 488 | ||
| @@ -114,9 +496,14 @@ void __init omap_serial_init(void) | |||
| 114 | 496 | ||
| 115 | if (info == NULL) | 497 | if (info == NULL) |
| 116 | return; | 498 | return; |
| 499 | if (cpu_is_omap44xx()) { | ||
| 500 | for (i = 0; i < OMAP_MAX_NR_PORTS; i++) | ||
| 501 | serial_platform_data[i].irq += 32; | ||
| 502 | } | ||
| 117 | 503 | ||
| 118 | for (i = 0; i < OMAP_MAX_NR_PORTS; i++) { | 504 | for (i = 0; i < OMAP_MAX_NR_PORTS; i++) { |
| 119 | struct plat_serial8250_port *p = serial_platform_data + i; | 505 | struct plat_serial8250_port *p = serial_platform_data + i; |
| 506 | struct omap_uart_state *uart = &omap_uart[i]; | ||
| 120 | 507 | ||
| 121 | if (!(info->enabled_uarts & (1 << i))) { | 508 | if (!(info->enabled_uarts & (1 << i))) { |
| 122 | p->membase = NULL; | 509 | p->membase = NULL; |
| @@ -125,35 +512,39 @@ void __init omap_serial_init(void) | |||
| 125 | } | 512 | } |
| 126 | 513 | ||
| 127 | sprintf(name, "uart%d_ick", i+1); | 514 | sprintf(name, "uart%d_ick", i+1); |
| 128 | uart_ick[i] = clk_get(NULL, name); | 515 | uart->ick = clk_get(NULL, name); |
| 129 | if (IS_ERR(uart_ick[i])) { | 516 | if (IS_ERR(uart->ick)) { |
| 130 | printk(KERN_ERR "Could not get uart%d_ick\n", i+1); | 517 | printk(KERN_ERR "Could not get uart%d_ick\n", i+1); |
| 131 | uart_ick[i] = NULL; | 518 | uart->ick = NULL; |
| 132 | } else | 519 | } |
| 133 | clk_enable(uart_ick[i]); | ||
| 134 | 520 | ||
| 135 | sprintf(name, "uart%d_fck", i+1); | 521 | sprintf(name, "uart%d_fck", i+1); |
| 136 | uart_fck[i] = clk_get(NULL, name); | 522 | uart->fck = clk_get(NULL, name); |
| 137 | if (IS_ERR(uart_fck[i])) { | 523 | if (IS_ERR(uart->fck)) { |
| 138 | printk(KERN_ERR "Could not get uart%d_fck\n", i+1); | 524 | printk(KERN_ERR "Could not get uart%d_fck\n", i+1); |
| 139 | uart_fck[i] = NULL; | 525 | uart->fck = NULL; |
| 140 | } else | 526 | } |
| 141 | clk_enable(uart_fck[i]); | ||
| 142 | 527 | ||
| 143 | omap_serial_reset(p); | 528 | if (!uart->ick || !uart->fck) |
| 529 | continue; | ||
| 530 | |||
| 531 | uart->num = i; | ||
| 532 | p->private_data = uart; | ||
| 533 | uart->p = p; | ||
| 534 | list_add(&uart->node, &uart_list); | ||
| 535 | |||
| 536 | omap_uart_enable_clocks(uart); | ||
| 537 | omap_uart_reset(uart); | ||
| 538 | omap_uart_idle_init(uart); | ||
| 144 | } | 539 | } |
| 145 | } | ||
| 146 | 540 | ||
| 147 | static struct platform_device serial_device = { | 541 | err = platform_device_register(&serial_device); |
| 148 | .name = "serial8250", | 542 | |
| 149 | .id = PLAT8250_DEV_PLATFORM, | 543 | #ifdef CONFIG_PM |
| 150 | .dev = { | 544 | if (!err) |
| 151 | .platform_data = serial_platform_data, | 545 | err = sysfs_create_file(&serial_device.dev.kobj, |
| 152 | }, | 546 | &sleep_timeout_attr.attr); |
| 153 | }; | 547 | #endif |
| 154 | 548 | ||
| 155 | static int __init omap_init(void) | ||
| 156 | { | ||
| 157 | return platform_device_register(&serial_device); | ||
| 158 | } | 549 | } |
| 159 | arch_initcall(omap_init); | 550 | |
