ddr.c 5.5 KB

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