2 * Architecture- / platform-specific boot-time initialization code for
3 * IBM PowerPC 4xx based boards. Adapted from original
4 * code by Gary Thomas, Cort Dougan <cort@fsmlabs.com>, and Dan Malek
7 * Copyright(c) 1999-2000 Grant Erickson <grant@lcse.umn.edu>
9 * Rewritten and ported to the merged powerpc tree:
10 * Copyright 2007 IBM Corporation
11 * Josh Boyer <jwboyer@linux.vnet.ibm.com>
13 * 2002 (c) MontaVista, Software, Inc. This file is licensed under
14 * the terms of the GNU General Public License version 2. This program
15 * is licensed "as is" without any warranty of any kind, whether express
19 #include <linux/init.h>
20 #include <asm/machdep.h>
25 #include <asm/of_platform.h>
27 static struct of_device_id walnut_of_bus
[] = {
28 { .compatible
= "ibm,plb3", },
29 { .compatible
= "ibm,opb", },
30 { .compatible
= "ibm,ebc", },
34 static int __init
walnut_device_probe(void)
36 if (!machine_is(walnut
))
39 /* FIXME: do bus probe here */
40 of_platform_bus_probe(NULL
, walnut_of_bus
, NULL
);
44 device_initcall(walnut_device_probe
);
46 static int __init
walnut_probe(void)
48 unsigned long root
= of_get_flat_dt_root();
50 if (!of_flat_dt_is_compatible(root
, "ibm,walnut"))
56 define_machine(walnut
) {
58 .probe
= walnut_probe
,
59 .progress
= udbg_progress
,
60 .init_IRQ
= uic_init_tree
,
61 .get_irq
= uic_get_irq
,
62 .calibrate_decr
= generic_calibrate_decr
,