multiboot_mmap.c 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. /*
  2. * GRUB -- GRand Unified Bootloader
  3. * Copyright (C) 2002,2003,2004,2005,2006,2007,2008,2009 Free Software Foundation, Inc.
  4. *
  5. * GRUB is free software: you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation, either version 3 of the License, or
  8. * (at your option) any later version.
  9. *
  10. * GRUB is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with GRUB. If not, see <http://www.gnu.org/licenses/>.
  17. */
  18. #include <grub/machine/init.h>
  19. #include <grub/machine/memory.h>
  20. #include <grub/types.h>
  21. #include <grub/multiboot.h>
  22. #include <grub/err.h>
  23. #include <grub/misc.h>
  24. GRUB_EXPORT(grub_machine_mmap_iterate);
  25. grub_size_t grub_lower_mem, grub_upper_mem;
  26. /* A pointer to the MBI in its initial location. */
  27. struct multiboot_info *startup_multiboot_info;
  28. /* The MBI has to be copied to our BSS so that it won't be
  29. overwritten. This is its final location. */
  30. static struct multiboot_info kern_multiboot_info;
  31. /* Unfortunately we can't use heap at this point. But 32 looks like a sane
  32. limit (used by memtest86). */
  33. static grub_uint8_t mmap_entries[sizeof (struct multiboot_mmap_entry) * 32];
  34. void
  35. grub_machine_mmap_init ()
  36. {
  37. if (! startup_multiboot_info)
  38. grub_fatal ("Unable to find Multiboot Information (is CONFIG_MULTIBOOT disabled in coreboot?)");
  39. /* Move MBI to a safe place. */
  40. grub_memmove (&kern_multiboot_info, startup_multiboot_info, sizeof (struct multiboot_info));
  41. if ((kern_multiboot_info.flags & MULTIBOOT_INFO_MEM_MAP) == 0)
  42. grub_fatal ("Missing Multiboot memory information");
  43. /* Move the memory map to a safe place. */
  44. if (kern_multiboot_info.mmap_length > sizeof (mmap_entries))
  45. {
  46. grub_printf ("WARNING: Memory map size exceeds limit (0x%x > 0x%x); it will be truncated\n",
  47. kern_multiboot_info.mmap_length, sizeof (mmap_entries));
  48. kern_multiboot_info.mmap_length = sizeof (mmap_entries);
  49. }
  50. grub_memmove (mmap_entries, (void *) kern_multiboot_info.mmap_addr, kern_multiboot_info.mmap_length);
  51. kern_multiboot_info.mmap_addr = (grub_uint32_t) mmap_entries;
  52. if ((kern_multiboot_info.flags & MULTIBOOT_INFO_MEMORY) == 0)
  53. {
  54. grub_lower_mem = GRUB_MEMORY_MACHINE_LOWER_USABLE;
  55. grub_upper_mem = 0;
  56. }
  57. else
  58. {
  59. grub_lower_mem = kern_multiboot_info.mem_lower * 1024;
  60. grub_upper_mem = kern_multiboot_info.mem_upper * 1024;
  61. }
  62. }
  63. grub_err_t
  64. grub_machine_mmap_iterate (int (*hook) (grub_uint64_t, grub_uint64_t,
  65. grub_uint32_t, void *), void *closure)
  66. {
  67. struct multiboot_mmap_entry *entry = (void *) kern_multiboot_info.mmap_addr;
  68. while ((unsigned long) entry < kern_multiboot_info.mmap_addr +
  69. kern_multiboot_info.mmap_length)
  70. {
  71. if (hook (entry->addr, entry->len, entry->type, closure))
  72. break;
  73. entry = (void *) ((grub_addr_t) entry + entry->size +
  74. sizeof (entry->size));
  75. }
  76. return 0;
  77. }