On 11/10, Peter De Schrijver wrote: > Signed-off-by: Peter De Schrijver <pdeschrijver@xxxxxxxxxx> Some commit text perhaps explaining why we add this? > --- > drivers/clk/tegra/clk.h | 7 +++++++ > 1 file changed, 7 insertions(+) > > diff --git a/drivers/clk/tegra/clk.h b/drivers/clk/tegra/clk.h > index 872f118..3b8947e 100644 > --- a/drivers/clk/tegra/clk.h > +++ b/drivers/clk/tegra/clk.h > @@ -809,4 +809,11 @@ static inline struct clk *tegra_clk_register_emc(void __iomem *base, > u16 tegra_pll_get_fixed_mdiv(struct clk_hw *hw, unsigned long input_rate); > int tegra_pll_p_div_to_hw(struct tegra_clk_pll *pll, u8 p_div); > > +/* Combined read fence with delay */ > +#define fence_udelay(delay, reg) \ > + do { \ > + readl_relaxed(reg); \ > + udelay(delay); \ Does the udelay() need to be after the readl()? As far as I recall, the delay can start spinning before the read returns because there isn't any sort of barrier between the two. One approach would be to have an mb() between the read and the delay so that the read is ordered with respect to the delay. If not, we need a better comment than "combined read fence with delay". -- Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum, a Linux Foundation Collaborative Project -- To unsubscribe from this list: send the line "unsubscribe linux-tegra" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html