soc/rockchip/rk3399/sdram: Add phy_ctrl_reset
Add support for resetting PHY PCTRL for both channel 0 and 1. On the ROCKPro64 board this allows getting past a pctl_cfg() failure. Signed-off-by: Moritz Fischer <moritzf@google.com> Change-Id: I9f807e318ffc63c568d04518c3edd02c1064e185 Reviewed-on: https://review.coreboot.org/c/coreboot/+/50890 Reviewed-by: ron minnich <rminnich@gmail.com> Reviewed-by: Angel Pons <th3fanbus@gmail.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
parent
d8f352b4fd
commit
c73102d0f5
|
@ -100,6 +100,18 @@ static void copy_to_reg(u32 *dest, const u32 *src, u32 n)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void phy_pctrl_reset(u32 channel)
|
||||||
|
{
|
||||||
|
rkclk_ddr_reset(channel, 1, 1);
|
||||||
|
udelay(10);
|
||||||
|
|
||||||
|
rkclk_ddr_reset(channel, 1, 0);
|
||||||
|
udelay(10);
|
||||||
|
|
||||||
|
rkclk_ddr_reset(channel, 0, 0);
|
||||||
|
udelay(10);
|
||||||
|
}
|
||||||
|
|
||||||
static void phy_dll_bypass_set(u32 channel,
|
static void phy_dll_bypass_set(u32 channel,
|
||||||
struct rk3399_ddr_publ_regs *ddr_publ_regs, u32 freq)
|
struct rk3399_ddr_publ_regs *ddr_publ_regs, u32 freq)
|
||||||
{
|
{
|
||||||
|
@ -1083,6 +1095,7 @@ void sdram_init(const struct rk3399_sdram_params *params)
|
||||||
rkclk_configure_ddr(ddr_freq);
|
rkclk_configure_ddr(ddr_freq);
|
||||||
|
|
||||||
for (channel = 0; channel < 2; channel++) {
|
for (channel = 0; channel < 2; channel++) {
|
||||||
|
phy_pctrl_reset(channel);
|
||||||
phy_dll_bypass_set(channel, rk3399_ddr_publ[channel], ddr_freq);
|
phy_dll_bypass_set(channel, rk3399_ddr_publ[channel], ddr_freq);
|
||||||
|
|
||||||
if (channel >= params->num_channels)
|
if (channel >= params->num_channels)
|
||||||
|
|
Loading…
Reference in New Issue