diff options
Diffstat (limited to 'board/cray/L1')
| -rw-r--r-- | board/cray/L1/L1.c | 14 | 
1 files changed, 7 insertions, 7 deletions
| diff --git a/board/cray/L1/L1.c b/board/cray/L1/L1.c index 5d1c4170d..79130711d 100644 --- a/board/cray/L1/L1.c +++ b/board/cray/L1/L1.c @@ -113,13 +113,13 @@ int board_early_init_f (void)  {  	/* Running from ROM: global data is still READONLY */  	init_sdram (); -	mtdcr (uicsr, 0xFFFFFFFF);	/* clear all ints */ -	mtdcr (uicer, 0x00000000);	/* disable all ints */ -	mtdcr (uiccr, 0x00000020);	/* set all but FPGA SMI to be non-critical */ -	mtdcr (uicpr, 0xFFFFFFE0);	/* set int polarities */ -	mtdcr (uictr, 0x10000000);	/* set int trigger levels */ -	mtdcr (uicvcr, 0x00000001);	/* set vect base=0,INT0 highest priority */ -	mtdcr (uicsr, 0xFFFFFFFF);	/* clear all ints */ +	mtdcr (UIC0SR, 0xFFFFFFFF);	/* clear all ints */ +	mtdcr (UIC0ER, 0x00000000);	/* disable all ints */ +	mtdcr (UIC0CR, 0x00000020);	/* set all but FPGA SMI to be non-critical */ +	mtdcr (UIC0PR, 0xFFFFFFE0);	/* set int polarities */ +	mtdcr (UIC0TR, 0x10000000);	/* set int trigger levels */ +	mtdcr (UIC0VCR, 0x00000001);	/* set vect base=0,INT0 highest priority */ +	mtdcr (UIC0SR, 0xFFFFFFFF);	/* clear all ints */  	return 0;  } |