public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: David Brownell <david-b@pacbell.net>
To: Thomas Gleixner <tglx@linutronix.de>
Cc: Peter Zijlstra <peterz@infradead.org>,
	Mark Brown <broonie@opensource.wolfsonmicro.com>,
	Dmitry Torokhov <dmitry.torokhov@gmail.com>,
	Trilok Soni <soni.trilok@gmail.com>, Pavel Machek <pavel@ucw.cz>,
	"Arve Hj?nnev?g" <arve@android.com>,
	kernel list <linux-kernel@vger.kernel.org>,
	Brian Swetland <swetland@google.com>,
	linux-input@vger.kernel.org, Andrew Morton <akpm@osdl.org>,
	linux-i2c@vger.kernel.org,
	Joonyoung Shim <jy0922.shim@samsung.com>,
	m.szyprowski@samsung.com, t.fujak@samsung.com,
	kyungmin.park@samsung.com, Daniel Ribeiro <drwyrm@gmail.com>
Subject: Re: Threaded interrupts for synaptic touchscreen in HTC dream
Date: Wed, 22 Jul 2009 15:09:17 -0700	[thread overview]
Message-ID: <200907221509.18387.david-b@pacbell.net> (raw)
In-Reply-To: <alpine.LFD.2.00.0907222226270.2813@localhost.localdomain>

On Wednesday 22 July 2009, Thomas Gleixner wrote:
> Ok, so let me summarize what we came up with so far.
> 
> 1) handle_level_oneshot_irq is the correct answer to the problem of
> those "I'm behind a slow bus" interrupt controllers.

Where "slow" means "access needs to sleep" ... preventing
register access from hardirq contexts.

I think you must mean "IRQ source" not controller; in
the examples so far on this thread, the irq_chip in
these cases has been a typical SoC/ASIC thing, but the
device issuing the IRQ is over I2C/etc.  (When the
irq_chip itself is across I2C/etc, #3 applies.)


> 2) Some mechanism to request ONESHOT from the driver level is
> required. Preferrably via a flag on request_threaded_irq

Preferably "explicit"; a flag implementation suffices.  Yes.


> 3) a function which allows to express the nested thread irq nature of
> the interrupt controller and its subdevices.

That's one possible implementation.  Basically, irq chaining
should work for threaded IRQs; some irq_chip devices will be
across sleeping/slow busses.  Some will even chain to another
level of irq_chip across such a bus.


> 4) a generic serializing mechanism which is implemented via irq_chip
> functions to solve the chip->mask/unmask issue for the demultiplexed
> interrupts. Something like the bus_lock/bus_sync_unlock patch I posted
> earlier.

In general, all irq_chip methods would need to use the sleeping/slow
bus ... like set_type(), and more.

That patch somewhat resembles the twl4030_sih_irq_chip stuff.


> 5) a common function which allows to call the thread handler of the
> subdevice interrupts in the context of the main thread which takes
> care of serialization against disable/enable/request/free irq et al.

A mechanism like that, yes.  ISTR sending a patch a while back with
a handle_threaded_irq() flow handler which you'd suggested.  I can dig
that up if you like, but I suspect you've had more thoughts about it
since that time.


> Any more ?

Not that comes quickly to mind.  If genirq can do all that, then
a lot of drivers/mfd/twl4030-irq.c can vanish ... I mention that
as probably the strongest "acceptance test" that's handy.

If you like to work with concrete use cases, that's one.  Also, a
simpler "slow irq_chip" device is the mcp23s08 GPIO expander.

- Dave



  parent reply	other threads:[~2009-07-22 22:09 UTC|newest]

Thread overview: 66+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-07-14 10:06 Support for synaptic touchscreen in HTC dream Pavel Machek
2009-07-14 10:20 ` Trilok Soni
2009-07-15 13:36   ` Pavel Machek
2009-07-15 17:33     ` Trilok Soni
2009-07-21 10:21       ` Pavel Machek
2009-07-21 10:34         ` Trilok Soni
2009-08-08 13:40           ` Synaptics touchscreen for HTC Dream: check that smbus is available Pavel Machek
2009-08-17 23:47             ` Andrew Morton
2009-08-21 14:23               ` Pavel Machek
2009-07-21 10:59       ` Threaded interrupts for synaptic touchscreen in HTC dream Pavel Machek
2009-07-21 11:36         ` Mark Brown
2009-07-21 12:18           ` Trilok Soni
2009-07-21 12:30             ` Trilok Soni
2009-07-21 12:49               ` Mark Brown
2009-07-21 16:04                 ` Dmitry Torokhov
2009-07-21 20:30                   ` Thomas Gleixner
2009-07-21 20:58                     ` Dmitry Torokhov
2009-07-21 21:48                       ` Thomas Gleixner
2009-07-21 22:25                     ` Mark Brown
2009-07-22 10:44                       ` Thomas Gleixner
2009-07-22 12:18                         ` Mark Brown
2009-07-22 12:58                           ` Thomas Gleixner
2009-07-22 13:30                             ` Peter Zijlstra
2009-07-22 14:18                               ` Thomas Gleixner
2009-07-22 14:32                                 ` Mark Brown
2009-07-22 14:52                                   ` Thomas Gleixner
2009-07-22 14:56                                     ` Mark Brown
2009-07-22 15:15                                       ` Thomas Gleixner
2009-07-22 15:56                                         ` Mark Brown
2009-07-22 16:57                               ` David Brownell
2009-07-22 21:04                                 ` Thomas Gleixner
2009-07-22 21:57                                   ` Arve Hjønnevåg
2009-07-22 22:15                                     ` David Brownell
2009-07-22 23:30                                       ` Arve Hjønnevåg
2009-07-22 22:09                                   ` David Brownell [this message]
2009-07-23  4:43                                   ` Dmitry Torokhov
2009-07-22 13:31                             ` Mark Brown
2009-07-22 17:04                               ` David Brownell
2009-07-22 17:08                                 ` Mark Brown
2009-07-22 16:04                             ` Dmitry Torokhov
2009-07-22 16:40                               ` Thomas Gleixner
2009-07-22 16:57                                 ` Mark Brown
2009-07-22 17:08                                 ` Dmitry Torokhov
2009-07-22 17:13                                 ` David Brownell
2009-07-22 16:51                             ` David Brownell
2009-07-22 16:39                     ` David Brownell
2009-07-22 16:43                       ` Thomas Gleixner
2009-07-22 17:34                         ` David Brownell
2009-07-22 16:50                       ` Mark Brown
2009-07-22 17:41                     ` David Brownell
2009-07-21 20:43                   ` Daniel Ribeiro
2009-07-21 12:30             ` Mark Brown
2009-07-23 14:55           ` Pavel Machek
2009-07-15 21:33     ` Support " Arve Hjønnevåg
2009-07-21 10:40       ` Pavel Machek
2009-07-14 17:52 ` Dmitry Torokhov
2009-07-15 13:48   ` Pavel Machek
2009-07-15 15:27     ` Dmitry Torokhov
2009-07-15 15:33       ` Brian Swetland
2009-07-15 17:26         ` Trilok Soni
2009-07-15 18:43       ` Arve Hjønnevåg
2009-07-15 20:24     ` Arve Hjønnevåg
2009-07-15 13:50   ` Pavel Machek
2009-08-08 14:02   ` HTC Dream for staging: small cleanups [was Re: Support for synaptic touchscreen in HTC dream] Pavel Machek
2009-07-14 20:25 ` Support for synaptic touchscreen in HTC dream Andreas Mohr
2009-07-14 20:33   ` Andreas Mohr

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=200907221509.18387.david-b@pacbell.net \
    --to=david-b@pacbell.net \
    --cc=akpm@osdl.org \
    --cc=arve@android.com \
    --cc=broonie@opensource.wolfsonmicro.com \
    --cc=dmitry.torokhov@gmail.com \
    --cc=drwyrm@gmail.com \
    --cc=jy0922.shim@samsung.com \
    --cc=kyungmin.park@samsung.com \
    --cc=linux-i2c@vger.kernel.org \
    --cc=linux-input@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=m.szyprowski@samsung.com \
    --cc=pavel@ucw.cz \
    --cc=peterz@infradead.org \
    --cc=soni.trilok@gmail.com \
    --cc=swetland@google.com \
    --cc=t.fujak@samsung.com \
    --cc=tglx@linutronix.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox