blob: feb141b1f915bf131622b6388ce69901e9636797 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* linux/arch/arm/mach-s3c2410/s3c2410.c
2 *
3 * Copyright (c) 2003-2005 Simtec Electronics
4 * Ben Dooks <ben@simtec.co.uk>
5 *
6 * http://www.simtec.co.uk/products/EB2410ITX/
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
Linus Torvalds1da177e2005-04-16 15:20:36 -070011*/
12
13#include <linux/kernel.h>
14#include <linux/types.h>
15#include <linux/interrupt.h>
16#include <linux/list.h>
17#include <linux/timer.h>
18#include <linux/init.h>
Ben Dookse4253822008-10-21 14:06:38 +010019#include <linux/clk.h>
Ben Dooksa3413052006-06-22 22:18:13 +010020#include <linux/sysdev.h>
Ben Dooksb6d1f542006-12-17 23:22:26 +010021#include <linux/serial_core.h>
Russell Kingd052d1b2005-10-29 19:07:23 +010022#include <linux/platform_device.h>
Russell Kingfced80c2008-09-06 12:10:45 +010023#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
25#include <asm/mach/arch.h>
26#include <asm/mach/map.h>
27#include <asm/mach/irq.h>
28
Russell Kinga09e64f2008-08-05 16:14:15 +010029#include <mach/hardware.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <asm/irq.h>
31
Ben Dookse4253822008-10-21 14:06:38 +010032#include <plat/cpu-freq.h>
33
Russell Kinga09e64f2008-08-05 16:14:15 +010034#include <mach/regs-clock.h>
Ben Dooksa2b7ba92008-10-07 22:26:09 +010035#include <plat/regs-serial.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
Ben Dooksa2b7ba92008-10-07 22:26:09 +010037#include <plat/s3c2410.h>
38#include <plat/cpu.h>
39#include <plat/devs.h>
Ben Dooksd5120ae2008-10-07 23:09:51 +010040#include <plat/clock.h>
Ben Dookse24b8642008-10-21 14:06:34 +010041#include <plat/pll.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
43/* Initial IO mappings */
44
45static struct map_desc s3c2410_iodesc[] __initdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 IODESC_ENT(CLKPWR),
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 IODESC_ENT(TIMER),
Dimitry Andric62ee9142005-08-17 13:01:19 +010048 IODESC_ENT(WATCHDOG),
Linus Torvalds1da177e2005-04-16 15:20:36 -070049};
50
Linus Torvalds1da177e2005-04-16 15:20:36 -070051/* our uart devices */
52
Linus Torvalds1da177e2005-04-16 15:20:36 -070053/* uart registration process */
54
55void __init s3c2410_init_uarts(struct s3c2410_uartcfg *cfg, int no)
56{
Ben Dooks66a9b492006-06-18 23:04:05 +010057 s3c24xx_init_uartdevs("s3c2410-uart", s3c2410_uart_resources, cfg, no);
Linus Torvalds1da177e2005-04-16 15:20:36 -070058}
59
60/* s3c2410_map_io
61 *
62 * register the standard cpu IO areas, and any passed in from the
63 * machine specific initialisation.
64*/
65
Ben Dooks74b265d2008-10-21 14:06:31 +010066void __init s3c2410_map_io(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070067{
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 iotable_init(s3c2410_iodesc, ARRAY_SIZE(s3c2410_iodesc));
Linus Torvalds1da177e2005-04-16 15:20:36 -070069}
70
Ben Dookse4253822008-10-21 14:06:38 +010071void __init_or_cpufreq s3c2410_setup_clocks(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070072{
Ben Dookse4253822008-10-21 14:06:38 +010073 struct clk *xtal_clk;
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 unsigned long tmp;
Ben Dookse4253822008-10-21 14:06:38 +010075 unsigned long xtal;
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 unsigned long fclk;
77 unsigned long hclk;
78 unsigned long pclk;
79
Ben Dookse4253822008-10-21 14:06:38 +010080 xtal_clk = clk_get(NULL, "xtal");
81 xtal = clk_get_rate(xtal_clk);
82 clk_put(xtal_clk);
83
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 /* now we've got our machine bits initialised, work out what
85 * clocks we've got */
86
Ben Dookse24b8642008-10-21 14:06:34 +010087 fclk = s3c24xx_get_pll(__raw_readl(S3C2410_MPLLCON), xtal);
Linus Torvalds1da177e2005-04-16 15:20:36 -070088
89 tmp = __raw_readl(S3C2410_CLKDIVN);
90
91 /* work out clock scalings */
92
93 hclk = fclk / ((tmp & S3C2410_CLKDIVN_HDIVN) ? 2 : 1);
94 pclk = hclk / ((tmp & S3C2410_CLKDIVN_PDIVN) ? 2 : 1);
95
96 /* print brieft summary of clocks, etc */
97
98 printk("S3C2410: core %ld.%03ld MHz, memory %ld.%03ld MHz, peripheral %ld.%03ld MHz\n",
99 print_mhz(fclk), print_mhz(hclk), print_mhz(pclk));
100
101 /* initialise the clocks here, to allow other things like the
102 * console to use them
103 */
104
Ben Dookse4253822008-10-21 14:06:38 +0100105 s3c24xx_setup_clocks(fclk, hclk, pclk);
106}
107
108void __init s3c2410_init_clocks(int xtal)
109{
110 s3c24xx_register_baseclocks(xtal);
111 s3c2410_setup_clocks();
Ben Dooks99c13852006-06-22 22:18:20 +0100112 s3c2410_baseclk_add();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113}
114
Ben Dooksa3413052006-06-22 22:18:13 +0100115struct sysdev_class s3c2410_sysclass = {
Kay Sieversaf5ca3f2007-12-20 02:09:39 +0100116 .name = "s3c2410-core",
Ben Dooksa3413052006-06-22 22:18:13 +0100117};
118
119static struct sys_device s3c2410_sysdev = {
120 .cls = &s3c2410_sysclass,
121};
122
123/* need to register class before we actually register the device, and
124 * we also need to ensure that it has been initialised before any of the
Ben Dooks6db3eee2007-02-12 16:03:22 +0100125 * drivers even try to use it (even if not on an s3c2410 based system)
Ben Dooksa3413052006-06-22 22:18:13 +0100126 * as a driver which may support both 2410 and 2440 may try and use it.
127*/
128
129static int __init s3c2410_core_init(void)
130{
131 return sysdev_class_register(&s3c2410_sysclass);
132}
133
134core_initcall(s3c2410_core_init);
135
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136int __init s3c2410_init(void)
137{
138 printk("S3C2410: Initialising architecture\n");
139
Ben Dooksa3413052006-06-22 22:18:13 +0100140 return sysdev_register(&s3c2410_sysdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141}