ddr.c 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168
  1. /*
  2. * Copyright 2008 Freescale Semiconductor, Inc.
  3. *
  4. * This program is free software; you can redistribute it and/or
  5. * modify it under the terms of the GNU General Public License
  6. * Version 2 as published by the Free Software Foundation.
  7. */
  8. #include <common.h>
  9. #include <asm/fsl_ddr_sdram.h>
  10. #include <asm/fsl_ddr_dimm_params.h>
  11. typedef struct {
  12. u32 datarate_mhz_low;
  13. u32 datarate_mhz_high;
  14. u32 n_ranks;
  15. u32 clk_adjust;
  16. u32 cpo;
  17. u32 write_data_delay;
  18. u32 force_2T;
  19. } board_specific_parameters_t;
  20. /*
  21. * CPO value doesn't matter if workaround for errata 111 and 134 enabled.
  22. *
  23. * For DDR2 DIMM, all combinations of clk_adjust and write_data_delay have been
  24. * tested. For RDIMM, clk_adjust = 4 and write_data_delay = 3 is optimized for
  25. * all clocks from 400MT/s to 800MT/s, verified with Kingston KVR800D2D8P6/2G.
  26. * For UDIMM, clk_adjust = 8 and write_delay = 5 is optimized for all clocks
  27. * from 400MT/s to 800MT/s, verified with Micron MT18HTF25672AY-800E1.
  28. */
  29. const board_specific_parameters_t board_specific_parameters_udimm[][20] = {
  30. {
  31. /*
  32. * memory controller 0
  33. * lo| hi| num| clk| cpo|wrdata|2T
  34. * mhz| mhz|ranks|adjst| | delay|
  35. */
  36. { 0, 333, 2, 8, 7, 5, 0},
  37. {334, 400, 2, 8, 9, 5, 0},
  38. {401, 549, 2, 8, 11, 5, 0},
  39. {550, 680, 2, 8, 10, 5, 0},
  40. {681, 850, 2, 8, 12, 5, 1},
  41. { 0, 333, 1, 6, 7, 3, 0},
  42. {334, 400, 1, 6, 9, 3, 0},
  43. {401, 549, 1, 6, 11, 3, 0},
  44. {550, 680, 1, 1, 10, 5, 0},
  45. {681, 850, 1, 1, 12, 5, 0}
  46. },
  47. {
  48. /*
  49. * memory controller 1
  50. * lo| hi| num| clk| cpo|wrdata|2T
  51. * mhz| mhz|ranks|adjst| | delay|
  52. */
  53. { 0, 333, 2, 8, 7, 5, 0},
  54. {334, 400, 2, 8, 9, 5, 0},
  55. {401, 549, 2, 8, 11, 5, 0},
  56. {550, 680, 2, 8, 11, 5, 0},
  57. {681, 850, 2, 8, 13, 5, 1},
  58. { 0, 333, 1, 6, 7, 3, 0},
  59. {334, 400, 1, 6, 9, 3, 0},
  60. {401, 549, 1, 6, 11, 3, 0},
  61. {550, 680, 1, 1, 11, 6, 0},
  62. {681, 850, 1, 1, 13, 6, 0}
  63. }
  64. };
  65. const board_specific_parameters_t board_specific_parameters_rdimm[][20] = {
  66. {
  67. /*
  68. * memory controller 0
  69. * lo| hi| num| clk| cpo|wrdata|2T
  70. * mhz| mhz|ranks|adjst| | delay|
  71. */
  72. { 0, 333, 2, 4, 7, 3, 0},
  73. {334, 400, 2, 4, 9, 3, 0},
  74. {401, 549, 2, 4, 11, 3, 0},
  75. {550, 680, 2, 4, 10, 3, 0},
  76. {681, 850, 2, 4, 12, 3, 1},
  77. },
  78. {
  79. /*
  80. * memory controller 1
  81. * lo| hi| num| clk| cpo|wrdata|2T
  82. * mhz| mhz|ranks|adjst| | delay|
  83. */
  84. { 0, 333, 2, 4, 7, 3, 0},
  85. {334, 400, 2, 4, 9, 3, 0},
  86. {401, 549, 2, 4, 11, 3, 0},
  87. {550, 680, 2, 4, 11, 3, 0},
  88. {681, 850, 2, 4, 13, 3, 1},
  89. }
  90. };
  91. void fsl_ddr_board_options(memctl_options_t *popts,
  92. dimm_params_t *pdimm,
  93. unsigned int ctrl_num)
  94. {
  95. const board_specific_parameters_t *pbsp;
  96. u32 num_params;
  97. u32 i;
  98. ulong ddr_freq;
  99. int matched = 0;
  100. if (!pdimm->n_ranks)
  101. return;
  102. if (popts->registered_dimm_en) {
  103. pbsp = &(board_specific_parameters_rdimm[ctrl_num][0]);
  104. num_params = sizeof(board_specific_parameters_rdimm[ctrl_num]) /
  105. sizeof(board_specific_parameters_rdimm[0][0]);
  106. } else {
  107. pbsp = &(board_specific_parameters_udimm[ctrl_num][0]);
  108. num_params = sizeof(board_specific_parameters_udimm[ctrl_num]) /
  109. sizeof(board_specific_parameters_udimm[0][0]);
  110. }
  111. /* set odt_rd_cfg and odt_wr_cfg. If the there is only one dimm in
  112. * that controller, set odt_wr_cfg to 4 for CS0, and 0 to CS1. If
  113. * there are two dimms in the controller, set odt_rd_cfg to 3 and
  114. * odt_wr_cfg to 3 for the even CS, 0 for the odd CS.
  115. */
  116. for (i = 0; i < CONFIG_CHIP_SELECTS_PER_CTRL; i++) {
  117. if (i&1) { /* odd CS */
  118. popts->cs_local_opts[i].odt_rd_cfg = 0;
  119. popts->cs_local_opts[i].odt_wr_cfg = 0;
  120. } else { /* even CS */
  121. if (CONFIG_DIMM_SLOTS_PER_CTLR == 1) {
  122. popts->cs_local_opts[i].odt_rd_cfg = 0;
  123. popts->cs_local_opts[i].odt_wr_cfg = 4;
  124. } else if (CONFIG_DIMM_SLOTS_PER_CTLR == 2) {
  125. popts->cs_local_opts[i].odt_rd_cfg = 3;
  126. popts->cs_local_opts[i].odt_wr_cfg = 3;
  127. }
  128. }
  129. }
  130. /* Get clk_adjust, cpo, write_data_delay,2T, according to the board ddr
  131. * freqency and n_banks specified in board_specific_parameters table.
  132. */
  133. ddr_freq = get_ddr_freq(0) / 1000000;
  134. for (i = 0; i < num_params; i++) {
  135. if (ddr_freq >= pbsp->datarate_mhz_low &&
  136. ddr_freq <= pbsp->datarate_mhz_high &&
  137. pdimm->n_ranks == pbsp->n_ranks) {
  138. popts->clk_adjust = pbsp->clk_adjust;
  139. popts->cpo_override = pbsp->cpo;
  140. popts->write_data_delay = pbsp->write_data_delay;
  141. popts->twoT_en = pbsp->force_2T;
  142. matched = 1;
  143. break;
  144. }
  145. pbsp++;
  146. }
  147. if (!matched)
  148. printf("Warning: board specific timing not found!\n");
  149. /*
  150. * Factors to consider for half-strength driver enable:
  151. * - number of DIMMs installed
  152. */
  153. popts->half_strength_driver_enable = 0;
  154. }