mx53_dram.c 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. // SPDX-License-Identifier: GPL-2.0+
  2. /*
  3. * Copyright (C) 2017 Beckhoff Automation GmbH & Co. KG
  4. * Patrick Bruenn <p.bruenn@beckhoff.com>
  5. */
  6. #include <common.h>
  7. #include <init.h>
  8. DECLARE_GLOBAL_DATA_PTR;
  9. phys_size_t get_effective_memsize(void)
  10. {
  11. /*
  12. * WARNING: We must override get_effective_memsize() function here
  13. * to report only the size of the first DRAM bank. This is to make
  14. * U-Boot relocator place U-Boot into valid memory, that is, at the
  15. * end of the first DRAM bank. If we did not override this function
  16. * like so, U-Boot would be placed at the address of the first DRAM
  17. * bank + total DRAM size - sizeof(uboot), which in the setup where
  18. * each DRAM bank contains 512MiB of DRAM would result in placing
  19. * U-Boot into invalid memory area close to the end of the first
  20. * DRAM bank.
  21. */
  22. return get_ram_size((void *)PHYS_SDRAM_1, 1 << 30);
  23. }
  24. int dram_init(void)
  25. {
  26. gd->ram_size = get_ram_size((void *)PHYS_SDRAM_1, 1 << 30);
  27. gd->ram_size += get_ram_size((void *)PHYS_SDRAM_2, 1 << 30);
  28. return 0;
  29. }
  30. int dram_init_banksize(void)
  31. {
  32. gd->bd->bi_dram[0].start = PHYS_SDRAM_1;
  33. gd->bd->bi_dram[0].size = get_ram_size((void *)PHYS_SDRAM_1, 1 << 30);
  34. gd->bd->bi_dram[1].start = PHYS_SDRAM_2;
  35. gd->bd->bi_dram[1].size = get_ram_size((void *)PHYS_SDRAM_2, 1 << 30);
  36. return 0;
  37. }