ARM: sunxi: Add missing sun4i.dtsi file
[deliverable/linux.git] / arch / arm / mach-exynos / mach-exynos5-dt.c
CommitLineData
b3e68fb1
KK
1/*
2 * SAMSUNG EXYNOS5250 Flattened Device Tree enabled machine
3 *
4 * Copyright (c) 2012 Samsung Electronics Co., Ltd.
5 * http://www.samsung.com
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/of_platform.h>
13#include <linux/serial_core.h>
14
15#include <asm/mach/arch.h>
16#include <asm/hardware/gic.h>
17#include <mach/map.h>
18
19#include <plat/cpu.h>
20#include <plat/regs-serial.h>
21
22#include "common.h"
23
24/*
25 * The following lookup table is used to override device names when devices
26 * are registered from device tree. This is temporarily added to enable
27 * device tree support addition for the EXYNOS5 architecture.
28 *
29 * For drivers that require platform data to be provided from the machine
30 * file, a platform data pointer can also be supplied along with the
31 * devices names. Usually, the platform data elements that cannot be parsed
32 * from the device tree by the drivers (example: function pointers) are
33 * supplied. But it should be noted that this is a temporary mechanism and
34 * at some point, the drivers should be capable of parsing all the platform
35 * data from the device tree.
36 */
37static const struct of_dev_auxdata exynos5250_auxdata_lookup[] __initconst = {
38 OF_DEV_AUXDATA("samsung,exynos4210-uart", EXYNOS5_PA_UART0,
39 "exynos4210-uart.0", NULL),
40 OF_DEV_AUXDATA("samsung,exynos4210-uart", EXYNOS5_PA_UART1,
41 "exynos4210-uart.1", NULL),
42 OF_DEV_AUXDATA("samsung,exynos4210-uart", EXYNOS5_PA_UART2,
43 "exynos4210-uart.2", NULL),
44 OF_DEV_AUXDATA("samsung,exynos4210-uart", EXYNOS5_PA_UART3,
45 "exynos4210-uart.3", NULL),
380c3a54
TA
46 OF_DEV_AUXDATA("samsung,s3c2440-i2c", EXYNOS5_PA_IIC(0),
47 "s3c2440-i2c.0", NULL),
48 OF_DEV_AUXDATA("samsung,s3c2440-i2c", EXYNOS5_PA_IIC(1),
49 "s3c2440-i2c.1", NULL),
a5c17773
TA
50 OF_DEV_AUXDATA("samsung,exynos5250-dw-mshc", EXYNOS5_PA_DWMCI0,
51 "dw_mmc.0", NULL),
52 OF_DEV_AUXDATA("samsung,exynos5250-dw-mshc", EXYNOS5_PA_DWMCI1,
53 "dw_mmc.1", NULL),
54 OF_DEV_AUXDATA("samsung,exynos5250-dw-mshc", EXYNOS5_PA_DWMCI2,
55 "dw_mmc.2", NULL),
56 OF_DEV_AUXDATA("samsung,exynos5250-dw-mshc", EXYNOS5_PA_DWMCI3,
57 "dw_mmc.3", NULL),
b0b27815
TA
58 OF_DEV_AUXDATA("samsung,exynos4210-spi", EXYNOS5_PA_SPI0,
59 "exynos4210-spi.0", NULL),
60 OF_DEV_AUXDATA("samsung,exynos4210-spi", EXYNOS5_PA_SPI1,
61 "exynos4210-spi.1", NULL),
62 OF_DEV_AUXDATA("samsung,exynos4210-spi", EXYNOS5_PA_SPI2,
63 "exynos4210-spi.2", NULL),
b3e68fb1
KK
64 OF_DEV_AUXDATA("arm,pl330", EXYNOS5_PA_PDMA0, "dma-pl330.0", NULL),
65 OF_DEV_AUXDATA("arm,pl330", EXYNOS5_PA_PDMA1, "dma-pl330.1", NULL),
60806225 66 OF_DEV_AUXDATA("arm,pl330", EXYNOS5_PA_MDMA1, "dma-pl330.2", NULL),
1128658a
SAB
67 OF_DEV_AUXDATA("samsung,exynos5-gsc", EXYNOS5_PA_GSC0,
68 "exynos-gsc.0", NULL),
69 OF_DEV_AUXDATA("samsung,exynos5-gsc", EXYNOS5_PA_GSC1,
70 "exynos-gsc.1", NULL),
71 OF_DEV_AUXDATA("samsung,exynos5-gsc", EXYNOS5_PA_GSC2,
72 "exynos-gsc.2", NULL),
73 OF_DEV_AUXDATA("samsung,exynos5-gsc", EXYNOS5_PA_GSC3,
74 "exynos-gsc.3", NULL),
b3e68fb1
KK
75 {},
76};
77
2edb36c4
KK
78static const struct of_dev_auxdata exynos5440_auxdata_lookup[] __initconst = {
79 OF_DEV_AUXDATA("samsung,exynos4210-uart", EXYNOS5440_PA_UART0,
80 "exynos4210-uart.0", NULL),
81 {},
82};
83
84static void __init exynos5_dt_map_io(void)
b3e68fb1
KK
85{
86 exynos_init_io(NULL, 0);
2edb36c4
KK
87
88 if (of_machine_is_compatible("samsung,exynos5250"))
89 s3c24xx_init_clocks(24000000);
b3e68fb1
KK
90}
91
2edb36c4 92static void __init exynos5_dt_machine_init(void)
b3e68fb1 93{
2edb36c4
KK
94 if (of_machine_is_compatible("samsung,exynos5250"))
95 of_platform_populate(NULL, of_default_bus_match_table,
96 exynos5250_auxdata_lookup, NULL);
97 else if (of_machine_is_compatible("samsung,exynos5440"))
98 of_platform_populate(NULL, of_default_bus_match_table,
99 exynos5440_auxdata_lookup, NULL);
b3e68fb1
KK
100}
101
2edb36c4 102static char const *exynos5_dt_compat[] __initdata = {
b3e68fb1 103 "samsung,exynos5250",
2edb36c4 104 "samsung,exynos5440",
b3e68fb1
KK
105 NULL
106};
107
108DT_MACHINE_START(EXYNOS5_DT, "SAMSUNG EXYNOS5 (Flattened Device Tree)")
109 /* Maintainer: Kukjin Kim <kgene.kim@samsung.com> */
110 .init_irq = exynos5_init_irq,
06853ae4 111 .smp = smp_ops(exynos_smp_ops),
2edb36c4 112 .map_io = exynos5_dt_map_io,
b3e68fb1 113 .handle_irq = gic_handle_irq,
2edb36c4 114 .init_machine = exynos5_dt_machine_init,
bb13fabc 115 .init_late = exynos_init_late,
b3e68fb1 116 .timer = &exynos4_timer,
2edb36c4 117 .dt_compat = exynos5_dt_compat,
b3e68fb1
KK
118 .restart = exynos5_restart,
119MACHINE_END
This page took 0.058781 seconds and 5 git commands to generate.