ddr.c 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. /*
  2. * Copyright 2009 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
  13. get_spd(ddr3_spd_eeprom_t *spd, unsigned char i2c_address)
  14. {
  15. i2c_read(i2c_address, 0, 1, (uchar *)spd, sizeof(ddr3_spd_eeprom_t));
  16. }
  17. unsigned int fsl_ddr_get_mem_data_rate(void)
  18. {
  19. return get_ddr_freq(0);
  20. }
  21. void fsl_ddr_get_spd(ddr3_spd_eeprom_t *ctrl_dimms_spd,
  22. unsigned int ctrl_num)
  23. {
  24. unsigned int i;
  25. unsigned int i2c_address = 0;
  26. for (i = 0; i < CONFIG_DIMM_SLOTS_PER_CTLR; i++) {
  27. if (ctrl_num == 0 && i == 0)
  28. i2c_address = SPD_EEPROM_ADDRESS1;
  29. if (ctrl_num == 0 && i == 1)
  30. i2c_address = SPD_EEPROM_ADDRESS2;
  31. get_spd(&(ctrl_dimms_spd[i]), i2c_address);
  32. }
  33. }
  34. void fsl_ddr_board_options(memctl_options_t *popts,
  35. dimm_params_t *pdimm,
  36. unsigned int ctrl_num)
  37. {
  38. /*
  39. * Factors to consider for clock adjust:
  40. * - number of chips on bus
  41. * - position of slot
  42. * - DDR1 vs. DDR2?
  43. * - ???
  44. *
  45. * This needs to be determined on a board-by-board basis.
  46. * 0110 3/4 cycle late
  47. * 0111 7/8 cycle late
  48. */
  49. popts->clk_adjust = 4;
  50. /*
  51. * Factors to consider for CPO:
  52. * - frequency
  53. * - ddr1 vs. ddr2
  54. */
  55. popts->cpo_override = 0xff;
  56. /*
  57. * Factors to consider for write data delay:
  58. * - number of DIMMs
  59. *
  60. * 1 = 1/4 clock delay
  61. * 2 = 1/2 clock delay
  62. * 3 = 3/4 clock delay
  63. * 4 = 1 clock delay
  64. * 5 = 5/4 clock delay
  65. * 6 = 3/2 clock delay
  66. */
  67. popts->write_data_delay = 2;
  68. /*
  69. * Enable half drive strength
  70. */
  71. popts->half_strength_driver_enable = 1;
  72. /* Write leveling override */
  73. popts->wrlvl_en = 1;
  74. popts->wrlvl_override = 1;
  75. popts->wrlvl_sample = 0xa;
  76. popts->wrlvl_start = 0x4;
  77. /* Rtt and Rtt_W override */
  78. popts->rtt_override = 1;
  79. popts->rtt_override_value = DDR3_RTT_60_OHM;
  80. popts->rtt_wr_override_value = 0; /* Rtt_WR= dynamic ODT off */
  81. }