Skip to content
Snippets Groups Projects
Commit 3345d18d authored by Boschung, Rainer's avatar Boschung, Rainer Committed by York Sun
Browse files

mpc85xx: fix interrupt init to not affect watchdog


TCR watchdog bit are overwritten when dec interrupt is enabled.
This has been fixed with this patch.

Signed-off-by: default avatarRainer Boschung <rainer.boschung@keymile.com>
Reviewed-by: default avatarYork Sun <yorksun@freescale.com>
parent fb536878
No related branches found
No related tags found
No related merge requests found
...@@ -42,7 +42,7 @@ int interrupt_init_cpu(unsigned int *decrementer_count) ...@@ -42,7 +42,7 @@ int interrupt_init_cpu(unsigned int *decrementer_count)
*decrementer_count = get_tbclk() / CONFIG_SYS_HZ; *decrementer_count = get_tbclk() / CONFIG_SYS_HZ;
/* PIE is same as DIE, dec interrupt enable */ /* PIE is same as DIE, dec interrupt enable */
mtspr(SPRN_TCR, TCR_PIE); mtspr(SPRN_TCR, mfspr(SPRN_TCR) | TCR_PIE);
#ifdef CONFIG_INTERRUPTS #ifdef CONFIG_INTERRUPTS
pic->iivpr1 = 0x810001; /* 50220 enable ecm interrupts */ pic->iivpr1 = 0x810001; /* 50220 enable ecm interrupts */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment