lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:	Wed, 12 Oct 2011 11:19:37 -0400
From:	Ted Ts'o <tytso@....edu>
To:	Alan Cox <alan@...rguk.ukuu.org.uk>
Cc:	monstr@...str.eu, linux-serial@...r.kernel.org,
	Greg Kroah-Hartman <gregkh@...e.de>,
	LKML <linux-kernel@...r.kernel.org>,
	Peter Korsgaard <jacmet@...site.dk>
Subject: Re: Using serial driver 16550A in poll mode without interrupt
 connected

On Wed, Oct 12, 2011 at 02:51:53PM +0100, Alan Cox wrote:
> > Driver is probed with no IRQ (NO_IRQ = -1 on Microblaze)
> > 83e00000.serial: ttyS0 at MMIO 0x83e01003 (irq = -1) is a 16550A
> 
> Zero means no IRQ. NO_IRQ is a legacy internal thing for the old IDE code
> so not something other code should be using. Setting the IRQ to -1 is
> bogus and will confuse the rest of the kernel.
> 
> > Is it possible to use serial driver without IRQ - or blocking IRQ, etc.?
> 
> Within limits - it kills your power management and data rates because of
> the continual polling.

It was something that I implemented years ago primarily for crappy
hardware that didn't get interrupts right.  It's not something which
where I would advise anyone to intentionally design hardware to use.

If you have really deep FIFO's (i.e., a kilobyte or more), and you're
primarily interested in throughput, not latency, and/or you are trying
to support tens or hundreds of serial ports for some kind of modem
pool, there is a place for a polled implementation.  See the Comtrol
Rockport for an example of hardware and with a linux driver that will
handle this.  It's basically a "NAPI for serial ports" sort of
approach to minimize the overhead of potentially hundreds of thousands
of interrupts per second if you are driving large numbers of ports
(and at that point, power management is the least of your concerns
:-).  But you need special hardware to do this, not a random 16550A
with a pathetically small 16 byte FIFO.

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

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ