@@ -29,6 +29,7 @@ static inline int ux500_enter_idle(struct cpuidle_device *dev,
{
int this_cpu = smp_processor_id();
bool recouple = false;
+ bool locked = false;
clockevents_notify(CLOCK_EVT_NOTIFY_BROADCAST_ENTER, &this_cpu);
@@ -39,6 +40,8 @@ static inline int ux500_enter_idle(struct cpuidle_device *dev,
if (!spin_trylock(&master_lock))
goto wfi;
+ locked = true;
+
/* decouple the gic from the A9 cores */
if (prcmu_gic_decouple())
goto out;
@@ -76,7 +79,7 @@ static inline int ux500_enter_idle(struct cpuidle_device *dev,
/* When we switch to retention, the prcmu is in charge
* of recoupling the gic automatically */
recouple = false;
-
+ locked = false;
spin_unlock(&master_lock);
}
wfi:
@@ -84,10 +87,11 @@ wfi:
out:
atomic_dec(&master);
- if (recouple) {
+ if (recouple)
prcmu_gic_recouple();
+
+ if (locked)
spin_unlock(&master_lock);
- }
clockevents_notify(CLOCK_EVT_NOTIFY_BROADCAST_EXIT, &this_cpu);