ddr.c 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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(ddr1_spd_eeprom_t *spd, unsigned char i2c_address)
  14. {
  15. i2c_read(i2c_address, 0, 1, (uchar *)spd, sizeof(ddr1_spd_eeprom_t));
  16. }
  17. unsigned int
  18. fsl_ddr_get_mem_data_rate(void)
  19. {
  20. return get_ddr_freq(0);
  21. }
  22. void
  23. fsl_ddr_get_spd(ddr1_spd_eeprom_t *ctrl_dimms_spd,
  24. unsigned int ctrl_num)
  25. {
  26. unsigned int i;
  27. unsigned int i2c_address = 0;
  28. for (i = 0; i < CONFIG_DIMM_SLOTS_PER_CTLR; i++) {
  29. if (ctrl_num == 0 && i == 0) {
  30. i2c_address = SPD_EEPROM_ADDRESS;
  31. }
  32. get_spd(&(ctrl_dimms_spd[i]), i2c_address);
  33. }
  34. }
  35. void fsl_ddr_board_options(memctl_options_t *popts,
  36. dimm_params_t *pdimm,
  37. unsigned int ctrl_num)
  38. {
  39. /*
  40. * Factors to consider for CPO:
  41. * - frequency
  42. * - ddr1 vs. ddr2
  43. */
  44. popts->cpo_override = 0;
  45. /*
  46. * Factors to consider for write data delay:
  47. * - number of DIMMs
  48. *
  49. * 1 = 1/4 clock delay
  50. * 2 = 1/2 clock delay
  51. * 3 = 3/4 clock delay
  52. * 4 = 1 clock delay
  53. * 5 = 5/4 clock delay
  54. * 6 = 3/2 clock delay
  55. */
  56. popts->write_data_delay = 3;
  57. /*
  58. * Factors to consider for half-strength driver enable:
  59. * - number of DIMMs installed
  60. */
  61. popts->half_strength_driver_enable = 0;
  62. }