From: Andrew Davis <afd@ti.com>
To: Guillaume LA ROQUE <glaroque@baylibre.com>,
Catalin Marinas <catalin.marinas@arm.com>,
Will Deacon <will@kernel.org>,
Thomas Gleixner <tglx@linutronix.de>, Nishanth Menon <nm@ti.com>,
Tero Kristo <kristo@kernel.org>,
Santosh Shilimkar <ssantosh@kernel.org>
Cc: <linux-arm-kernel@lists.infradead.org>,
<linux-kernel@vger.kernel.org>, <vishalm@ti.com>,
Mattijs Korpershoek <mkorpershoek@baylibre.com>,
Kevin Hilman <khilman@baylibre.com>,
Nicolas Frayer <nfrayer@baylibre.com>
Subject: Re: [PATCH v3 1/2] irqchip: Kconfig: module build support for the TI interrupt router driver
Date: Wed, 16 Oct 2024 09:26:17 -0500 [thread overview]
Message-ID: <9cec1380-37f5-48e1-ad89-2bcede5d5f3c@ti.com> (raw)
In-Reply-To: <c97847c6-7e40-4b36-97bd-663aaa431aa7@baylibre.com>
On 10/16/24 9:18 AM, Guillaume LA ROQUE wrote:
> Hi Andrew,
>
> Le 16/10/2024 à 15:37, Andrew Davis a écrit :
>> On 10/16/24 4:41 AM, Guillaume La Roque wrote:
>>> From: Nicolas Frayer <nfrayer@baylibre.com>
>>>
>>> Added module build support in Kconfig for the TI SCI interrupt router
>>> driver
>>>
>>> Signed-off-by: Nicolas Frayer <nfrayer@baylibre.com>
>>> Signed-off-by: Guillaume La Roque <glaroque@baylibre.com>
>>> ---
>>> arch/arm64/Kconfig.platforms | 1 -
>>> drivers/irqchip/Kconfig | 3 ++-
>>> drivers/irqchip/irq-ti-sci-intr.c | 1 +
>>> 3 files changed, 3 insertions(+), 2 deletions(-)
>>>
>>> diff --git a/arch/arm64/Kconfig.platforms b/arch/arm64/Kconfig.platforms
>>> index 6c6d11536b42..393845a3ae5c 100644
>>> --- a/arch/arm64/Kconfig.platforms
>>> +++ b/arch/arm64/Kconfig.platforms
>>> @@ -135,7 +135,6 @@ config ARCH_K3
>>> select SOC_TI
>>> select TI_MESSAGE_MANAGER
>>> select TI_SCI_PROTOCOL
>>> - select TI_SCI_INTR_IRQCHIP
>>> select TI_SCI_INTA_IRQCHIP
>>> select TI_K3_SOCINFO
>>> help
>>> diff --git a/drivers/irqchip/Kconfig b/drivers/irqchip/Kconfig
>>> index 341cd9ca5a05..a958731404e9 100644
>>> --- a/drivers/irqchip/Kconfig
>>> +++ b/drivers/irqchip/Kconfig
>>> @@ -533,9 +533,10 @@ config LS1X_IRQ
>>> Support for the Loongson-1 platform Interrupt Controller.
>>> config TI_SCI_INTR_IRQCHIP
>>> - bool
>>> + tristate "TI SCI INTR Interrupt Controller"
>>
>> Although not needed, might be good to gate this on ARCH_K3
>> as it only makes sense to add when K3 is an enabled platform.
>
> Actually if ARCH_K3 is not selected it's not possible to enable TI IRQCHIP driver from menuconfig so depends look good or do you want to have when i select irqchip driver ARCH_K3 is enabled ?
>
Just adding the below "depends on" is fine, no need to select
or change anything else.
Andrew
>> Then add on compile test support:
>>
>> depends on ARCH_K3 || COMPILE_TEST
>>
> i will add in v4.
>
> thanks for review
>
> Guillaume
>> Andrew
>>
>>> depends on TI_SCI_PROTOCOL
>>> select IRQ_DOMAIN_HIERARCHY
>>> + default ARCH_K3
>>> help
>>> This enables the irqchip driver support for K3 Interrupt router
>>> over TI System Control Interface available on some new TI's SoCs.
>>> diff --git a/drivers/irqchip/irq-ti-sci-intr.c b/drivers/irqchip/irq-ti-sci-intr.c
>>> index c027cd9e4a69..b49a73106c69 100644
>>> --- a/drivers/irqchip/irq-ti-sci-intr.c
>>> +++ b/drivers/irqchip/irq-ti-sci-intr.c
>>> @@ -303,3 +303,4 @@ module_platform_driver(ti_sci_intr_irq_domain_driver);
>>> MODULE_AUTHOR("Lokesh Vutla <lokeshvutla@ticom>");
>>> MODULE_DESCRIPTION("K3 Interrupt Router driver over TI SCI protocol");
>>> +MODULE_LICENSE("GPL");
>>>
>
next prev parent reply other threads:[~2024-10-16 14:26 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-10-16 9:41 [PATCH v3 0/2] irqchip: Kconfig: Add module support for TI inta/intr Guillaume La Roque
2024-10-16 9:41 ` [PATCH v3 1/2] irqchip: Kconfig: module build support for the TI interrupt router driver Guillaume La Roque
2024-10-16 13:37 ` Andrew Davis
2024-10-16 14:18 ` Guillaume LA ROQUE
2024-10-16 14:26 ` Andrew Davis [this message]
2024-10-16 16:38 ` Thomas Gleixner
2024-10-16 18:32 ` Guillaume LA ROQUE
2024-10-16 9:41 ` [PATCH v3 2/2] irqchip: Kconfig: Added module build support for the TI interrupt aggregator Guillaume La Roque
2024-10-16 13:48 ` Andrew Davis
2024-10-18 8:01 ` Guillaume LA ROQUE
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=9cec1380-37f5-48e1-ad89-2bcede5d5f3c@ti.com \
--to=afd@ti.com \
--cc=catalin.marinas@arm.com \
--cc=glaroque@baylibre.com \
--cc=khilman@baylibre.com \
--cc=kristo@kernel.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mkorpershoek@baylibre.com \
--cc=nfrayer@baylibre.com \
--cc=nm@ti.com \
--cc=ssantosh@kernel.org \
--cc=tglx@linutronix.de \
--cc=vishalm@ti.com \
--cc=will@kernel.org \
/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
all inboxes | Powered by JetHome®