|
@@ -160,25 +160,6 @@ extern void __init mpc85xx_smp_init(void);
|
|
|
#endif
|
|
|
|
|
|
#ifdef CONFIG_QUICC_ENGINE
|
|
|
-static struct of_device_id mpc85xx_qe_ids[] __initdata = {
|
|
|
- { .type = "qe", },
|
|
|
- { .compatible = "fsl,qe", },
|
|
|
- { },
|
|
|
-};
|
|
|
-
|
|
|
-static void __init mpc85xx_publish_qe_devices(void)
|
|
|
-{
|
|
|
- struct device_node *np;
|
|
|
-
|
|
|
- np = of_find_compatible_node(NULL, NULL, "fsl,qe");
|
|
|
- if (!of_device_is_available(np)) {
|
|
|
- of_node_put(np);
|
|
|
- return;
|
|
|
- }
|
|
|
-
|
|
|
- of_platform_bus_probe(NULL, mpc85xx_qe_ids, NULL);
|
|
|
-}
|
|
|
-
|
|
|
static void __init mpc85xx_mds_reset_ucc_phys(void)
|
|
|
{
|
|
|
struct device_node *np;
|
|
@@ -349,7 +330,6 @@ static void __init mpc85xx_mds_qeic_init(void)
|
|
|
of_node_put(np);
|
|
|
}
|
|
|
#else
|
|
|
-static void __init mpc85xx_publish_qe_devices(void) { }
|
|
|
static void __init mpc85xx_mds_qe_init(void) { }
|
|
|
static void __init mpc85xx_mds_qeic_init(void) { }
|
|
|
#endif /* CONFIG_QUICC_ENGINE */
|
|
@@ -431,24 +411,12 @@ machine_arch_initcall(mpc8568_mds, board_fixups);
|
|
|
machine_arch_initcall(mpc8569_mds, board_fixups);
|
|
|
|
|
|
static struct of_device_id mpc85xx_ids[] = {
|
|
|
- { .type = "soc", },
|
|
|
- { .compatible = "soc", },
|
|
|
- { .compatible = "simple-bus", },
|
|
|
- { .compatible = "gianfar", },
|
|
|
{ .compatible = "fsl,srio", },
|
|
|
{ .compatible = "fsl,mpc8548-guts", },
|
|
|
{ .compatible = "gpio-leds", },
|
|
|
{},
|
|
|
};
|
|
|
|
|
|
-static struct of_device_id p1021_ids[] = {
|
|
|
- { .type = "soc", },
|
|
|
- { .compatible = "soc", },
|
|
|
- { .compatible = "simple-bus", },
|
|
|
- { .compatible = "gianfar", },
|
|
|
- {},
|
|
|
-};
|
|
|
-
|
|
|
static int __init mpc85xx_publish_devices(void)
|
|
|
{
|
|
|
if (machine_is(mpc8568_mds))
|
|
@@ -456,23 +424,15 @@ static int __init mpc85xx_publish_devices(void)
|
|
|
if (machine_is(mpc8569_mds))
|
|
|
simple_gpiochip_init("fsl,mpc8569mds-bcsr-gpio");
|
|
|
|
|
|
+ mpc85xx_common_publish_devices();
|
|
|
of_platform_bus_probe(NULL, mpc85xx_ids, NULL);
|
|
|
- mpc85xx_publish_qe_devices();
|
|
|
-
|
|
|
- return 0;
|
|
|
-}
|
|
|
-
|
|
|
-static int __init p1021_publish_devices(void)
|
|
|
-{
|
|
|
- of_platform_bus_probe(NULL, p1021_ids, NULL);
|
|
|
- mpc85xx_publish_qe_devices();
|
|
|
|
|
|
return 0;
|
|
|
}
|
|
|
|
|
|
machine_device_initcall(mpc8568_mds, mpc85xx_publish_devices);
|
|
|
machine_device_initcall(mpc8569_mds, mpc85xx_publish_devices);
|
|
|
-machine_device_initcall(p1021_mds, p1021_publish_devices);
|
|
|
+machine_device_initcall(p1021_mds, mpc85xx_common_publish_devices);
|
|
|
|
|
|
machine_arch_initcall(mpc8568_mds, swiotlb_setup_bus_notifier);
|
|
|
machine_arch_initcall(mpc8569_mds, swiotlb_setup_bus_notifier);
|