ddrphy-ld4.c 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. /*
  2. * Copyright (C) 2014 Panasonic Corporation
  3. * Copyright (C) 2015-2016 Socionext Inc.
  4. *
  5. * SPDX-License-Identifier: GPL-2.0+
  6. */
  7. #include <common.h>
  8. #include <linux/err.h>
  9. #include <linux/io.h>
  10. #include "ddrphy-init.h"
  11. #include "ddrphy-regs.h"
  12. enum dram_freq {
  13. DRAM_FREQ_1333M,
  14. DRAM_FREQ_1600M,
  15. DRAM_FREQ_NR,
  16. };
  17. static u32 ddrphy_ptr0[DRAM_FREQ_NR] = {0x0a806844, 0x0c807d04};
  18. static u32 ddrphy_ptr1[DRAM_FREQ_NR] = {0x208e0124, 0x2710015E};
  19. static u32 ddrphy_ptr3[DRAM_FREQ_NR] = {0x0f051616, 0x12061A80};
  20. static u32 ddrphy_ptr4[DRAM_FREQ_NR] = {0x06ae08d6, 0x08027100};
  21. static u32 ddrphy_dtpr0[DRAM_FREQ_NR] = {0x85589955, 0x999cbb66};
  22. static u32 ddrphy_dtpr1[DRAM_FREQ_NR] = {0x1a8363c0, 0x1a878400};
  23. static u32 ddrphy_dtpr2[DRAM_FREQ_NR] = {0x5002c200, 0xa00214f8};
  24. static u32 ddrphy_mr0[DRAM_FREQ_NR] = {0x00000b51, 0x00000d71};
  25. static u32 ddrphy_mr2[DRAM_FREQ_NR] = {0x00000290, 0x00000298};
  26. int uniphier_ld4_ddrphy_init(void __iomem *phy_base, int freq, bool ddr3plus)
  27. {
  28. enum dram_freq freq_e;
  29. u32 tmp;
  30. switch (freq) {
  31. case 1333:
  32. freq_e = DRAM_FREQ_1333M;
  33. break;
  34. case 1600:
  35. freq_e = DRAM_FREQ_1600M;
  36. break;
  37. default:
  38. printf("unsupported DRAM frequency %d MHz\n", freq);
  39. return -EINVAL;
  40. }
  41. writel(0x0300c473, phy_base + PHY_PGCR1);
  42. writel(ddrphy_ptr0[freq_e], phy_base + PHY_PTR0);
  43. writel(ddrphy_ptr1[freq_e], phy_base + PHY_PTR1);
  44. writel(0x00083DEF, phy_base + PHY_PTR2);
  45. writel(ddrphy_ptr3[freq_e], phy_base + PHY_PTR3);
  46. writel(ddrphy_ptr4[freq_e], phy_base + PHY_PTR4);
  47. writel(0xF004001A, phy_base + PHY_DSGCR);
  48. /* change the value of the on-die pull-up/pull-down registors */
  49. tmp = readl(phy_base + PHY_DXCCR);
  50. tmp &= ~0x0ee0;
  51. tmp |= PHY_DXCCR_DQSNRES_688_OHM | PHY_DXCCR_DQSRES_688_OHM;
  52. writel(tmp, phy_base + PHY_DXCCR);
  53. writel(0x0000040B, phy_base + PHY_DCR);
  54. writel(ddrphy_dtpr0[freq_e], phy_base + PHY_DTPR0);
  55. writel(ddrphy_dtpr1[freq_e], phy_base + PHY_DTPR1);
  56. writel(ddrphy_dtpr2[freq_e], phy_base + PHY_DTPR2);
  57. writel(ddrphy_mr0[freq_e], phy_base + PHY_MR0);
  58. writel(0x00000006, phy_base + PHY_MR1);
  59. writel(ddrphy_mr2[freq_e], phy_base + PHY_MR2);
  60. writel(ddr3plus ? 0x00000800 : 0x00000000, phy_base + PHY_MR3);
  61. while (!(readl(phy_base + PHY_PGSR0) & PHY_PGSR0_IDONE))
  62. ;
  63. writel(0x0300C473, phy_base + PHY_PGCR1);
  64. writel(0x0000005D, phy_base + PHY_ZQ_BASE + PHY_ZQ_CR1);
  65. return 0;
  66. }