[PATCH] ARM: Add spi controller driver support for NUC900
Andrew Morton
akpm at linux-foundation.org
Thu Nov 19 02:49:28 EST 2009
On Thu, 19 Nov 2009 14:23:49 +0800 Wan ZongShun <mcuos.com at gmail.com> wrote:
> >> +static int __devexit w90p910_spi_remove(struct platform_device *dev)
> >> +{
> >> + __ __ struct w90p910_spi *hw = platform_get_drvdata(dev);
> >> +
> >> + __ __ platform_set_drvdata(dev, NULL);
> >> +
> >> + __ __ spi_unregister_master(hw->master);
> >> +
> >> + __ __ clk_disable(hw->clk);
> >> + __ __ clk_put(hw->clk);
> >
> > As far as I can tell, a hardware interrupt could still be pending, or
> > be under service while the above code is executing?
> >
> > If so, I expect bad things will happen?
>
> Do you mean that I should put this 'free_irq()' in the front of
> w90p910_spi_remove___
>
> such as:
> "
> free_irq(hw->irq, hw);
>
> platform_set_drvdata(dev, NULL);
>
> spi_unregister_master(hw->master);
>
> clk_disable(hw->clk);
> clk_put(hw->clk);
I don't know, because I don't know what operation the hardware needs to
stop it from generating interrupts. Perhaps that's clk_disable()?
Once you've stopped the source of interrupts then the code should wait
for the IRQ handler to complete if it's running on another CPU. Yes,
free_irq() does that.
It's only after the clk_disable() and the free_irq() that you can
guarantee that no interrupt handler will run and attempt to access the
device and its associated data structures.
More information about the linux-arm-kernel
mailing list