ddr: marvell: a38x: Add support for DDR4 from Marvell mv-ddr-marvell repository
authorTony Dinh <mibodhi@gmail.com>
Thu, 19 Jan 2023 03:03:04 +0000 (19:03 -0800)
committerStefan Roese <sr@denx.de>
Thu, 26 Jan 2023 06:30:20 +0000 (07:30 +0100)
commit54a08c4139e6677494d62c7cb595d70ef123a86b
tree1e5ee0e5183844df43a8d968e61aa2487a9856e2
parent17e8e58fe62c019b2cc26af221b6defc3368229f
ddr: marvell: a38x: Add support for DDR4 from Marvell mv-ddr-marvell repository

This syncs drivers/ddr/marvell/a38x/ with the master branch of repository
https://github.com/MarvellEmbeddedProcessors/mv-ddr-marvell.git

up to the commit "mv_ddr: a3700: Use the right size for memset to not overflow"
d5acc10c287e40cc2feeb28710b92e45c93c702c

This patch was created by following steps:

1. Replace all a38x files in U-Boot tree by files from upstream github
Marvell mv-ddr-marvell repository.

2. Run following command to omit portions not relevant for a38x, ddr3, and ddr4:

files=drivers/ddr/marvell/a38x/*
unifdef -m -UMV_DDR -UMV_DDR_ATF -UCONFIG_APN806 \
-UCONFIG_MC_STATIC -UCONFIG_MC_STATIC_PRINT -UCONFIG_PHY_STATIC \
-UCONFIG_PHY_STATIC_PRINT -UCONFIG_CUSTOMER_BOARD_SUPPORT \
-UCONFIG_A3700 -UA3900 -UA80X0 -UA70X0 -DCONFIG_ARMADA_38X -UCONFIG_ARMADA_39X \
-UCONFIG_64BIT $files

3. Manually change license to SPDX-License-Identifier
(upstream license in  upstream github repository contains long license
texts and U-Boot is using just SPDX-License-Identifier.

After applying this patch, a38x, ddr3, and ddr4 code in upstream Marvell github
repository and in U-Boot would be fully identical. So in future applying
above steps could be used to sync code again.

The only change in this patch are:
1. Some fixes with include files.
2. Some function return and basic type defines changes in
mv_ddr_plat.c (to correct Marvell bug).
3. Remove of dead code in newly copied files (as a result of the
filter script stripping out everything other than a38x, dd3, and ddr4).

Reference:
    "ddr: marvell: a38x: Sync code with Marvell mv-ddr-marvell repository"
    https://source.denx.de/u-boot/u-boot/-/commit/107c3391b95bcc2ba09a876da4fa0c31b6c1e460

Signed-off-by: Tony Dinh <mibodhi@gmail.com>
Reviewed-by: Pali Rohár <pali@kernel.org>
Reviewed-by: Stefan Roese <sr@denx.de>
27 files changed:
drivers/ddr/marvell/a38x/Makefile
drivers/ddr/marvell/a38x/ddr3_debug.c
drivers/ddr/marvell/a38x/ddr3_init.c
drivers/ddr/marvell/a38x/ddr3_init.h
drivers/ddr/marvell/a38x/ddr3_logging_def.h
drivers/ddr/marvell/a38x/ddr3_training.c
drivers/ddr/marvell/a38x/ddr3_training_bist.c
drivers/ddr/marvell/a38x/ddr3_training_centralization.c
drivers/ddr/marvell/a38x/ddr3_training_db.c
drivers/ddr/marvell/a38x/ddr3_training_ip.h
drivers/ddr/marvell/a38x/ddr3_training_ip_db.h
drivers/ddr/marvell/a38x/ddr3_training_ip_engine.c
drivers/ddr/marvell/a38x/ddr3_training_ip_flow.h
drivers/ddr/marvell/a38x/ddr3_training_leveling.c
drivers/ddr/marvell/a38x/mv_ddr4_mpr_pda_if.c [new file with mode: 0644]
drivers/ddr/marvell/a38x/mv_ddr4_mpr_pda_if.h [new file with mode: 0644]
drivers/ddr/marvell/a38x/mv_ddr4_training.c [new file with mode: 0644]
drivers/ddr/marvell/a38x/mv_ddr4_training.h [new file with mode: 0644]
drivers/ddr/marvell/a38x/mv_ddr4_training_calibration.c [new file with mode: 0644]
drivers/ddr/marvell/a38x/mv_ddr4_training_calibration.h [new file with mode: 0644]
drivers/ddr/marvell/a38x/mv_ddr4_training_db.c [new file with mode: 0644]
drivers/ddr/marvell/a38x/mv_ddr4_training_leveling.c [new file with mode: 0644]
drivers/ddr/marvell/a38x/mv_ddr4_training_leveling.h [new file with mode: 0644]
drivers/ddr/marvell/a38x/mv_ddr_plat.c
drivers/ddr/marvell/a38x/mv_ddr_plat.h
drivers/ddr/marvell/a38x/mv_ddr_regs.h
drivers/ddr/marvell/a38x/mv_ddr_topology.h