diff options
Diffstat (limited to 'cpu/ppc4xx/cpu_init.c')
| -rw-r--r-- | cpu/ppc4xx/cpu_init.c | 4 | 
1 files changed, 4 insertions, 0 deletions
| diff --git a/cpu/ppc4xx/cpu_init.c b/cpu/ppc4xx/cpu_init.c index def46f15c..4b746b072 100644 --- a/cpu/ppc4xx/cpu_init.c +++ b/cpu/ppc4xx/cpu_init.c @@ -321,6 +321,10 @@ cpu_init_f (void)  #else  	val |= 0xf0000000;      /* generate system reset after 2.684 seconds */  #endif +#if defined(CFG_4xx_RESET_TYPE) +	val &= ~0x30000000;			/* clear WRC bits */ +	val |= CFG_4xx_RESET_TYPE << 28;	/* set board specific WRC type */ +#endif  	mtspr(tcr, val);  	val = mfspr(tsr); |