sdram.c 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  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/sections.h>
  31. #include <asm/arch/sysinfo.h>
  32. #include <asm/arch/tables.h>
  33. DECLARE_GLOBAL_DATA_PTR;
  34. unsigned install_e820_map(unsigned max_entries, struct e820entry *entries)
  35. {
  36. int i;
  37. unsigned num_entries = min(lib_sysinfo.n_memranges, max_entries);
  38. if (num_entries < lib_sysinfo.n_memranges) {
  39. printf("Warning: Limiting e820 map to %d entries.\n",
  40. num_entries);
  41. }
  42. for (i = 0; i < num_entries; i++) {
  43. struct memrange *memrange = &lib_sysinfo.memrange[i];
  44. entries[i].addr = memrange->base;
  45. entries[i].size = memrange->size;
  46. entries[i].type = memrange->type;
  47. }
  48. return num_entries;
  49. }
  50. /*
  51. * This function looks for the highest region of memory lower than 4GB which
  52. * has enough space for U-Boot where U-Boot is aligned on a page boundary. It
  53. * overrides the default implementation found elsewhere which simply picks the
  54. * end of ram, wherever that may be. The location of the stack, the relocation
  55. * address, and how far U-Boot is moved by relocation are set in the global
  56. * data structure.
  57. */
  58. ulong board_get_usable_ram_top(ulong total_size)
  59. {
  60. uintptr_t dest_addr = 0;
  61. int i;
  62. for (i = 0; i < lib_sysinfo.n_memranges; i++) {
  63. struct memrange *memrange = &lib_sysinfo.memrange[i];
  64. /* Force U-Boot to relocate to a page aligned address. */
  65. uint64_t start = roundup(memrange->base, 1 << 12);
  66. uint64_t end = memrange->base + memrange->size;
  67. /* Ignore non-memory regions. */
  68. if (memrange->type != CB_MEM_RAM)
  69. continue;
  70. /* Filter memory over 4GB. */
  71. if (end > 0xffffffffULL)
  72. end = 0x100000000ULL;
  73. /* Skip this region if it's too small. */
  74. if (end - start < total_size)
  75. continue;
  76. /* Use this address if it's the largest so far. */
  77. if (end > dest_addr)
  78. dest_addr = end;
  79. }
  80. /* If no suitable area was found, return an error. */
  81. if (!dest_addr)
  82. panic("No available memory found for relocation");
  83. return (ulong)dest_addr;
  84. }
  85. int dram_init_f(void)
  86. {
  87. int i;
  88. phys_size_t ram_size = 0;
  89. for (i = 0; i < lib_sysinfo.n_memranges; i++) {
  90. struct memrange *memrange = &lib_sysinfo.memrange[i];
  91. unsigned long long end = memrange->base + memrange->size;
  92. if (memrange->type == CB_MEM_RAM && end > ram_size)
  93. ram_size = end;
  94. }
  95. gd->ram_size = ram_size;
  96. if (ram_size == 0)
  97. return -1;
  98. return 0;
  99. }
  100. int dram_init_banksize(void)
  101. {
  102. int i, j;
  103. if (CONFIG_NR_DRAM_BANKS) {
  104. for (i = 0, j = 0; i < lib_sysinfo.n_memranges; i++) {
  105. struct memrange *memrange = &lib_sysinfo.memrange[i];
  106. if (memrange->type == CB_MEM_RAM) {
  107. gd->bd->bi_dram[j].start = memrange->base;
  108. gd->bd->bi_dram[j].size = memrange->size;
  109. j++;
  110. if (j >= CONFIG_NR_DRAM_BANKS)
  111. break;
  112. }
  113. }
  114. }
  115. return 0;
  116. }
  117. int dram_init(void)
  118. {
  119. return dram_init_banksize();
  120. }