From: Pete P. <pp...@us...> - 2002-03-23 02:14:04
|
Update of /cvsroot/linux-mips/linux/include/asm-mips In directory usw-pr-cvs1:/tmp/cvs-serv19885/include/asm-mips Modified Files: au1000.h Log Message: Changed PCI IO starting address. Index: au1000.h =================================================================== RCS file: /cvsroot/linux-mips/linux/include/asm-mips/au1000.h,v retrieving revision 1.14 retrieving revision 1.15 diff -u -d -r1.14 -r1.15 --- au1000.h 9 Mar 2002 01:40:52 -0000 1.14 +++ au1000.h 23 Mar 2002 02:14:01 -0000 1.15 @@ -54,19 +54,19 @@ void static inline outb_sync(u8 val, int reg) { - outb(val, reg); + writeb(val, reg); au_sync(); } void static inline outw_sync(u16 val, int reg) { - outw(val, reg); + writew(val, reg); au_sync(); } void static inline outl_sync(u32 val, int reg) { - outl(val, reg); + writel(val, reg); au_sync(); } @@ -777,8 +777,9 @@ * ourselves and then adjust the device's resources. */ #define Au1500_EXT_CFG 0x600000000 -#define Au1500_PCI_IO_START 0x550000000 -#define Au1500_PCI_IO_END 0x5500FFFFF +#define Au1500_EXT_CFG_TYPE1 0x680000000 +#define Au1500_PCI_IO_START 0x500000000 +#define Au1500_PCI_IO_END 0x5000FFFFF #define Au1500_PCI_MEM_START 0x440000000 #define Au1500_PCI_MEM_END 0x443FFFFFF |