blob: 5ce66de1a93d1b4fb6aa59d39ecfff20c14583e3 [file] [log] [blame]
Byungho Min8acd1ad2009-06-23 21:40:15 +09001/* linux/arch/arm/mach-s5pc100/cpu.c
2 *
3 * Copyright 2009 Samsung Electronics Co.
4 * Byungho Min <bhmin@samsung.com>
5 *
6 * Based on mach-s3c6410/cpu.c
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.
11*/
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>
19#include <linux/clk.h>
20#include <linux/io.h>
21#include <linux/sysdev.h>
22#include <linux/serial_core.h>
23#include <linux/platform_device.h>
24
25#include <asm/mach/arch.h>
26#include <asm/mach/map.h>
27#include <asm/mach/irq.h>
28
Marek Szyprowskiacc84702010-05-20 07:51:08 +020029#include <asm/proc-fns.h>
30
Byungho Min8acd1ad2009-06-23 21:40:15 +090031#include <mach/hardware.h>
32#include <mach/map.h>
33#include <asm/irq.h>
34
Byungho Min8acd1ad2009-06-23 21:40:15 +090035#include <plat/regs-serial.h>
Marek Szyprowskiacc84702010-05-20 07:51:08 +020036#include <mach/regs-clock.h>
Byungho Min8acd1ad2009-06-23 21:40:15 +090037
38#include <plat/cpu.h>
39#include <plat/devs.h>
40#include <plat/clock.h>
Abhilash Kesavan66194a72010-06-08 17:02:08 +090041#include <plat/ata-core.h>
Byungho Min8acd1ad2009-06-23 21:40:15 +090042#include <plat/iic-core.h>
Marek Szyprowskiacc84702010-05-20 07:51:08 +020043#include <plat/sdhci.h>
Marek Szyprowski999304b2010-05-20 08:59:05 +020044#include <plat/onenand-core.h>
45
Byungho Min8acd1ad2009-06-23 21:40:15 +090046#include <plat/s5pc100.h>
47
48/* Initial IO mappings */
49
50static struct map_desc s5pc100_iodesc[] __initdata = {
Marek Szyprowskiacc84702010-05-20 07:51:08 +020051 {
52 .virtual = (unsigned long)S5P_VA_SYSTIMER,
53 .pfn = __phys_to_pfn(S5PC100_PA_SYSTIMER),
54 .length = SZ_16K,
55 .type = MT_DEVICE,
56 }, {
57 .virtual = (unsigned long)VA_VIC2,
Ben Dooks45c79432010-05-23 16:17:10 +010058 .pfn = __phys_to_pfn(S5P_PA_VIC2),
Marek Szyprowskiacc84702010-05-20 07:51:08 +020059 .length = SZ_16K,
60 .type = MT_DEVICE,
61 }, {
62 .virtual = (unsigned long)S5PC100_VA_OTHERS,
63 .pfn = __phys_to_pfn(S5PC100_PA_OTHERS),
64 .length = SZ_4K,
65 .type = MT_DEVICE,
66 }
Byungho Min8acd1ad2009-06-23 21:40:15 +090067};
68
Kyungmin Parkc3fcf5d2009-11-17 08:41:17 +010069static void s5pc100_idle(void)
70{
Marek Szyprowskiacc84702010-05-20 07:51:08 +020071 if (!need_resched())
72 cpu_do_idle();
Kyungmin Parkc3fcf5d2009-11-17 08:41:17 +010073
Marek Szyprowskiacc84702010-05-20 07:51:08 +020074 local_irq_enable();
Kyungmin Parkc3fcf5d2009-11-17 08:41:17 +010075}
76
Byungho Min8acd1ad2009-06-23 21:40:15 +090077/* s5pc100_map_io
78 *
79 * register the standard cpu IO areas
80*/
81
82void __init s5pc100_map_io(void)
83{
84 iotable_init(s5pc100_iodesc, ARRAY_SIZE(s5pc100_iodesc));
85
86 /* initialise device information early */
Kyungmin Park86cd4f52009-11-17 08:41:23 +010087 s5pc100_default_sdhci0();
88 s5pc100_default_sdhci1();
89 s5pc100_default_sdhci2();
Kyungmin Park5eda2882009-11-17 08:41:21 +010090
91 /* the i2c devices are directly compatible with s3c2440 */
92 s3c_i2c0_setname("s3c2440-i2c");
93 s3c_i2c1_setname("s3c2440-i2c");
Marek Szyprowski999304b2010-05-20 08:59:05 +020094
95 s3c_onenand_setname("s5pc100-onenand");
Abhilash Kesavan66194a72010-06-08 17:02:08 +090096 s3c_cfcon_setname("s5pc100-pata");
Byungho Min8acd1ad2009-06-23 21:40:15 +090097}
98
99void __init s5pc100_init_clocks(int xtal)
100{
Marek Szyprowskiacc84702010-05-20 07:51:08 +0200101 printk(KERN_DEBUG "%s: initializing clocks\n", __func__);
102
Byungho Min8acd1ad2009-06-23 21:40:15 +0900103 s3c24xx_register_baseclocks(xtal);
Marek Szyprowskiacc84702010-05-20 07:51:08 +0200104 s5p_register_clocks(xtal);
Byungho Min8acd1ad2009-06-23 21:40:15 +0900105 s5pc100_register_clocks();
106 s5pc100_setup_clocks();
107}
108
109void __init s5pc100_init_irq(void)
110{
Marek Szyprowskiacc84702010-05-20 07:51:08 +0200111 u32 vic[] = {~0, ~0, ~0};
Byungho Min8acd1ad2009-06-23 21:40:15 +0900112
113 /* VIC0, VIC1, and VIC2 are fully populated. */
Marek Szyprowskiacc84702010-05-20 07:51:08 +0200114 s5p_init_irq(vic, ARRAY_SIZE(vic));
Byungho Min8acd1ad2009-06-23 21:40:15 +0900115}
116
Marek Szyprowskiacc84702010-05-20 07:51:08 +0200117static struct sysdev_class s5pc100_sysclass = {
Byungho Min8acd1ad2009-06-23 21:40:15 +0900118 .name = "s5pc100-core",
119};
120
121static struct sys_device s5pc100_sysdev = {
122 .cls = &s5pc100_sysclass,
123};
124
125static int __init s5pc100_core_init(void)
126{
127 return sysdev_class_register(&s5pc100_sysclass);
128}
129
130core_initcall(s5pc100_core_init);
131
132int __init s5pc100_init(void)
133{
Marek Szyprowskiacc84702010-05-20 07:51:08 +0200134 printk(KERN_INFO "S5PC100: Initializing architecture\n");
Byungho Min8acd1ad2009-06-23 21:40:15 +0900135
Marek Szyprowskiacc84702010-05-20 07:51:08 +0200136 /* set idle function */
137 pm_idle = s5pc100_idle;
Kyungmin Parkc3fcf5d2009-11-17 08:41:17 +0100138
Byungho Min8acd1ad2009-06-23 21:40:15 +0900139 return sysdev_register(&s5pc100_sysdev);
140}