ddr.c 2.0 KB

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