From: Neha Malcom Francis <n-francis@ti.com>
To: Bryan Brattlof <bb@ti.com>, Tom Rini <trini@konsulko.com>,
Jaehoon Chung <jh80.chung@samsung.com>,
Lukasz Majewski <lukma@denx.de>,
Sean Anderson <seanga2@gmail.com>,
Vignesh Raghavendra <vigneshr@ti.com>
Cc: U-Boot Mailing List <u-boot@lists.denx.de>,
Simon Glass <sjg@chromium.org>,
Sumit Garg <sumit.garg@linaro.org>, Nishanth Menon <nm@ti.com>,
Andrew Davis <afd@ti.com>,
Igor Opaniuk <igor.opaniuk@foundries.io>,
Hari Nagalla <hnagalla@ti.com>,
Ravi Gunasekaran <r-gunasekaran@ti.com>,
Vaishnav Achath <vaishnav.a@ti.com>,
Jayesh Choudhary <j-choudhary@ti.com>
Subject: Re: [PATCH v3 04/13] ram: k3-ddrss: enable the am62ax's DDR controller for am62px
Date: Tue, 27 Feb 2024 09:54:57 +0530 [thread overview]
Message-ID: <d4af8a53-67fd-4612-b763-e86f9240a59b@ti.com> (raw)
In-Reply-To: <20240205-am62px-wip-rebasing-v3-4-04cbb42eaa6f@ti.com>
On 27/02/24 02:49, Bryan Brattlof wrote:
> The am62px family of SoCs uses the same DDR controller as found on the
> am62ax family. Enable this option when building for the am62px family
>
> Signed-off-by: Bryan Brattlof <bb@ti.com>
> ---
> drivers/ram/Kconfig | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/ram/Kconfig b/drivers/ram/Kconfig
> index 5b07e92030142..56391058567bb 100644
> --- a/drivers/ram/Kconfig
> +++ b/drivers/ram/Kconfig
> @@ -65,7 +65,7 @@ choice
> default K3_J721E_DDRSS if SOC_K3_J721E || SOC_K3_J721S2
> default K3_AM64_DDRSS if SOC_K3_AM642
> default K3_AM64_DDRSS if SOC_K3_AM625
> - default K3_AM62A_DDRSS if SOC_K3_AM62A7
> + default K3_AM62A_DDRSS if SOC_K3_AM62A7 || SOC_K3_AM62P5
>
> config K3_J721E_DDRSS
> bool "Enable J721E DDRSS support"
>
Reviewed-by: Neha Malcom Francis <n-francis@ti.com>
--
Thanking You
Neha Malcom Francis
next prev parent reply other threads:[~2024-02-27 4:25 UTC|newest]
Thread overview: 25+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-02-26 21:19 [PATCH v3 00/13] Hello Again Everyone! Bryan Brattlof
2024-02-26 21:19 ` [PATCH v3 01/13] soc: add info to identify the am62p SoC family Bryan Brattlof
2024-02-27 4:18 ` Neha Malcom Francis
2024-02-26 21:19 ` [PATCH v3 02/13] power: domain: ti: use IS_ENABLED macro Bryan Brattlof
2024-02-26 21:19 ` [PATCH v3 03/13] arm: mach-k3: am62px: introduce clock and device files for wkup spl Bryan Brattlof
2024-02-27 4:23 ` Neha Malcom Francis
2024-02-26 21:19 ` [PATCH v3 04/13] ram: k3-ddrss: enable the am62ax's DDR controller for am62px Bryan Brattlof
2024-02-27 4:24 ` Neha Malcom Francis [this message]
2024-02-26 21:19 ` [PATCH v3 05/13] arm: mach-k3: invert logic for split DM firmware config Bryan Brattlof
2024-02-27 4:26 ` Neha Malcom Francis
2024-02-26 21:19 ` [PATCH v3 06/13] arch: mach-k3: introduce basic files to support the am62px SoC family Bryan Brattlof
2024-02-26 21:19 ` [PATCH v3 07/13] board: ti: introduce basic board files for the am62px family Bryan Brattlof
2024-02-28 23:31 ` Tom Rini
2024-02-26 21:19 ` [PATCH v3 08/13] firmware: ti_sci_static_data: add static DMA channel data Bryan Brattlof
2024-02-26 21:19 ` [PATCH v3 09/13] dma: ti: k3-udma: Add DMA PSIL mappings for AM62P and J722S Bryan Brattlof
2024-02-26 21:19 ` [PATCH v3 10/13] arm: dts: introduce am62p5 U-Boot dts files Bryan Brattlof
2024-02-26 21:19 ` [PATCH v3 11/13] Makefile: remove hardcoded device tree source directory Bryan Brattlof
2024-02-27 8:23 ` Neha Malcom Francis
2024-02-27 8:59 ` Sumit Garg
2024-02-27 9:16 ` Neha Malcom Francis
2024-03-04 6:40 ` Sumit Garg
2024-03-04 12:26 ` Sumit Garg
2024-02-26 21:19 ` [PATCH v3 12/13] configs: introduce configs needed for the am62px Bryan Brattlof
2024-02-26 21:19 ` [PATCH v3 13/13] doc: board: ti: introduce am62px documentation Bryan Brattlof
2024-03-05 16:11 ` [PATCH v3 00/13] Hello Again Everyone! 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=d4af8a53-67fd-4612-b763-e86f9240a59b@ti.com \
--to=n-francis@ti.com \
--cc=afd@ti.com \
--cc=bb@ti.com \
--cc=hnagalla@ti.com \
--cc=igor.opaniuk@foundries.io \
--cc=j-choudhary@ti.com \
--cc=jh80.chung@samsung.com \
--cc=lukma@denx.de \
--cc=nm@ti.com \
--cc=r-gunasekaran@ti.com \
--cc=seanga2@gmail.com \
--cc=sjg@chromium.org \
--cc=sumit.garg@linaro.org \
--cc=trini@konsulko.com \
--cc=u-boot@lists.denx.de \
--cc=vaishnav.a@ti.com \
--cc=vigneshr@ti.com \
/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