diff options
| author | Kumar Gala <[email protected]> | 2009-09-02 09:03:08 -0500 |
|---|---|---|
| committer | Tom Rix <[email protected]> | 2009-10-03 09:04:17 -0500 |
| commit | 865f24dc92d03928c09b7f20a3133823e53c1ac3 (patch) | |
| tree | 455bd68614d879f650e82fe44f445d903a85e38c /include | |
| parent | 8b8376e81ca725772fa7a3e1b58ca55a761cdf1d (diff) | |
ppc/8xxx: Refactor code to determine if PCI is enabled & agent/host
Refactor the code into a simple bitmask lookup table that determines if
a given PCI controller is enabled and if its in host/root-complex or
agent/end-point mode.
Each processor in the PQ3/MPC86xx family specified different encodings
for the cfg_host_agt[] and cfg_IO_ports[] boot strapping signals.
Signed-off-by: Kumar Gala <[email protected]>
Diffstat (limited to 'include')
| -rw-r--r-- | include/asm-ppc/fsl_pci.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/asm-ppc/fsl_pci.h b/include/asm-ppc/fsl_pci.h index f625d19ee42..b9972dabe37 100644 --- a/include/asm-ppc/fsl_pci.h +++ b/include/asm-ppc/fsl_pci.h @@ -20,6 +20,11 @@ #ifndef __FSL_PCI_H_ #define __FSL_PCI_H_ +#include <asm/fsl_law.h> + +int is_fsl_pci_agent(enum law_trgt_if trgt, u32 host_agent); +int is_fsl_pci_cfg(enum law_trgt_if trgt, u32 io_sel); + void fsl_pci_init(struct pci_controller *hose, u32 cfg_addr, u32 cfg_data); void fsl_pci_config_unlock(struct pci_controller *hose); void ft_fsl_pci_setup(void *blob, const char *pci_alias, |
