m5253demo.c 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  1. /*
  2. * (C) Copyright 2000-2003
  3. * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
  4. *
  5. * Copyright (C) 2004-2007 Freescale Semiconductor, Inc.
  6. * Hayden Fraser (Hayden.Fraser@freescale.com)
  7. *
  8. * See file CREDITS for list of people who contributed to this
  9. * project.
  10. *
  11. * This program is free software; you can redistribute it and/or
  12. * modify it under the terms of the GNU General Public License as
  13. * published by the Free Software Foundation; either version 2 of
  14. * the License, or (at your option) any later version.
  15. *
  16. * This program is distributed in the hope that it will be useful,
  17. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  18. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  19. * GNU General Public License for more details.
  20. *
  21. * You should have received a copy of the GNU General Public License
  22. * along with this program; if not, write to the Free Software
  23. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  24. * MA 02111-1307 USA
  25. */
  26. #include <common.h>
  27. #include <asm/immap.h>
  28. #include <netdev.h>
  29. #include <asm/io.h>
  30. int checkboard(void)
  31. {
  32. puts("Board: ");
  33. puts("Freescale MCF5253 DEMO\n");
  34. return 0;
  35. };
  36. phys_size_t initdram(int board_type)
  37. {
  38. u32 dramsize = 0;
  39. /*
  40. * Check to see if the SDRAM has already been initialized
  41. * by a run control tool
  42. */
  43. if (!(mbar_readLong(MCFSIM_DCR) & 0x8000)) {
  44. u32 RC, temp;
  45. RC = (CONFIG_SYS_CLK / 1000000) >> 1;
  46. RC = (RC * 15) >> 4;
  47. /* Initialize DRAM Control Register: DCR */
  48. mbar_writeShort(MCFSIM_DCR, (0x8400 | RC));
  49. __asm__("nop");
  50. mbar_writeLong(MCFSIM_DACR0, 0x00003224);
  51. __asm__("nop");
  52. /* Initialize DMR0 */
  53. dramsize = (CONFIG_SYS_SDRAM_SIZE << 20);
  54. temp = (dramsize - 1) & 0xFFFC0000;
  55. mbar_writeLong(MCFSIM_DMR0, temp | 1);
  56. __asm__("nop");
  57. mbar_writeLong(MCFSIM_DACR0, 0x0000322c);
  58. mb();
  59. __asm__("nop");
  60. /* Write to this block to initiate precharge */
  61. *(u32 *) (CONFIG_SYS_SDRAM_BASE) = 0xa5a5a5a5;
  62. mb();
  63. __asm__("nop");
  64. /* Set RE bit in DACR */
  65. mbar_writeLong(MCFSIM_DACR0,
  66. mbar_readLong(MCFSIM_DACR0) | 0x8000);
  67. __asm__("nop");
  68. /* Wait for at least 8 auto refresh cycles to occur */
  69. udelay(500);
  70. /* Finish the configuration by issuing the MRS */
  71. mbar_writeLong(MCFSIM_DACR0,
  72. mbar_readLong(MCFSIM_DACR0) | 0x0040);
  73. __asm__("nop");
  74. *(u32 *) (CONFIG_SYS_SDRAM_BASE + 0x800) = 0xa5a5a5a5;
  75. mb();
  76. }
  77. return dramsize;
  78. }
  79. int testdram(void)
  80. {
  81. /* TODO: XXX XXX XXX */
  82. printf("DRAM test not implemented!\n");
  83. return (0);
  84. }
  85. #ifdef CONFIG_CMD_IDE
  86. #include <ata.h>
  87. int ide_preinit(void)
  88. {
  89. return (0);
  90. }
  91. void ide_set_reset(int idereset)
  92. {
  93. volatile atac_t *ata = (atac_t *) CONFIG_SYS_ATA_BASE_ADDR;
  94. long period;
  95. /* t1, t2, t3, t4, t5, t6, t9, tRD, tA */
  96. int piotms[5][9] = { {70, 165, 60, 30, 50, 5, 20, 0, 35}, /* PIO 0 */
  97. {50, 125, 45, 20, 35, 5, 15, 0, 35}, /* PIO 1 */
  98. {30, 100, 30, 15, 20, 5, 10, 0, 35}, /* PIO 2 */
  99. {30, 80, 30, 10, 20, 5, 10, 0, 35}, /* PIO 3 */
  100. {25, 70, 20, 10, 20, 5, 10, 0, 35} /* PIO 4 */
  101. };
  102. if (idereset) {
  103. ata->cr = 0; /* control reset */
  104. udelay(100);
  105. } else {
  106. mbar2_writeLong(CIM_MISCCR, CIM_MISCCR_CPUEND);
  107. #define CALC_TIMING(t) (t + period - 1) / period
  108. period = 1000000000 / (CONFIG_SYS_CLK / 2); /* period in ns */
  109. /*ata->ton = CALC_TIMING (180); */
  110. ata->t1 = CALC_TIMING(piotms[2][0]);
  111. ata->t2w = CALC_TIMING(piotms[2][1]);
  112. ata->t2r = CALC_TIMING(piotms[2][1]);
  113. ata->ta = CALC_TIMING(piotms[2][8]);
  114. ata->trd = CALC_TIMING(piotms[2][7]);
  115. ata->t4 = CALC_TIMING(piotms[2][3]);
  116. ata->t9 = CALC_TIMING(piotms[2][6]);
  117. ata->cr = 0x40; /* IORDY enable */
  118. udelay(2000);
  119. ata->cr |= 0x01; /* IORDY enable */
  120. }
  121. }
  122. #endif /* CONFIG_CMD_IDE */
  123. #ifdef CONFIG_DRIVER_DM9000
  124. int board_eth_init(bd_t *bis)
  125. {
  126. return dm9000_initialize(bis);
  127. }
  128. #endif