diff options
author | Stefan Roese <sr@denx.de> | 2005-11-22 13:20:42 +0100 |
---|---|---|
committer | Stefan Roese <sr@denx.de> | 2005-11-22 13:20:42 +0100 |
commit | 5568e613ee38d4bb5dd601cdb2f74ed0d7de9902 (patch) | |
tree | c89680cfc4931d8e0e3173c27959d678c3cbb44e /cpu/ppc4xx/405gp_pci.c | |
parent | fe126d8b34d2e7c3c2dc1d4e61086018e016768c (diff) | |
download | u-boot-imx-5568e613ee38d4bb5dd601cdb2f74ed0d7de9902.zip u-boot-imx-5568e613ee38d4bb5dd601cdb2f74ed0d7de9902.tar.gz u-boot-imx-5568e613ee38d4bb5dd601cdb2f74ed0d7de9902.tar.bz2 |
Add support for Prodrive P3P440 board:
- Added onboard PPC440 DDR autodetection in cpu/ppc/sdram.c
- CFG_FLASH_QUIET_TEST added to use the common CFI driver
for bank autodetection
Patch by Stefan Roese, 22 Nov 2005
Diffstat (limited to 'cpu/ppc4xx/405gp_pci.c')
-rw-r--r-- | cpu/ppc4xx/405gp_pci.c | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/cpu/ppc4xx/405gp_pci.c b/cpu/ppc4xx/405gp_pci.c index 89be137..6a4128c 100644 --- a/cpu/ppc4xx/405gp_pci.c +++ b/cpu/ppc4xx/405gp_pci.c @@ -431,20 +431,24 @@ static struct pci_controller ppc440_hose = {0}; void pci_440_init (struct pci_controller *hose) { int reg_num = 0; - unsigned long strap; +#ifndef CONFIG_DISABLE_PISE_TEST /*--------------------------------------------------------------------------+ * The PCI initialization sequence enable bit must be set ... if not abort * pci setup since updating the bit requires chip reset. *--------------------------------------------------------------------------*/ -#if defined (CONFIG_440GX) || defined (CONFIG_440EP) || defined(CONFIG_440GR) +#if defined(CONFIG_440GX) + unsigned long strap; + mfsdr(sdr_sdstp1,strap); if ( (strap & 0x00010000) == 0 ){ printf("PCI: SDR0_STRP1[PISE] not set.\n"); printf("PCI: Configuration aborted.\n"); return; } -#else +#elif defined(CONFIG_440GP) + unsigned long strap; + strap = mfdcr(cpc0_strp1); if( (strap & 0x00040000) == 0 ){ printf("PCI: CPC0_STRP1[PISE] not set.\n"); @@ -452,6 +456,8 @@ void pci_440_init (struct pci_controller *hose) return; } #endif +#endif /* CONFIG_DISABLE_PISE_TEST */ + /*--------------------------------------------------------------------------+ * PCI controller init *--------------------------------------------------------------------------*/ |