ddr.c 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  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. static void get_spd(ddr2_spd_eeprom_t *spd, unsigned char i2c_address)
  12. {
  13. i2c_read(i2c_address, 0, 1, (uchar *)spd, sizeof(ddr2_spd_eeprom_t));
  14. }
  15. unsigned int fsl_ddr_get_mem_data_rate(void)
  16. {
  17. return get_ddr_freq(0);
  18. }
  19. void fsl_ddr_get_spd(ddr2_spd_eeprom_t *ctrl_dimms_spd,
  20. unsigned int ctrl_num)
  21. {
  22. unsigned int i;
  23. unsigned int i2c_address = 0;
  24. for (i = 0; i < CONFIG_DIMM_SLOTS_PER_CTLR; i++) {
  25. if (ctrl_num == 0 && i == 0) {
  26. i2c_address = SPD_EEPROM_ADDRESS1;
  27. }
  28. if (ctrl_num == 1 && i == 0) {
  29. i2c_address = SPD_EEPROM_ADDRESS2;
  30. }
  31. get_spd(&(ctrl_dimms_spd[i]), i2c_address);
  32. }
  33. }
  34. void fsl_ddr_board_options(memctl_options_t *popts, unsigned int ctrl_num)
  35. {
  36. /*
  37. * Factors to consider for clock adjust:
  38. * - number of chips on bus
  39. * - position of slot
  40. * - DDR1 vs. DDR2?
  41. * - ???
  42. *
  43. * This needs to be determined on a board-by-board basis.
  44. * 0110 3/4 cycle late
  45. * 0111 7/8 cycle late
  46. */
  47. popts->clk_adjust = 7;
  48. /*
  49. * Factors to consider for CPO:
  50. * - frequency
  51. * - ddr1 vs. ddr2
  52. */
  53. popts->cpo_override = 10;
  54. /*
  55. * Factors to consider for write data delay:
  56. * - number of DIMMs
  57. *
  58. * 1 = 1/4 clock delay
  59. * 2 = 1/2 clock delay
  60. * 3 = 3/4 clock delay
  61. * 4 = 1 clock delay
  62. * 5 = 5/4 clock delay
  63. * 6 = 3/2 clock delay
  64. */
  65. popts->write_data_delay = 5;
  66. /*
  67. * Factors to consider for half-strength driver enable:
  68. * - number of DIMMs installed
  69. */
  70. popts->half_strength_driver_enable = 0;
  71. }