3 * GRUB -- GRand Unified Bootloader
4 * Copyright (C) 2009 Free Software Foundation, Inc.
6 * GRUB is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation, either version 3 of the License, or
9 * (at your option) any later version.
11 * GRUB is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with GRUB. If not, see <http://www.gnu.org/licenses/>.
20 #include <grub/machine/memory.h>
21 #include <grub/i386/memory.h>
22 #include <grub/memory.h>
24 #include <grub/misc.h>
28 #ifndef GRUB_MMAP_REGISTER_BY_FIRMWARE
30 /* Context for grub_mmap_malign_and_register. */
31 struct grub_mmap_malign_and_register_ctx
33 grub_uint64_t align
, size
, highestlow
;
36 /* Helper for grub_mmap_malign_and_register. */
38 find_hook (grub_uint64_t start
, grub_uint64_t rangesize
,
39 grub_memory_type_t memtype
, void *data
)
41 struct grub_mmap_malign_and_register_ctx
*ctx
= data
;
42 grub_uint64_t end
= start
+ rangesize
;
44 if (memtype
!= GRUB_MEMORY_AVAILABLE
)
48 if (end
> start
+ ctx
->size
49 && ctx
->highestlow
< ((end
- ctx
->size
)
50 - ((end
- ctx
->size
) & (ctx
->align
- 1))))
51 ctx
->highestlow
= (end
- ctx
->size
)
52 - ((end
- ctx
->size
) & (ctx
->align
- 1));
57 grub_mmap_malign_and_register (grub_uint64_t align
, grub_uint64_t size
,
58 int *handle
, int type
, int flags
)
60 struct grub_mmap_malign_and_register_ctx ctx
= {
67 if (flags
& GRUB_MMAP_MALLOC_LOW
)
69 /* FIXME: use low-memory mm allocation once it's available. */
70 grub_mmap_iterate (find_hook
, &ctx
);
71 ret
= (void *) (grub_addr_t
) ctx
.highestlow
;
74 ret
= grub_memalign (align
, size
);
82 *handle
= grub_mmap_register ((grub_addr_t
) ret
, size
, type
);
93 grub_mmap_free_and_unregister (int handle
)
95 struct grub_mmap_region
*cur
;
98 for (cur
= grub_mmap_overlays
; cur
; cur
= cur
->next
)
99 if (cur
->handle
== handle
)
107 grub_mmap_unregister (handle
);
109 if (addr
>= 0x100000)
110 grub_free ((void *) (grub_addr_t
) addr
);