[POWERPC] 4xx: libfdt and pci fixes for Rainier
Update the Rainier wrapper for the libfdt merge and add the pci flags to the platform file. Signed-off-by: Josh Boyer <jwboyer@linux.vnet.ibm.com>
This commit is contained in:
parent
af7baf9259
commit
4922566f03
|
@ -51,6 +51,6 @@ void platform_init(unsigned long r3, unsigned long r4, unsigned long r5,
|
|||
CUBOOT_INIT();
|
||||
platform_ops.fixups = rainier_fixups;
|
||||
platform_ops.exit = ibm44x_dbcr_reset;
|
||||
ft_init(_dtb_start, 0, 32);
|
||||
fdt_init(_dtb_start);
|
||||
serial_console_init();
|
||||
}
|
||||
|
|
|
@ -20,6 +20,7 @@
|
|||
#include <asm/time.h>
|
||||
#include <asm/uic.h>
|
||||
#include <asm/of_platform.h>
|
||||
#include <asm/pci-bridge.h>
|
||||
#include "44x.h"
|
||||
|
||||
static struct of_device_id rainier_of_bus[] = {
|
||||
|
@ -47,6 +48,8 @@ static int __init rainier_probe(void)
|
|||
if (!of_flat_dt_is_compatible(root, "amcc,rainier"))
|
||||
return 0;
|
||||
|
||||
ppc_pci_flags = PPC_PCI_REASSIGN_ALL_RSRC;
|
||||
|
||||
return 1;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue