sdram.c 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  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. ulong board_get_usable_ram_top(ulong total_size)
  58. {
  59. uintptr_t dest_addr = 0;
  60. int i;
  61. for (i = 0; i < lib_sysinfo.n_memranges; i++) {
  62. struct memrange *memrange = &lib_sysinfo.memrange[i];
  63. /* Force U-Boot to relocate to a page aligned address. */
  64. uint64_t start = roundup(memrange->base, 1 << 12);
  65. uint64_t end = memrange->base + memrange->size;
  66. /* Ignore non-memory regions. */
  67. if (memrange->type != CB_MEM_RAM)
  68. continue;
  69. /* Filter memory over 4GB. */
  70. if (end > 0xffffffffULL)
  71. end = 0x100000000ULL;
  72. /* Skip this region if it's too small. */
  73. if (end - start < total_size)
  74. continue;
  75. /* Use this address if it's the largest so far. */
  76. if (end > dest_addr)
  77. dest_addr = end;
  78. }
  79. /* If no suitable area was found, return an error. */
  80. if (!dest_addr)
  81. panic("No available memory found for relocation");
  82. return (ulong)dest_addr;
  83. }
  84. int dram_init_f(void)
  85. {
  86. int i;
  87. phys_size_t ram_size = 0;
  88. for (i = 0; i < lib_sysinfo.n_memranges; i++) {
  89. struct memrange *memrange = &lib_sysinfo.memrange[i];
  90. unsigned long long end = memrange->base + memrange->size;
  91. if (memrange->type == CB_MEM_RAM && end > ram_size)
  92. ram_size = end;
  93. }
  94. gd->ram_size = ram_size;
  95. if (ram_size == 0)
  96. return -1;
  97. return 0;
  98. }
  99. int dram_init(void)
  100. {
  101. int i, j;
  102. if (CONFIG_NR_DRAM_BANKS) {
  103. for (i = 0, j = 0; i < lib_sysinfo.n_memranges; i++) {
  104. struct memrange *memrange = &lib_sysinfo.memrange[i];
  105. if (memrange->type == CB_MEM_RAM) {
  106. gd->bd->bi_dram[j].start = memrange->base;
  107. gd->bd->bi_dram[j].size = memrange->size;
  108. j++;
  109. if (j >= CONFIG_NR_DRAM_BANKS)
  110. break;
  111. }
  112. }
  113. }
  114. return 0;
  115. }