U-boot Archive mirror
 help / color / mirror / Atom feed
From: Manorit Chawdhry <m-chawdhry@ti.com>
To: Tom Rini <trini@konsulko.com>, Simon Glass <sjg@chromium.org>,
	Alper Nebi Yasak <alpernebiyasak@gmail.com>
Cc: <u-boot@lists.denx.de>, Neha Malcom Francis <n-francis@ti.com>,
	Nishanth Menon <nm@ti.com>, Andrew Davis <afd@ti.com>,
	Udit Kumar <u-kumar1@ti.com>, Aniket Limaye <a-limaye@ti.com>,
	Sumit Garg <sumit.garg@linaro.org>,
	Manorit Chawdhry <m-chawdhry@ti.com>
Subject: [PATCH v3 0/6] Enable OF_UPSTREAM for J721s2 and AM68
Date: Fri, 10 May 2024 10:20:19 +0530	[thread overview]
Message-ID: <20240510-b4-upstream-j721s2-of-upstream-v3-0-43672b7134b7@ti.com> (raw)

Series splits AM68 and J721s2 support along with enabling OF_UPSTREAM
and adding stdboot support for both the platforms.

Boot logs: https://gist.github.com/manorit2001/6c669e4273933bc46c3b28a631a96ae3

Signed-off-by: Manorit Chawdhry <m-chawdhry@ti.com>
---
Changes in v3:
- Improve the commit message (Nishanth)
- Link to v2: https://lore.kernel.org/r/20240509-b4-upstream-j721s2-of-upstream-v2-0-149563cd4901@ti.com

---
Manorit Chawdhry (4):
      arch: arm: dts: k3-am68-sk-r5: Sync with J721s2 R5 file
      arch: arm: dts: k3-j721s2-r5: Introduce k3-j721s2-r5.dtsi
      configs: am68_sk: Move to separate defconfig for AM68 SK board
      arm: dts: k3-j721s2|am68: Migrate to OF_UPSTREAM

Neha Malcom Francis (2):
      board: ti: j721s2: j721s2.env: Add explicit boot_targets
      configs: j721s2_evm_a72_defconfig: Switch to bootstd

 arch/arm/dts/Makefile                              |    4 +-
 arch/arm/dts/k3-am68-sk-base-board-u-boot.dtsi     |   41 +-
 arch/arm/dts/k3-am68-sk-base-board.dts             |  611 -------
 arch/arm/dts/k3-am68-sk-r5-base-board.dts          |   75 +-
 arch/arm/dts/k3-am68-sk-som.dtsi                   |  259 ---
 arch/arm/dts/k3-j721s2-binman.dtsi                 |   91 +-
 .../dts/k3-j721s2-common-proc-board-u-boot.dtsi    |   18 +-
 arch/arm/dts/k3-j721s2-common-proc-board.dts       |  504 -----
 arch/arm/dts/k3-j721s2-main.dtsi                   | 1928 --------------------
 arch/arm/dts/k3-j721s2-mcu-wakeup.dtsi             |  738 --------
 arch/arm/dts/k3-j721s2-r5-common-proc-board.dts    |   78 +-
 arch/arm/dts/k3-j721s2-r5.dtsi                     |   81 +
 arch/arm/dts/k3-j721s2-som-p0.dtsi                 |  361 ----
 arch/arm/dts/k3-j721s2-thermal.dtsi                |  101 -
 arch/arm/dts/k3-j721s2.dtsi                        |  175 --
 board/ti/j721s2/MAINTAINERS                        |   11 +-
 board/ti/j721s2/j721s2.env                         |    1 +
 configs/am68_sk_a72_defconfig                      |   10 +
 configs/am68_sk_r5_defconfig                       |   10 +
 configs/j721s2_evm_a72_defconfig                   |   10 +-
 configs/j721s2_evm_r5_defconfig                    |    2 +-
 include/configs/j721s2_evm.h                       |    1 -
 22 files changed, 155 insertions(+), 4955 deletions(-)
---
base-commit: 2f1e76bcfee75b9f99ade63002c05ffaaec86afb
change-id: 20240506-b4-upstream-j721s2-of-upstream-3c28ff12d664

Best regards,
-- 
Manorit Chawdhry <m-chawdhry@ti.com>


             reply	other threads:[~2024-05-10  4:50 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-05-10  4:50 Manorit Chawdhry [this message]
2024-05-10  4:50 ` [PATCH v3 1/6] board: ti: j721s2: j721s2.env: Add explicit boot_targets Manorit Chawdhry
2024-05-10  4:50 ` [PATCH v3 2/6] configs: j721s2_evm_a72_defconfig: Switch to bootstd Manorit Chawdhry
2024-05-10  4:50 ` [PATCH v3 3/6] arch: arm: dts: k3-am68-sk-r5: Sync with J721s2 R5 file Manorit Chawdhry
2024-05-10  4:50 ` [PATCH v3 4/6] arch: arm: dts: k3-j721s2-r5: Introduce k3-j721s2-r5.dtsi Manorit Chawdhry
2024-05-10  4:50 ` [PATCH v3 5/6] configs: am68_sk: Move to separate defconfig for AM68 SK board Manorit Chawdhry
2024-05-10  4:50 ` [PATCH v3 6/6] arm: dts: k3-j721s2|am68: Migrate to OF_UPSTREAM Manorit Chawdhry
2024-05-16 21:51 ` [PATCH v3 0/6] Enable OF_UPSTREAM for J721s2 and AM68 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=20240510-b4-upstream-j721s2-of-upstream-v3-0-43672b7134b7@ti.com \
    --to=m-chawdhry@ti.com \
    --cc=a-limaye@ti.com \
    --cc=afd@ti.com \
    --cc=alpernebiyasak@gmail.com \
    --cc=n-francis@ti.com \
    --cc=nm@ti.com \
    --cc=sjg@chromium.org \
    --cc=sumit.garg@linaro.org \
    --cc=trini@konsulko.com \
    --cc=u-boot@lists.denx.de \
    --cc=u-kumar1@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;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).