amcore.c 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. /*
  2. * Board functions for Sysam AMCORE (MCF5307 based) board
  3. *
  4. * (C) Copyright 2015 Angelo Dureghello <angelo@sysam.it>
  5. *
  6. * SPDX-License-Identifier: GPL-2.0+
  7. *
  8. * This file copies memory testdram() from sandburst/common/sb_common.c
  9. */
  10. #include <common.h>
  11. #include <asm/immap.h>
  12. #include <asm/io.h>
  13. void init_lcd(void)
  14. {
  15. /* setup for possible K0108 lcd connected on the parallel port */
  16. sim_t *sim = (sim_t *)(MMAP_SIM);
  17. out_be16(&sim->par, 0x300);
  18. gpio_t *gpio = (gpio_t *)(MMAP_GPIO);
  19. out_be16(&gpio->paddr, 0xfcff);
  20. out_be16(&gpio->padat, 0x0c00);
  21. }
  22. int checkboard(void)
  23. {
  24. puts("Board: ");
  25. puts("AMCORE v.001(alpha)\n");
  26. init_lcd();
  27. return 0;
  28. }
  29. /*
  30. * in initdram we are here executing from flash
  31. * case 1:
  32. * is with no ACR/flash cache enabled
  33. * nop = 40ns (scope measured)
  34. */
  35. void fudelay(int usec)
  36. {
  37. while (usec--)
  38. asm volatile ("nop");
  39. }
  40. phys_size_t initdram(int board_type)
  41. {
  42. u32 dramsize, RC;
  43. sdramctrl_t *dc = (sdramctrl_t *)(MMAP_DRAMC);
  44. /*
  45. * SDRAM MT48LC4M32B2 details
  46. * Memory block 0: 16 MB of SDRAM at address $00000000
  47. * Port size: 32-bit port
  48. *
  49. * Memory block 0 wired as follows:
  50. * CPU : A15 A14 A13 A12 A11 A10 A9 A17 A18 A19 A20 A21 A22 A23
  51. * SDRAM : A0 A1 A2 A3 A4 A5 A6 A7 A8 A9 A10 A11 BA0 BA1
  52. *
  53. * Ensure that there is a delay of at least 100 microseconds from
  54. * processor reset to the following code so that the SDRAM is ready
  55. * for commands.
  56. */
  57. fudelay(100);
  58. /*
  59. * DCR
  60. * set proper RC as per specification
  61. */
  62. RC = (CONFIG_SYS_CPU_CLK / 1000000) >> 1;
  63. RC = (RC * 15) >> 4;
  64. /* 0x8000 is the faster option */
  65. out_be16(&dc->dcr, 0x8200 | RC);
  66. /*
  67. * DACR0, page mode continuous, CMD on A20 0x0300
  68. */
  69. out_be32(&dc->dacr0, 0x00003304);
  70. dramsize = ((CONFIG_SYS_SDRAM_SIZE)-1) & 0xfffc0000;
  71. out_be32(&dc->dmr0, dramsize|1);
  72. /* issue a PRECHARGE ALL */
  73. out_be32(&dc->dacr0, 0x0000330c);
  74. out_be32((u32 *)0x00000004, 0xbeaddeed);
  75. /* issue AUTOREFRESH */
  76. out_be32(&dc->dacr0, 0x0000b304);
  77. /* let refresh occour */
  78. fudelay(1);
  79. out_be32(&dc->dacr0, 0x0000b344);
  80. out_be32((u32 *)0x00000c00, 0xbeaddeed);
  81. return get_ram_size(CONFIG_SYS_SDRAM_BASE, CONFIG_SYS_SDRAM_SIZE);
  82. }