public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
From: Tom Rini <trini@konsulko.com>
To: Nishanth Menon <nm@ti.com>
Cc: Heinrich Schuchardt <xypron.glpk@gmx.de>,
	Sinthu Raja <sinthu.raja@ti.com>,
	Manorit Chawdhry <m-chawdhry@ti.com>, Reid Tonking <reidt@ti.com>,
	Neha Malcom Francis <n-francis@ti.com>, Andrew Davis <afd@ti.com>,
	Simon Glass <sjg@chromium.org>,
	Robert Nelson <robertcnelson@gmail.com>,
	Jason Kridner <jkridner@beagleboard.org>,
	u-boot@lists.denx.de
Subject: Re: [PATCH 00/15] board: ti: Add support for BeagleBone AI-64
Date: Fri, 3 Nov 2023 10:39:25 -0400	[thread overview]
Message-ID: <20231103143925.GP496310@bill-the-cat> (raw)
In-Reply-To: <20231103003805.2420005-1-nm@ti.com>

[-- Attachment #1: Type: text/plain, Size: 1006 bytes --]

On Thu, Nov 02, 2023 at 07:37:50PM -0500, Nishanth Menon wrote:

> Cleanups for J721e/J7200 and add support for BeagleBone AI-64
> 
> Based off:
> master 07fe79c93c5c Merge tag 'i2cfixes-for-v2024-01-rc2' of https://source.denx.de/u-boot/custodians/u-boot-i2c
> 
> Boot Logs:
> J721e-SK: https://gist.github.com/nmenon/c144e64f1da9fd49997ef5794b056bb0
> J721e-EVM: https://gist.github.com/nmenon/e79bed6807da05c723e71687fb3c0b90
> J7200-HSEVM: https://gist.github.com/nmenon/5658dd6fa2f67bce915c77b25c02f897
> 
> BeagleBone AI-64:
> SD/MMC boot: https://gist.github.com/nmenon/1e07858fb8ca39ca87e40d3894e4d9b7
> eMMC boot: https://gist.github.com/nmenon/9b0602df1f1be2c6b512d135b0afae60
> eMMC boot with SDcard detected: https://gist.github.com/nmenon/82058014f4b2f6b9ed21431bc675e12a
> 
> U-Boot CI: https://github.com/u-boot/u-boot/pull/444

Looking at the end result of the code, the split of evm.c looks good.
One small thing is dropping common.h from the board files.

-- 
Tom

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 659 bytes --]

      parent reply	other threads:[~2023-11-03 14:39 UTC|newest]

Thread overview: 36+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-11-03  0:37 [PATCH 00/15] board: ti: Add support for BeagleBone AI-64 Nishanth Menon
2023-11-03  0:37 ` [PATCH 01/15] arm: mach-k3: j721e: Improve support for UDA FS Nishanth Menon
2023-11-04 10:24   ` Kumar, Udit
2023-11-06 12:18     ` Nishanth Menon
2023-11-06 14:21       ` Kumar, Udit
2023-11-03  0:37 ` [PATCH 02/15] configs: j7200: Remove HBMC_AM654 config Nishanth Menon
2023-11-03  0:37 ` [PATCH 03/15] board: ti: j721e: evm: Drop board check for ESM Nishanth Menon
2023-11-04 10:33   ` Kumar, Udit
2023-11-06 12:19     ` Nishanth Menon
2023-11-06 14:18       ` Kumar, Udit
2023-11-03  0:37 ` [PATCH 04/15] board: ti: j721e: evm: Drop unused headers Nishanth Menon
2023-11-03  0:37 ` [PATCH 05/15] board: ti: j721e: evm: Switch to using IS_ENABLED Nishanth Menon
2023-11-03  0:37 ` [PATCH 06/15] board: ti: j721e: evm: Drop board based serdes initialization Nishanth Menon
2023-11-04 10:35   ` Kumar, Udit
2023-11-04 14:13     ` Kumar, Udit
2023-11-03  0:37 ` [PATCH 07/15] board: ti: j721e: evm: Use IS_ENABLED with CONFIG_PHYS_64BIT Nishanth Menon
2023-11-03  0:37 ` [PATCH 08/15] board: ti: j721e: evm: Split code to isolate eeprom detected logic Nishanth Menon
2023-11-03  0:37 ` [PATCH 09/15] board: ti: j721e: j721e.env: Add explicit boot_targets Nishanth Menon
2023-11-03  0:38 ` [PATCH 10/15] configs: j721e_evm_a72_defconfig: Switch to bootstd Nishanth Menon
2023-11-06  5:28   ` Manorit Chawdhry
2023-11-06 12:21     ` Nishanth Menon
2023-11-06 15:22       ` Tom Rini
2023-11-03  0:38 ` [PATCH 11/15] arm: dts: k3-j721e-binman: Allow a single board configuration Nishanth Menon
2023-11-03  0:38 ` [PATCH 12/15] arm: dts: k3-j721e-binman: Use macros that can be overridden for dtbs Nishanth Menon
2023-11-03  0:38 ` [PATCH 13/15] arm: dts: Add k3-j721e-beagleboneai64 Nishanth Menon
2023-11-03  0:38 ` [PATCH 14/15] board: ti: Add j721e_beagleboneai64_* config fragments and env file Nishanth Menon
2023-11-03 18:51   ` Andrew Davis
2023-11-03 19:06     ` Nishanth Menon
2023-11-03 19:20       ` Andrew Davis
2023-11-17 14:27         ` Romain Naour
2023-11-17 18:43           ` Andrew Davis
2023-11-20 13:16             ` Romain Naour
2023-11-03 20:20       ` Tom Rini
2023-11-03 21:34         ` Nishanth Menon
2023-11-03  0:38 ` [PATCH 15/15] doc: board: ti: Add BeagleBone AI-64 documentation Nishanth Menon
2023-11-03 14:39 ` Tom Rini [this message]

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=20231103143925.GP496310@bill-the-cat \
    --to=trini@konsulko.com \
    --cc=afd@ti.com \
    --cc=jkridner@beagleboard.org \
    --cc=m-chawdhry@ti.com \
    --cc=n-francis@ti.com \
    --cc=nm@ti.com \
    --cc=reidt@ti.com \
    --cc=robertcnelson@gmail.com \
    --cc=sinthu.raja@ti.com \
    --cc=sjg@chromium.org \
    --cc=u-boot@lists.denx.de \
    --cc=xypron.glpk@gmx.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