|
@@ -88,12 +88,10 @@ static inline void mpc8610_suspend_init(void) { }
|
|
|
static const struct of_device_id mpc8610_ids[] __initconst = {
|
|
|
{ .compatible = "fsl,mpc8610-immr", },
|
|
|
{ .compatible = "fsl,mpc8610-guts", },
|
|
|
- { .compatible = "simple-bus", },
|
|
|
/* So that the DMA channel nodes can be probed individually: */
|
|
|
{ .compatible = "fsl,eloplus-dma", },
|
|
|
/* PCI controllers */
|
|
|
{ .compatible = "fsl,mpc8610-pci", },
|
|
|
- { .compatible = "fsl,mpc8641-pcie", },
|
|
|
{}
|
|
|
};
|
|
|
|
|
@@ -105,6 +103,8 @@ static int __init mpc8610_declare_of_platform_devices(void)
|
|
|
/* Enable wakeup on PIXIS' event IRQ. */
|
|
|
mpc8610_suspend_init();
|
|
|
|
|
|
+ mpc86xx_common_publish_devices();
|
|
|
+
|
|
|
/* Without this call, the SSI device driver won't get probed. */
|
|
|
of_platform_bus_probe(NULL, mpc8610_ids, NULL);
|
|
|
|
|
@@ -327,22 +327,6 @@ static int __init mpc86xx_hpcd_probe(void)
|
|
|
return 0;
|
|
|
}
|
|
|
|
|
|
-static long __init mpc86xx_time_init(void)
|
|
|
-{
|
|
|
- unsigned int temp;
|
|
|
-
|
|
|
- /* Set the time base to zero */
|
|
|
- mtspr(SPRN_TBWL, 0);
|
|
|
- mtspr(SPRN_TBWU, 0);
|
|
|
-
|
|
|
- temp = mfspr(SPRN_HID0);
|
|
|
- temp |= HID0_TBEN;
|
|
|
- mtspr(SPRN_HID0, temp);
|
|
|
- asm volatile("isync");
|
|
|
-
|
|
|
- return 0;
|
|
|
-}
|
|
|
-
|
|
|
define_machine(mpc86xx_hpcd) {
|
|
|
.name = "MPC86xx HPCD",
|
|
|
.probe = mpc86xx_hpcd_probe,
|