Kukjin Kim | 7d30e8b | 2011-02-14 16:33:10 +0900 | [diff] [blame] | 1 | /* linux/arch/arm/mach-exynos4/init.c |
Changhwan Youn | 2b12b5c | 2010-07-26 21:08:52 +0900 | [diff] [blame] | 2 | * |
| 3 | * Copyright (c) 2010 Samsung Electronics Co., Ltd. |
| 4 | * http://www.samsung.com/ |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify |
| 7 | * it under the terms of the GNU General Public License version 2 as |
| 8 | * published by the Free Software Foundation. |
| 9 | */ |
| 10 | |
| 11 | #include <linux/serial_core.h> |
| 12 | |
| 13 | #include <plat/cpu.h> |
| 14 | #include <plat/devs.h> |
| 15 | #include <plat/regs-serial.h> |
| 16 | |
Kukjin Kim | 7d30e8b | 2011-02-14 16:33:10 +0900 | [diff] [blame] | 17 | static struct s3c24xx_uart_clksrc exynos4_serial_clocks[] = { |
Changhwan Youn | 2b12b5c | 2010-07-26 21:08:52 +0900 | [diff] [blame] | 18 | [0] = { |
| 19 | .name = "uclk1", |
| 20 | .divisor = 1, |
| 21 | .min_baud = 0, |
| 22 | .max_baud = 0, |
| 23 | }, |
| 24 | }; |
| 25 | |
| 26 | /* uart registration process */ |
Kukjin Kim | 7d30e8b | 2011-02-14 16:33:10 +0900 | [diff] [blame] | 27 | void __init exynos4_common_init_uarts(struct s3c2410_uartcfg *cfg, int no) |
Changhwan Youn | 2b12b5c | 2010-07-26 21:08:52 +0900 | [diff] [blame] | 28 | { |
| 29 | struct s3c2410_uartcfg *tcfg = cfg; |
| 30 | u32 ucnt; |
| 31 | |
| 32 | for (ucnt = 0; ucnt < no; ucnt++, tcfg++) { |
| 33 | if (!tcfg->clocks) { |
| 34 | tcfg->has_fracval = 1; |
Kukjin Kim | 7d30e8b | 2011-02-14 16:33:10 +0900 | [diff] [blame] | 35 | tcfg->clocks = exynos4_serial_clocks; |
| 36 | tcfg->clocks_size = ARRAY_SIZE(exynos4_serial_clocks); |
Changhwan Youn | 2b12b5c | 2010-07-26 21:08:52 +0900 | [diff] [blame] | 37 | } |
Boojin Kim | 470f229 | 2011-05-27 19:04:03 -0700 | [diff] [blame] | 38 | tcfg->flags |= NO_NEED_CHECK_CLKSRC; |
Changhwan Youn | 2b12b5c | 2010-07-26 21:08:52 +0900 | [diff] [blame] | 39 | } |
| 40 | |
| 41 | s3c24xx_init_uartdevs("s5pv210-uart", s5p_uart_resources, cfg, no); |
| 42 | } |