From: Suravee Suthikulanit <suravee.suthikulpanit@amd.com>
To: Marc Zyngier <marc.zyngier@arm.com>
Cc: Mark Rutland <Mark.Rutland@arm.com>,
"jason@lakedaemon.net" <jason@lakedaemon.net>,
"tglx@linutronix.de" <tglx@linutronix.de>,
"Catalin Marinas" <Catalin.Marinas@arm.com>,
Will Deacon <Will.Deacon@arm.com>,
Liviu Dudau <Liviu.Dudau@arm.com>,
"Harish.Kasiviswanathan@amd.com" <Harish.Kasiviswanathan@amd.com>,
"linux-arm-kernel@lists.infradead.org"
<linux-arm-kernel@lists.infradead.org>,
"linux-pci@vger.kernel.org" <linux-pci@vger.kernel.org>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
"linux-doc@vger.kernel.org" <linux-doc@vger.kernel.org>,
"devicetree@vger.kernel.org" <devicetree@vger.kernel.org>
Subject: Re: [V9 PATCH 2/2] irqchip: gicv2m: Add supports for ARM GICv2m MSI(-X)
Date: Mon, 3 Nov 2014 13:57:29 -0600 [thread overview]
Message-ID: <5457DE29.4020907@amd.com> (raw)
In-Reply-To: <54578CC7.4050901@arm.com>
On 11/3/2014 8:10 AM, Marc Zyngier wrote:
> On 03/11/14 09:50, Marc Zyngier wrote:
>
>>> @@ -843,10 +847,14 @@ static int gic_irq_domain_alloc(struct irq_domain *domain, unsigned int virq,
>>> unsigned int type = IRQ_TYPE_NONE;
>>> struct of_phandle_args *irq_data = arg;
>>>
>>> - ret = gic_irq_domain_xlate(domain, irq_data->np, irq_data->args,
>>> - irq_data->args_count, &hwirq, &type);
>>> - if (ret)
>>> - return ret;
>>> + if (irq_data) {
>>> + ret = gic_irq_domain_xlate(domain, irq_data->np, irq_data->args,
>>> + irq_data->args_count, &hwirq, &type);
>>> + if (ret)
>>> + return ret;
>>> + } else {
>>> + hwirq = virq;
>>> + }
>>
>> I'm slightly puzzled here. What's the purpose of this? The whole goal of
>> the domain hierarchy is to avoid that kind of thing. Also, you should
>> never have to call xlate on an MSI, because it should never be described
>> in the device tree the first place.
>
> Thinking of it some more:
>
> The actual reason why this is required is because the MSI domain calls
> into this via irq_domain_alloc_irqs_parent(). But because MSIs are not
> described in DT, they do not have a of_phandle to pass down to the xlate
> helper. In this case, the v2m widget has the knowledge of what are the
> valid SPI numbers, and the core GIC code must blindly accept it.
>
> This definitely requires a fat comment, because this is far from obvious.
>
> Thanks,
>
> M.
>
I'll put in proper comments here.
Suravee
WARNING: multiple messages have this Message-ID (diff)
From: suravee.suthikulpanit@amd.com (Suravee Suthikulanit)
To: linux-arm-kernel@lists.infradead.org
Subject: [V9 PATCH 2/2] irqchip: gicv2m: Add supports for ARM GICv2m MSI(-X)
Date: Mon, 3 Nov 2014 13:57:29 -0600 [thread overview]
Message-ID: <5457DE29.4020907@amd.com> (raw)
In-Reply-To: <54578CC7.4050901@arm.com>
On 11/3/2014 8:10 AM, Marc Zyngier wrote:
> On 03/11/14 09:50, Marc Zyngier wrote:
>
>>> @@ -843,10 +847,14 @@ static int gic_irq_domain_alloc(struct irq_domain *domain, unsigned int virq,
>>> unsigned int type = IRQ_TYPE_NONE;
>>> struct of_phandle_args *irq_data = arg;
>>>
>>> - ret = gic_irq_domain_xlate(domain, irq_data->np, irq_data->args,
>>> - irq_data->args_count, &hwirq, &type);
>>> - if (ret)
>>> - return ret;
>>> + if (irq_data) {
>>> + ret = gic_irq_domain_xlate(domain, irq_data->np, irq_data->args,
>>> + irq_data->args_count, &hwirq, &type);
>>> + if (ret)
>>> + return ret;
>>> + } else {
>>> + hwirq = virq;
>>> + }
>>
>> I'm slightly puzzled here. What's the purpose of this? The whole goal of
>> the domain hierarchy is to avoid that kind of thing. Also, you should
>> never have to call xlate on an MSI, because it should never be described
>> in the device tree the first place.
>
> Thinking of it some more:
>
> The actual reason why this is required is because the MSI domain calls
> into this via irq_domain_alloc_irqs_parent(). But because MSIs are not
> described in DT, they do not have a of_phandle to pass down to the xlate
> helper. In this case, the v2m widget has the knowledge of what are the
> valid SPI numbers, and the core GIC code must blindly accept it.
>
> This definitely requires a fat comment, because this is far from obvious.
>
> Thanks,
>
> M.
>
I'll put in proper comments here.
Suravee
next prev parent reply other threads:[~2014-11-03 19:57 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-10-31 8:26 [V9 PATCH 0/2] irqchip: gic: Introduce ARM GICv2m MSI(-X) support suravee.suthikulpanit
2014-10-31 8:26 ` suravee.suthikulpanit
2014-10-31 8:26 ` suravee.suthikulpanit at amd.com
2014-10-31 8:26 ` [V9 PATCH 1/2] genirq: Add irq_chip_set_type_parent function suravee.suthikulpanit
2014-10-31 8:26 ` suravee.suthikulpanit
2014-10-31 8:26 ` suravee.suthikulpanit at amd.com
2014-10-31 8:26 ` [V9 PATCH 2/2] irqchip: gicv2m: Add supports for ARM GICv2m MSI(-X) suravee.suthikulpanit
2014-10-31 8:26 ` suravee.suthikulpanit
2014-10-31 8:26 ` suravee.suthikulpanit at amd.com
2014-10-31 9:40 ` Thomas Gleixner
2014-10-31 9:40 ` Thomas Gleixner
2014-11-03 19:57 ` Suravee Suthikulanit
2014-11-03 19:57 ` Suravee Suthikulanit
2014-11-03 9:50 ` Marc Zyngier
2014-11-03 9:50 ` Marc Zyngier
2014-11-03 14:10 ` Marc Zyngier
2014-11-03 14:10 ` Marc Zyngier
2014-11-03 14:10 ` Marc Zyngier
2014-11-03 19:57 ` Suravee Suthikulanit [this message]
2014-11-03 19:57 ` Suravee Suthikulanit
2014-11-03 19:57 ` Suravee Suthikulanit
2014-11-03 19:57 ` Suravee Suthikulanit
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=5457DE29.4020907@amd.com \
--to=suravee.suthikulpanit@amd.com \
--cc=Catalin.Marinas@arm.com \
--cc=Harish.Kasiviswanathan@amd.com \
--cc=Liviu.Dudau@arm.com \
--cc=Mark.Rutland@arm.com \
--cc=Will.Deacon@arm.com \
--cc=devicetree@vger.kernel.org \
--cc=jason@lakedaemon.net \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-doc@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-pci@vger.kernel.org \
--cc=marc.zyngier@arm.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 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.