diff options
author | Ben Dooks <ben-linux@fluff.org> | 2008-12-18 09:52:04 -0500 |
---|---|---|
committer | Ben Dooks <ben-linux@fluff.org> | 2008-12-18 09:52:04 -0500 |
commit | 7f2754378f3522a42daafdbb9d2385f341008454 (patch) | |
tree | 7a6223f270cdf53067a70c2e86b2190d3577c23d /arch/arm/mach-s3c6410 | |
parent | c6ad115876763e4f15055982ecb9579cb7abab5f (diff) | |
parent | a9c5d23ac724a3b908833cafbbbd49abe4741b86 (diff) |
Merge branch 'next-s3c64xx' into next-merged
Diffstat (limited to 'arch/arm/mach-s3c6410')
-rw-r--r-- | arch/arm/mach-s3c6410/Kconfig | 21 | ||||
-rw-r--r-- | arch/arm/mach-s3c6410/Makefile | 19 | ||||
-rw-r--r-- | arch/arm/mach-s3c6410/cpu.c | 91 | ||||
-rw-r--r-- | arch/arm/mach-s3c6410/mach-smdk6410.c | 89 |
4 files changed, 220 insertions, 0 deletions
diff --git a/arch/arm/mach-s3c6410/Kconfig b/arch/arm/mach-s3c6410/Kconfig new file mode 100644 index 000000000000..75b1244cf8ab --- /dev/null +++ b/arch/arm/mach-s3c6410/Kconfig | |||
@@ -0,0 +1,21 @@ | |||
1 | # arch/arm/mach-s3c6410/Kconfig | ||
2 | # | ||
3 | # Copyright 2008 Openmoko, Inc. | ||
4 | # Copyright 2008 Simtec Electronics | ||
5 | # | ||
6 | # Licensed under GPLv2 | ||
7 | |||
8 | # Configuration options for the S3C6410 CPU | ||
9 | |||
10 | config CPU_S3C6410 | ||
11 | bool | ||
12 | select CPU_S3C6400_INIT | ||
13 | select CPU_S3C6400_CLOCK | ||
14 | help | ||
15 | Enable S3C6410 CPU support | ||
16 | |||
17 | config MACH_SMDK6410 | ||
18 | bool "SMDK6410" | ||
19 | select CPU_S3C6410 | ||
20 | help | ||
21 | Machine support for the Samsung SMDK6410 | ||
diff --git a/arch/arm/mach-s3c6410/Makefile b/arch/arm/mach-s3c6410/Makefile new file mode 100644 index 000000000000..4a20a009990a --- /dev/null +++ b/arch/arm/mach-s3c6410/Makefile | |||
@@ -0,0 +1,19 @@ | |||
1 | # arch/arm/plat-s3c6410/Makefile | ||
2 | # | ||
3 | # Copyright 2008 Openmoko, Inc. | ||
4 | # Copyright 2008 Simtec Electronics | ||
5 | # | ||
6 | # Licensed under GPLv2 | ||
7 | |||
8 | obj-y := | ||
9 | obj-m := | ||
10 | obj-n := | ||
11 | obj- := | ||
12 | |||
13 | # Core support for S3C6410 system | ||
14 | |||
15 | obj-$(CONFIG_CPU_S3C6410) += cpu.o | ||
16 | |||
17 | # machine support | ||
18 | |||
19 | obj-$(CONFIG_MACH_SMDK6410) += mach-smdk6410.o | ||
diff --git a/arch/arm/mach-s3c6410/cpu.c b/arch/arm/mach-s3c6410/cpu.c new file mode 100644 index 000000000000..975cf88f0e84 --- /dev/null +++ b/arch/arm/mach-s3c6410/cpu.c | |||
@@ -0,0 +1,91 @@ | |||
1 | /* linux/arch/arm/mach-s3c6410/cpu.c | ||
2 | * | ||
3 | * Copyright 2008 Simtec Electronics | ||
4 | * Copyright 2008 Simtec Electronics | ||
5 | * Ben Dooks <ben@simtec.co.uk> | ||
6 | * http://armlinux.simtec.co.uk/ | ||
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 | |||
29 | #include <mach/hardware.h> | ||
30 | #include <asm/irq.h> | ||
31 | |||
32 | #include <plat/cpu-freq.h> | ||
33 | #include <plat/regs-serial.h> | ||
34 | |||
35 | #include <plat/cpu.h> | ||
36 | #include <plat/devs.h> | ||
37 | #include <plat/clock.h> | ||
38 | #include <plat/s3c6400.h> | ||
39 | #include <plat/s3c6410.h> | ||
40 | |||
41 | /* Initial IO mappings */ | ||
42 | |||
43 | static struct map_desc s3c6410_iodesc[] __initdata = { | ||
44 | }; | ||
45 | |||
46 | /* s3c6410_map_io | ||
47 | * | ||
48 | * register the standard cpu IO areas | ||
49 | */ | ||
50 | |||
51 | void __init s3c6410_map_io(void) | ||
52 | { | ||
53 | iotable_init(s3c6410_iodesc, ARRAY_SIZE(s3c6410_iodesc)); | ||
54 | } | ||
55 | |||
56 | void __init s3c6410_init_clocks(int xtal) | ||
57 | { | ||
58 | printk(KERN_DEBUG "%s: initialising clocks\n", __func__); | ||
59 | s3c24xx_register_baseclocks(xtal); | ||
60 | s3c64xx_register_clocks(); | ||
61 | s3c6400_register_clocks(); | ||
62 | s3c6400_setup_clocks(); | ||
63 | } | ||
64 | |||
65 | void __init s3c6410_init_irq(void) | ||
66 | { | ||
67 | /* VIC0 is missing IRQ7, VIC1 is fully populated. */ | ||
68 | s3c64xx_init_irq(~0 & ~(1 << 7), ~0); | ||
69 | } | ||
70 | |||
71 | struct sysdev_class s3c6410_sysclass = { | ||
72 | .name = "s3c6410-core", | ||
73 | }; | ||
74 | |||
75 | static struct sys_device s3c6410_sysdev = { | ||
76 | .cls = &s3c6410_sysclass, | ||
77 | }; | ||
78 | |||
79 | static int __init s3c6410_core_init(void) | ||
80 | { | ||
81 | return sysdev_class_register(&s3c6410_sysclass); | ||
82 | } | ||
83 | |||
84 | core_initcall(s3c6410_core_init); | ||
85 | |||
86 | int __init s3c6410_init(void) | ||
87 | { | ||
88 | printk("S3C6410: Initialising architecture\n"); | ||
89 | |||
90 | return sysdev_register(&s3c6410_sysdev); | ||
91 | } | ||
diff --git a/arch/arm/mach-s3c6410/mach-smdk6410.c b/arch/arm/mach-s3c6410/mach-smdk6410.c new file mode 100644 index 000000000000..9213a8ba283b --- /dev/null +++ b/arch/arm/mach-s3c6410/mach-smdk6410.c | |||
@@ -0,0 +1,89 @@ | |||
1 | /* linux/arch/arm/mach-s3c6410/mach-smdk6410.c | ||
2 | * | ||
3 | * Copyright 2008 Openmoko, Inc. | ||
4 | * Copyright 2008 Simtec Electronics | ||
5 | * Ben Dooks <ben@simtec.co.uk> | ||
6 | * http://armlinux.simtec.co.uk/ | ||
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 | |||
14 | #include <linux/kernel.h> | ||
15 | #include <linux/types.h> | ||
16 | #include <linux/interrupt.h> | ||
17 | #include <linux/list.h> | ||
18 | #include <linux/timer.h> | ||
19 | #include <linux/init.h> | ||
20 | #include <linux/serial_core.h> | ||
21 | #include <linux/platform_device.h> | ||
22 | #include <linux/io.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 <mach/map.h> | ||
30 | |||
31 | #include <asm/irq.h> | ||
32 | #include <asm/mach-types.h> | ||
33 | |||
34 | #include <plat/regs-serial.h> | ||
35 | |||
36 | #include <plat/s3c6410.h> | ||
37 | #include <plat/clock.h> | ||
38 | #include <plat/devs.h> | ||
39 | #include <plat/cpu.h> | ||
40 | |||
41 | #define UCON S3C2410_UCON_DEFAULT | S3C2410_UCON_UCLK | ||
42 | #define ULCON S3C2410_LCON_CS8 | S3C2410_LCON_PNONE | S3C2410_LCON_STOPB | ||
43 | #define UFCON S3C2410_UFCON_RXTRIG8 | S3C2410_UFCON_FIFOMODE | ||
44 | |||
45 | static struct s3c2410_uartcfg smdk6410_uartcfgs[] __initdata = { | ||
46 | [0] = { | ||
47 | .hwport = 0, | ||
48 | .flags = 0, | ||
49 | .ucon = 0x3c5, | ||
50 | .ulcon = 0x03, | ||
51 | .ufcon = 0x51, | ||
52 | }, | ||
53 | [1] = { | ||
54 | .hwport = 1, | ||
55 | .flags = 0, | ||
56 | .ucon = 0x3c5, | ||
57 | .ulcon = 0x03, | ||
58 | .ufcon = 0x51, | ||
59 | }, | ||
60 | }; | ||
61 | |||
62 | struct map_desc smdk6410_iodesc[] = {}; | ||
63 | |||
64 | static struct platform_device *smdk6410_devices[] __initdata = { | ||
65 | }; | ||
66 | |||
67 | static void __init smdk6410_map_io(void) | ||
68 | { | ||
69 | s3c64xx_init_io(smdk6410_iodesc, ARRAY_SIZE(smdk6410_iodesc)); | ||
70 | s3c24xx_init_clocks(12000000); | ||
71 | s3c24xx_init_uarts(smdk6410_uartcfgs, ARRAY_SIZE(smdk6410_uartcfgs)); | ||
72 | } | ||
73 | |||
74 | static void __init smdk6410_machine_init(void) | ||
75 | { | ||
76 | platform_add_devices(smdk6410_devices, ARRAY_SIZE(smdk6410_devices)); | ||
77 | } | ||
78 | |||
79 | MACHINE_START(SMDK6410, "SMDK6410") | ||
80 | /* Maintainer: Ben Dooks <ben@fluff.org> */ | ||
81 | .phys_io = S3C_PA_UART & 0xfff00000, | ||
82 | .io_pg_offst = (((u32)S3C_VA_UART) >> 18) & 0xfffc, | ||
83 | .boot_params = S3C64XX_PA_SDRAM + 0x100, | ||
84 | |||
85 | .init_irq = s3c6410_init_irq, | ||
86 | .map_io = smdk6410_map_io, | ||
87 | .init_machine = smdk6410_machine_init, | ||
88 | .timer = &s3c24xx_timer, | ||
89 | MACHINE_END | ||