1 /* linux/arch/arm/mach-exynos4/init.c
3 * Copyright (c) 2010 Samsung Electronics Co., Ltd.
4 * http://www.samsung.com/
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.
11 #include <linux/serial_core.h>
14 #include <plat/devs.h>
15 #include <plat/regs-serial.h>
17 static struct s3c24xx_uart_clksrc exynos4_serial_clocks[] = {
26 /* uart registration process */
27 void __init exynos4_common_init_uarts(struct s3c2410_uartcfg *cfg, int no)
29 struct s3c2410_uartcfg *tcfg = cfg;
32 for (ucnt = 0; ucnt < no; ucnt++, tcfg++) {
34 tcfg->has_fracval = 1;
35 tcfg->clocks = exynos4_serial_clocks;
36 tcfg->clocks_size = ARRAY_SIZE(exynos4_serial_clocks);
38 tcfg->flags |= NO_NEED_CHECK_CLKSRC;
41 s3c24xx_init_uartdevs("s5pv210-uart", s5p_uart_resources, cfg, no);