1 // SPDX-License-Identifier: GPL-2.0
3 // Copyright 2009 Simtec Electronics
4 // Ben Dooks <ben@simtec.co.uk>
5 // http://armlinux.simtec.co.uk/
8 * NOTE: Code in this file is not used when booting with Device Tree support.
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/device.h>
20 #include <linux/serial_core.h>
21 #include <linux/serial_s3c.h>
22 #include <linux/platform_device.h>
25 #include <asm/mach/arch.h>
26 #include <asm/mach/map.h>
27 #include <asm/mach/irq.h>
29 #include <mach/hardware.h>
32 #include <plat/cpu-freq.h>
33 #include <mach/regs-clock.h>
36 #include <plat/devs.h>
37 #include <plat/sdhci.h>
38 #include <plat/iic-core.h>
41 #include "onenand-core.h"
43 void __init
s3c6400_map_io(void)
47 s3c6400_default_sdhci0();
48 s3c6400_default_sdhci1();
49 s3c6400_default_sdhci2();
51 /* the i2c devices are directly compatible with s3c2440 */
52 s3c_i2c0_setname("s3c2440-i2c");
54 s3c_device_nand
.name
= "s3c6400-nand";
56 s3c_onenand_setname("s3c6400-onenand");
57 s3c64xx_onenand1_setname("s3c6400-onenand");
60 void __init
s3c6400_init_irq(void)
62 /* VIC0 does not have IRQS 5..7,
63 * VIC1 is fully populated. */
64 s3c64xx_init_irq(~0 & ~(0xf << 5), ~0);
67 static struct bus_type s3c6400_subsys
= {
68 .name
= "s3c6400-core",
69 .dev_name
= "s3c6400-core",
72 static struct device s3c6400_dev
= {
73 .bus
= &s3c6400_subsys
,
76 static int __init
s3c6400_core_init(void)
78 /* Not applicable when using DT. */
79 if (of_have_populated_dt() || soc_is_s3c64xx())
82 return subsys_system_register(&s3c6400_subsys
, NULL
);
85 core_initcall(s3c6400_core_init
);
87 int __init
s3c6400_init(void)
89 printk("S3C6400: Initialising architecture\n");
91 return device_register(&s3c6400_dev
);