block: move down direct IO plugging
[linux/fpc-iii.git] / arch / arm / mach-prima2 / prima2.c
blob8f0429d4b79f698d5c0e77117a75a3210f49c34b
1 /*
2 * Defines machines for CSR SiRFprimaII
4 * Copyright (c) 2011 Cambridge Silicon Radio Limited, a CSR plc group company.
6 * Licensed under GPLv2 or later.
7 */
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"
18 static struct of_device_id sirfsoc_of_bus_ids[] __initdata = {
19 { .compatible = "simple-bus", },
20 {},
23 void __init sirfsoc_mach_init(void)
25 of_platform_bus_probe(NULL, sirfsoc_of_bus_ids, NULL);
28 void __init sirfsoc_init_late(void)
30 sirfsoc_pm_init();
33 static const char *prima2cb_dt_match[] __initdata = {
34 "sirf,prima2-cb",
35 NULL
38 MACHINE_START(PRIMA2_EVB, "prima2cb")
39 /* Maintainer: Barry Song <baohua.song@csr.com> */
40 .atag_offset = 0x100,
41 .init_early = sirfsoc_of_clk_init,
42 .map_io = sirfsoc_map_lluart,
43 .init_irq = sirfsoc_of_irq_init,
44 .timer = &sirfsoc_timer,
45 .dma_zone_size = SZ_256M,
46 .init_machine = sirfsoc_mach_init,
47 .init_late = sirfsoc_init_late,
48 .dt_compat = prima2cb_dt_match,
49 .restart = sirfsoc_restart,
50 MACHINE_END