ddr3_k2e.c 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. // SPDX-License-Identifier: GPL-2.0+
  2. /*
  3. * Keystone2: DDR3 initialization
  4. *
  5. * (C) Copyright 2014-2015
  6. * Texas Instruments Incorporated, <www.ti.com>
  7. */
  8. #include <common.h>
  9. #include "ddr3_cfg.h"
  10. #include <asm/arch/ddr3.h>
  11. static struct pll_init_data ddr3_400 = DDR3_PLL_400;
  12. static struct pll_init_data ddr3_333 = DDR3_PLL_333;
  13. u32 ddr3_init(void)
  14. {
  15. struct ddr3_spd_cb spd_cb;
  16. if (ddr3_get_dimm_params_from_spd(&spd_cb)) {
  17. printf("Sorry, I don't know how to configure DDR3A.\n"
  18. "Bye :(\n");
  19. for (;;)
  20. ;
  21. }
  22. printf("Detected SO-DIMM [%s]\n", spd_cb.dimm_name);
  23. printf("DDR3 speed %d\n", spd_cb.ddrspdclock);
  24. if (spd_cb.ddrspdclock == 1600)
  25. init_pll(&ddr3_400);
  26. else
  27. init_pll(&ddr3_333);
  28. /* Reset DDR3 PHY after PLL enabled */
  29. ddr3_reset_ddrphy();
  30. spd_cb.phy_cfg.zq0cr1 |= 0x10000;
  31. spd_cb.phy_cfg.zq1cr1 |= 0x10000;
  32. spd_cb.phy_cfg.zq2cr1 |= 0x10000;
  33. ddr3_init_ddrphy(KS2_DDR3A_DDRPHYC, &spd_cb.phy_cfg);
  34. ddr3_init_ddremif(KS2_DDR3A_EMIF_CTRL_BASE, &spd_cb.emif_cfg);
  35. printf("DRAM: %d GiB\n", spd_cb.ddr_size_gbyte);
  36. return (u32)spd_cb.ddr_size_gbyte;
  37. }