sdram.c 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. /*
  2. * Copyright (c) 2011 The Chromium OS Authors.
  3. * (C) Copyright 2010,2011
  4. * Graeme Russ, <graeme.russ@gmail.com>
  5. *
  6. * See file CREDITS for list of people who contributed to this
  7. * project.
  8. *
  9. * This program is free software; you can redistribute it and/or
  10. * modify it under the terms of the GNU General Public License as
  11. * published by the Free Software Foundation; either version 2 of
  12. * the License, or (at your option) any later version.
  13. *
  14. * This program is distributed in the hope that it will be useful,
  15. * but without any warranty; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. * GNU General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU General Public License
  20. * along with this program; if not, write to the Free Software
  21. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  22. * MA 02111-1307 USA
  23. */
  24. #include <common.h>
  25. #include <malloc.h>
  26. #include <asm/e820.h>
  27. #include <asm/u-boot-x86.h>
  28. #include <asm/global_data.h>
  29. #include <asm/processor.h>
  30. #include <asm/arch/sysinfo.h>
  31. #include <asm/arch/tables.h>
  32. DECLARE_GLOBAL_DATA_PTR;
  33. unsigned install_e820_map(unsigned max_entries, struct e820entry *entries)
  34. {
  35. int i;
  36. unsigned num_entries = min(lib_sysinfo.n_memranges, max_entries);
  37. if (num_entries < lib_sysinfo.n_memranges) {
  38. printf("Warning: Limiting e820 map to %d entries.\n",
  39. num_entries);
  40. }
  41. for (i = 0; i < num_entries; i++) {
  42. struct memrange *memrange = &lib_sysinfo.memrange[i];
  43. entries[i].addr = memrange->base;
  44. entries[i].size = memrange->size;
  45. entries[i].type = memrange->type;
  46. }
  47. return num_entries;
  48. }
  49. /*
  50. * This function looks for the highest region of memory lower than 4GB which
  51. * has enough space for U-Boot where U-Boot is aligned on a page boundary. It
  52. * overrides the default implementation found elsewhere which simply picks the
  53. * end of ram, wherever that may be. The location of the stack, the relocation
  54. * address, and how far U-Boot is moved by relocation are set in the global
  55. * data structure.
  56. */
  57. int calculate_relocation_address(void)
  58. {
  59. const uint64_t uboot_size = (uintptr_t)&__bss_end -
  60. (uintptr_t)&__text_start;
  61. const uint64_t total_size = uboot_size + CONFIG_SYS_MALLOC_LEN +
  62. CONFIG_SYS_STACK_SIZE;
  63. uintptr_t dest_addr = 0;
  64. int i;
  65. for (i = 0; i < lib_sysinfo.n_memranges; i++) {
  66. struct memrange *memrange = &lib_sysinfo.memrange[i];
  67. /* Force U-Boot to relocate to a page aligned address. */
  68. uint64_t start = roundup(memrange->base, 1 << 12);
  69. uint64_t end = memrange->base + memrange->size;
  70. /* Ignore non-memory regions. */
  71. if (memrange->type != CB_MEM_RAM)
  72. continue;
  73. /* Filter memory over 4GB. */
  74. if (end > 0xffffffffULL)
  75. end = 0x100000000ULL;
  76. /* Skip this region if it's too small. */
  77. if (end - start < total_size)
  78. continue;
  79. /* Use this address if it's the largest so far. */
  80. if (end - uboot_size > dest_addr)
  81. dest_addr = end;
  82. }
  83. /* If no suitable area was found, return an error. */
  84. if (!dest_addr)
  85. return 1;
  86. dest_addr -= uboot_size;
  87. dest_addr &= ~((1 << 12) - 1);
  88. gd->relocaddr = dest_addr;
  89. gd->reloc_off = dest_addr - (uintptr_t)&__text_start;
  90. gd->start_addr_sp = dest_addr - CONFIG_SYS_MALLOC_LEN;
  91. return 0;
  92. }
  93. int dram_init_f(void)
  94. {
  95. int i;
  96. phys_size_t ram_size = 0;
  97. for (i = 0; i < lib_sysinfo.n_memranges; i++) {
  98. struct memrange *memrange = &lib_sysinfo.memrange[i];
  99. unsigned long long end = memrange->base + memrange->size;
  100. if (memrange->type == CB_MEM_RAM && end > ram_size)
  101. ram_size = end;
  102. }
  103. gd->ram_size = ram_size;
  104. if (ram_size == 0)
  105. return -1;
  106. return 0;
  107. }
  108. int dram_init(void)
  109. {
  110. int i, j;
  111. if (CONFIG_NR_DRAM_BANKS) {
  112. for (i = 0, j = 0; i < lib_sysinfo.n_memranges; i++) {
  113. struct memrange *memrange = &lib_sysinfo.memrange[i];
  114. if (memrange->type == CB_MEM_RAM) {
  115. gd->bd->bi_dram[j].start = memrange->base;
  116. gd->bd->bi_dram[j].size = memrange->size;
  117. j++;
  118. if (j >= CONFIG_NR_DRAM_BANKS)
  119. break;
  120. }
  121. }
  122. }
  123. return 0;
  124. }