PR 428/bsps
	PR 432/bsps
	* bootloader/pci.c: Re-instated code that prevents remapping small
	IO regions, which if remapped would cause i8259 registers to move
	out from under the #define'd base addresses.
	* startup/bspstart.c: Reduced BAT2 PCI memory allocation to 256
	megs, I incorrectly had extended it which would cause problems with
	PCI devices that defined prefetchable memory.
This commit is contained in:
Joel Sherrill
2003-07-18 15:48:54 +00:00
parent cfc257fcb6
commit 367a0e2089
4 changed files with 60 additions and 20 deletions

View File

@@ -1,3 +1,14 @@
2003-07-16 Greg Menke <gregory.menke@gsfc.nasa.gov>
PR 428/bsps
PR 432/bsps
* bootloader/pci.c: Re-instated code that prevents remapping small
IO regions, which if remapped would cause i8259 registers to move
out from under the #define'd base addresses.
* startup/bspstart.c: Reduced BAT2 PCI memory allocation to 256
megs, I incorrectly had extended it which would cause problems with
PCI devices that defined prefetchable memory.
2003-06-13 Greg Menke <gregory.menke@gsfc.nasa.gov> 2003-06-13 Greg Menke <gregory.menke@gsfc.nasa.gov>
PR 405/bsps PR 405/bsps

View File

@@ -29,7 +29,13 @@
typedef unsigned int u32; typedef unsigned int u32;
/*#define DEBUG*/
/*
#define DEBUG
#define PCI_DEBUG
*/
/* Used to reorganize PCI space on stupid machines which spread resources /* Used to reorganize PCI space on stupid machines which spread resources
* across a wide address space. This is bad when P2P bridges are present * across a wide address space. This is bad when P2P bridges are present
* or when it limits the mappings that a resource hog like a PCI<->VME * or when it limits the mappings that a resource hog like a PCI<->VME
@@ -215,14 +221,39 @@ static void insert_resource(pci_resource *r) {
* limits have hopefully been set high enough to avoid problems. * limits have hopefully been set high enough to avoid problems.
*/ */
#if 0 /*
** This is little ugly below. It seems that at least on the MCP750,
** the PBC has some default IO space mappings that the bsp #defines
** that read/write to PCI I/O space assume, particuarly the i8259
** manipulation code. So, if we allow the small IO spaces on PCI bus
** 0 and 1 to be remapped, the registers can shift out from under the
** #defines. This is particuarly awful, but short of redefining the
** PCI I/O primitives to be functions with base addresses read from
** the hardware, we are stuck with the kludge below. Note that
** everything is remapped on the CPCI backplane and any downstream
** hardware, its just the builtin stuff we're tiptoeing around.
**
** Gregm, 7/16/2003
*/
if( r->dev->bus->number <= 1 )
{
if ((r->type==PCI_BASE_ADDRESS_SPACE_IO) if ((r->type==PCI_BASE_ADDRESS_SPACE_IO)
? (r->base && r->base <0x10000) ? (r->base && r->base <0x10000)
: (r->base && r->base <0x1000000)) { : (r->base && r->base <0x1000000)) {
#ifdef PCI_DEBUG
printk("freeing region; %p:%p %d:%02x (%04x:%04x) %08lx %08lx %d\n",
r, r->next,
r->dev->bus->number, PCI_SLOT(r->dev->devfn),
r->dev->vendor, r->dev->device,
r->base,
r->size,
r->type);
#endif
sfree(r); sfree(r);
return; return;
} }
#endif }
if ((r->type==PCI_BASE_ADDRESS_SPACE_IO) if ((r->type==PCI_BASE_ADDRESS_SPACE_IO)
? (r->size >= 0x10000) ? (r->size >= 0x10000)
@@ -482,7 +513,7 @@ static void reconfigure_bus_space(u_char bus, u_char type, pci_area_head *h)
#define BUSREST_IO_START 0x20000 #define BUSREST_IO_START 0x20000
#define BUSREST_IO_END 0x7ffff #define BUSREST_IO_END 0x7ffff
#define BUSREST_MEM_START 0xb000000 #define BUSREST_MEM_START 0xb000000
#define BUSREST_MEM_END 0x30000000 #define BUSREST_MEM_END 0x10000000
@@ -1111,7 +1142,6 @@ static pci_resource *enum_device_resources( struct pci_dev *pdev, int i )
#define MEMORY_IO_GRANULARITY 256
@@ -1247,16 +1277,13 @@ static void recursive_bus_reconfigure( struct pci_bus *pbus )
#ifdef WRITE_BRIDGE_ENABLE #ifdef WRITE_BRIDGE_ENABLE
pcibios_write_config_word(pdev->bus->number, pdev->devfn, PCI_BRIDGE_CONTROL, (unsigned16)( PCI_BRIDGE_CTL_PARITY | pcibios_write_config_word(pdev->bus->number, pdev->devfn, PCI_BRIDGE_CONTROL, (unsigned16)( PCI_BRIDGE_CTL_PARITY |
PCI_BRIDGE_CTL_SERR | PCI_BRIDGE_CTL_SERR ));
PCI_BRIDGE_CTL_FAST_BACK));
pcibios_write_config_word(pdev->bus->number, pdev->devfn, PCI_COMMAND, (unsigned16)( PCI_COMMAND_IO | pcibios_write_config_word(pdev->bus->number, pdev->devfn, PCI_COMMAND, (unsigned16)( PCI_COMMAND_IO |
PCI_COMMAND_MEMORY | PCI_COMMAND_MEMORY |
PCI_COMMAND_MASTER | PCI_COMMAND_MASTER |
PCI_COMMAND_PARITY | PCI_COMMAND_PARITY |
PCI_COMMAND_WAIT | PCI_COMMAND_SERR ));
PCI_COMMAND_SERR |
PCI_COMMAND_FAST_BACK ));
#endif #endif
} }
} }
@@ -1315,7 +1342,7 @@ static void recursive_bus_reconfigure( struct pci_bus *pbus )
astart.start_pciio = (((astart.start_pciio / r->size) + 1) * r->size); astart.start_pciio = (((astart.start_pciio / r->size) + 1) * r->size);
r->base = astart.start_pciio; r->base = astart.start_pciio;
astart.start_pciio += (alloc= ((r->size / MEMORY_IO_GRANULARITY) + 1) * MEMORY_IO_GRANULARITY); astart.start_pciio += (alloc= ((r->size / PAGE_SIZE) + 1) * PAGE_SIZE);
#ifdef PCI_DEBUG #ifdef PCI_DEBUG
printk("pci: io %08X, size %08X, alloc %08X\n", r->base, r->size, alloc ); printk("pci: io %08X, size %08X, alloc %08X\n", r->base, r->size, alloc );
#endif #endif
@@ -1329,7 +1356,7 @@ static void recursive_bus_reconfigure( struct pci_bus *pbus )
astart.start_pcimem = (((astart.start_pcimem / r->size) + 1) * r->size); astart.start_pcimem = (((astart.start_pcimem / r->size) + 1) * r->size);
r->base = astart.start_pcimem; r->base = astart.start_pcimem;
astart.start_pcimem += (alloc= ((r->size / MEMORY_IO_GRANULARITY) + 1) * MEMORY_IO_GRANULARITY); astart.start_pcimem += (alloc= ((r->size / PAGE_SIZE) + 1) * PAGE_SIZE);
#ifdef PCI_DEBUG #ifdef PCI_DEBUG
printk("pci: mem %08X, size %08X, alloc %08X\n", r->base, r->size, alloc ); printk("pci: mem %08X, size %08X, alloc %08X\n", r->base, r->size, alloc );
#endif #endif
@@ -1405,6 +1432,7 @@ void pci_init(void)
print_pci_resources("Installed PCI resources:\n"); print_pci_resources("Installed PCI resources:\n");
recursive_bus_reconfigure(NULL); recursive_bus_reconfigure(NULL);
reconfigure_pci(); reconfigure_pci();
print_pci_resources("Allocated PCI resources:\n"); print_pci_resources("Allocated PCI resources:\n");

View File

@@ -14,12 +14,12 @@
#include <rtems/bspIo.h> #include <rtems/bspIo.h>
int int
BSP_pciFindDevice(unsigned short vendorid, unsigned short deviceid, BSP_pciFindDevice( unsigned short vendorid, unsigned short deviceid,
int instance, int *pbus, int *pdev, int *pfun) int instance, int *pbus, int *pdev, int *pfun )
{ {
unsigned int d; unsigned int d;
unsigned short s; unsigned short s;
unsigned char bus,dev,fun,hd; unsigned char bus,dev,fun,hd;
for (bus=0; bus<BusCountPCI(); bus++) { for (bus=0; bus<BusCountPCI(); bus++) {
for (dev=0; dev<PCI_MAX_DEVICES; dev++) { for (dev=0; dev<PCI_MAX_DEVICES; dev++) {
@@ -53,3 +53,5 @@ unsigned char bus,dev,fun,hd;
} }
return -1; return -1;
} }
/* eof */

View File

@@ -253,7 +253,7 @@ void bsp_start( void )
* provided by the RAVEN * provided by the RAVEN
*/ */
/* T. Straumann: give more PCI address space */ /* T. Straumann: give more PCI address space */
setdbat(2, PCI_MEM_BASE, PCI_MEM_BASE, 0x30000000, IO_PAGE); setdbat(2, PCI_MEM_BASE, PCI_MEM_BASE, 0x10000000, IO_PAGE);
/* /*
* Must have acces to open pic PCI ACK registers * Must have acces to open pic PCI ACK registers
* provided by the RAVEN * provided by the RAVEN
@@ -310,11 +310,9 @@ void bsp_start( void )
} }
else else
printk("pci : Interrupt routing not available for this bsp\n"); printk("pci : Interrupt routing not available for this bsp\n");
} }
#ifdef SHOW_MORE_INIT_SETTINGS #ifdef SHOW_MORE_INIT_SETTINGS
printk("Number of PCI buses found is : %d\n", BusCountPCI()); printk("Number of PCI buses found is : %d\n", BusCountPCI());
#endif #endif
@@ -341,6 +339,7 @@ void bsp_start( void )
/* clear hostbridge errors and enable MCP */ /* clear hostbridge errors and enable MCP */
_BSP_clear_hostbridge_errors(1/*enableMCP*/, 0/*quiet*/); _BSP_clear_hostbridge_errors(1/*enableMCP*/, 0/*quiet*/);
/* Allocate and set up the page table mappings /* Allocate and set up the page table mappings
* This is only available on >604 CPUs. * This is only available on >604 CPUs.
* *