9fans - fans of the OS Plan 9 from Bell Labs
 help / color / mirror / Atom feed
* [9fans] wierd interrupt 0xc6
@ 2004-12-10 17:43 west9
  2004-12-10 18:14 ` jmk
  0 siblings, 1 reply; 2+ messages in thread
From: west9 @ 2004-12-10 17:43 UTC (permalink / raw)
  To: 9fans

I've been getting this exception for a while now on modem 
downloads longer than about 3min: "wierd interrupt 0xc6" . It appears to be generated by the uart driver:

 grep weird ./*
./uarti8250.c:			iprint("weird uart interrupt 0x%2.2uX\n", iir)

I tried reseating the modem board.

Does this mean I should start looking for a new mother board?

Suggestions, please.

 Thanks
-Tom


^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [9fans] wierd interrupt 0xc6
  2004-12-10 17:43 [9fans] wierd interrupt 0xc6 west9
@ 2004-12-10 18:14 ` jmk
  0 siblings, 0 replies; 2+ messages in thread
From: jmk @ 2004-12-10 18:14 UTC (permalink / raw)
  To: 9fans

It looks like the handling of 

	Irls		= 0x06,		/* Receiver Line Status */

got lost in the rewrite a little while ago. You could try adding a case for it
in i8250interrupt, lumping it with Irda and Ictoi, i.e.

		case Irda:		/* Received Data Available */
		case Irls:		/* Receiver Line Status */
		case Ictoi:		/* Character Time-out Indication */

That may do, or we might have to split handling the data and error
conditions if it causes problems.

It means you are getting overrun, parity, framing or break interrupts.

--jim

On Fri Dec 10 12:39:05 EST 2004, west9@worldnet.att.net wrote:
> I've been getting this exception for a while now on modem 
> downloads longer than about 3min: "wierd interrupt 0xc6" . It appears to be generated by the uart driver:
> 
>  grep weird ./*
> ./uarti8250.c:			iprint("weird uart interrupt 0x%2.2uX\n", iir)
> 
> I tried reseating the modem board.
> 
> Does this mean I should start looking for a new mother board?
> 
> Suggestions, please.
> 
>  Thanks
> -Tom


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2004-12-10 18:14 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2004-12-10 17:43 [9fans] wierd interrupt 0xc6 west9
2004-12-10 18:14 ` jmk

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).