diff options
Diffstat (limited to 'drivers/pci')
| -rw-r--r-- | drivers/pci/fsl_pci_init.c | 10 | ||||
| -rw-r--r-- | drivers/pci/pci_ixp.c | 2 | ||||
| -rw-r--r-- | drivers/pci/tsi108_pci.c | 2 | 
3 files changed, 7 insertions, 7 deletions
| diff --git a/drivers/pci/fsl_pci_init.c b/drivers/pci/fsl_pci_init.c index db68f2600..20b2dcc76 100644 --- a/drivers/pci/fsl_pci_init.c +++ b/drivers/pci/fsl_pci_init.c @@ -72,7 +72,7 @@ int fsl_pci_setup_inbound_windows(struct pci_region *r)  	debug ("R0 bus_start: %llx phys_start: %llx size: %llx\n",  		(u64)bus_start, (u64)phys_start, (u64)pci_sz);  	pci_set_region(r++, bus_start, phys_start, pci_sz, -			PCI_REGION_MEM | PCI_REGION_MEMORY | +			PCI_REGION_MEM | PCI_REGION_SYS_MEMORY |  			PCI_REGION_PREFETCH);  	sz -= pci_sz; @@ -84,7 +84,7 @@ int fsl_pci_setup_inbound_windows(struct pci_region *r)  		debug ("R1 bus_start: %llx phys_start: %llx size: %llx\n",  			(u64)bus_start, (u64)phys_start, (u64)pci_sz);  		pci_set_region(r++, bus_start, phys_start, pci_sz, -				PCI_REGION_MEM | PCI_REGION_MEMORY | +				PCI_REGION_MEM | PCI_REGION_SYS_MEMORY |  				PCI_REGION_PREFETCH);  		sz -= pci_sz;  		bus_start += pci_sz; @@ -108,7 +108,7 @@ int fsl_pci_setup_inbound_windows(struct pci_region *r)  			CONFIG_SYS_PCI64_MEMORY_BUS,  			CONFIG_SYS_PCI_MEMORY_PHYS,  			pci_sz, -			PCI_REGION_MEM | PCI_REGION_MEMORY | +			PCI_REGION_MEM | PCI_REGION_SYS_MEMORY |  			PCI_REGION_PREFETCH);  #else  	pci_sz = 1ull << __ilog2_u64(sz); @@ -116,7 +116,7 @@ int fsl_pci_setup_inbound_windows(struct pci_region *r)  		debug ("R2 bus_start: %llx phys_start: %llx size: %llx\n",  			(u64)bus_start, (u64)phys_start, (u64)pci_sz);  		pci_set_region(r++, bus_start, phys_start, pci_sz, -				PCI_REGION_MEM | PCI_REGION_MEMORY | +				PCI_REGION_MEM | PCI_REGION_SYS_MEMORY |  				PCI_REGION_PREFETCH);  		sz -= pci_sz;  		bus_start += pci_sz; @@ -157,7 +157,7 @@ void fsl_pci_init(struct pci_controller *hose)  	for (r=0; r<hose->region_count; r++) {  		u32 sz = (__ilog2_u64((u64)hose->regions[r].size) - 1); -		if (hose->regions[r].flags & PCI_REGION_MEMORY) { /* inbound */ +		if (hose->regions[r].flags & PCI_REGION_SYS_MEMORY) { /* inbound */  			u32 flag = PIWAR_EN | PIWAR_LOCAL |  					PIWAR_READ_SNOOP | PIWAR_WRITE_SNOOP;  			pi->pitar = (hose->regions[r].phys_start >> 12); diff --git a/drivers/pci/pci_ixp.c b/drivers/pci/pci_ixp.c index aae3d3d2c..3b303b452 100644 --- a/drivers/pci/pci_ixp.c +++ b/drivers/pci/pci_ixp.c @@ -240,7 +240,7 @@ void pci_ixp_init (struct pci_controller *hose)  	/* System memory space */  	pci_set_region (hose->regions + 0,  			PCI_MEMORY_BUS, -			PCI_MEMORY_PHY, PCI_MEMORY_SIZE, PCI_REGION_MEMORY); +			PCI_MEMORY_PHY, PCI_MEMORY_SIZE, PCI_REGION_SYS_MEMORY);  	/* PCI memory space */  	pci_set_region (hose->regions + 1, diff --git a/drivers/pci/tsi108_pci.c b/drivers/pci/tsi108_pci.c index d153fc6be..627e8a079 100644 --- a/drivers/pci/tsi108_pci.c +++ b/drivers/pci/tsi108_pci.c @@ -131,7 +131,7 @@ void pci_init_board (void)  	pci_set_region (hose->regions + 0,  		       CONFIG_SYS_PCI_MEMORY_BUS,  		       CONFIG_SYS_PCI_MEMORY_PHYS, -		       CONFIG_SYS_PCI_MEMORY_SIZE, PCI_REGION_MEM | PCI_REGION_MEMORY); +		       CONFIG_SYS_PCI_MEMORY_SIZE, PCI_REGION_MEM | PCI_REGION_SYS_MEMORY);  	/* PCI memory space */  	pci_set_region (hose->regions + 1, |