From: Roger Quadros <rogerq@kernel.org>
To: Apurva Nandan <a-nandan@ti.com>, Hari Nagalla <hnagalla@ti.com>,
Lukasz Majewski <lukma@denx.de>,
Sean Anderson <seanga2@gmail.com>,
Jaehoon Chung <jh80.chung@samsung.com>,
Neha Malcom Francis <n-francis@ti.com>,
Simon Glass <sjg@chromium.org>, Andrew Davis <afd@ti.com>,
Kamlesh Gurudasani <kamlesh@ti.com>,
Dasnavis Sabiya <sabiya.d@ti.com>,
Manorit Chawdhry <m-chawdhry@ti.com>,
Aradhya Bhatia <a-bhatia1@ti.com>, Bryan Brattlof <bb@ti.com>,
Christian Gmeiner <christian.gmeiner@gmail.com>,
Nishanth Menon <nm@ti.com>,
Heinrich Schuchardt <xypron.glpk@gmx.de>,
Marcel Ziswiler <marcel.ziswiler@toradex.com>,
Jason Kacines <j-kacines@ti.com>,
Jayesh Choudhary <j-choudhary@ti.com>,
Ralph Siemsen <ralph.siemsen@linaro.org>,
Yanhong Wang <yanhong.wang@starfivetech.com>,
Marek Vasut <marek.vasut+renesas@mailbox.org>,
Rasmus Villemoes <rasmus.villemoes@prevas.dk>,
u-boot@lists.denx.de
Subject: Re: [PATCH v3 08/16] board: ti: j784s4: Add board support for J784S4 EVM
Date: Sat, 9 Sep 2023 14:29:20 +0300 [thread overview]
Message-ID: <9bc5aa14-b03c-d2d0-947c-692a200db996@kernel.org> (raw)
In-Reply-To: <20230908110551.861575-9-a-nandan@ti.com>
On 08/09/2023 14:05, Apurva Nandan wrote:
> Add board files for J784S4 EVM.
>
> Signed-off-by: Hari Nagalla <hnagalla@ti.com>
> [ add env and board specific yaml files for binman ]
> Signed-off-by: Neha Malcom Francis <n-francis@ti.com>
> [ cleaned up the env files ]
> Signed-off-by: Manorit Chawdhry <m-chawdhry@ti.com>
> Signed-off-by: Apurva Nandan <a-nandan@ti.com>
> ---
> arch/arm/mach-k3/Kconfig | 1 +
> board/ti/j784s4/Kconfig | 63 +
> board/ti/j784s4/MAINTAINERS | 20 +
> board/ti/j784s4/Makefile | 8 +
> board/ti/j784s4/board-cfg.yaml | 36 +
> board/ti/j784s4/evm.c | 87 +
> board/ti/j784s4/j784s4.env | 35 +
> board/ti/j784s4/pm-cfg.yaml | 12 +
> board/ti/j784s4/rm-cfg.yaml | 3057 ++++++++++++++++++++++++++++++
> board/ti/j784s4/sec-cfg.yaml | 379 ++++
> board/ti/j784s4/tifs-rm-cfg.yaml | 2655 ++++++++++++++++++++++++++
> include/configs/j784s4_evm.h | 20 +
> 12 files changed, 6373 insertions(+)
> create mode 100644 board/ti/j784s4/Kconfig
> create mode 100644 board/ti/j784s4/MAINTAINERS
> create mode 100644 board/ti/j784s4/Makefile
> create mode 100644 board/ti/j784s4/board-cfg.yaml
> create mode 100644 board/ti/j784s4/evm.c
> create mode 100644 board/ti/j784s4/j784s4.env
> create mode 100644 board/ti/j784s4/pm-cfg.yaml
> create mode 100644 board/ti/j784s4/rm-cfg.yaml
> create mode 100644 board/ti/j784s4/sec-cfg.yaml
> create mode 100644 board/ti/j784s4/tifs-rm-cfg.yaml
> create mode 100644 include/configs/j784s4_evm.h
>
> diff --git a/arch/arm/mach-k3/Kconfig b/arch/arm/mach-k3/Kconfig
> index 0af2ec6ddb..ba3dd393e3 100644
> --- a/arch/arm/mach-k3/Kconfig
> +++ b/arch/arm/mach-k3/Kconfig
> @@ -197,4 +197,5 @@ source "board/ti/j721e/Kconfig"
> source "board/siemens/iot2050/Kconfig"
> source "board/ti/j721s2/Kconfig"
> source "board/toradex/verdin-am62/Kconfig"
> +source "board/ti/j784s4/Kconfig"
> endif
> diff --git a/board/ti/j784s4/Kconfig b/board/ti/j784s4/Kconfig
> new file mode 100644
> index 0000000000..7eeb21f451
> --- /dev/null
> +++ b/board/ti/j784s4/Kconfig
> @@ -0,0 +1,63 @@
> +# SPDX-License-Identifier: GPL-2.0+
> +#
> +# Copyright (C) 2022 Texas Instruments Incorporated - https://www.ti.com/
> +# Hari Nagalla <hnagalla@ti.com>
> +
> +choice
> + prompt "K3 J784S4 board"
> + optional
> +
> +config TARGET_J784S4_A72_EVM
> + bool "TI K3 based J784S4 EVM running on A72"
> + select ARM64
> + select SOC_K3_J784S4
> + select BOARD_LATE_INIT
> + select SYS_DISABLE_DCACHE_OPS
> + select BINMAN
> +
> +config TARGET_J784S4_R5_EVM
> + bool "TI K3 based J784S4 EVM running on R5"
> + select CPU_V7R
> + select SYS_THUMB_BUILD
> + select SOC_K3_J784S4
> + select K3_LOAD_SYSFW
> + select RAM
> + select SPL_RAM
> + select K3_DDRSS
> + select BINMAN
> + imply SYS_K3_SPL_ATF
> +
> +endchoice
> +
> +if TARGET_J784S4_A72_EVM
> +
> +config SYS_BOARD
> + default "j784s4"
> +
> +config SYS_VENDOR
> + default "ti"
> +
> +config SYS_CONFIG_NAME
> + default "j784s4_evm"
> +
> +source "board/ti/common/Kconfig"
> +
> +endif
> +
> +if TARGET_J784S4_R5_EVM
> +
> +config SYS_BOARD
> + default "j784s4"
> +
> +config SYS_VENDOR
> + default "ti"
> +
> +config SYS_CONFIG_NAME
> + default "j784s4_evm"
> +
> +config SPL_LDSCRIPT
> + default "arch/arm/mach-omap2/u-boot-spl.lds"
> +
> +source "board/ti/common/Kconfig"
> +
> +endif
> diff --git a/board/ti/j784s4/MAINTAINERS b/board/ti/j784s4/MAINTAINERS
> new file mode 100644
> index 0000000000..7d3549dd31
> --- /dev/null
> +++ b/board/ti/j784s4/MAINTAINERS
> @@ -0,0 +1,20 @@
> +J784S4 BOARD
> +M: Hari Nagalla <hnagalla@ti.com>
> +S: Maintained
> +F: board/ti/j784s4
> +F: arch/arm/mach-k3/j784s4
> +F: include/configs/j784s4_evm.h
> +F: configs/j784s4_evm_r5_defconfig
> +F: configs/j784s4_evm_a72_defconfig
> +F: arch/arm/dts/k3-j784s4.dtsi
> +F: arch/arm/dts/k3-j784s4-main.dtsi
> +F: arch/arm/dts/k3-j784s4-mcu-wakeup.dtsi
> +F: arch/arm/dts/k3-j784s4-thermal.dtsi
> +F: arch/arm/dts/k3-j784s4-evm.dts
> +F: arch/arm/dts/k3-j784s4-evm-u-boot.dtsi
> +F: arch/arm/dts/k3-j784s4-r5-evm.dts
> +F: arch/arm/dts/k3-j784s4-ddr.dtsi
> +F: arch/arm/dts/k3-j784s4-ddr-evm-lp4-4266.dtsi
> +F: arch/arm/dts/k3-am69-sk.dts
> +F: arch/arm/dts/k3-am69-sk-u-boot.dtsi
> +F: arch/arm/dts/k3-am69-r5-sk.dts
These 3 files are not part of J724S4 EVM.
--
cheers,
-roger
next prev parent reply other threads:[~2023-09-09 11:29 UTC|newest]
Thread overview: 54+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-09-08 11:05 [PATCH v3 00/16]Introduce initial TI's J784S4 and AM69 support Apurva Nandan
2023-09-08 11:05 ` [PATCH v3 01/16] arm: dts: Introduce j784s4 dts from linux kernel Apurva Nandan
2023-09-09 10:50 ` Roger Quadros
2023-09-19 17:37 ` Apurva Nandan
2023-09-12 11:10 ` Marcel Ziswiler
2023-09-08 11:05 ` [PATCH v3 02/16] arm: mach-k3: Add basic support for J784S4 SoC definition Apurva Nandan
2023-09-09 10:48 ` Roger Quadros
2023-09-19 17:38 ` Apurva Nandan
2023-09-28 10:05 ` Apurva Nandan
2023-09-28 10:33 ` Apurva Nandan
2023-09-12 11:17 ` Marcel Ziswiler
2023-09-08 11:05 ` [PATCH v3 03/16] soc: ti: k3-socinfo: Add entry for J784S4 SoC Apurva Nandan
2023-09-12 11:21 ` Marcel Ziswiler
2023-09-12 12:31 ` Nishanth Menon
2023-09-08 11:05 ` [PATCH v3 04/16] arm: mach-k3: j784s4: Add clk and power support Apurva Nandan
2023-09-12 11:24 ` Marcel Ziswiler
2023-09-08 11:05 ` [PATCH v3 05/16] drivers: dma: Add support for J784S4 SoC Apurva Nandan
2023-09-12 11:26 ` Marcel Ziswiler
2023-09-08 11:05 ` [PATCH v3 06/16] remoteproc: k3-r5: Extend support for R5F clusters on J784S4 SoCs Apurva Nandan
2023-09-09 10:56 ` Roger Quadros
2023-09-19 7:44 ` Kumar, Udit
2023-09-19 17:40 ` Apurva Nandan
2023-09-08 11:05 ` [PATCH v3 07/16] remoteproc: k3-dsp: Extend support for C71x DSPs " Apurva Nandan
2023-09-09 10:58 ` Roger Quadros
2023-09-19 17:42 ` Apurva Nandan
2023-09-08 11:05 ` [PATCH v3 08/16] board: ti: j784s4: Add board support for J784S4 EVM Apurva Nandan
2023-09-09 11:02 ` Roger Quadros
2023-09-19 17:43 ` Apurva Nandan
2023-09-09 11:29 ` Roger Quadros [this message]
2023-09-19 17:43 ` Apurva Nandan
2023-09-12 11:35 ` Marcel Ziswiler
2023-09-08 11:05 ` [PATCH v3 09/16] arm: dts: Introduce j784s4 u-boot dts files Apurva Nandan
2023-09-12 12:03 ` Marcel Ziswiler
2023-09-08 11:05 ` [PATCH v3 10/16] arm: dts: Introduce am69-sk dts from linux kernel Apurva Nandan
2023-09-12 12:10 ` Marcel Ziswiler
2023-09-12 12:35 ` Nishanth Menon
2023-09-08 11:05 ` [PATCH v3 11/16] board: ti: j784s4: Add support for board detection by EEPROM read Apurva Nandan
2023-09-08 14:42 ` Nishanth Menon
2023-09-08 15:59 ` Andrew Davis
2023-09-08 17:03 ` Nishanth Menon
2023-09-08 17:20 ` Andrew Davis
2023-09-08 18:31 ` Nishanth Menon
2023-09-08 11:05 ` [PATCH v3 12/16] board: ti: j784s4: Update env to use am69-sk dtb Apurva Nandan
2023-09-08 11:05 ` [PATCH v3 13/16] arm: dts: Introduce am69-sk u-boot dts files Apurva Nandan
2023-09-12 12:20 ` Marcel Ziswiler
2023-09-12 12:44 ` Nishanth Menon
2023-09-08 11:05 ` [PATCH v3 14/16] arm: dts: k3-j784s4-binman: Add support for AM69 SK Apurva Nandan
2023-09-08 11:05 ` [PATCH v3 15/16] configs: j784s4_evm: Add defconfig for j784s4 evm and am69 sk Apurva Nandan
2023-09-08 11:05 ` [PATCH v3 16/16] doc: board: ti: k3: Add J784S4 EVM and AM69 SK documentation Apurva Nandan
2023-09-09 11:38 ` Roger Quadros
2023-09-19 18:03 ` Apurva Nandan
2023-09-12 12:50 ` Marcel Ziswiler
2023-09-12 20:01 ` Heinrich Schuchardt
2023-09-12 11:13 ` [PATCH v3 00/16]Introduce initial TI's J784S4 and AM69 support Marcel Ziswiler
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=9bc5aa14-b03c-d2d0-947c-692a200db996@kernel.org \
--to=rogerq@kernel.org \
--cc=a-bhatia1@ti.com \
--cc=a-nandan@ti.com \
--cc=afd@ti.com \
--cc=bb@ti.com \
--cc=christian.gmeiner@gmail.com \
--cc=hnagalla@ti.com \
--cc=j-choudhary@ti.com \
--cc=j-kacines@ti.com \
--cc=jh80.chung@samsung.com \
--cc=kamlesh@ti.com \
--cc=lukma@denx.de \
--cc=m-chawdhry@ti.com \
--cc=marcel.ziswiler@toradex.com \
--cc=marek.vasut+renesas@mailbox.org \
--cc=n-francis@ti.com \
--cc=nm@ti.com \
--cc=ralph.siemsen@linaro.org \
--cc=rasmus.villemoes@prevas.dk \
--cc=sabiya.d@ti.com \
--cc=seanga2@gmail.com \
--cc=sjg@chromium.org \
--cc=u-boot@lists.denx.de \
--cc=xypron.glpk@gmx.de \
--cc=yanhong.wang@starfivetech.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