1 /* linux/arch/arm/mach-s5p6442/cpu.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/kernel.h>
12 #include <linux/types.h>
13 #include <linux/interrupt.h>
14 #include <linux/list.h>
15 #include <linux/timer.h>
16 #include <linux/init.h>
17 #include <linux/clk.h>
19 #include <linux/sysdev.h>
20 #include <linux/serial_core.h>
21 #include <linux/platform_device.h>
22 #include <linux/sched.h>
24 #include <asm/mach/arch.h>
25 #include <asm/mach/map.h>
26 #include <asm/mach/irq.h>
28 #include <asm/proc-fns.h>
30 #include <mach/hardware.h>
34 #include <plat/regs-serial.h>
35 #include <mach/regs-clock.h>
38 #include <plat/devs.h>
39 #include <plat/clock.h>
40 #include <plat/s5p6442.h>
42 /* Initial IO mappings */
44 static struct map_desc s5p6442_iodesc
[] __initdata
= {
46 .virtual = (unsigned long)S5P_VA_SYSTIMER
,
47 .pfn
= __phys_to_pfn(S5P6442_PA_SYSTIMER
),
51 .virtual = (unsigned long)S5P_VA_GPIO
,
52 .pfn
= __phys_to_pfn(S5P6442_PA_GPIO
),
56 .virtual = (unsigned long)VA_VIC0
,
57 .pfn
= __phys_to_pfn(S5P6442_PA_VIC0
),
61 .virtual = (unsigned long)VA_VIC1
,
62 .pfn
= __phys_to_pfn(S5P6442_PA_VIC1
),
66 .virtual = (unsigned long)VA_VIC2
,
67 .pfn
= __phys_to_pfn(S5P6442_PA_VIC2
),
71 .virtual = (unsigned long)S3C_VA_UART
,
72 .pfn
= __phys_to_pfn(S3C_PA_UART
),
78 static void s5p6442_idle(void)
89 * register the standard cpu IO areas
92 void __init
s5p6442_map_io(void)
94 iotable_init(s5p6442_iodesc
, ARRAY_SIZE(s5p6442_iodesc
));
97 void __init
s5p6442_init_clocks(int xtal
)
99 printk(KERN_DEBUG
"%s: initializing clocks\n", __func__
);
101 s3c24xx_register_baseclocks(xtal
);
102 s5p_register_clocks(xtal
);
103 s5p6442_register_clocks();
104 s5p6442_setup_clocks();
107 void __init
s5p6442_init_irq(void)
109 /* S5P6442 supports 3 VIC */
112 /* VIC0, VIC1, and VIC2: some interrupt reserved */
117 s5p_init_irq(vic
, ARRAY_SIZE(vic
));
120 struct sysdev_class s5p6442_sysclass
= {
121 .name
= "s5p6442-core",
124 static struct sys_device s5p6442_sysdev
= {
125 .cls
= &s5p6442_sysclass
,
128 static int __init
s5p6442_core_init(void)
130 return sysdev_class_register(&s5p6442_sysclass
);
133 core_initcall(s5p6442_core_init
);
135 int __init
s5p6442_init(void)
137 printk(KERN_INFO
"S5P6442: Initializing architecture\n");
139 /* set idle function */
140 pm_idle
= s5p6442_idle
;
142 return sysdev_register(&s5p6442_sysdev
);