From: Felipe Balbi <balbi@ti.com>
To: Tero Kristo <t-kristo@ti.com>
Cc: "Balbi, Felipe" <balbi@ti.com>,
linux-omap@vger.kernel.org,
Thomas Petazzoni <thomas.petazzoni@free-electrons.com>,
"Mahadeva, Avinash" <avinashhm@ti.com>,
"Hilman, Kevin" <khilman@ti.com>,
"Cousson, Benoit" <b-cousson@ti.com>,
Tony Lindgren <tony@atomide.com>,
"R, Govindraj" <govindraj.raja@ti.com>,
Paul Walmsley <paul@pwsan.com>,
Thomas Gleixner <tglx@linutronix.de>
Subject: Re: [PATCHv6 01/11] omap: prcm: switch to a chained IRQ handler mechanism
Date: Tue, 26 Jul 2011 13:40:50 +0300 [thread overview]
Message-ID: <20110726104049.GC32582@legolas.emea.dhcp.ti.com> (raw)
In-Reply-To: <1311676415.5826.30.camel@sokoban>
[-- Attachment #1: Type: text/plain, Size: 3396 bytes --]
Hi,
On Tue, Jul 26, 2011 at 01:33:35PM +0300, Tero Kristo wrote:
> > > + while (1) {
> > > + unsigned int virtirq;
> > > +
> > > + chip->irq_ack(&desc->irq_data);
> > > +
> > > + memset(pending, 0, sizeof(pending));
> > > + irq_setup->pending_events(pending);
> > > +
> > > + /* No bit set, then all IRQs are handled */
> > > + if (find_first_bit(pending, OMAP_PRCM_NR_IRQS)
> > > + >= OMAP_PRCM_NR_IRQS) {
> > > + chip->irq_unmask(&desc->irq_data);
> > > + break;
> > > + }
> > > +
> > > + /*
> > > + * Loop on all currently pending irqs so that new irqs
> > > + * cannot starve previously pending irqs
> > > + */
> > > + for_each_set_bit(virtirq, pending, OMAP_PRCM_NR_IRQS)
> > > + generic_handle_irq(irq_setup->base_irq + virtirq);
> > > +
> > > + chip->irq_unmask(&desc->irq_data);
> >
> > can't the IRQ subsystem handle this for you ? I was expecting it would
> > call irq_ack() and irq_unmask() automatically and you wouldn't have to
> > do it yourself. Maybe Thomas can clear this out ? Thomas, should we call
> > ->irq_ack() ->irq_mask ourselves here ?
>
> These are needed, as we are using a handle and a level interrupt. If you
> leave out the ack, we will return to the handler immediately as nobody
> else acks it. If you leave out the unmask, we will only ever get 1
> interrupt and no more.
but that's the thing, I guess IRQ subsystem can handle this
automatically. At least from what I remember. That's how I converted the
retu driver, for instance, and I checked that IRQ subsystem calls
->irq_ack() and ->irq_mask/unmask() for me...
Maybe the irq_gc stuff is different, dunno.
> > if you make this a platform_driver, there would be no need for this
> > trickery. You could pass this as driver data. Something like:
> >
> >
> > struct omap_prcm_irq_setup omap3_prcm_irq_setup = {
> > .ack = (u32)OMAP3430_PRM_IRQSTATUS_MPU,
> > .mask = (u32)OMAP3430_PRM_IRQENABLE_MPU,
> > .pending_events = omap3_prm_pending_events,
> > .irq = INT_34XX_PRCM_MPU_IRQ,
> > };
> >
> > struct const struct platform_device_id prcm_id_table[] __devinitconst =
> > {
> > {
> > .name = "omap3-prcm",
> > .driver_data = &omap3_prcm_irq_setup,
> > },
> > {
> > .name = "omap4-prcm",
> > .driver_data = &omap4_prcm_irq_setup,
> > },
> > };
> > MODULE_DEVICE_TABLE(platform, prcm_id_table);
> >
> > static struct platform_driver prcm_driver = {
> > .probe = prcm_probe,
> > .remove = __devexit_p(prcm_remove),
> > .driver = {
> > .name = "prcm",
> > .pm = DEV_PM_OPS,
> > },
> > .id_table = &prcm_id_table,
> > };
> >
> > or something similar. Then on probe you can make a copy of irq_setup to
> > your driver's context structure, or only use temporarily to initialize
> > some fields and so on...
> >
>
> Hmm, this might be useful, however you would still need a way to
> register the driver from somewhere, and you would essentially end up
> with omap_chip version check somewhere. The reason for all this trickery
> is that the omap chip version detection is heavily frowned upon right
> now... it would be much cleaner if there was an accepted way of doing
> this already in place.
wouldn't hwmod be able to handle this for you ? I mean, it's just the
driver name that has to change, rather than exporting a few functions.
--
balbi
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 490 bytes --]
next prev parent reply other threads:[~2011-07-26 10:40 UTC|newest]
Thread overview: 21+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-07-25 16:36 [PATCHv7 00/11] PRCM chain handler Tero Kristo
2011-07-25 16:36 ` [PATCHv6 01/11] omap: prcm: switch to a chained IRQ handler mechanism Tero Kristo
2011-07-25 17:03 ` Felipe Balbi
2011-07-26 10:33 ` Tero Kristo
2011-07-26 10:40 ` Felipe Balbi [this message]
2011-08-26 9:12 ` Paul Walmsley
2011-09-01 14:00 ` Tero Kristo
2011-09-02 9:20 ` Paul Walmsley
2011-09-02 12:15 ` Tero Kristo
2011-09-14 12:10 ` Paul Walmsley
2011-09-14 12:33 ` Tero Kristo
2011-07-25 16:36 ` [PATCHv6 02/11] OMAP2+: hwmod: Add API to enable IO ring wakeup Tero Kristo
2011-07-25 16:36 ` [PATCHv6 03/11] OMAP2+: hwmod: Add API to check IO PAD wakeup status Tero Kristo
2011-07-25 16:36 ` [PATCHv6 04/11] OMAP2+: mux: add support for PAD wakeup interrupts Tero Kristo
2011-07-25 16:36 ` [PATCHv6 05/11] TEMP: OMAP3: pm: remove serial resume / idle calls from idle path Tero Kristo
2011-07-25 16:36 ` [PATCHv6 06/11] TEMP: OMAP3: serial: made serial to work properly with PRCM chain handler Tero Kristo
2011-07-25 16:36 ` [PATCHv6 07/11] TEMP: serial: added mux support Tero Kristo
2011-07-25 16:36 ` [PATCHv6 08/11] TEMP: OMAP device: change pr_warnings to pr_debugs Tero Kristo
2011-07-25 16:36 ` [PATCHv6 09/11] TEMP: OMAP: serial: remove padconf hacks Tero Kristo
2011-07-25 16:36 ` [PATCHv6 10/11] TEMP: OMAP3: pm: disable / enable PRCM chain interrupts during wakeup from suspend Tero Kristo
2011-07-25 16:36 ` [PATCHv6 11/11] OMAP3: pm: do not enable PRCM MPU interrupts manually Tero Kristo
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=20110726104049.GC32582@legolas.emea.dhcp.ti.com \
--to=balbi@ti.com \
--cc=avinashhm@ti.com \
--cc=b-cousson@ti.com \
--cc=govindraj.raja@ti.com \
--cc=khilman@ti.com \
--cc=linux-omap@vger.kernel.org \
--cc=paul@pwsan.com \
--cc=t-kristo@ti.com \
--cc=tglx@linutronix.de \
--cc=thomas.petazzoni@free-electrons.com \
--cc=tony@atomide.com \
/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;
as well as URLs for NNTP newsgroup(s).