2 * Copyright (C) 2007, 2008 Freescale Semiconductor, Inc. All rights reserved.
4 * Author: John Rigby, <jrigby@freescale.com>, Thur Mar 29 2007
7 * MPC5121 ADS board setup
9 * This is free software; you can redistribute it and/or modify it
10 * under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
16 #include <linux/kernel.h>
18 #include <linux/of_platform.h>
20 #include <asm/machdep.h>
25 #include <sysdev/fsl_pci.h>
28 #include "mpc5121_ads.h"
30 static void __init
mpc5121_ads_setup_arch(void)
33 struct device_node
*np
;
35 printk(KERN_INFO
"MPC5121 ADS board from Freescale Semiconductor\n");
37 * cpld regs are needed early
39 mpc5121_ads_cpld_map();
42 for_each_compatible_node(np
, "pci", "fsl,mpc5121-pci")
43 mpc83xx_add_bridge(np
);
47 static void __init
mpc5121_ads_init_IRQ(void)
50 mpc5121_ads_cpld_pic_init();
54 * Called very early, MMU is off, device-tree isn't unflattened
56 static int __init
mpc5121_ads_probe(void)
58 unsigned long root
= of_get_flat_dt_root();
60 return of_flat_dt_is_compatible(root
, "fsl,mpc5121ads");
63 define_machine(mpc5121_ads
) {
64 .name
= "MPC5121 ADS",
65 .probe
= mpc5121_ads_probe
,
66 .setup_arch
= mpc5121_ads_setup_arch
,
67 .init
= mpc512x_declare_of_platform_devices
,
68 .init_IRQ
= mpc5121_ads_init_IRQ
,
69 .get_irq
= ipic_get_irq
,
70 .calibrate_decr
= generic_calibrate_decr
,