From: Pete P. <pp...@us...> - 2002-05-01 18:08:06
|
Update of /cvsroot/linux-mips/linux/arch/mips In directory usw-pr-cvs1:/tmp/cvs-serv32242/arch/mips Modified Files: config.in Log Message: Replaced readl/writel type of macros with au_readl/au_writel since we need to enable software byte swapping in BE mode, but register accesses should not be swapped. The Pb1x00 boards are now mostly BE safe, but some external peripherals (external to the SOC) are not yet usable in BE mode. USB has not been tested in BE mode either. Index: config.in =================================================================== RCS file: /cvsroot/linux-mips/linux/arch/mips/config.in,v retrieving revision 1.96 retrieving revision 1.97 diff -u -d -r1.96 -r1.97 --- config.in 29 Apr 2002 23:05:11 -0000 1.96 +++ config.in 1 May 2002 18:00:27 -0000 1.97 @@ -379,7 +379,7 @@ define_bool CONFIG_NEW_PCI y define_bool CONFIG_NONCOHERENT_IO y define_bool CONFIG_PC_KEYB y - define_int MAX_HWIFS 1 + define_bool CONFIG_SWAP_IO_SPACE y fi if [ "$CONFIG_MIPS_PB1500" = "y" ]; then define_bool CONFIG_MIPS_AU1000 y @@ -389,7 +389,6 @@ define_bool CONFIG_PCI_AUTO y define_bool CONFIG_NONCOHERENT_IO y define_bool CONFIG_PC_KEYB y - define_int MAX_HWIFS 1 fi if [ "$CONFIG_MIPS_PB1100" = "y" ]; then define_bool CONFIG_MIPS_AU1000 y @@ -399,6 +398,7 @@ define_bool CONFIG_NEW_PCI y define_bool CONFIG_NONCOHERENT_IO y define_bool CONFIG_PC_KEYB y + define_bool CONFIG_SWAP_IO_SPACE y fi if [ "$CONFIG_IDT_79S334" = "y" ]; then define_bool CONFIG_MIPS_RC32334 y |