2 * MPC8360E-RDK board file.
4 * Copyright (c) 2006 Freescale Semiconductor, Inc.
5 * Copyright (c) 2007-2008 MontaVista Software, Inc.
7 * Author: Anton Vorontsov <avorontsov@ru.mvista.com>
9 * This program is free software; you can redistribute it and/or modify it
10 * under the terms of the GNU General Public License as published by the
11 * Free Software Foundation; either version 2 of the License, or (at your
12 * option) any later version.
15 #include <linux/kernel.h>
16 #include <linux/pci.h>
17 #include <linux/of_platform.h>
23 #include <soc/fsl/qe/qe.h>
24 #include <soc/fsl/qe/qe_ic.h>
25 #include <sysdev/fsl_soc.h>
26 #include <sysdev/fsl_pci.h>
30 machine_device_initcall(mpc836x_rdk
, mpc83xx_declare_of_platform_devices
);
32 static void __init
mpc836x_rdk_setup_arch(void)
38 * Called very early, MMU is off, device-tree isn't unflattened.
40 static int __init
mpc836x_rdk_probe(void)
42 return of_machine_is_compatible("fsl,mpc8360rdk");
45 define_machine(mpc836x_rdk
) {
46 .name
= "MPC836x RDK",
47 .probe
= mpc836x_rdk_probe
,
48 .setup_arch
= mpc836x_rdk_setup_arch
,
49 .init_IRQ
= mpc83xx_ipic_and_qe_init_IRQ
,
50 .get_irq
= ipic_get_irq
,
51 .restart
= mpc83xx_restart
,
52 .time_init
= mpc83xx_time_init
,
53 .calibrate_decr
= generic_calibrate_decr
,
54 .progress
= udbg_progress
,