diff options
author | Kumar Gala <galak@kernel.crashing.org> | 2007-07-20 17:29:09 -0400 |
---|---|---|
committer | Kumar Gala <galak@kernel.crashing.org> | 2007-07-23 23:30:14 -0400 |
commit | eb12af43333dd9d54158f35147a79628c41152db (patch) | |
tree | 6dcd7624d648d4342d45a24710fdff3f30f19674 /arch/powerpc | |
parent | 7391ff35b241dbcba471e05059b5c05fdc8196db (diff) |
[POWERPC] FSL: Add support for PCI-X controllers
Some set of 85xx platforms have PCI-X controllers. The old arch/ppc
code setup these controllers and we haven't moved it over to arch/powerpc.
We use the PCI-X Capabilties to know if we are in PCI-X mode instead
of the Global Utilities PORDEVSR.
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Diffstat (limited to 'arch/powerpc')
-rw-r--r-- | arch/powerpc/sysdev/fsl_pci.c | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/arch/powerpc/sysdev/fsl_pci.c b/arch/powerpc/sysdev/fsl_pci.c index f88a9aecdf16..13aaefc1af5b 100644 --- a/arch/powerpc/sysdev/fsl_pci.c +++ b/arch/powerpc/sysdev/fsl_pci.c | |||
@@ -89,11 +89,22 @@ void __init setup_pci_atmu(struct pci_controller *hose, struct resource *rsrc) | |||
89 | void __init setup_pci_cmd(struct pci_controller *hose) | 89 | void __init setup_pci_cmd(struct pci_controller *hose) |
90 | { | 90 | { |
91 | u16 cmd; | 91 | u16 cmd; |
92 | int cap_x; | ||
93 | |||
92 | early_read_config_word(hose, 0, 0, PCI_COMMAND, &cmd); | 94 | early_read_config_word(hose, 0, 0, PCI_COMMAND, &cmd); |
93 | cmd |= PCI_COMMAND_SERR | PCI_COMMAND_MASTER | PCI_COMMAND_MEMORY | 95 | cmd |= PCI_COMMAND_SERR | PCI_COMMAND_MASTER | PCI_COMMAND_MEMORY |
94 | | PCI_COMMAND_IO; | 96 | | PCI_COMMAND_IO; |
95 | early_write_config_word(hose, 0, 0, PCI_COMMAND, cmd); | 97 | early_write_config_word(hose, 0, 0, PCI_COMMAND, cmd); |
96 | early_write_config_byte(hose, 0, 0, PCI_LATENCY_TIMER, 0x80); | 98 | |
99 | cap_x = early_find_capability(hose, 0, 0, PCI_CAP_ID_PCIX); | ||
100 | if (cap_x) { | ||
101 | int pci_x_cmd = cap_x + PCI_X_CMD; | ||
102 | cmd = PCI_X_CMD_MAX_SPLIT | PCI_X_CMD_MAX_READ | ||
103 | | PCI_X_CMD_ERO | PCI_X_CMD_DPERR_E; | ||
104 | early_write_config_word(hose, 0, 0, pci_x_cmd, cmd); | ||
105 | } else { | ||
106 | early_write_config_byte(hose, 0, 0, PCI_LATENCY_TIMER, 0x80); | ||
107 | } | ||
97 | } | 108 | } |
98 | 109 | ||
99 | static void __devinit quirk_fsl_pcie_transparent(struct pci_dev *dev) | 110 | static void __devinit quirk_fsl_pcie_transparent(struct pci_dev *dev) |