From: Jaehoon Chung <jh80.chung@samsung.com>
To: Aswath Govindraju <a-govindraju@ti.com>
Cc: Lukasz Majewski <lukma@denx.de>,
Sean Anderson <seanga2@gmail.com>, Simon Glass <sjg@chromium.org>,
Fabio Estevam <festevam@denx.de>,
Andre Przywara <andre.przywara@arm.com>,
Jagan Teki <jagan@amarulasolutions.com>,
Kever Yang <kever.yang@rock-chips.com>,
Tim Harvey <tharvey@gateworks.com>,
Christian Hewitt <christianshewitt@gmail.com>,
Peter Robinson <pbrobinson@gmail.com>,
Dave Gerlach <d-gerlach@ti.com>, David Huang <d-huang@ti.com>,
Keerthy <j-keerthy@ti.com>, Hari Nagalla <hnagalla@ti.com>,
Nishanth Menon <nm@ti.com>, Tero Kristo <kristo@kernel.org>,
Suman Anna <s-anna@ti.com>, Vignesh Raghavendra <vigneshr@ti.com>,
Wolfgang Denk <wd@denx.de>,
Kishon Vijay Abraham I <kishon@ti.com>,
u-boot@lists.denx.de, Tom Rini <trini@konsulko.com>
Subject: Re: [PATCH v4 08/20] power: domain: ti: Add support for J721S2 SoC
Date: Thu, 27 Jan 2022 08:55:35 +0900 [thread overview]
Message-ID: <2137bbc9-e6e7-e601-bd75-9d66de558594@samsung.com> (raw)
In-Reply-To: <20220125152646.3780-9-a-govindraju@ti.com>
On 1/26/22 00:26, Aswath Govindraju wrote:
> From: David Huang <d-huang@ti.com>
>
> Add support for J721S2 SoC.
>
> Signed-off-by: David Huang <d-huang@ti.com>
> Signed-off-by: Aswath Govindraju <a-govindraju@ti.com>
Reviewed-by: Jaehoon Chung <jh80.chung@samsung.com>
Best Regards,
Jaehoon Chung
> ---
> drivers/power/domain/ti-power-domain.c | 5 +++++
> include/k3-dev.h | 1 +
> 2 files changed, 6 insertions(+)
>
> diff --git a/drivers/power/domain/ti-power-domain.c b/drivers/power/domain/ti-power-domain.c
> index 4fe31686bd35..6af5dbb24191 100644
> --- a/drivers/power/domain/ti-power-domain.c
> +++ b/drivers/power/domain/ti-power-domain.c
> @@ -81,6 +81,11 @@ static const struct soc_attr ti_k3_soc_pd_data[] = {
> .family = "J7200",
> .data = &j7200_pd_platdata,
> },
> +#elif CONFIG_SOC_K3_J721S2
> + {
> + .family = "J721S2",
> + .data = &j721s2_pd_platdata,
> + },
> #endif
> { /* sentinel */ }
> };
> diff --git a/include/k3-dev.h b/include/k3-dev.h
> index 55c5057db35a..b46b8c3aabc7 100644
> --- a/include/k3-dev.h
> +++ b/include/k3-dev.h
> @@ -77,6 +77,7 @@ struct ti_k3_pd_platdata {
>
> extern const struct ti_k3_pd_platdata j721e_pd_platdata;
> extern const struct ti_k3_pd_platdata j7200_pd_platdata;
> +extern const struct ti_k3_pd_platdata j721s2_pd_platdata;
>
> u8 ti_pd_state(struct ti_pd *pd);
> u8 lpsc_get_state(struct ti_lpsc *lpsc);
next prev parent reply other threads:[~2022-01-26 23:55 UTC|newest]
Thread overview: 42+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-01-25 15:26 [PATCH v4 00/20] J721S2: Add initial support Aswath Govindraju
2022-01-25 15:26 ` [PATCH v4 01/20] remoteproc: k3_system_controller: Support optional boot_notification channel Aswath Govindraju
2022-02-08 17:30 ` Tom Rini
2022-01-25 15:26 ` [PATCH v4 02/20] ram: k3-ddrss: lpddr4_structs_if.h: Add a pointer to ddr instance Aswath Govindraju
2022-02-08 17:30 ` Tom Rini
2022-01-25 15:26 ` [PATCH v4 03/20] ram: k3-ddrss: Add support for multiple instances of DDR subsystems Aswath Govindraju
2022-02-08 17:30 ` Tom Rini
2022-01-25 15:26 ` [PATCH v4 04/20] ram: k3-ddrss: Add support for configuring MSMC subsystem in case of Multiple " Aswath Govindraju
2022-02-08 17:30 ` Tom Rini
2022-01-25 15:26 ` [PATCH v4 05/20] arm: K3: Add basic support for J721S2 SoC definition Aswath Govindraju
2022-02-08 17:30 ` Tom Rini
2022-01-25 15:26 ` [PATCH v4 06/20] drivers: dma: Add support for J721S2 Aswath Govindraju
2022-02-08 17:30 ` Tom Rini
2022-01-25 15:26 ` [PATCH v4 07/20] clk: clk-k3: Add support for J721S2 SoC Aswath Govindraju
2022-02-08 17:31 ` Tom Rini
2022-01-25 15:26 ` [PATCH v4 08/20] power: domain: ti: " Aswath Govindraju
2022-01-26 23:55 ` Jaehoon Chung [this message]
2022-02-08 17:31 ` Tom Rini
2022-01-25 15:26 ` [PATCH v4 09/20] ram: k3-ddrss: " Aswath Govindraju
2022-02-08 17:31 ` Tom Rini
2022-01-25 15:26 ` [PATCH v4 10/20] soc: ti: k3-socinfo: Add entry " Aswath Govindraju
2022-02-08 17:31 ` Tom Rini
2022-01-25 15:26 ` [PATCH v4 11/20] board: ti: j721s2: Add board support for J721S2 Aswath Govindraju
2022-02-08 17:31 ` Tom Rini
2022-01-25 15:26 ` [PATCH v4 12/20] dt-bindings: ti-serdes-mux: Add defines for J721S2 SoC Aswath Govindraju
2022-02-08 17:31 ` Tom Rini
2022-01-25 15:26 ` [PATCH v4 13/20] dt-bindings: pinctrl: k3: Introduce pinmux definitions for J721S2 Aswath Govindraju
2022-02-08 17:31 ` Tom Rini
2022-01-25 15:26 ` [PATCH v4 14/20] arm: dts: Add initial support for J721S2 SoC Aswath Govindraju
2022-02-08 17:31 ` Tom Rini
2022-01-25 15:26 ` [PATCH v4 15/20] arm: dts: Add initial support for J721S2 System on Module Aswath Govindraju
2022-02-08 17:31 ` Tom Rini
2022-01-25 15:26 ` [PATCH v4 16/20] arm: dts: Add support for A72 specific J721S2 Common Processor Board Aswath Govindraju
2022-02-08 17:32 ` Tom Rini
2022-01-25 15:26 ` [PATCH v4 17/20] arm: dts: k3-j721s2: Add r5 specific dt support Aswath Govindraju
2022-02-08 17:32 ` Tom Rini
2022-01-25 15:26 ` [PATCH v4 18/20] arm: dts: k3-j721s2-ddr: Add DDR support Aswath Govindraju
2022-02-08 17:32 ` Tom Rini
2022-01-25 15:26 ` [PATCH v4 19/20] configs: j721s2_evm_r5_defconfig: Add R5 SPL specific defconfig Aswath Govindraju
2022-02-08 17:32 ` Tom Rini
2022-01-25 15:26 ` [PATCH v4 20/20] configs: j721s2_evm_a72_defconfig: Add A72 " Aswath Govindraju
2022-02-08 17:32 ` Tom Rini
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=2137bbc9-e6e7-e601-bd75-9d66de558594@samsung.com \
--to=jh80.chung@samsung.com \
--cc=a-govindraju@ti.com \
--cc=andre.przywara@arm.com \
--cc=christianshewitt@gmail.com \
--cc=d-gerlach@ti.com \
--cc=d-huang@ti.com \
--cc=festevam@denx.de \
--cc=hnagalla@ti.com \
--cc=j-keerthy@ti.com \
--cc=jagan@amarulasolutions.com \
--cc=kever.yang@rock-chips.com \
--cc=kishon@ti.com \
--cc=kristo@kernel.org \
--cc=lukma@denx.de \
--cc=nm@ti.com \
--cc=pbrobinson@gmail.com \
--cc=s-anna@ti.com \
--cc=seanga2@gmail.com \
--cc=sjg@chromium.org \
--cc=tharvey@gateworks.com \
--cc=trini@konsulko.com \
--cc=u-boot@lists.denx.de \
--cc=vigneshr@ti.com \
--cc=wd@denx.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox