Re: Test Patch: 2.5.69 Interrupt Latency

Paul Fulghum (paulkf@microgate.com)
16 May 2003 10:58:11 -0500


On Fri, 2003-05-16 at 10:33, Alan Stern wrote:

> You can probably find this information in your copy of the specs. Bit 6
> of the PORTSC register is Resume Detect. When that bit gets set, the host
> controller signals a global resume and presumably sets bit 2 of the USBSTS
> register.

Yes, I see that now.

> > Con: you would be generating a lot of spurious interrupts
> > as the global USBSTS_RD is set (incorrectly) by the OC ports.
> > Even though you would not actually do the wake, you still
> > burn cycles servicing the false interrupts.
>
> I'm not sure about that. For ports in a permanent OC state, the RD bit
> would get set just once, so a single interrupt would be generated. When
> the host clears the Resume Detect bit in the USBSTS register, it shouldn't
> get set again (not until a different port signals a resume). Otherwise a
> properly working system would generate continuous interrupts during the
> global resume sequence.

Good point. The continuous interrupts I was seeing is because
the wakeup was actually being carried out, followed by the
thrashing between suspend and wakeup.

If your interpretation is true (which I suspect it is)
then global suspend could still be supported with only
a couple of extra interrupts after each suspend.

> That's just guesswork on my part; the spec isn't sufficiently precise to
> be certain one way or the other. You can find out pretty easily by
> testing the driver on your machine. Just don't do anything in the ISR
> when USBSTS_RD is set. Come to think of it, I can try the same thing
> here.

I'll test this.

> By a nice coincidence, my system has a 8086:7112 controller -- wired up
> correctly and perfectly useable. So I can easily test to make sure that
> the final proposed change works okay on a good system.

Good

> BTW, I'm not entirely pleased with the size of my test patch. It's a bit
> lengthy for something intended mainly to move a delay loop outside an ISR.
> But I couldn't think of any simpler way to do it, and once the state
> transition code is there it's really no harder to add the 1-second "grace"
> periods. So of the three ingredients we've got here (20ms delay outside
> of ISR, "grace" periods, checking for OC ports), I don't think we could
> make the patch much simpler by eliminating any. What do you think?

Moving the wait out of the ISR and doing the wakeup
only for RD on non-OC ports are winners.

I can't comment on the 1 second grace period. Was that
in response to this investigation, or have you actually
seen false RD indications due to noise?

There is also the more trivial matter of removing the
unnecessary setting of the FGR bit on wakeup.

I'll check that the global RD interrupt does not
keep repeating after a false RD by an OC port.

So I suggest you build a patch that does all of
the above (with the grace period at your discretion).
Then we can both test it, and you can submit it
for actual inclusion.

Thanks,
Paul

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/