diff options
Diffstat (limited to 'cpu/arm720t/start.S')
| -rw-r--r-- | cpu/arm720t/start.S | 15 | 
1 files changed, 11 insertions, 4 deletions
| diff --git a/cpu/arm720t/start.S b/cpu/arm720t/start.S index 3695465e7..e66d10944 100644 --- a/cpu/arm720t/start.S +++ b/cpu/arm720t/start.S @@ -188,7 +188,7 @@ _start_armboot: .word start_armboot   *************************************************************************   */ -#if defined(CONFIG_IMPA7) || defined(CONFIG_EP7312) +#if defined(CONFIG_IMPA7) || defined(CONFIG_EP7312) || defined(CONFIG_ARMADILLO)  /* Interupt-Controller base addresses */  INTMR1:		.word	0x80000280 @ 32 bit size @@ -209,7 +209,7 @@ SYSCON3:	.word	0x80002200  #endif  cpu_init_crit: -#if defined(CONFIG_IMPA7) || defined(CONFIG_EP7312) +#if defined(CONFIG_IMPA7) || defined(CONFIG_EP7312) || defined(CONFIG_ARMADILLO)  	/*  	 * mask all IRQs by clearing all bits in the INTMRs @@ -272,12 +272,15 @@ cpu_init_crit:  	str	r1, [r0, #+NETARM_GEN_SYSTEM_CONTROL] +#ifndef CONFIG_NETARM_PLL_BYPASS  	ldr	r1, =(	NETARM_GEN_PLL_CTL_PLLCNT(NETARM_PLL_COUNT_VAL) | \  			NETARM_GEN_PLL_CTL_POLTST_DEF | \  			NETARM_GEN_PLL_CTL_INDIV(1) | \  			NETARM_GEN_PLL_CTL_ICP_DEF | \  			NETARM_GEN_PLL_CTL_OUTDIV(2) )  	str	r1, [r0, #+NETARM_GEN_PLL_CONTROL] +#endif +  	/*  	 * mask all IRQs by clearing all bits in the INTMRs  	 */ @@ -301,6 +304,8 @@ cpu_init_crit:  	ldr r1, =0x83ffffa0	/* cache-disabled  */  	str r1, [r0] +#elif defined(CONFIG_INTEGRATOR) && defined(CONFIG_ARCH_INTEGRATOR) +	/* No specific initialisation for IntegratorAP/CM720T as yet */  #else  #error No cpu_init_crit() defined for current CPU type  #endif @@ -316,12 +321,12 @@ cpu_init_crit:  	str	r1, [r0]  #endif +	mov	ip, lr  	/*  	 * before relocating, we have to setup RAM timing  	 * because memory timing is board-dependent, you will  	 * find a lowlevel_init.S in your board directory.  	 */ -	mov	ip, lr  	bl	lowlevel_init  	mov	lr, ip @@ -495,7 +500,7 @@ fiq:  #endif -#if defined(CONFIG_IMPA7) || defined(CONFIG_EP7312) +#if defined(CONFIG_IMPA7) || defined(CONFIG_EP7312) || defined(CONFIG_ARMADILLO)  	.align	5  .globl reset_cpu  reset_cpu: @@ -530,6 +535,8 @@ reset_cpu:  #elif defined(CONFIG_S3C4510B)  /* Nothing done here as reseting the CPU is board specific, depending   * on external peripherals such as watchdog timers, etc. */ +#elif defined(CONFIG_INTEGRATOR) && defined(CONFIG_ARCH_INTEGRATOR) +	/* No specific reset actions for IntegratorAP/CM720T as yet */  #else  #error No reset_cpu() defined for current CPU type  #endif |