diff options
| author | Jacky Bai <[email protected]> | 2023-04-28 12:08:42 +0800 |
|---|---|---|
| committer | Stefano Babic <[email protected]> | 2023-05-21 16:54:41 +0200 |
| commit | 37eb821e2e84b29f65a186ea14534b8ff6de499c (patch) | |
| tree | e6deba78228cead1e53e7304a1ab2108abff19be /drivers | |
| parent | 456f7ff8b28c4262bc12b1fbfb44a77d59085bbe (diff) | |
ddr: imx93: Add 625M bypass clock support
Add 625M bypass clock that may be used DRAM 625M
bypass mode support.
Signed-off-by: Jacky Bai <[email protected]>
Reviewed-by: Ye Li <[email protected]>
Signed-off-by: Peng Fan <[email protected]>
Diffstat (limited to 'drivers')
| -rw-r--r-- | drivers/ddr/imx/phy/ddrphy_utils.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/ddr/imx/phy/ddrphy_utils.c b/drivers/ddr/imx/phy/ddrphy_utils.c index 6a8b6be42b2..fd8b4113b7b 100644 --- a/drivers/ddr/imx/phy/ddrphy_utils.c +++ b/drivers/ddr/imx/phy/ddrphy_utils.c @@ -148,6 +148,9 @@ void ddrphy_init_set_dfi_clk(unsigned int drate) dram_pll_init(MHZ(167)); dram_disable_bypass(); break; + case 625: + dram_enable_bypass(MHZ(625)); + break; case 400: dram_enable_bypass(MHZ(400)); break; |
