mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-20 20:04:46 +00:00
board: phytec: common: Introduce a method to inject DDR timings deltas
Introduce fdt_apply_ddrss_timings_patch() to allow board code to override DDR settings in the device tree prior to DDRSS driver probing. Signed-off-by: Wadim Egorov <w.egorov@phytec.de> Tested-by: John Ma <jma@phytec.com>
This commit is contained in:
parent
e63908adbd
commit
cbf5c99ef3
5 changed files with 99 additions and 3 deletions
|
@ -5,10 +5,8 @@
|
||||||
ifdef CONFIG_SPL_BUILD
|
ifdef CONFIG_SPL_BUILD
|
||||||
# necessary to create built-in.o
|
# necessary to create built-in.o
|
||||||
obj- := __dummy__.o
|
obj- := __dummy__.o
|
||||||
else
|
|
||||||
obj-$(CONFIG_ARCH_K3) += k3/
|
|
||||||
endif
|
endif
|
||||||
|
|
||||||
obj-y += phytec_som_detection.o
|
obj-y += phytec_som_detection.o
|
||||||
obj-$(CONFIG_ARCH_K3) += am6_som_detection.o
|
obj-$(CONFIG_ARCH_K3) += am6_som_detection.o k3/
|
||||||
obj-$(CONFIG_ARCH_IMX8M) += imx8m_som_detection.o
|
obj-$(CONFIG_ARCH_IMX8M) += imx8m_som_detection.o
|
||||||
|
|
|
@ -1,2 +1,3 @@
|
||||||
# SPDX-License-Identifier: GPL-2.0+
|
# SPDX-License-Identifier: GPL-2.0+
|
||||||
obj-y += board.o
|
obj-y += board.o
|
||||||
|
obj-$(CONFIG_K3_DDRSS) += k3_ddrss_patch.o
|
||||||
|
|
68
board/phytec/common/k3/k3_ddrss_patch.c
Normal file
68
board/phytec/common/k3/k3_ddrss_patch.c
Normal file
|
@ -0,0 +1,68 @@
|
||||||
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
||||||
|
/*
|
||||||
|
* Copyright (C) 2024 PHYTEC Messtechnik GmbH
|
||||||
|
* Author: Wadim Egorov <w.egorov@phytec.de>
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include "k3_ddrss_patch.h"
|
||||||
|
|
||||||
|
#include <fdt_support.h>
|
||||||
|
#include <linux/errno.h>
|
||||||
|
|
||||||
|
#ifdef CONFIG_K3_AM64_DDRSS
|
||||||
|
#define LPDDR4_INTR_CTL_REG_COUNT (423U)
|
||||||
|
#define LPDDR4_INTR_PHY_INDEP_REG_COUNT (345U)
|
||||||
|
#endif
|
||||||
|
|
||||||
|
static int fdt_setprop_inplace_idx_u32(void *fdt, int nodeoffset,
|
||||||
|
const char *name, uint32_t idx, u32 val)
|
||||||
|
{
|
||||||
|
val = cpu_to_be32(val);
|
||||||
|
return fdt_setprop_inplace_namelen_partial(fdt, nodeoffset, name,
|
||||||
|
strlen(name),
|
||||||
|
idx * sizeof(val), &val,
|
||||||
|
sizeof(val));
|
||||||
|
}
|
||||||
|
|
||||||
|
int fdt_apply_ddrss_timings_patch(void *fdt, struct ddrss *ddrss)
|
||||||
|
{
|
||||||
|
int i, j;
|
||||||
|
int ret;
|
||||||
|
int mem_offset;
|
||||||
|
|
||||||
|
mem_offset = fdt_path_offset(fdt, "/memorycontroller@f300000");
|
||||||
|
if (mem_offset < 0)
|
||||||
|
return -ENODEV;
|
||||||
|
|
||||||
|
for (i = 0; i < LPDDR4_INTR_CTL_REG_COUNT; i++)
|
||||||
|
for (j = 0; j < ddrss->ctl_regs_num; j++)
|
||||||
|
if (i == ddrss->ctl_regs[j].off) {
|
||||||
|
ret = fdt_setprop_inplace_idx_u32(fdt,
|
||||||
|
mem_offset, "ti,ctl-data", i,
|
||||||
|
ddrss->ctl_regs[j].val);
|
||||||
|
if (ret)
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
|
||||||
|
for (i = 0; i < LPDDR4_INTR_PHY_INDEP_REG_COUNT; i++)
|
||||||
|
for (j = 0; j < ddrss->pi_regs_num; j++)
|
||||||
|
if (i == ddrss->pi_regs[j].off) {
|
||||||
|
ret = fdt_setprop_inplace_idx_u32(fdt,
|
||||||
|
mem_offset, "ti,pi-data", i,
|
||||||
|
ddrss->pi_regs[j].val);
|
||||||
|
if (ret)
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
|
||||||
|
for (i = 0; i < LPDDR4_INTR_PHY_INDEP_REG_COUNT; i++)
|
||||||
|
for (j = 0; j < ddrss->phy_regs_num; j++)
|
||||||
|
if (i == ddrss->phy_regs[j].off) {
|
||||||
|
ret = fdt_setprop_inplace_idx_u32(fdt,
|
||||||
|
mem_offset, "ti,phy-data", i,
|
||||||
|
ddrss->phy_regs[j].val);
|
||||||
|
if (ret)
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
28
board/phytec/common/k3/k3_ddrss_patch.h
Normal file
28
board/phytec/common/k3/k3_ddrss_patch.h
Normal file
|
@ -0,0 +1,28 @@
|
||||||
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
||||||
|
/*
|
||||||
|
* Copyright (C) 2024 PHYTEC Messtechnik GmbH
|
||||||
|
* Author: Wadim Egorov <w.egorov@phytec.de>
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef K3_DDRSS_PATCH
|
||||||
|
#define K3_DDRSS_PATCH
|
||||||
|
|
||||||
|
#include <linux/types.h>
|
||||||
|
|
||||||
|
struct ddr_reg {
|
||||||
|
u32 off;
|
||||||
|
u32 val;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct ddrss {
|
||||||
|
struct ddr_reg *ctl_regs;
|
||||||
|
u32 ctl_regs_num;
|
||||||
|
struct ddr_reg *pi_regs;
|
||||||
|
u32 pi_regs_num;
|
||||||
|
struct ddr_reg *phy_regs;
|
||||||
|
u32 phy_regs_num;
|
||||||
|
};
|
||||||
|
|
||||||
|
int fdt_apply_ddrss_timings_patch(void *fdt, struct ddrss *ddrss);
|
||||||
|
|
||||||
|
#endif /* K3_DDRSS_PATCH */
|
|
@ -11,3 +11,4 @@ F: configs/phycore_am62x_a53_defconfig
|
||||||
F: configs/phycore_am62x_r5_defconfig
|
F: configs/phycore_am62x_r5_defconfig
|
||||||
F: include/configs/phycore_am62x.h
|
F: include/configs/phycore_am62x.h
|
||||||
F: doc/board/phytec/phycore-am62x.rst
|
F: doc/board/phytec/phycore-am62x.rst
|
||||||
|
F: board/phytec/common/k3
|
||||||
|
|
Loading…
Add table
Reference in a new issue