[POWERPC] kexec: MPIC ack interrupts at mpic_teardown_this_cpu()
We really need to ack interrupts at mpic_teardown, since not all platforms reset mpic at kernel start-up. For example, kexec'ed kernel hangs on P.A. Semi if mpic_eoi() isn't called. Signed-off-by: Valentine Barshak <vbarshak@ru.mvista.com> Signed-off-by: Olof Johansson <olof@lixom.net>
This commit is contained in:
committed by
Olof Johansson
parent
f724bf7781
commit
7132799b0e
@@ -1410,11 +1410,6 @@ void mpic_cpu_set_priority(int prio)
|
|||||||
mpic_cpu_write(MPIC_INFO(CPU_CURRENT_TASK_PRI), prio);
|
mpic_cpu_write(MPIC_INFO(CPU_CURRENT_TASK_PRI), prio);
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
|
||||||
* XXX: someone who knows mpic should check this.
|
|
||||||
* do we need to eoi the ipi including for kexec cpu here (see xics comments)?
|
|
||||||
* or can we reset the mpic in the new kernel?
|
|
||||||
*/
|
|
||||||
void mpic_teardown_this_cpu(int secondary)
|
void mpic_teardown_this_cpu(int secondary)
|
||||||
{
|
{
|
||||||
struct mpic *mpic = mpic_primary;
|
struct mpic *mpic = mpic_primary;
|
||||||
@@ -1434,6 +1429,10 @@ void mpic_teardown_this_cpu(int secondary)
|
|||||||
|
|
||||||
/* Set current processor priority to max */
|
/* Set current processor priority to max */
|
||||||
mpic_cpu_write(MPIC_INFO(CPU_CURRENT_TASK_PRI), 0xf);
|
mpic_cpu_write(MPIC_INFO(CPU_CURRENT_TASK_PRI), 0xf);
|
||||||
|
/* We need to EOI the IPI since not all platforms reset the MPIC
|
||||||
|
* on boot and new interrupts wouldn't get delivered otherwise.
|
||||||
|
*/
|
||||||
|
mpic_eoi(mpic);
|
||||||
|
|
||||||
spin_unlock_irqrestore(&mpic_lock, flags);
|
spin_unlock_irqrestore(&mpic_lock, flags);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user