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>,
	Manorit Chawdhry <m-chawdhry@ti.com>
Subject: [PATCH 0/6] Enable OF_UPSTREAM for j721s2 and am68
Date: Wed, 8 May 2024 12:56:24 +0530	[thread overview]
Message-ID: <20240508-b4-upstream-j721s2-of-upstream-v1-0-ed0933172410@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>
---
Manorit Chawdhry (4):
      configs: am68_sk: Move to separate defconfig for AM68 SK board
      arch: arm: dts: k3-am68-sk-r5: Sync with J721s2 R5 file
      arch: arm: dts: k3-j721s2-r5: Introduce k3-j721s2-r5.dtsi
      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-08  7:26 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-05-08  7:26 Manorit Chawdhry [this message]
2024-05-08  7:26 ` [PATCH 1/6] board: ti: j721s2: j721s2.env: Add explicit boot_targets Manorit Chawdhry
2024-05-08  7:26 ` [PATCH 2/6] configs: j721s2_evm_a72_defconfig: Switch to bootstd Manorit Chawdhry
2024-05-08  7:26 ` [PATCH 3/6] configs: am68_sk: Move to separate defconfig for AM68 SK board Manorit Chawdhry
2024-05-08 10:24   ` Neha Malcom Francis
2024-05-08  7:26 ` [PATCH 4/6] arch: arm: dts: k3-am68-sk-r5: Sync with J721s2 R5 file Manorit Chawdhry
2024-05-08 10:39   ` Neha Malcom Francis
2024-05-09  5:07     ` Manorit Chawdhry
2024-05-09  5:34       ` Manorit Chawdhry
2024-05-09  5:59         ` Neha Malcom Francis
2024-05-09  6:27           ` Manorit Chawdhry
2024-05-08  7:26 ` [PATCH 5/6] arch: arm: dts: k3-j721s2-r5: Introduce k3-j721s2-r5.dtsi Manorit Chawdhry
2024-05-08  7:26 ` [PATCH 6/6] arm: dts: k3-j721s2|am68: Migrate to OF_UPSTREAM Manorit Chawdhry

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=20240508-b4-upstream-j721s2-of-upstream-v1-0-ed0933172410@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=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).