All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/4] General MMC fixes for K3
@ 2025-09-10 21:45 Judith Mendez
  2025-09-10 21:45 ` [PATCH 1/4] arm: mach-k3: Fix MMC macros Judith Mendez
                   ` (3 more replies)
  0 siblings, 4 replies; 28+ messages in thread
From: Judith Mendez @ 2025-09-10 21:45 UTC (permalink / raw)
  To: Judith Mendez, Tom Rini
  Cc: Manorit Chawdhry, Apurva Nandan, Vignesh Raghavendra,
	Bryan Brattlof, Vaishnav Achath, Jayesh Choudhary, Moteen Shah,
	Andrew Davis, Udit Kumar, u-boot

This patch series includes some general fixes for MMC on K3 devices.

The first patch fixes the MMC macros used for booting with eMMC boot,
and MMCSD boot.

Subsequent patches fix eMMC boot on AM62P device and fixing eMMC HS400
configs for am62p/j722s devices.

The patch series has been tested with SD boot and eMMC boot on:
- am62ax SK
- am62px SK
- am62x SK
- am64x EVM
- am654 IDK

and only build tested for: J7 platforms.

Judith Mendez (4):
  arm: mach-k3: Fix MMC macros
  configs: am62px_evm_r5_defconfig: Add support eMMC boot config
  configs: am62px/j722s: Remove non-spl HS400 support at r5 stage
  configs: j722s_evm_a53_defconfig: Disable eMMC HS400

 arch/arm/mach-k3/am62ax/am62a7_init.c          |  4 ++--
 arch/arm/mach-k3/am62ax/boot.c                 |  8 ++++----
 arch/arm/mach-k3/am62px/am62p5_init.c          | 12 ++++++------
 arch/arm/mach-k3/am62x/am625_init.c            |  4 ++--
 arch/arm/mach-k3/am62x/boot.c                  |  8 ++++----
 arch/arm/mach-k3/am64x/boot.c                  |  8 ++++----
 arch/arm/mach-k3/am65x/am654_init.c            | 18 ++++++++++--------
 arch/arm/mach-k3/include/mach/am62_hardware.h  |  8 ++++----
 arch/arm/mach-k3/include/mach/am62_spl.h       | 10 +++++-----
 arch/arm/mach-k3/include/mach/am62a_hardware.h |  8 ++++----
 arch/arm/mach-k3/include/mach/am62a_spl.h      | 10 +++++-----
 arch/arm/mach-k3/include/mach/am62p_hardware.h |  8 ++++----
 arch/arm/mach-k3/include/mach/am62p_spl.h      | 10 +++++-----
 arch/arm/mach-k3/include/mach/am64_hardware.h  |  4 ++--
 arch/arm/mach-k3/include/mach/am64_spl.h       | 13 +++++++------
 arch/arm/mach-k3/include/mach/am6_hardware.h   |  8 ++++----
 arch/arm/mach-k3/include/mach/am6_spl.h        | 13 +++++++++----
 arch/arm/mach-k3/include/mach/j721e_hardware.h |  6 +++---
 arch/arm/mach-k3/include/mach/j721e_spl.h      | 14 ++++++++++----
 .../arm/mach-k3/include/mach/j721s2_hardware.h |  6 +++---
 arch/arm/mach-k3/include/mach/j721s2_spl.h     | 13 +++++++++----
 arch/arm/mach-k3/include/mach/j722s_hardware.h |  8 ++++----
 arch/arm/mach-k3/include/mach/j722s_spl.h      | 10 +++++-----
 .../arm/mach-k3/include/mach/j784s4_hardware.h |  6 +++---
 arch/arm/mach-k3/include/mach/j784s4_spl.h     | 13 +++++++++----
 arch/arm/mach-k3/j721e/j721e_init.c            | 14 +++++++++-----
 arch/arm/mach-k3/j721s2/j721s2_init.c          | 14 +++++++++-----
 arch/arm/mach-k3/j722s/j722s_init.c            | 12 ++++++------
 arch/arm/mach-k3/j784s4/j784s4_init.c          | 14 +++++++++-----
 configs/am62px_evm_r5_defconfig                |  2 +-
 configs/j722s_evm_a53_defconfig                |  4 ++--
 configs/j722s_evm_r5_defconfig                 |  1 -
 32 files changed, 163 insertions(+), 128 deletions(-)

-- 
2.51.0


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

end of thread, other threads:[~2025-09-18 18:00 UTC | newest]

Thread overview: 28+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-09-10 21:45 [PATCH 0/4] General MMC fixes for K3 Judith Mendez
2025-09-10 21:45 ` [PATCH 1/4] arm: mach-k3: Fix MMC macros Judith Mendez
2025-09-11  4:38   ` Kumar, Udit
2025-09-11 14:48     ` Judith Mendez
2025-09-15 11:35       ` Moteen Shah
2025-09-15 18:31         ` Judith Mendez
2025-09-11  5:11   ` Anshul Dalal
2025-09-11 14:59     ` Judith Mendez
2025-09-16 16:22       ` Andrew Davis
2025-09-16 17:11         ` Judith Mendez
2025-09-16 22:35         ` Judith Mendez
2025-09-17  3:41           ` Anshul Dalal
2025-09-17 16:06             ` Judith Mendez
2025-09-17 16:48               ` Andrew Davis
2025-09-18 18:00                 ` Judith Mendez
2025-09-15 11:40   ` Moteen Shah
2025-09-15 18:02     ` Judith Mendez
2025-09-15 14:22   ` Wadim Egorov
2025-09-15 18:09     ` Judith Mendez
2025-09-10 21:45 ` [PATCH 2/4] configs: am62px_evm_r5_defconfig: Add support eMMC boot config Judith Mendez
2025-09-10 21:45 ` [PATCH 3/4] configs: am62px/j722s: Remove non-spl HS400 support at r5 stage Judith Mendez
2025-09-11 10:32   ` Moteen Shah
2025-09-10 21:45 ` [PATCH 4/4] configs: j722s_evm_a53_defconfig: Disable eMMC HS400 Judith Mendez
2025-09-11  4:15   ` Kumar, Udit
2025-09-11 14:30     ` Judith Mendez
2025-09-11 14:45       ` Kumar, Udit
2025-09-11 15:14         ` Judith Mendez
2025-09-11 10:33   ` Moteen Shah

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.