m5275evb.c 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. /*
  2. * (C) Copyright 2000-2003
  3. * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
  4. *
  5. * Copyright (C) 2005-2008 Arthur Shipkowski (art@videon-central.com)
  6. *
  7. * Copyright (C) 2012 Freescale Semiconductor, Inc. All Rights Reserved.
  8. *
  9. * See file CREDITS for list of people who contributed to this
  10. * project.
  11. *
  12. * This program is free software; you can redistribute it and/or
  13. * modify it under the terms of the GNU General Public License as
  14. * published by the Free Software Foundation; either version 2 of
  15. * the License, or (at your option) any later version.
  16. *
  17. * This program is distributed in the hope that it will be useful,
  18. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  19. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  20. * GNU General Public License for more details.
  21. *
  22. * You should have received a copy of the GNU General Public License
  23. * along with this program; if not, write to the Free Software
  24. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  25. * MA 02111-1307 USA
  26. */
  27. #include <common.h>
  28. #include <asm/immap.h>
  29. #include <asm/io.h>
  30. #define PERIOD 13 /* system bus period in ns */
  31. #define SDRAM_TREFI 7800 /* in ns */
  32. int checkboard(void)
  33. {
  34. puts("Board: ");
  35. puts("Freescale MCF5275 EVB\n");
  36. return 0;
  37. };
  38. phys_size_t initdram(int board_type)
  39. {
  40. sdramctrl_t *sdp = (sdramctrl_t *)(MMAP_SDRAM);
  41. gpio_t *gpio_reg = (gpio_t *)(MMAP_GPIO);
  42. /* Enable SDRAM */
  43. out_be16(&gpio_reg->par_sdram, 0x3FF);
  44. /* Set up chip select */
  45. out_be32(&sdp->sdbar0, CONFIG_SYS_SDRAM_BASE);
  46. out_be32(&sdp->sdbmr0, MCF_SDRAMC_SDMRn_BAM_32M | MCF_SDRAMC_SDMRn_V);
  47. /* Set up timing */
  48. out_be32(&sdp->sdcfg1, 0x83711630);
  49. out_be32(&sdp->sdcfg2, 0x46770000);
  50. /* Enable clock */
  51. out_be32(&sdp->sdcr, MCF_SDRAMC_SDCR_MODE_EN | MCF_SDRAMC_SDCR_CKE);
  52. /* Set precharge */
  53. setbits_be32(&sdp->sdcr, MCF_SDRAMC_SDCR_IPALL);
  54. /* Dummy write to start SDRAM */
  55. *((volatile unsigned long *)CONFIG_SYS_SDRAM_BASE) = 0xa5a59696;
  56. /* Send LEMR */
  57. setbits_be32(&sdp->sdmr,
  58. MCF_SDRAMC_SDMR_BNKAD_LEMR | MCF_SDRAMC_SDMR_AD(0x0) |
  59. MCF_SDRAMC_SDMR_CMD);
  60. *((volatile unsigned long *)CONFIG_SYS_SDRAM_BASE) = 0xa5a59696;
  61. /* Send LMR */
  62. out_be32(&sdp->sdmr, 0x058d0000);
  63. *((volatile unsigned long *)CONFIG_SYS_SDRAM_BASE) = 0xa5a59696;
  64. /* Stop sending commands */
  65. clrbits_be32(&sdp->sdmr, MCF_SDRAMC_SDMR_CMD);
  66. /* Set precharge */
  67. setbits_be32(&sdp->sdcr, MCF_SDRAMC_SDCR_IPALL);
  68. *((volatile unsigned long *)CONFIG_SYS_SDRAM_BASE) = 0xa5a59696;
  69. /* Stop manual precharge, send 2 IREF */
  70. clrbits_be32(&sdp->sdcr, MCF_SDRAMC_SDCR_IPALL);
  71. setbits_be32(&sdp->sdcr, MCF_SDRAMC_SDCR_IREF);
  72. *((volatile unsigned long *)CONFIG_SYS_SDRAM_BASE) = 0xa5a59696;
  73. *((volatile unsigned long *)CONFIG_SYS_SDRAM_BASE) = 0xa5a59696;
  74. out_be32(&sdp->sdmr, 0x018d0000);
  75. *((volatile unsigned long *)CONFIG_SYS_SDRAM_BASE) = 0xa5a59696;
  76. /* Stop sending commands */
  77. clrbits_be32(&sdp->sdmr, MCF_SDRAMC_SDMR_CMD);
  78. clrbits_be32(&sdp->sdcr, MCF_SDRAMC_SDCR_MODE_EN);
  79. /* Turn on auto refresh, lock SDMR */
  80. out_be32(&sdp->sdcr,
  81. MCF_SDRAMC_SDCR_CKE
  82. | MCF_SDRAMC_SDCR_REF
  83. | MCF_SDRAMC_SDCR_MUX(1)
  84. /* 1 added to round up */
  85. | MCF_SDRAMC_SDCR_RCNT((SDRAM_TREFI/(PERIOD*64)) - 1 + 1)
  86. | MCF_SDRAMC_SDCR_DQS_OE(0x3));
  87. return CONFIG_SYS_SDRAM_SIZE * 1024 * 1024;
  88. };
  89. int testdram(void)
  90. {
  91. /* TODO: XXX XXX XXX */
  92. printf("DRAM test not implemented!\n");
  93. return (0);
  94. }