Merge branch 'async-scsi-resume' of git://git.kernel.org/pub/scm/linux/kernel/git...
[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/init.h>
10 #include <linux/kernel.h>
11 #include <asm/sizes.h>
12 #include <asm/mach-types.h>
13 #include <asm/mach/arch.h>
14 #include <linux/of.h>
15 #include <linux/of_platform.h>
16 #include "common.h"
17
18 static void __init sirfsoc_init_late(void)
19 {
20         sirfsoc_pm_init();
21 }
22
23 static __init void sirfsoc_map_io(void)
24 {
25         sirfsoc_map_lluart();
26         sirfsoc_map_scu();
27 }
28
29 #ifdef CONFIG_ARCH_ATLAS6
30 static const char *atlas6_dt_match[] __initconst = {
31         "sirf,atlas6",
32         NULL
33 };
34
35 DT_MACHINE_START(ATLAS6_DT, "Generic ATLAS6 (Flattened Device Tree)")
36         /* Maintainer: Barry Song <baohua.song@csr.com> */
37         .map_io         = sirfsoc_map_io,
38         .init_late      = sirfsoc_init_late,
39         .dt_compat      = atlas6_dt_match,
40 MACHINE_END
41 #endif
42
43 #ifdef CONFIG_ARCH_PRIMA2
44 static const char *prima2_dt_match[] __initconst = {
45         "sirf,prima2",
46         NULL
47 };
48
49 DT_MACHINE_START(PRIMA2_DT, "Generic PRIMA2 (Flattened Device Tree)")
50         /* Maintainer: Barry Song <baohua.song@csr.com> */
51         .map_io         = sirfsoc_map_io,
52         .dma_zone_size  = SZ_256M,
53         .init_late      = sirfsoc_init_late,
54         .dt_compat      = prima2_dt_match,
55 MACHINE_END
56 #endif
57
58 #ifdef CONFIG_ARCH_MARCO
59 static const char *marco_dt_match[] __initconst = {
60         "sirf,marco",
61         NULL
62 };
63
64 DT_MACHINE_START(MARCO_DT, "Generic MARCO (Flattened Device Tree)")
65         /* Maintainer: Barry Song <baohua.song@csr.com> */
66         .smp            = smp_ops(sirfsoc_smp_ops),
67         .map_io         = sirfsoc_map_io,
68         .init_late      = sirfsoc_init_late,
69         .dt_compat      = marco_dt_match,
70 MACHINE_END
71 #endif