2 * Sam440ep board specific routines based off bamboo.c code
3 * original copyrights below
5 * Wade Farnsworth <wfarnsworth@mvista.com>
6 * Copyright 2004 MontaVista Software Inc.
8 * Rewritten and ported to the merged powerpc tree:
9 * Josh Boyer <jwboyer@linux.vnet.ibm.com>
10 * Copyright 2007 IBM Corporation
12 * Modified from bamboo.c for sam440ep:
13 * Copyright 2008 Giuseppe Coviello <gicoviello@gmail.com>
15 * This program is free software; you can redistribute it and/or modify it
16 * under the terms of the GNU General Public License as published by the
17 * Free Software Foundation; either version 2 of the License, or (at your
18 * option) any later version.
20 #include <linux/init.h>
21 #include <linux/of_platform.h>
23 #include <asm/machdep.h>
28 #include <asm/pci-bridge.h>
29 #include <asm/ppc4xx.h>
30 #include <linux/i2c.h>
32 static __initdata struct of_device_id sam440ep_of_bus[] = {
33 { .compatible = "ibm,plb4", },
34 { .compatible = "ibm,opb", },
35 { .compatible = "ibm,ebc", },
39 static int __init sam440ep_device_probe(void)
41 of_platform_bus_probe(NULL, sam440ep_of_bus, NULL);
45 machine_device_initcall(sam440ep, sam440ep_device_probe);
47 static int __init sam440ep_probe(void)
49 unsigned long root = of_get_flat_dt_root();
51 if (!of_flat_dt_is_compatible(root, "acube,sam440ep"))
54 ppc_pci_set_flags(PPC_PCI_REASSIGN_ALL_RSRC);
59 define_machine(sam440ep) {
61 .probe = sam440ep_probe,
62 .progress = udbg_progress,
63 .init_IRQ = uic_init_tree,
64 .get_irq = uic_get_irq,
65 .restart = ppc4xx_reset_system,
66 .calibrate_decr = generic_calibrate_decr,
69 static struct i2c_board_info sam440ep_rtc_info = {
75 static int sam440ep_setup_rtc(void)
77 return i2c_register_board_info(0, &sam440ep_rtc_info, 1);
79 machine_device_initcall(sam440ep, sam440ep_setup_rtc);