diff options
author | Peter Tyser <ptyser@xes-inc.com> | 2010-09-29 14:05:41 -0500 |
---|---|---|
committer | Kumar Gala <galak@kernel.crashing.org> | 2010-10-20 02:38:40 -0500 |
commit | d3338194795b21497edd4bd6a663c1abbe2853b9 (patch) | |
tree | c122f583be320f885ec725c28f32481d7405e10b /arch | |
parent | 06412756e76aeceb44168966fd5d5d660162881f (diff) | |
download | bootable_bootloader_goldelico_gta04-d3338194795b21497edd4bd6a663c1abbe2853b9.tar.gz bootable_bootloader_goldelico_gta04-d3338194795b21497edd4bd6a663c1abbe2853b9.tar.bz2 bootable_bootloader_goldelico_gta04-d3338194795b21497edd4bd6a663c1abbe2853b9.zip |
mpc8640: Update the io_sel fields for PCI Express
Previously io_sel=0xe incorrect stated PCIE1 was enabled. Also add
support for the mpc8640's PCIE2 interface.
Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/powerpc/cpu/mpc8xxx/pci_cfg.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/arch/powerpc/cpu/mpc8xxx/pci_cfg.c b/arch/powerpc/cpu/mpc8xxx/pci_cfg.c index 186936f23..53236a36f 100644 --- a/arch/powerpc/cpu/mpc8xxx/pci_cfg.c +++ b/arch/powerpc/cpu/mpc8xxx/pci_cfg.c @@ -138,7 +138,10 @@ static struct pci_info pci_config_info[] = { [LAW_TRGT_IF_PCIE_1] = { .cfg = (1 << 2) | (1 << 3) | (1 << 5) | (1 << 6) | - (1 << 7) | (1 << 0xe) | (1 << 0xf), + (1 << 7) | (1 << 0xf), + }, + [LAW_TRGT_IF_PCIE_2] = { + .cfg = (1 << 3) | (1 << 0xe) | (1 << 0xf), }, }; #elif defined(CONFIG_P1011) || defined(CONFIG_P1020) || \ |