U-Boot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/9] board: beagle: beagley-ai: Cleanups and
@ 2025-04-11 22:57 Nishanth Menon
  2025-04-11 22:57 ` [PATCH 1/9] board: beagle: beagley-ai: Add pattern match for MAINTAINERS Nishanth Menon
                   ` (9 more replies)
  0 siblings, 10 replies; 19+ messages in thread
From: Nishanth Menon @ 2025-04-11 22:57 UTC (permalink / raw)
  To: Heinrich Schuchardt, Andrew Davis, Neha Malcom Francis,
	Robert Nelson, Tom Rini
  Cc: Beleswar Padhi, Udit Kumar, Jonathan Humphreys, Nishanth Menon,
	u-boot

Just happened to get a BeagleY-AI at desk and happened to test master
branch (7dd49a9264a6 drivers: scsi: Add 'erase' support), noticed a few
issues which were rather easy to solve.. so, here we go:

Bootlog: https://gist.github.com/nmenon/a3a18825a783c0c3798cc72506cfead2

I tried to enable efi capsules, but I lost patience rather too soon. So
probably some other time or perhaps someone else would like to contribute.

Nishanth Menon (9):
  board: beagle: beagley-ai: Add pattern match for MAINTAINERS
  arch: arm: dts: k3-am67a-beagley-ai-u-boot: Mark main_gpio1 as
    bootph-all
  beagle: beagley-ai: env: Set up the boot devices and boot methods
  beagle: beagley-ai: env: Setup scripts for LED control
  beagle: beagley-ai: env: Enable DFU env options
  configs: am67a_beagley_ai*: Use saveddefconfig
  configs:am67a_beagley_ai*: Drop un-necessary config options
  configs: am67a_beagley_ai_a53: Enable additional features
  doc: beagle: Add BeagleY-AI documentation

 arch/arm/dts/k3-am67a-beagley-ai-u-boot.dtsi |   4 +
 board/beagle/beagley-ai/MAINTAINERS          |   4 +-
 board/beagle/beagley-ai/beagley-ai.env       |   7 +-
 configs/am67a_beagley_ai_a53_defconfig       | 165 +++++++++++---
 configs/am67a_beagley_ai_r5_defconfig        | 109 ++++++++-
 doc/board/beagle/am67a_beagley_ai.rst        | 228 +++++++++++++++++++
 doc/board/beagle/index.rst                   |   1 +
 doc/board/ti/k3.rst                          |   1 +
 8 files changed, 478 insertions(+), 41 deletions(-)
 create mode 100644 doc/board/beagle/am67a_beagley_ai.rst

-- 
2.47.0


^ permalink raw reply	[flat|nested] 19+ messages in thread
* [PATCH 0/9] board: beagle: beagley-ai: Cleanups and stdboot
@ 2025-04-25 17:31 Nishanth Menon
  2025-04-25 17:31 ` [PATCH 8/9] configs: am67a_beagley_ai_a53: Enable additional features Nishanth Menon
  0 siblings, 1 reply; 19+ messages in thread
From: Nishanth Menon @ 2025-04-25 17:31 UTC (permalink / raw)
  To: Tom Rini, Heinrich Schuchardt, Neha Malcom Francis, Robert Nelson
  Cc: Beleswar Padhi, Udit Kumar, Jonathan Humphreys, Andrew Davis,
	u-boot, Nishanth Menon

Spin 3 of the series.
Just happened to get a BeagleY-AI at desk and happened to test master
branch (7dd49a9264a6 drivers: scsi: Add 'erase' support), noticed a few
issues which were rather easy to solve.. so, here we go:

Current series is based off:
master 9d3f1ebaf875 ("tools/make_pip: Use venv when invoking pip")

BootLog: https://gist.github.com/nmenon/d5d761371515ce0e9cc77021533c34d7
  (nothing interesting changed, so same bootlog)

Changes since v2:
- Dropped override of dfu_alt_info.

V2: https://lore.kernel.org/all/20250418193943.953952-1-nm@ti.com/
V1: https://lore.kernel.org/all/20250411225717.3117370-1-nm@ti.com/

Nishanth Menon (9):
  board: beagle: beagley-ai: Add pattern match for MAINTAINERS
  arch: arm: dts: k3-am67a-beagley-ai-u-boot: Mark main_gpio1 as
    bootph-all
  beagle: beagley-ai: env: Set up the boot devices and boot methods
  beagle: beagley-ai: env: Setup scripts for LED control
  beagle: beagley-ai: env: Enable DFU env options
  configs: am67a_beagley_ai*: Use saveddefconfig
  configs:am67a_beagley_ai*: Drop un-necessary config options
  configs: am67a_beagley_ai_a53: Enable additional features
  doc: beagle: Add BeagleY-AI documentation

 arch/arm/dts/k3-am67a-beagley-ai-u-boot.dtsi |   4 +
 board/beagle/beagley-ai/MAINTAINERS          |   4 +-
 board/beagle/beagley-ai/beagley-ai.env       |   6 +-
 configs/am67a_beagley_ai_a53_defconfig       | 165 ++++++++++---
 configs/am67a_beagley_ai_r5_defconfig        | 109 ++++++++-
 doc/board/beagle/am67a_beagley_ai.rst        | 244 +++++++++++++++++++
 doc/board/beagle/index.rst                   |   1 +
 doc/board/ti/k3.rst                          |   1 +
 8 files changed, 493 insertions(+), 41 deletions(-)
 create mode 100644 doc/board/beagle/am67a_beagley_ai.rst

-- 
2.47.0


^ permalink raw reply	[flat|nested] 19+ messages in thread

end of thread, other threads:[~2025-04-25 17:31 UTC | newest]

Thread overview: 19+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-04-11 22:57 [PATCH 0/9] board: beagle: beagley-ai: Cleanups and Nishanth Menon
2025-04-11 22:57 ` [PATCH 1/9] board: beagle: beagley-ai: Add pattern match for MAINTAINERS Nishanth Menon
2025-04-11 22:57 ` [PATCH 2/9] arch: arm: dts: k3-am67a-beagley-ai-u-boot: Mark main_gpio1 as bootph-all Nishanth Menon
2025-04-11 22:59   ` Nishanth Menon
2025-04-11 22:57 ` [PATCH 3/9] beagle: beagley-ai: env: Set up the boot devices and boot methods Nishanth Menon
2025-04-11 22:57 ` [PATCH 4/9] beagle: beagley-ai: env: Setup scripts for LED control Nishanth Menon
2025-04-11 22:57 ` [PATCH 5/9] beagle: beagley-ai: env: Enable DFU env options Nishanth Menon
2025-04-11 22:57 ` [PATCH 6/9] configs: am67a_beagley_ai*: Use saveddefconfig Nishanth Menon
2025-04-14 13:49   ` Andrew Davis
2025-04-11 22:57 ` [PATCH 7/9] configs:am67a_beagley_ai*: Drop un-necessary config options Nishanth Menon
2025-04-11 22:57 ` [PATCH 8/9] configs: am67a_beagley_ai_a53: Enable additional features Nishanth Menon
2025-04-14 13:51   ` Andrew Davis
2025-04-17 23:03   ` Jon Humphreys
2025-04-18 19:06     ` Nishanth Menon
2025-04-11 22:57 ` [PATCH 9/9] doc: beagle: Add BeagleY-AI documentation Nishanth Menon
2025-04-14 14:02   ` Andrew Davis
2025-04-17 23:05 ` [PATCH 0/9] board: beagle: beagley-ai: Cleanups and Jon Humphreys
2025-04-18 19:07   ` Nishanth Menon
  -- strict thread matches above, loose matches on Subject: below --
2025-04-25 17:31 [PATCH 0/9] board: beagle: beagley-ai: Cleanups and stdboot Nishanth Menon
2025-04-25 17:31 ` [PATCH 8/9] configs: am67a_beagley_ai_a53: Enable additional features Nishanth Menon

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox