m5249evb.c 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. /*
  2. * (C) Copyright 2004
  3. * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
  4. *
  5. * SPDX-License-Identifier: GPL-2.0+
  6. */
  7. #include <common.h>
  8. #include <command.h>
  9. #include <malloc.h>
  10. #include <asm/immap.h>
  11. int checkboard (void) {
  12. ulong val;
  13. uchar val8;
  14. puts ("Board: ");
  15. puts("Freescale M5249EVB");
  16. val8 = ((uchar)~((uchar)mbar2_readLong(MCFSIM_GPIO1_READ) >> 4)) & 0xf;
  17. printf(" (Switch=%1X)\n", val8);
  18. /*
  19. * Set LED on
  20. */
  21. val = mbar2_readLong(MCFSIM_GPIO1_OUT) & ~CONFIG_SYS_GPIO1_LED;
  22. mbar2_writeLong(MCFSIM_GPIO1_OUT, val); /* Set LED on */
  23. return 0;
  24. };
  25. phys_size_t initdram (int board_type) {
  26. unsigned long junk = 0xa5a59696;
  27. /*
  28. * Note:
  29. * RC = ([(RefreshTime/#rows) / (1/BusClk)] / 16) - 1
  30. */
  31. #ifdef CONFIG_SYS_FAST_CLK
  32. /*
  33. * Busclk=70MHz, RefreshTime=64ms, #rows=4096 (4K)
  34. * SO=1, NAM=0, COC=0, RTIM=01 (6clk refresh), RC=39
  35. */
  36. mbar_writeShort(MCFSIM_DCR, 0x8239);
  37. #elif CONFIG_SYS_PLL_BYPASS
  38. /*
  39. * Busclk=5.6448MHz, RefreshTime=64ms, #rows=8192 (8K)
  40. * SO=1, NAM=0, COC=0, RTIM=01 (6clk refresh), RC=02
  41. */
  42. mbar_writeShort(MCFSIM_DCR, 0x8202);
  43. #else
  44. /*
  45. * Busclk=36MHz, RefreshTime=64ms, #rows=4096 (4K)
  46. * SO=1, NAM=0, COC=0, RTIM=01 (6clk refresh), RC=22 (562 bus clock cycles)
  47. */
  48. mbar_writeShort(MCFSIM_DCR, 0x8222);
  49. #endif
  50. /*
  51. * SDRAM starts at 0x0000_0000, CASL=10, CBM=010, PS=10 (16bit port),
  52. * PM=1 (continuous page mode)
  53. */
  54. /* RE=0 (keep auto-refresh disabled while setting up registers) */
  55. mbar_writeLong(MCFSIM_DACR0, 0x00003324);
  56. /* BAM=007c (bits 22,21 are bank selects; 256kB blocks) */
  57. mbar_writeLong(MCFSIM_DMR0, 0x01fc0001);
  58. /** Precharge sequence **/
  59. mbar_writeLong(MCFSIM_DACR0, 0x0000332c); /* Set DACR0[IP] (bit 3) */
  60. *((volatile unsigned long *) 0x00) = junk; /* write to a memory location to init. precharge */
  61. udelay(0x10); /* Allow several Precharge cycles */
  62. /** Refresh Sequence **/
  63. mbar_writeLong(MCFSIM_DACR0, 0x0000b324); /* Enable the refresh bit, DACR0[RE] (bit 15) */
  64. udelay(0x7d0); /* Allow gobs of refresh cycles */
  65. /** Mode Register initialization **/
  66. mbar_writeLong(MCFSIM_DACR0, 0x0000b364); /* Enable DACR0[IMRS] (bit 6); RE remains enabled */
  67. *((volatile unsigned long *) 0x800) = junk; /* Access RAM to initialize the mode register */
  68. return CONFIG_SYS_SDRAM_SIZE * 1024 * 1024;
  69. };
  70. int testdram (void) {
  71. /* TODO: XXX XXX XXX */
  72. printf ("DRAM test not implemented!\n");
  73. return (0);
  74. }