ddr.c 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  1. /*
  2. * Copyright 2010 Extreme Engineering Solutions, Inc.
  3. * Copyright 2007-2008 Freescale Semiconductor, Inc.
  4. *
  5. * See file CREDITS for list of people who contributed to this
  6. * project.
  7. *
  8. * This program is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU General Public License as
  10. * published by the Free Software Foundation; either version 2 of
  11. * the License, or (at your option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program; if not, write to the Free Software
  20. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  21. * MA 02111-1307 USA
  22. */
  23. #include <common.h>
  24. #include <i2c.h>
  25. #include <asm/fsl_ddr_sdram.h>
  26. #include <asm/fsl_ddr_dimm_params.h>
  27. static void get_spd(ddr3_spd_eeprom_t *spd, unsigned char i2c_address)
  28. {
  29. i2c_read(i2c_address, SPD_EEPROM_OFFSET, 2, (uchar *)spd,
  30. sizeof(ddr3_spd_eeprom_t));
  31. }
  32. void fsl_ddr_get_spd(ddr3_spd_eeprom_t *ctrl_dimms_spd,
  33. unsigned int ctrl_num)
  34. {
  35. unsigned int i;
  36. unsigned int i2c_address = 0;
  37. for (i = 0; i < CONFIG_DIMM_SLOTS_PER_CTLR; i++) {
  38. if (ctrl_num == 0 && i == 0)
  39. i2c_address = SPD_EEPROM_ADDRESS1;
  40. get_spd(&(ctrl_dimms_spd[i]), i2c_address);
  41. }
  42. }
  43. /*
  44. * There are traditionally three board-specific SDRAM timing parameters
  45. * which must be calculated based on the particular PCB artwork. These are:
  46. * 1.) CPO (Read Capture Delay)
  47. * - TIMING_CFG_2 register
  48. * Source: Calculation based on board trace lengths and
  49. * chip-specific internal delays.
  50. * 2.) CLK_ADJUST (Clock and Addr/Cmd alignment control)
  51. * - DDR_SDRAM_CLK_CNTL register
  52. * Source: Signal Integrity Simulations
  53. * 3.) 2T Timing on Addr/Ctl
  54. * - TIMING_CFG_2 register
  55. * Source: Signal Integrity Simulations
  56. * Usually only needed with heavy load/very high speed (>DDR2-800)
  57. *
  58. * ====== XPedite550x DDR3-800 read delay calculations ======
  59. *
  60. * The P2020 processor provides an autoleveling option. Setting CPO to
  61. * 0x1f enables this auto configuration.
  62. */
  63. typedef struct {
  64. unsigned short datarate_mhz_low;
  65. unsigned short datarate_mhz_high;
  66. unsigned char clk_adjust;
  67. unsigned char cpo;
  68. } board_specific_parameters_t;
  69. const board_specific_parameters_t board_specific_parameters[][20] = {
  70. {
  71. /* Controller 0 */
  72. {
  73. /* DDR3-600/667 */
  74. .datarate_mhz_low = 500,
  75. .datarate_mhz_high = 750,
  76. .clk_adjust = 5,
  77. .cpo = 31,
  78. },
  79. {
  80. /* DDR3-800 */
  81. .datarate_mhz_low = 750,
  82. .datarate_mhz_high = 850,
  83. .clk_adjust = 5,
  84. .cpo = 31,
  85. },
  86. },
  87. };
  88. void fsl_ddr_board_options(memctl_options_t *popts,
  89. dimm_params_t *pdimm,
  90. unsigned int ctrl_num)
  91. {
  92. const board_specific_parameters_t *pbsp =
  93. &(board_specific_parameters[ctrl_num][0]);
  94. u32 num_params = sizeof(board_specific_parameters[ctrl_num]) /
  95. sizeof(board_specific_parameters[0][0]);
  96. u32 i;
  97. ulong ddr_freq;
  98. /*
  99. * Set odt_rd_cfg and odt_wr_cfg. If the there is only one dimm in
  100. * that controller, set odt_wr_cfg to 4 for CS0, and 0 to CS1. If
  101. * there are two dimms in the controller, set odt_rd_cfg to 3 and
  102. * odt_wr_cfg to 3 for the even CS, 0 for the odd CS.
  103. */
  104. for (i = 0; i < CONFIG_CHIP_SELECTS_PER_CTRL; i++) {
  105. if (i&1) { /* odd CS */
  106. popts->cs_local_opts[i].odt_rd_cfg = 0;
  107. popts->cs_local_opts[i].odt_wr_cfg = 0;
  108. } else { /* even CS */
  109. if (CONFIG_DIMM_SLOTS_PER_CTLR == 1) {
  110. popts->cs_local_opts[i].odt_rd_cfg = 0;
  111. popts->cs_local_opts[i].odt_wr_cfg = 4;
  112. } else if (CONFIG_DIMM_SLOTS_PER_CTLR == 2) {
  113. popts->cs_local_opts[i].odt_rd_cfg = 3;
  114. popts->cs_local_opts[i].odt_wr_cfg = 3;
  115. }
  116. }
  117. }
  118. /*
  119. * Get clk_adjust, cpo, write_data_delay,2T, according to the board ddr
  120. * freqency and n_banks specified in board_specific_parameters table.
  121. */
  122. ddr_freq = get_ddr_freq(0) / 1000000;
  123. for (i = 0; i < num_params; i++) {
  124. if (ddr_freq >= pbsp->datarate_mhz_low &&
  125. ddr_freq <= pbsp->datarate_mhz_high) {
  126. popts->clk_adjust = pbsp->clk_adjust;
  127. popts->cpo_override = pbsp->cpo;
  128. popts->twoT_en = 0;
  129. }
  130. pbsp++;
  131. }
  132. /*
  133. * Factors to consider for half-strength driver enable:
  134. * - number of DIMMs installed
  135. */
  136. popts->half_strength_driver_enable = 0;
  137. /*
  138. * Enable on-die termination.
  139. * From the Micron Technical Node TN-41-04, RTT_Nom should typically
  140. * be 30 to 40 ohms, while RTT_WR should be 120 ohms. Setting RTT_WR
  141. * is handled in the Freescale DDR3 driver. Set RTT_Nom here.
  142. */
  143. popts->rtt_override = 1;
  144. popts->rtt_override_value = 3;
  145. }