[POWERPC] 4xx: Mark of_bus structures as __initdata
[pandora-kernel.git] / arch / powerpc / platforms / 44x / ebony.c
1 /*
2  * Ebony board specific routines
3  *
4  * Matt Porter <mporter@kernel.crashing.org>
5  * Copyright 2002-2005 MontaVista Software Inc.
6  *
7  * Eugene Surovegin <eugene.surovegin@zultys.com> or <ebs@ebshome.net>
8  * Copyright (c) 2003-2005 Zultys Technologies
9  *
10  * Rewritten and ported to the merged powerpc tree:
11  * Copyright 2007 David Gibson <dwg@au1.ibm.com>, IBM Corporation.
12  *
13  * This program is free software; you can redistribute  it and/or modify it
14  * under  the terms of  the GNU General  Public License as published by the
15  * Free Software Foundation;  either version 2 of the  License, or (at your
16  * option) any later version.
17  */
18
19 #include <linux/init.h>
20 #include <linux/of_platform.h>
21
22 #include <asm/machdep.h>
23 #include <asm/prom.h>
24 #include <asm/udbg.h>
25 #include <asm/time.h>
26 #include <asm/uic.h>
27 #include <asm/pci-bridge.h>
28
29 #include "44x.h"
30
31 static __initdata struct of_device_id ebony_of_bus[] = {
32         { .compatible = "ibm,plb4", },
33         { .compatible = "ibm,opb", },
34         { .compatible = "ibm,ebc", },
35         {},
36 };
37
38 static int __init ebony_device_probe(void)
39 {
40         if (!machine_is(ebony))
41                 return 0;
42
43         of_platform_bus_probe(NULL, ebony_of_bus, NULL);
44
45         return 0;
46 }
47 device_initcall(ebony_device_probe);
48
49 /*
50  * Called very early, MMU is off, device-tree isn't unflattened
51  */
52 static int __init ebony_probe(void)
53 {
54         unsigned long root = of_get_flat_dt_root();
55
56         if (!of_flat_dt_is_compatible(root, "ibm,ebony"))
57                 return 0;
58
59         ppc_pci_flags = PPC_PCI_REASSIGN_ALL_RSRC;
60
61         return 1;
62 }
63
64 define_machine(ebony) {
65         .name                   = "Ebony",
66         .probe                  = ebony_probe,
67         .progress               = udbg_progress,
68         .init_IRQ               = uic_init_tree,
69         .get_irq                = uic_get_irq,
70         .restart                = ppc44x_reset_system,
71         .calibrate_decr         = generic_calibrate_decr,
72 };