Merge tag 'nfs-for-4.5-3' of git://git.linux-nfs.org/projects/trondmy/linux-nfs
[linux-2.6-block.git] / arch / powerpc / platforms / 83xx / mpc836x_rdk.c
CommitLineData
b13e9309
AV
1/*
2 * MPC8360E-RDK board file.
3 *
8a56e1ee 4 * Copyright (c) 2006 Freescale Semiconductor, Inc.
b13e9309
AV
5 * Copyright (c) 2007-2008 MontaVista Software, Inc.
6 *
7 * Author: Anton Vorontsov <avorontsov@ru.mvista.com>
8 *
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.
13 */
14
15#include <linux/kernel.h>
16#include <linux/pci.h>
17#include <linux/of_platform.h>
18#include <linux/io.h>
19#include <asm/prom.h>
20#include <asm/time.h>
21#include <asm/ipic.h>
22#include <asm/udbg.h>
7aa1aa6e
ZQ
23#include <soc/fsl/qe/qe.h>
24#include <soc/fsl/qe/qe_ic.h>
b13e9309 25#include <sysdev/fsl_soc.h>
76fe1ffc 26#include <sysdev/fsl_pci.h>
b13e9309
AV
27
28#include "mpc83xx.h"
29
7669d58c 30machine_device_initcall(mpc836x_rdk, mpc83xx_declare_of_platform_devices);
b13e9309
AV
31
32static void __init mpc836x_rdk_setup_arch(void)
33{
b13e9309
AV
34 if (ppc_md.progress)
35 ppc_md.progress("mpc836x_rdk_setup_arch()", 0);
36
bede480d 37 mpc83xx_setup_pci();
b13e9309
AV
38}
39
b13e9309
AV
40/*
41 * Called very early, MMU is off, device-tree isn't unflattened.
42 */
43static int __init mpc836x_rdk_probe(void)
44{
45 unsigned long root = of_get_flat_dt_root();
46
47 return of_flat_dt_is_compatible(root, "fsl,mpc8360rdk");
48}
49
50define_machine(mpc836x_rdk) {
51 .name = "MPC836x RDK",
52 .probe = mpc836x_rdk_probe,
53 .setup_arch = mpc836x_rdk_setup_arch,
d4fb5ebd 54 .init_IRQ = mpc83xx_ipic_and_qe_init_IRQ,
b13e9309
AV
55 .get_irq = ipic_get_irq,
56 .restart = mpc83xx_restart,
57 .time_init = mpc83xx_time_init,
58 .calibrate_decr = generic_calibrate_decr,
59 .progress = udbg_progress,
60};