From: John Ogness on 20 Jun 2010 05:30 On 2010-06-20, Ivo Clarysse <ivo.clarysse(a)gmail.com> wrote: > Yes, on i.MX21, NFC interrupts can be masked using > NFC_CONFIG1:NFC_INT_MSK. But I observed that as long as NFC_INT_MSK > is set, NFC_CONFIG2:NFC_INT will always read out 0 on i.MX21, even if > the operation is completed. > > So the driver will remain stuck at: > > wait_event(host->irq_waitq, > readw(host->regs + NFC_CONFIG2) & NFC_INT); OK. Here is alternative patch. Do you have access to an i.MX21 to test this on? This patch fixes the driver so that the irq is requested as disabled. This prevents double irq enabling and also does not require the interrupt to be disabled within the interrupt handler. (Actually, I beleive this was the true intention of the original author.) The patch is against linux-next 20100618. Signed-off-by: John Ogness <john.ogness(a)linutronix.de> --- drivers/mtd/nand/mxc_nand.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) Index: linux-next-20100618/drivers/mtd/nand/mxc_nand.c =================================================================== --- linux-next-20100618.orig/drivers/mtd/nand/mxc_nand.c +++ linux-next-20100618/drivers/mtd/nand/mxc_nand.c @@ -30,6 +30,7 @@ #include <linux/clk.h> #include <linux/err.h> #include <linux/io.h> +#include <linux/irq.h> #include <asm/mach/flash.h> #include <mach/mxc_nand.h> @@ -846,7 +847,9 @@ static int __init mxcnd_probe(struct pla host->irq = platform_get_irq(pdev, 0); - err = request_irq(host->irq, mxc_nfc_irq, IRQF_DISABLED, DRIVER_NAME, host); + /* request irq as disabled */ + err = request_irq(host->irq, mxc_nfc_irq, IRQF_NOAUTOEN, + DRIVER_NAME, host); if (err) goto eirq; -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo(a)vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
|
Pages: 1 Prev: kexec: export kexec.h to userspace Next: [PATCH 2/2] arch/sh/mm: Eliminate a double lock |