Re: [PATCH -rt] ide: fix interrupts processing issue with preempt-able hardirqs

!MAILaRCHIVE_VOTE_RePLACE
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]
To: Ingo Molnar <mingo@...>
Cc: <linux-ide@...>, Bartlomiej Zolnierkiewicz <bzolnier@...>, Alan Cox <alan@...>, Sergei Shtylyov <sshtylyov@...>, <linux-kernel@...>, Thomas Gleixner <tglx@...>, Steven Rostedt <rostedt@...>, Daniel Walker <dwalker@...>
Date: Wednesday, June 25, 2008 - 8:34 am

On Tue, Jun 24, 2008 at 04:00:16AM +0400, Anton Vorontsov wrote:

Ok, a bit more investigation showed that this is indeed not RT specific
per see, but issue emerges only on RT-style IRQ handlers + alim15x3 IDE
controller (for example, PDC20269 works ok).

The difference is that that with RT: low-level (non-threaded) IRQ
handler masks IDE IRQ, then wakes up appropriate IRQ thread, which calls
IDE handler, and then, after IDE handler exits, thread routine unmasks
IDE IRQ.

Without RT: low-level non-threaded IRQ handler does not mask specific
IRQ, but disables local interrupts, and calls IDE handler directly.

The bug, as I see it, in the alim15x3 (ULi M5228) hardware: for some
reason it does not hold IRQ line, but rises it for some short period
of time (while the drive itself rises and holds it correctly -- I'm
seeing it via oscilloscope).

So this scheme does not work:
mask_irq()
...do something that will trigger IDE interrupt...
unmask_irq()

Because at the unmask_irq() time IDE IRQ is gone already, and interrupt
controller could not notice it (interrupts are level sensitive).

I did following test: disable RT + insert mask/unmask sequence in the
IDE IRQ handler, and I got the same behaviour as with RT enabled.

Also, further testing showed that this issue isn't drive-specific, i.e.
with a delay inserted before the unmask_irq(), the bug shows with any
drive I have.

So, in summary: I think that the patch is still correct as a hw bug
workaround (I'll need to correct its comments and description though).

-- 
Anton Vorontsov
email: cbouatmailru@gmail.com
irc://irc.freenode.net/bd2
--
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]

Messages in current thread:
Re: [PATCH -rt] ide: fix interrupts processing issue with pr..., Anton Vorontsov, (Wed Jun 25, 8:34 am)
Re: [PATCH v2 -rt] ide: workaround buggy hardware issues wit..., Benjamin Herrenschmidt, (Sun Jun 29, 7:26 pm)
Re: [RT] MPIC edge sensitive issues with hardirq preemption ..., Benjamin Herrenschmidt, (Mon Jun 30, 5:59 pm)