Byungho Min | 8acd1ad | 2009-06-23 21:40:15 +0900 | [diff] [blame] | 1 | /* 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 Szyprowski | acc8470 | 2010-05-20 07:51:08 +0200 | [diff] [blame] | 29 | #include <asm/proc-fns.h> |
| 30 | |
Byungho Min | 8acd1ad | 2009-06-23 21:40:15 +0900 | [diff] [blame] | 31 | #include <mach/hardware.h> |
| 32 | #include <mach/map.h> |
| 33 | #include <asm/irq.h> |
| 34 | |
Byungho Min | 8acd1ad | 2009-06-23 21:40:15 +0900 | [diff] [blame] | 35 | #include <plat/regs-serial.h> |
Marek Szyprowski | acc8470 | 2010-05-20 07:51:08 +0200 | [diff] [blame] | 36 | #include <mach/regs-clock.h> |
Byungho Min | 8acd1ad | 2009-06-23 21:40:15 +0900 | [diff] [blame] | 37 | |
| 38 | #include <plat/cpu.h> |
| 39 | #include <plat/devs.h> |
| 40 | #include <plat/clock.h> |
Byungho Min | 8acd1ad | 2009-06-23 21:40:15 +0900 | [diff] [blame] | 41 | #include <plat/iic-core.h> |
Marek Szyprowski | acc8470 | 2010-05-20 07:51:08 +0200 | [diff] [blame] | 42 | #include <plat/sdhci.h> |
Marek Szyprowski | 999304b | 2010-05-20 08:59:05 +0200 | [diff] [blame] | 43 | #include <plat/onenand-core.h> |
| 44 | |
Byungho Min | 8acd1ad | 2009-06-23 21:40:15 +0900 | [diff] [blame] | 45 | #include <plat/s5pc100.h> |
| 46 | |
| 47 | /* Initial IO mappings */ |
| 48 | |
| 49 | static struct map_desc s5pc100_iodesc[] __initdata = { |
Marek Szyprowski | acc8470 | 2010-05-20 07:51:08 +0200 | [diff] [blame] | 50 | { |
| 51 | .virtual = (unsigned long)S5P_VA_SYSTIMER, |
| 52 | .pfn = __phys_to_pfn(S5PC100_PA_SYSTIMER), |
| 53 | .length = SZ_16K, |
| 54 | .type = MT_DEVICE, |
| 55 | }, { |
| 56 | .virtual = (unsigned long)VA_VIC2, |
Ben Dooks | 45c7943 | 2010-05-23 16:17:10 +0100 | [diff] [blame] | 57 | .pfn = __phys_to_pfn(S5P_PA_VIC2), |
Marek Szyprowski | acc8470 | 2010-05-20 07:51:08 +0200 | [diff] [blame] | 58 | .length = SZ_16K, |
| 59 | .type = MT_DEVICE, |
| 60 | }, { |
| 61 | .virtual = (unsigned long)S5PC100_VA_OTHERS, |
| 62 | .pfn = __phys_to_pfn(S5PC100_PA_OTHERS), |
| 63 | .length = SZ_4K, |
| 64 | .type = MT_DEVICE, |
| 65 | } |
Byungho Min | 8acd1ad | 2009-06-23 21:40:15 +0900 | [diff] [blame] | 66 | }; |
| 67 | |
Kyungmin Park | c3fcf5d | 2009-11-17 08:41:17 +0100 | [diff] [blame] | 68 | static void s5pc100_idle(void) |
| 69 | { |
Marek Szyprowski | acc8470 | 2010-05-20 07:51:08 +0200 | [diff] [blame] | 70 | if (!need_resched()) |
| 71 | cpu_do_idle(); |
Kyungmin Park | c3fcf5d | 2009-11-17 08:41:17 +0100 | [diff] [blame] | 72 | |
Marek Szyprowski | acc8470 | 2010-05-20 07:51:08 +0200 | [diff] [blame] | 73 | local_irq_enable(); |
Kyungmin Park | c3fcf5d | 2009-11-17 08:41:17 +0100 | [diff] [blame] | 74 | } |
| 75 | |
Byungho Min | 8acd1ad | 2009-06-23 21:40:15 +0900 | [diff] [blame] | 76 | /* s5pc100_map_io |
| 77 | * |
| 78 | * register the standard cpu IO areas |
| 79 | */ |
| 80 | |
| 81 | void __init s5pc100_map_io(void) |
| 82 | { |
| 83 | iotable_init(s5pc100_iodesc, ARRAY_SIZE(s5pc100_iodesc)); |
| 84 | |
| 85 | /* initialise device information early */ |
Kyungmin Park | 86cd4f5 | 2009-11-17 08:41:23 +0100 | [diff] [blame] | 86 | s5pc100_default_sdhci0(); |
| 87 | s5pc100_default_sdhci1(); |
| 88 | s5pc100_default_sdhci2(); |
Kyungmin Park | 5eda288 | 2009-11-17 08:41:21 +0100 | [diff] [blame] | 89 | |
| 90 | /* the i2c devices are directly compatible with s3c2440 */ |
| 91 | s3c_i2c0_setname("s3c2440-i2c"); |
| 92 | s3c_i2c1_setname("s3c2440-i2c"); |
Marek Szyprowski | 999304b | 2010-05-20 08:59:05 +0200 | [diff] [blame] | 93 | |
| 94 | s3c_onenand_setname("s5pc100-onenand"); |
Byungho Min | 8acd1ad | 2009-06-23 21:40:15 +0900 | [diff] [blame] | 95 | } |
| 96 | |
| 97 | void __init s5pc100_init_clocks(int xtal) |
| 98 | { |
Marek Szyprowski | acc8470 | 2010-05-20 07:51:08 +0200 | [diff] [blame] | 99 | printk(KERN_DEBUG "%s: initializing clocks\n", __func__); |
| 100 | |
Byungho Min | 8acd1ad | 2009-06-23 21:40:15 +0900 | [diff] [blame] | 101 | s3c24xx_register_baseclocks(xtal); |
Marek Szyprowski | acc8470 | 2010-05-20 07:51:08 +0200 | [diff] [blame] | 102 | s5p_register_clocks(xtal); |
Byungho Min | 8acd1ad | 2009-06-23 21:40:15 +0900 | [diff] [blame] | 103 | s5pc100_register_clocks(); |
| 104 | s5pc100_setup_clocks(); |
| 105 | } |
| 106 | |
| 107 | void __init s5pc100_init_irq(void) |
| 108 | { |
Marek Szyprowski | acc8470 | 2010-05-20 07:51:08 +0200 | [diff] [blame] | 109 | u32 vic[] = {~0, ~0, ~0}; |
Byungho Min | 8acd1ad | 2009-06-23 21:40:15 +0900 | [diff] [blame] | 110 | |
| 111 | /* VIC0, VIC1, and VIC2 are fully populated. */ |
Marek Szyprowski | acc8470 | 2010-05-20 07:51:08 +0200 | [diff] [blame] | 112 | s5p_init_irq(vic, ARRAY_SIZE(vic)); |
Byungho Min | 8acd1ad | 2009-06-23 21:40:15 +0900 | [diff] [blame] | 113 | } |
| 114 | |
Marek Szyprowski | acc8470 | 2010-05-20 07:51:08 +0200 | [diff] [blame] | 115 | static struct sysdev_class s5pc100_sysclass = { |
Byungho Min | 8acd1ad | 2009-06-23 21:40:15 +0900 | [diff] [blame] | 116 | .name = "s5pc100-core", |
| 117 | }; |
| 118 | |
| 119 | static struct sys_device s5pc100_sysdev = { |
| 120 | .cls = &s5pc100_sysclass, |
| 121 | }; |
| 122 | |
| 123 | static int __init s5pc100_core_init(void) |
| 124 | { |
| 125 | return sysdev_class_register(&s5pc100_sysclass); |
| 126 | } |
| 127 | |
| 128 | core_initcall(s5pc100_core_init); |
| 129 | |
| 130 | int __init s5pc100_init(void) |
| 131 | { |
Marek Szyprowski | acc8470 | 2010-05-20 07:51:08 +0200 | [diff] [blame] | 132 | printk(KERN_INFO "S5PC100: Initializing architecture\n"); |
Byungho Min | 8acd1ad | 2009-06-23 21:40:15 +0900 | [diff] [blame] | 133 | |
Marek Szyprowski | acc8470 | 2010-05-20 07:51:08 +0200 | [diff] [blame] | 134 | /* set idle function */ |
| 135 | pm_idle = s5pc100_idle; |
Kyungmin Park | c3fcf5d | 2009-11-17 08:41:17 +0100 | [diff] [blame] | 136 | |
Byungho Min | 8acd1ad | 2009-06-23 21:40:15 +0900 | [diff] [blame] | 137 | return sysdev_register(&s5pc100_sysdev); |
| 138 | } |