From: Vineet Gupta <Vineet.Gupta1@synopsys.com>
To: Grant Likely <grant.likely@secretlab.ca>
Cc: Thomas Gleixner <tglx@linutronix.de>,
Christian Ruppert <christian.ruppert@abilis.com>,
Rob Herring <rob.herring@calxeda.com>,
Rob Landley <rob@landley.net>,
devicetree-discuss@lists.ozlabs.org, linux-doc@vger.kernel.org,
linux-kernel@vger.kernel.org,
Pierrick Hascoet <pierrick.hascoet@abilis.com>
Subject: Re: [PATCH V3] irqchip: Add TB10x interrupt controller driver
Date: Mon, 3 Jun 2013 09:35:14 +0530 [thread overview]
Message-ID: <51AC15FA.4060800@synopsys.com> (raw)
In-Reply-To: <20130531221814.534DF3E08FE@localhost>
On 06/01/2013 03:48 AM, Grant Likely wrote:
> On Fri, 31 May 2013 19:32:34 +0200 (CEST), Thomas Gleixner <tglx@linutronix.de> wrote:
>> irq chip.
>>> +static void tb10x_irq_cascade(unsigned int irq, struct irq_desc *desc)
>>> +{
>>> + struct irq_domain *domain = irq_desc_get_handler_data(desc);
>>> +
>>> + generic_handle_irq(irq_find_mapping(domain, irq));
>>> +}
>> ...
>>
>>> + for (i = 0; i < nrirqs; i++) {
>>> + unsigned int irq = irq_of_parse_and_map(ictl, i);
>>> +
>>> + irq_set_handler_data(irq, domain);
>>> + irq_set_chained_handler(irq, tb10x_irq_cascade);
>>> + }
>> I might be completely confused, but this does not make any sense at
>> all.
>>
>> You allocate a linear domain and then map the interrupts in the
>> domain. The mapping function retrieves the hardware interrupt number
>> and creates a virtual interrupt number, installs the chip and the
>> handler for the interrupt and finally returns the virtual interrupt
>> number.
>>
>> Now you take that virtual interrupt number and install
>> tb10x_irq_cascade as the handler. irq_set_chained_handler() will
>> startup (unmask) the interrupt right away.
>>
>> In the cascade handler you take the virtual interrupt number, which
>> you get as argument, and find the mapping, i.e. the matching VIRTUAL
>> interrupt number for the VIRTUAL interrupt number and then call the
>> handler.
>>
>> How is this supposed to work?
> I think what is going on here is that the tb10x interrupt controller
> appears to be more of a front-end to another interrupt controller with
> each input wired up 1:1 to the interrupt inputs of the other controller.
> (I don't know why someone would design an interrupt controller that way,
> but that's another issue).
Actually ARC700 core has an integrated intc with 32 lines and ability to
mask/unmask each of the lines, priority/level per line etc. Simpler SoCs don't
need to have anymore.
> The loop above is mapping each of the
> interrupt inputs on the parent controller so that each child controller
> can be chained to it as an input. I can't think of how else it could be
> set up with the current code if the drivers were kept separate.
>
> Christian, what is the parent interrupt controller for this SoC? It
> really feels like the tb10x-ictl belongs as part of the parent
> controller. I went and looked at the parent node, and I saw this:
>
> intc: interrupt-controller {
> compatible = "snps,arc700-intc";
> interrupt-controller;
> #interrupt-cells = <1>;
> };
>
> I noticed the conspicuous absence of a reg property. Is this something
> architectural?
Indeed, the intc is not memory mapped. It is accessed via the separate AUX address
space (and separate r/w instructions) similar to x86 I/O address space.
> If I were working on this system I'd drop the
> snps,arc700-intc node entirely and have a single abilis,tb10x-intc that
> encapsulated the properties of both (you would of course want to share
> handler functions for the 'normal' inputs without the custom features).
> That would eliminate the goofyness of listing 27 separate interrupts in
> the abilis,tb10x-ictl interrupts property.
But how is this different from other systems with a primary in-core intc and a
cascaded external intc. How do they do it. I guess I need to read up more on this.
-Vineet
WARNING: multiple messages have this Message-ID (diff)
From: Vineet Gupta <Vineet.Gupta1@synopsys.com>
To: Grant Likely <grant.likely@secretlab.ca>
Cc: Thomas Gleixner <tglx@linutronix.de>,
Christian Ruppert <christian.ruppert@abilis.com>,
Rob Herring <rob.herring@calxeda.com>,
"Rob Landley" <rob@landley.net>,
<devicetree-discuss@lists.ozlabs.org>,
<linux-doc@vger.kernel.org>, <linux-kernel@vger.kernel.org>,
Pierrick Hascoet <pierrick.hascoet@abilis.com>
Subject: Re: [PATCH V3] irqchip: Add TB10x interrupt controller driver
Date: Mon, 3 Jun 2013 09:35:14 +0530 [thread overview]
Message-ID: <51AC15FA.4060800@synopsys.com> (raw)
In-Reply-To: <20130531221814.534DF3E08FE@localhost>
On 06/01/2013 03:48 AM, Grant Likely wrote:
> On Fri, 31 May 2013 19:32:34 +0200 (CEST), Thomas Gleixner <tglx@linutronix.de> wrote:
>> irq chip.
>>> +static void tb10x_irq_cascade(unsigned int irq, struct irq_desc *desc)
>>> +{
>>> + struct irq_domain *domain = irq_desc_get_handler_data(desc);
>>> +
>>> + generic_handle_irq(irq_find_mapping(domain, irq));
>>> +}
>> ...
>>
>>> + for (i = 0; i < nrirqs; i++) {
>>> + unsigned int irq = irq_of_parse_and_map(ictl, i);
>>> +
>>> + irq_set_handler_data(irq, domain);
>>> + irq_set_chained_handler(irq, tb10x_irq_cascade);
>>> + }
>> I might be completely confused, but this does not make any sense at
>> all.
>>
>> You allocate a linear domain and then map the interrupts in the
>> domain. The mapping function retrieves the hardware interrupt number
>> and creates a virtual interrupt number, installs the chip and the
>> handler for the interrupt and finally returns the virtual interrupt
>> number.
>>
>> Now you take that virtual interrupt number and install
>> tb10x_irq_cascade as the handler. irq_set_chained_handler() will
>> startup (unmask) the interrupt right away.
>>
>> In the cascade handler you take the virtual interrupt number, which
>> you get as argument, and find the mapping, i.e. the matching VIRTUAL
>> interrupt number for the VIRTUAL interrupt number and then call the
>> handler.
>>
>> How is this supposed to work?
> I think what is going on here is that the tb10x interrupt controller
> appears to be more of a front-end to another interrupt controller with
> each input wired up 1:1 to the interrupt inputs of the other controller.
> (I don't know why someone would design an interrupt controller that way,
> but that's another issue).
Actually ARC700 core has an integrated intc with 32 lines and ability to
mask/unmask each of the lines, priority/level per line etc. Simpler SoCs don't
need to have anymore.
> The loop above is mapping each of the
> interrupt inputs on the parent controller so that each child controller
> can be chained to it as an input. I can't think of how else it could be
> set up with the current code if the drivers were kept separate.
>
> Christian, what is the parent interrupt controller for this SoC? It
> really feels like the tb10x-ictl belongs as part of the parent
> controller. I went and looked at the parent node, and I saw this:
>
> intc: interrupt-controller {
> compatible = "snps,arc700-intc";
> interrupt-controller;
> #interrupt-cells = <1>;
> };
>
> I noticed the conspicuous absence of a reg property. Is this something
> architectural?
Indeed, the intc is not memory mapped. It is accessed via the separate AUX address
space (and separate r/w instructions) similar to x86 I/O address space.
> If I were working on this system I'd drop the
> snps,arc700-intc node entirely and have a single abilis,tb10x-intc that
> encapsulated the properties of both (you would of course want to share
> handler functions for the 'normal' inputs without the custom features).
> That would eliminate the goofyness of listing 27 separate interrupts in
> the abilis,tb10x-ictl interrupts property.
But how is this different from other systems with a primary in-core intc and a
cascaded external intc. How do they do it. I guess I need to read up more on this.
-Vineet
next prev parent reply other threads:[~2013-06-03 4:05 UTC|newest]
Thread overview: 35+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-04-11 13:17 [PATCH] irqchip: Add TB10x interrupt controller driver Christian Ruppert
2013-05-07 12:37 ` [PATCH REBASE] " Christian Ruppert
2013-05-27 10:06 ` Vineet Gupta
2013-05-27 10:06 ` Vineet Gupta
2013-05-27 12:26 ` Thomas Gleixner
2013-05-28 16:34 ` [PATCH V2] " Christian Ruppert
2013-05-30 21:19 ` Grant Likely
2013-05-30 21:19 ` Grant Likely
2013-05-31 15:32 ` [PATCH V3] " Christian Ruppert
[not found] ` <1370014348-21121-1-git-send-email-christian.ruppert-ux6zf3SgZrrQT0dZR+AlfA@public.gmane.org>
2013-05-31 17:32 ` Thomas Gleixner
2013-05-31 17:32 ` Thomas Gleixner
2013-05-31 22:18 ` Grant Likely
2013-06-01 11:01 ` Christian Ruppert
[not found] ` <20130601110133.GA4051-7oYq3qWSd+k@public.gmane.org>
2013-06-03 5:33 ` [PATCH V3] irqchip: Add TB10x interrupt controller driver (2) Vineet Gupta
2013-06-03 5:33 ` Vineet Gupta
2013-06-03 8:00 ` Christian Ruppert
2013-06-13 8:26 ` [PATCH V3] irqchip: Add TB10x interrupt controller driver Christian Ruppert
2013-06-03 4:05 ` Vineet Gupta [this message]
2013-06-03 4:05 ` Vineet Gupta
2013-06-03 9:51 ` Grant Likely
2013-06-25 13:29 ` Christian Ruppert
2013-06-25 13:33 ` Grant Likely
2013-06-25 13:58 ` Thomas Gleixner
2013-06-25 13:58 ` Thomas Gleixner
2013-06-25 14:11 ` Christian Ruppert
2013-06-25 14:37 ` Thomas Gleixner
2013-06-25 16:29 ` [PATCH V4] " Christian Ruppert
2013-06-25 16:57 ` [tip:irq/core] " tip-bot for Christian Ruppert
2013-06-26 4:17 ` [PATCH V3] " Vineet Gupta
2013-06-26 4:17 ` Vineet Gupta
2013-06-26 14:01 ` [PATCH] ARC: [TB10x] Updates for irqchip driver Christian Ruppert
2013-06-27 2:33 ` Vineet Gupta
2013-06-27 2:33 ` Vineet Gupta
2013-06-26 4:23 ` [PATCH V3] irqchip: Add TB10x interrupt controller driver Vineet Gupta
2013-06-26 4:23 ` Vineet Gupta
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=51AC15FA.4060800@synopsys.com \
--to=vineet.gupta1@synopsys.com \
--cc=christian.ruppert@abilis.com \
--cc=devicetree-discuss@lists.ozlabs.org \
--cc=grant.likely@secretlab.ca \
--cc=linux-doc@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=pierrick.hascoet@abilis.com \
--cc=rob.herring@calxeda.com \
--cc=rob@landley.net \
--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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.