src/include: Open brace on same line as enum or struct
[coreboot.git] / src / include / bootmem.h
blob10c8d51b77ce95b2aaa8c8c0504333492c57d7a4
1 /*
2 * This file is part of the coreboot project.
4 * Copyright (C) 2014 Google Inc.
6 * This program 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; version 2 of the License.
10 * This program 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.
16 #ifndef BOOTMEM_H
17 #define BOOTMEM_H
19 #include <memrange.h>
20 #include <stdint.h>
21 #include <boot/coreboot_tables.h>
24 * Initialize the memory address space prior to payload loading. The bootmem
25 * serves as the source for the lb_mem table.
27 void bootmem_init(void);
29 /* Architecture hook to add bootmem areas the architecture controls. */
30 void bootmem_arch_add_ranges(void);
32 /* Add a range of a given type to the bootmem address space. */
33 void bootmem_add_range(uint64_t start, uint64_t size, uint32_t type);
35 /* Write memory coreboot table. */
36 void bootmem_write_memory_table(struct lb_memory *mem);
38 /* Print current range map of boot memory. */
39 void bootmem_dump_ranges(void);
41 /* Return 1 if region targets usable RAM, 0 otherwise. */
42 int bootmem_region_targets_usable_ram(uint64_t start, uint64_t size);
44 /* Allocate a temporary buffer from the unused RAM areas. */
45 void *bootmem_allocate_buffer(size_t size);
47 #endif /* BOOTMEM_H */