diff options
author | Ben Dooks <ben-linux@fluff.org> | 2009-03-24 13:25:40 -0400 |
---|---|---|
committer | Ben Dooks <ben-linux@fluff.org> | 2009-05-07 06:04:57 -0400 |
commit | a6925c1c515513e22b0419e1a41155c88d22b1f4 (patch) | |
tree | 4ea28200d35286d215f45ca8d578d9ec19d4953b /arch/arm/mach-s3c6400 | |
parent | 2ab408e8759ad4b2a9bad3647838acd648d2c10c (diff) |
[ARM] S3C6400: Core support for S3C6400 SoC
Add the core support files for the Samsung S3C6400 SoC.
Signed-off-by: Ben Dooks <ben-linux@fluff.org>
Diffstat (limited to 'arch/arm/mach-s3c6400')
-rw-r--r-- | arch/arm/mach-s3c6400/Kconfig | 13 | ||||
-rw-r--r-- | arch/arm/mach-s3c6400/Makefile | 2 | ||||
-rw-r--r-- | arch/arm/mach-s3c6400/s3c6400.c | 83 |
3 files changed, 94 insertions, 4 deletions
diff --git a/arch/arm/mach-s3c6400/Kconfig b/arch/arm/mach-s3c6400/Kconfig index da87f2df103f..f0292a8cddde 100644 --- a/arch/arm/mach-s3c6400/Kconfig +++ b/arch/arm/mach-s3c6400/Kconfig | |||
@@ -5,13 +5,20 @@ | |||
5 | # | 5 | # |
6 | # Licensed under GPLv2 | 6 | # Licensed under GPLv2 |
7 | 7 | ||
8 | # Currently nothing here, this will be added later | 8 | # Configuration options for the S3C6410 CPU |
9 | 9 | ||
10 | # machine support | 10 | config CPU_S3C6400 |
11 | bool | ||
12 | select CPU_S3C6400_INIT | ||
13 | select CPU_S3C6400_CLOCK | ||
14 | help | ||
15 | Enable S3C6400 CPU support | ||
16 | |||
17 | # S36400 Macchine support | ||
11 | 18 | ||
12 | config MACH_SMDK6400 | 19 | config MACH_SMDK6400 |
13 | bool "SMDK6400" | 20 | bool "SMDK6400" |
14 | select CPU_S3C6410 | 21 | select CPU_S3C6400 |
15 | select S3C_DEV_HSMMC | 22 | select S3C_DEV_HSMMC |
16 | help | 23 | help |
17 | Machine support for the Samsung SMDK6400 | 24 | Machine support for the Samsung SMDK6400 |
diff --git a/arch/arm/mach-s3c6400/Makefile b/arch/arm/mach-s3c6400/Makefile index 82cb48a2c2b0..07eac2be6f6f 100644 --- a/arch/arm/mach-s3c6400/Makefile +++ b/arch/arm/mach-s3c6400/Makefile | |||
@@ -12,7 +12,7 @@ obj- := | |||
12 | 12 | ||
13 | # Core support for S3C6400 system | 13 | # Core support for S3C6400 system |
14 | 14 | ||
15 | obj-n += blank.o | 15 | obj-$(CONFIG_CPU_S3C6400) += s3c6400.o |
16 | 16 | ||
17 | # Machine support | 17 | # Machine support |
18 | 18 | ||
diff --git a/arch/arm/mach-s3c6400/s3c6400.c b/arch/arm/mach-s3c6400/s3c6400.c new file mode 100644 index 000000000000..d11a4272b94c --- /dev/null +++ b/arch/arm/mach-s3c6400/s3c6400.c | |||
@@ -0,0 +1,83 @@ | |||
1 | /* linux/arch/arm/mach-s3c6410/cpu.c | ||
2 | * | ||
3 | * Copyright 2009 Simtec Electronics | ||
4 | * Ben Dooks <ben@simtec.co.uk> | ||
5 | * http://armlinux.simtec.co.uk/ | ||
6 | * | ||
7 | * This program is free software; you can redistribute it and/or modify | ||
8 | * it under the terms of the GNU General Public License version 2 as | ||
9 | * published by the Free Software Foundation. | ||
10 | */ | ||
11 | |||
12 | #include <linux/kernel.h> | ||
13 | #include <linux/types.h> | ||
14 | #include <linux/interrupt.h> | ||
15 | #include <linux/list.h> | ||
16 | #include <linux/timer.h> | ||
17 | #include <linux/init.h> | ||
18 | #include <linux/clk.h> | ||
19 | #include <linux/io.h> | ||
20 | #include <linux/sysdev.h> | ||
21 | #include <linux/serial_core.h> | ||
22 | #include <linux/platform_device.h> | ||
23 | |||
24 | #include <asm/mach/arch.h> | ||
25 | #include <asm/mach/map.h> | ||
26 | #include <asm/mach/irq.h> | ||
27 | |||
28 | #include <mach/hardware.h> | ||
29 | #include <asm/irq.h> | ||
30 | |||
31 | #include <plat/cpu-freq.h> | ||
32 | #include <plat/regs-serial.h> | ||
33 | |||
34 | #include <plat/cpu.h> | ||
35 | #include <plat/devs.h> | ||
36 | #include <plat/clock.h> | ||
37 | #include <plat/sdhci.h> | ||
38 | #include <plat/iic-core.h> | ||
39 | #include <plat/s3c6400.h> | ||
40 | |||
41 | void __init s3c6400_map_io(void) | ||
42 | { | ||
43 | /* the i2c device is directly compatible with s3c2440 */ | ||
44 | s3c_i2c0_setname("s3c2440-i2c"); | ||
45 | } | ||
46 | |||
47 | void __init s3c6400_init_clocks(int xtal) | ||
48 | { | ||
49 | printk(KERN_DEBUG "%s: initialising clocks\n", __func__); | ||
50 | s3c24xx_register_baseclocks(xtal); | ||
51 | s3c64xx_register_clocks(); | ||
52 | s3c6400_register_clocks(); | ||
53 | s3c6400_setup_clocks(); | ||
54 | } | ||
55 | |||
56 | void __init s3c6400_init_irq(void) | ||
57 | { | ||
58 | /* VIC0 does not have IRQS 5..7, | ||
59 | * VIC1 is fully populated. */ | ||
60 | s3c64xx_init_irq(~0 & ~(0xf << 5), ~0); | ||
61 | } | ||
62 | |||
63 | struct sysdev_class s3c6400_sysclass = { | ||
64 | .name = "s3c6400-core", | ||
65 | }; | ||
66 | |||
67 | static struct sys_device s3c6400_sysdev = { | ||
68 | .cls = &s3c6400_sysclass, | ||
69 | }; | ||
70 | |||
71 | static int __init s3c6400_core_init(void) | ||
72 | { | ||
73 | return sysdev_class_register(&s3c6400_sysclass); | ||
74 | } | ||
75 | |||
76 | core_initcall(s3c6400_core_init); | ||
77 | |||
78 | int __init s3c6400_init(void) | ||
79 | { | ||
80 | printk("S3C6400: Initialising architecture\n"); | ||
81 | |||
82 | return sysdev_register(&s3c6400_sysdev); | ||
83 | } | ||