2 * BSC913xQDS Board Setup
5 * Harninder Rai <harninder.rai@freescale.com>
6 * Priyanka Jain <Priyanka.Jain@freescale.com>
8 * Copyright 2014 Freescale Semiconductor Inc.
10 * This program is free software; you can redistribute it and/or modify it
11 * under the terms of the GNU General Public License as published by the
12 * Free Software Foundation; either version 2 of the License, or (at your
13 * option) any later version.
16 #include <linux/of_platform.h>
17 #include <linux/pci.h>
19 #include <sysdev/fsl_soc.h>
20 #include <sysdev/fsl_pci.h>
26 void __init
bsc913x_qds_pic_init(void)
28 struct mpic
*mpic
= mpic_alloc(NULL
, 0, MPIC_BIG_ENDIAN
|
33 pr_err("bsc913x: Failed to allocate MPIC structure\n");
39 * Setup the architecture
41 static void __init
bsc913x_qds_setup_arch(void)
44 ppc_md
.progress("bsc913x_qds_setup_arch()", 0);
46 #if defined(CONFIG_SMP)
50 fsl_pci_assign_primary();
52 pr_info("bsc913x board from Freescale Semiconductor\n");
55 machine_arch_initcall(bsc9132_qds
, mpc85xx_common_publish_devices
);
58 * Called very early, device-tree isn't unflattened
61 static int __init
bsc9132_qds_probe(void)
63 unsigned long root
= of_get_flat_dt_root();
65 return of_flat_dt_is_compatible(root
, "fsl,bsc9132qds");
68 define_machine(bsc9132_qds
) {
69 .name
= "BSC9132 QDS",
70 .probe
= bsc9132_qds_probe
,
71 .setup_arch
= bsc913x_qds_setup_arch
,
72 .init_IRQ
= bsc913x_qds_pic_init
,
74 .pcibios_fixup_bus
= fsl_pcibios_fixup_bus
,
76 .get_irq
= mpic_get_irq
,
77 .restart
= fsl_rstcr_restart
,
78 .calibrate_decr
= generic_calibrate_decr
,
79 .progress
= udbg_progress
,