Procházet zdrojové kódy

pinctrl: single: Fix missing flush of posted write for a wakeirq

With many repeated suspend resume cycles, the pin specific wakeirq
may not always work on omaps. This is because the write to enable the
pin interrupt may not have reached the device over the interconnect
before suspend happens.

Let's fix the issue with a flush of posted write with a readback.

Cc: stable@vger.kernel.org
Reported-by: Nishanth Menon <nm@ti.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Tony Lindgren před 9 roky
rodič
revize
0ac3c0a402
1 změnil soubory, kde provedl 3 přidání a 0 odebrání
  1. 3 0
      drivers/pinctrl/pinctrl-single.c

+ 3 - 0
drivers/pinctrl/pinctrl-single.c

@@ -1580,6 +1580,9 @@ static inline void pcs_irq_set(struct pcs_soc_data *pcs_soc,
 		else
 		else
 			mask &= ~soc_mask;
 			mask &= ~soc_mask;
 		pcs->write(mask, pcswi->reg);
 		pcs->write(mask, pcswi->reg);
+
+		/* flush posted write */
+		mask = pcs->read(pcswi->reg);
 		raw_spin_unlock(&pcs->lock);
 		raw_spin_unlock(&pcs->lock);
 	}
 	}