Update of /cvsroot/linux-mips/linux/arch/mips/cobalt
In directory usw-pr-cvs1:/tmp/cvs-serv9547
Modified Files:
pci_ops.c
Log Message:
Very important bug fixes. Now I have specs for the GT64111. Thanks to Pete for his help.
Index: pci_ops.c
===================================================================
RCS file: /cvsroot/linux-mips/linux/arch/mips/cobalt/pci_ops.c,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- pci_ops.c 2001/10/30 00:50:06 1.6
+++ pci_ops.c 2001/10/30 23:26:33 1.7
@@ -46,10 +46,10 @@
#define DBG(x...)
#endif
-#define IO_BASE 0x00000000
-#define IO_SIZE 0x1CFFFFFF
-#define MEM_BASE 0x00000000
-#define MEM_SIZE 0x1CFFFFFF
+#define IO_BASE 0x10000000
+#define IO_SIZE 0x11FFFFFF
+#define MEM_BASE 0x12000000
+#define MEM_SIZE 0x13FFFFFF
static struct resource pci_io_resource = {
"pci IO space",
@@ -77,7 +77,7 @@
* to limit the scan.
*/
struct pci_channel mips_pci_channels[] = {
- { &qube_pci_ops, &pci_io_resource, &pci_mem_resource, 0, 0xFF },
+ { &qube_pci_ops, &pci_io_resource, &pci_mem_resource, 1, 0xFF },
{(struct pci_ops *) NULL, (struct resource *) NULL,
(struct resource *) NULL, (int) NULL, (int) NULL}
};
|