From: Nishanth Menon <nm@ti.com>
To: Ulf Hansson <ulf.hansson@linaro.org>, Tony Lindgren <tony@atomide.com>
Cc: Arnd Bergmann <arnd@arndb.de>, Olof Johansson <olof@lixom.net>,
<linux-pm@vger.kernel.org>,
<linux-arm-kernel@lists.infradead.org>,
<linux-kernel@vger.kernel.org>,
Santosh Shilimkar <ssantosh@kernel.org>,
Tero Kristo <kristo@kernel.org>
Subject: Re: [PATCH 15/18] soc: ti: Mover power-domain drivers to the genpd dir
Date: Fri, 7 Jul 2023 12:50:48 -0500 [thread overview]
Message-ID: <20230707175048.6yees6d3evcomyux@vacation> (raw)
In-Reply-To: <20230707140434.723349-16-ulf.hansson@linaro.org>
On 16:04-20230707, Ulf Hansson wrote:
> Cc: Nishanth Menon <nm@ti.com>
> Cc: Santosh Shilimkar <ssantosh@kernel.org>
> Cc: Tero Kristo <kristo@kernel.org>
> Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
> ---
> MAINTAINERS | 3 ++-
> drivers/genpd/Makefile | 1 +
> drivers/genpd/ti/Makefile | 3 +++
> drivers/{soc => genpd}/ti/omap_prm.c | 0
> drivers/{soc => genpd}/ti/ti_sci_pm_domains.c | 0
> drivers/soc/ti/Makefile | 2 --
> 6 files changed, 6 insertions(+), 3 deletions(-)
> create mode 100644 drivers/genpd/ti/Makefile
> rename drivers/{soc => genpd}/ti/omap_prm.c (100%)
> rename drivers/{soc => genpd}/ti/ti_sci_pm_domains.c (100%)
>
> diff --git a/MAINTAINERS b/MAINTAINERS
> index 9e580df3e5db..3cf16ffac892 100644
> --- a/MAINTAINERS
> +++ b/MAINTAINERS
> @@ -21101,7 +21101,7 @@ F: drivers/irqchip/irq-ti-sci-inta.c
> F: drivers/irqchip/irq-ti-sci-intr.c
> F: drivers/reset/reset-ti-sci.c
> F: drivers/soc/ti/ti_sci_inta_msi.c
> -F: drivers/soc/ti/ti_sci_pm_domains.c
> +F: drivers/genpd/ti/ti_sci_pm_domains.c
> F: include/dt-bindings/soc/ti,sci_pm_domain.h
> F: include/linux/soc/ti/ti_sci_inta_msi.h
> F: include/linux/soc/ti/ti_sci_protocol.h
> @@ -21335,6 +21335,7 @@ L: linux-kernel@vger.kernel.org
> L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
> S: Maintained
> T: git git://git.kernel.org/pub/scm/linux/kernel/git/ti/linux.git
> +F: drivers/genpd/ti/omap_prm.c
Probably the wrong place for this as omap_prm is'nt a keystone navigator
driver set. Maybe Tony has a suggestion?
> F: drivers/soc/ti/*
>
> TI LM49xxx FAMILY ASoC CODEC DRIVERS
> diff --git a/drivers/genpd/Makefile b/drivers/genpd/Makefile
> index e6f34d82e6a8..193892189f0d 100644
> --- a/drivers/genpd/Makefile
> +++ b/drivers/genpd/Makefile
> @@ -11,3 +11,4 @@ obj-y += samsung/
> obj-y += starfive/
> obj-y += sunxi/
> obj-y += tegra/
> +obj-y += ti/
> diff --git a/drivers/genpd/ti/Makefile b/drivers/genpd/ti/Makefile
> new file mode 100644
> index 000000000000..69580afbb436
> --- /dev/null
> +++ b/drivers/genpd/ti/Makefile
> @@ -0,0 +1,3 @@
> +# SPDX-License-Identifier: GPL-2.0
> +obj-$(CONFIG_ARCH_OMAP2PLUS) += omap_prm.o
> +obj-$(CONFIG_TI_SCI_PM_DOMAINS) += ti_sci_pm_domains.o
> diff --git a/drivers/soc/ti/omap_prm.c b/drivers/genpd/ti/omap_prm.c
> similarity index 100%
> rename from drivers/soc/ti/omap_prm.c
> rename to drivers/genpd/ti/omap_prm.c
> diff --git a/drivers/soc/ti/ti_sci_pm_domains.c b/drivers/genpd/ti/ti_sci_pm_domains.c
> similarity index 100%
> rename from drivers/soc/ti/ti_sci_pm_domains.c
> rename to drivers/genpd/ti/ti_sci_pm_domains.c
> diff --git a/drivers/soc/ti/Makefile b/drivers/soc/ti/Makefile
> index cc3c972fad2e..cb800a745e66 100644
> --- a/drivers/soc/ti/Makefile
> +++ b/drivers/soc/ti/Makefile
> @@ -6,9 +6,7 @@ obj-$(CONFIG_KEYSTONE_NAVIGATOR_QMSS) += knav_qmss.o
> knav_qmss-y := knav_qmss_queue.o knav_qmss_acc.o
> obj-$(CONFIG_KEYSTONE_NAVIGATOR_DMA) += knav_dma.o
> obj-$(CONFIG_AMX3_PM) += pm33xx.o
> -obj-$(CONFIG_ARCH_OMAP2PLUS) += omap_prm.o
> obj-$(CONFIG_WKUP_M3_IPC) += wkup_m3_ipc.o
> -obj-$(CONFIG_TI_SCI_PM_DOMAINS) += ti_sci_pm_domains.o
> obj-$(CONFIG_TI_SCI_INTA_MSI_DOMAIN) += ti_sci_inta_msi.o
> obj-$(CONFIG_TI_K3_RINGACC) += k3-ringacc.o
> obj-$(CONFIG_TI_K3_SOCINFO) += k3-socinfo.o
> --
> 2.34.1
>
--
Regards,
Nishanth Menon
Key (0xDDB5849D1736249D) / Fingerprint: F8A2 8693 54EB 8232 17A3 1A34 DDB5 849D 1736 249D
next prev parent reply other threads:[~2023-07-07 17:51 UTC|newest]
Thread overview: 50+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-07-07 14:04 [PATCH 00/18] genpd: Create a genpd directory to host genpd providers Ulf Hansson
2023-07-07 14:04 ` [PATCH 01/18] genpd: Create a new subsystem " Ulf Hansson
2023-07-07 14:04 ` [PATCH 02/18] soc: actions: Move power-domain driver to the genpd dir Ulf Hansson
2023-07-07 16:47 ` Manivannan Sadhasivam
2023-07-07 14:04 ` [PATCH 03/18] soc: amlogic: Move power-domain drivers " Ulf Hansson
2023-07-07 14:42 ` Neil Armstrong
2023-07-07 14:54 ` Ulf Hansson
2023-07-07 15:12 ` neil.armstrong
2023-07-07 15:27 ` Ulf Hansson
2023-07-09 2:25 ` Bjorn Andersson
2023-07-10 12:37 ` Ulf Hansson
2023-07-10 12:45 ` Arnd Bergmann
2023-07-13 0:48 ` Bjorn Andersson
2023-07-13 9:50 ` Ulf Hansson
2023-07-14 3:10 ` Bjorn Andersson
2023-07-07 19:04 ` Arnd Bergmann
2023-07-07 18:25 ` Martin Blumenstingl
2023-07-11 6:38 ` Ulf Hansson
2023-07-07 14:04 ` [PATCH 04/18] soc: apple: Move power-domain driver " Ulf Hansson
2023-07-07 14:04 ` [PATCH 05/18] soc: bcm: Move power-domain drivers " Ulf Hansson
2023-07-07 14:04 ` [PATCH 06/18] soc: imx: " Ulf Hansson
2023-07-07 14:25 ` Fabio Estevam
2023-07-07 14:33 ` Ulf Hansson
2023-07-18 6:54 ` Shawn Guo
2023-07-07 14:04 ` [PATCH 07/18] soc: mediatek: " Ulf Hansson
2023-07-07 14:45 ` Matthias Brugger
2023-07-07 14:59 ` Ulf Hansson
2023-07-07 14:04 ` [PATCH 08/18] soc: qcom: " Ulf Hansson
2023-07-07 14:04 ` [PATCH 09/18] soc: renesas: " Ulf Hansson
2023-07-10 12:53 ` Geert Uytterhoeven
2023-07-11 13:53 ` Ulf Hansson
2023-07-07 14:04 ` [PATCH 10/18] soc: rockchip: Mover power-domain driver " Ulf Hansson
2023-07-07 14:13 ` Heiko Stübner
2023-07-07 14:04 ` [PATCH 11/18] soc: samsung: Move " Ulf Hansson
2023-07-11 7:38 ` Krzysztof Kozlowski
2023-07-07 14:04 ` [PATCH 12/18] soc: starfive: Move the " Ulf Hansson
2023-07-07 15:51 ` Conor Dooley
2023-07-11 13:57 ` Ulf Hansson
2023-07-11 16:07 ` Conor Dooley
2023-07-07 14:04 ` [PATCH 13/18] soc: sunxi: Move " Ulf Hansson
2023-07-07 14:04 ` [PATCH 14/18] soc: tegra: Move powergate-bpmp " Ulf Hansson
2023-07-10 13:08 ` Thierry Reding
2023-07-07 14:04 ` [PATCH 15/18] soc: ti: Mover power-domain drivers " Ulf Hansson
2023-07-07 17:50 ` Nishanth Menon [this message]
2023-07-11 9:16 ` Ulf Hansson
2023-07-11 12:49 ` Nishanth Menon
2023-07-14 7:51 ` Tony Lindgren
2023-07-07 14:04 ` [PATCH 16/18] soc: xilinx: Move power-domain driver " Ulf Hansson
2023-07-07 14:04 ` [PATCH 17/18] ARM: ux500: Convert power-domain code into a regular platform driver Ulf Hansson
2023-07-07 14:04 ` [PATCH 18/18] ARM: ux500: Move power-domain driver to the genpd dir Ulf Hansson
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=20230707175048.6yees6d3evcomyux@vacation \
--to=nm@ti.com \
--cc=arnd@arndb.de \
--cc=kristo@kernel.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-pm@vger.kernel.org \
--cc=olof@lixom.net \
--cc=ssantosh@kernel.org \
--cc=tony@atomide.com \
--cc=ulf.hansson@linaro.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