diff options
Diffstat (limited to 'board/pb1x00/pb1x00.c')
| -rw-r--r-- | board/pb1x00/pb1x00.c | 6 | 
1 files changed, 6 insertions, 0 deletions
| diff --git a/board/pb1x00/pb1x00.c b/board/pb1x00/pb1x00.c index 40ac2a4d7..536c9544f 100644 --- a/board/pb1x00/pb1x00.c +++ b/board/pb1x00/pb1x00.c @@ -25,6 +25,7 @@  #include <command.h>  #include <asm/au1x00.h>  #include <asm/mipsregs.h> +#include <asm/io.h>  long int initdram(int board_type)  { @@ -41,7 +42,9 @@ void write_one_tlb( int index, u32 pagemask, u32 hi, u32 low0, u32 low1 );  int checkboard (void)  { +#if defined(CONFIG_IDE_PCMCIA) && 0  	u16 status; +#endif  	/* volatile u32 *pcmcia_bcsr = (u32*)(DB1000_BCSR_ADDR+0x10); */  	volatile u32 *sys_counter = (volatile u32*)SYS_COUNTER_CNTRL;  	u32 proc_id; @@ -69,6 +72,9 @@ int checkboard (void)  	default:  		printf ("Unsupported cpu %d, proc_id=0x%x\n", proc_id >> 24, proc_id);  	} + +	set_io_port_base(0); +  #if defined(CONFIG_IDE_PCMCIA) && 0  	/* Enable 3.3 V on slot 0 ( VCC )  	   No 5V */ |