mbox series

[v2,0/5] *** phyCORE-AM62x: DDR detection / Inject DDR timing deltas ***

Message ID 20240522075505.3339347-1-w.egorov@phytec.de
Headers show
Series *** phyCORE-AM62x: DDR detection / Inject DDR timing deltas *** | expand

Message

Wadim Egorov May 22, 2024, 7:55 a.m. UTC
Changes in v2:
  - Reabse to current next
  - Add Tested-by: John Ma <jma@phytec.com>
  - Add Kconfig option to select RAM size statically
  - Make board/phytec/common/k3 always compile for CONFIG_ARCH_K3

v1: https://lists.denx.de/pipermail/u-boot/2024-May/553057.html

Wadim Egorov (5):
  board: phytec: Make AM6 SoM detection depend on I2C
  board: phytec: Fix function definitions in AM6x SOM detection
  arm: mach-k3: am625: Call do_board_detect() before DDR probing
  board: phytec: common: Introduce a method to inject DDR timings deltas
  board: phytec: am62x: Add support for 1 & 4 GB RAM variants

 arch/arm/mach-k3/am62x/am625_init.c           |   2 +
 board/phytec/common/Kconfig                   |   2 +
 board/phytec/common/Makefile                  |   4 +-
 board/phytec/common/am6_som_detection.c       |  18 +-
 board/phytec/common/am6_som_detection.h       |   8 +
 board/phytec/common/k3/Makefile               |   1 +
 board/phytec/common/k3/k3_ddrss_patch.c       |  68 ++++++
 board/phytec/common/k3/k3_ddrss_patch.h       |  28 +++
 board/phytec/phycore_am62x/Kconfig            |  30 +++
 board/phytec/phycore_am62x/MAINTAINERS        |   1 +
 board/phytec/phycore_am62x/phycore-am62x.c    | 152 ++++++++++++-
 board/phytec/phycore_am62x/phycore-ddr-data.h | 206 ++++++++++++++++++
 configs/phycore_am62x_a53_defconfig           |   4 +
 configs/phycore_am62x_r5_defconfig            |   4 +
 14 files changed, 514 insertions(+), 14 deletions(-)
 create mode 100644 board/phytec/common/k3/k3_ddrss_patch.c
 create mode 100644 board/phytec/common/k3/k3_ddrss_patch.h
 create mode 100644 board/phytec/phycore_am62x/phycore-ddr-data.h

Comments

Tom Rini June 7, 2024, 10:03 p.m. UTC | #1
On Wed, 22 May 2024 09:55:00 +0200, Wadim Egorov wrote:

> Changes in v2:
>   - Reabse to current next
>   - Add Tested-by: John Ma <jma@phytec.com>
>   - Add Kconfig option to select RAM size statically
>   - Make board/phytec/common/k3 always compile for CONFIG_ARCH_K3
> 
> v1: https://lists.denx.de/pipermail/u-boot/2024-May/553057.html
> 
> [...]

Applied to u-boot/next, thanks!