ddr2_fixed.c 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. /*
  2. * (C) Copyright 2008
  3. * Stefan Roese, DENX Software Engineering, sr@denx.de.
  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 <ppc4xx.h>
  25. #include <asm/io.h>
  26. #include <asm/processor.h>
  27. static void wait_init_complete(void)
  28. {
  29. u32 val;
  30. do {
  31. mfsdram(SDRAM_MCSTAT, val);
  32. } while (!(val & 0x80000000));
  33. }
  34. long int initdram(int board_type)
  35. {
  36. /*
  37. * Reset the DDR-SDRAM controller.
  38. */
  39. mtsdr(SDR0_SRST, (0x80000000 >> 10));
  40. mtsdr(SDR0_SRST, 0x00000000);
  41. /*
  42. * These values are cloned from a running NOR booting
  43. * Canyonlands with SPD-DDR2 detection and calibration
  44. * enabled. This will only work for the same memory
  45. * configuration as used here:
  46. *
  47. * Crucial CT6464AC667.8FB - 512MB SO-DIMM
  48. *
  49. */
  50. mtsdram(SDRAM_MCOPT2, 0x00000000);
  51. mtsdram(SDRAM_MCOPT1, 0x05122000);
  52. mtsdram(SDRAM_MODT0, 0x01000000);
  53. mtsdram(SDRAM_CODT, 0x02800021);
  54. mtsdram(SDRAM_WRDTR, 0x82000823);
  55. mtsdram(SDRAM_CLKTR, 0x40000000);
  56. mtsdram(SDRAM_MB0CF, 0x00000201);
  57. mtsdram(SDRAM_MB1CF, 0x00000201);
  58. mtsdram(SDRAM_RTR, 0x06180000);
  59. mtsdram(SDRAM_SDTR1, 0x80201000);
  60. mtsdram(SDRAM_SDTR2, 0x42103243);
  61. mtsdram(SDRAM_SDTR3, 0x0A0D0D16);
  62. mtsdram(SDRAM_MMODE, 0x00000632);
  63. mtsdram(SDRAM_MEMODE, 0x00000040);
  64. mtsdram(SDRAM_INITPLR0, 0xB5380000);
  65. mtsdram(SDRAM_INITPLR1, 0x82100400);
  66. mtsdram(SDRAM_INITPLR2, 0x80820000);
  67. mtsdram(SDRAM_INITPLR3, 0x80830000);
  68. mtsdram(SDRAM_INITPLR4, 0x80810040);
  69. mtsdram(SDRAM_INITPLR5, 0x80800532);
  70. mtsdram(SDRAM_INITPLR6, 0x82100400);
  71. mtsdram(SDRAM_INITPLR7, 0x8A080000);
  72. mtsdram(SDRAM_INITPLR8, 0x8A080000);
  73. mtsdram(SDRAM_INITPLR9, 0x8A080000);
  74. mtsdram(SDRAM_INITPLR10, 0x8A080000);
  75. mtsdram(SDRAM_INITPLR11, 0x80000432);
  76. mtsdram(SDRAM_INITPLR12, 0x808103C0);
  77. mtsdram(SDRAM_INITPLR13, 0x80810040);
  78. mtsdram(SDRAM_INITPLR14, 0x00000000);
  79. mtsdram(SDRAM_INITPLR15, 0x00000000);
  80. mtsdram(SDRAM_MCOPT2, 0x28000000);
  81. wait_init_complete();
  82. mtdcr(SDRAM_R0BAS, 0x0000F800); /* MQ0_B0BAS */
  83. mtdcr(SDRAM_R1BAS, 0x0400F800); /* MQ0_B1BAS */
  84. mtsdram(SDRAM_RDCC, 0x40000000);
  85. mtsdram(SDRAM_RQDC, 0x80000038);
  86. mtsdram(SDRAM_RFDC, 0x00000257);
  87. return CFG_MBYTES_SDRAM << 20;
  88. }