]> git.karo-electronics.de Git - karo-tx-linux.git/blob - arch/arm/mach-prima2/common.c
Merge remote-tracking branch 'gpio/for-next'
[karo-tx-linux.git] / arch / arm / mach-prima2 / common.c
1 /*
2  * Defines machines for CSR SiRFprimaII
3  *
4  * Copyright (c) 2011 Cambridge Silicon Radio Limited, a CSR plc group company.
5  *
6  * Licensed under GPLv2 or later.
7  */
8
9 #include <linux/clocksource.h>
10 #include <linux/init.h>
11 #include <linux/kernel.h>
12 #include <asm/sizes.h>
13 #include <asm/mach-types.h>
14 #include <asm/mach/arch.h>
15 #include <linux/of.h>
16 #include <linux/of_platform.h>
17 #include "common.h"
18
19 void __init sirfsoc_init_late(void)
20 {
21         sirfsoc_pm_init();
22 }
23
24 static __init void sirfsoc_init_time(void)
25 {
26         /* initialize clocking early, we want to set the OS timer */
27         sirfsoc_of_clk_init();
28         clocksource_of_init();
29 }
30
31 static __init void sirfsoc_map_io(void)
32 {
33         sirfsoc_map_lluart();
34         sirfsoc_map_scu();
35 }
36
37 #ifdef CONFIG_ARCH_ATLAS6
38 static const char *atlas6_dt_match[] __initdata = {
39         "sirf,atlas6",
40         NULL
41 };
42
43 DT_MACHINE_START(ATLAS6_DT, "Generic ATLAS6 (Flattened Device Tree)")
44         /* Maintainer: Barry Song <baohua.song@csr.com> */
45         .map_io         = sirfsoc_map_io,
46         .init_time      = sirfsoc_init_time,
47         .init_late      = sirfsoc_init_late,
48         .dt_compat      = atlas6_dt_match,
49         .restart        = sirfsoc_restart,
50 MACHINE_END
51 #endif
52
53 #ifdef CONFIG_ARCH_PRIMA2
54 static const char *prima2_dt_match[] __initdata = {
55         "sirf,prima2",
56         NULL
57 };
58
59 DT_MACHINE_START(PRIMA2_DT, "Generic PRIMA2 (Flattened Device Tree)")
60         /* Maintainer: Barry Song <baohua.song@csr.com> */
61         .map_io         = sirfsoc_map_io,
62         .init_time      = sirfsoc_init_time,
63         .dma_zone_size  = SZ_256M,
64         .init_late      = sirfsoc_init_late,
65         .dt_compat      = prima2_dt_match,
66         .restart        = sirfsoc_restart,
67 MACHINE_END
68 #endif
69
70 #ifdef CONFIG_ARCH_MARCO
71 static const char *marco_dt_match[] __initdata = {
72         "sirf,marco",
73         NULL
74 };
75
76 DT_MACHINE_START(MARCO_DT, "Generic MARCO (Flattened Device Tree)")
77         /* Maintainer: Barry Song <baohua.song@csr.com> */
78         .smp            = smp_ops(sirfsoc_smp_ops),
79         .map_io         = sirfsoc_map_io,
80         .init_time      = sirfsoc_init_time,
81         .init_late      = sirfsoc_init_late,
82         .dt_compat      = marco_dt_match,
83         .restart        = sirfsoc_restart,
84 MACHINE_END
85 #endif