soc/intel: Remove blank lines before '}' and after '{'
[coreboot2.git] / src / lib / imd_cbmem.c
blob91c86211f597f8fa4656c5084ceb34bab0201c83
1 /* SPDX-License-Identifier: GPL-2.0-only */
3 #include <assert.h>
4 #include <boot/coreboot_tables.h>
5 #include <bootmem.h>
6 #include <console/console.h>
7 #include <cbmem.h>
8 #include <imd.h>
9 #include <lib.h>
10 #include <types.h>
12 /* The program loader passes on cbmem_top and the program entry point
13 has to fill in the _cbmem_top_ptr symbol based on the calling arguments. */
14 uintptr_t _cbmem_top_ptr;
16 static struct imd imd;
18 void *cbmem_top(void)
20 if (ENV_CREATES_CBMEM) {
21 static uintptr_t top;
22 if (top)
23 return (void *)top;
24 top = cbmem_top_chipset();
25 return (void *)top;
27 if (ENV_POSTCAR || ENV_RAMSTAGE)
28 return (void *)_cbmem_top_ptr;
30 dead_code();
33 int cbmem_initialized;
35 static inline const struct cbmem_entry *imd_to_cbmem(const struct imd_entry *e)
37 return (const struct cbmem_entry *)e;
40 static inline const struct imd_entry *cbmem_to_imd(const struct cbmem_entry *e)
42 return (const struct imd_entry *)e;
45 void cbmem_initialize_empty(void)
47 cbmem_initialize_empty_id_size(0, 0);
50 static void cbmem_top_init_once(void)
52 /* Call one-time hook on expected cbmem init during boot. */
53 if (!ENV_CREATES_CBMEM)
54 return;
56 /* The test is only effective on X86 and when address hits UC memory. */
57 if (ENV_X86)
58 quick_ram_check_or_die((uintptr_t)cbmem_top() - sizeof(u32));
61 void cbmem_initialize_empty_id_size(u32 id, u64 size)
63 const int no_recovery = 0;
65 cbmem_top_init_once();
67 imd_handle_init(&imd, cbmem_top());
69 printk(BIOS_DEBUG, "CBMEM:\n");
71 if (imd_create_tiered_empty(&imd, CBMEM_ROOT_MIN_SIZE, CBMEM_LG_ALIGN,
72 CBMEM_SM_ROOT_SIZE, CBMEM_SM_ALIGN)) {
73 printk(BIOS_DEBUG, "failed.\n");
74 return;
77 /* Add the specified range first */
78 if (size)
79 cbmem_add(id, size);
81 /* Complete migration to CBMEM. */
82 cbmem_run_init_hooks(no_recovery);
84 cbmem_initialized = 1;
87 int cbmem_initialize(void)
89 return cbmem_initialize_id_size(0, 0);
92 int cbmem_initialize_id_size(u32 id, u64 size)
94 const int recovery = 1;
96 cbmem_top_init_once();
98 imd_handle_init(&imd, cbmem_top());
100 if (imd_recover(&imd))
101 return 1;
104 * Lock the imd in romstage on a recovery. The assumption is that
105 * if the imd area was recovered in romstage then S3 resume path
106 * is being taken.
108 if (ENV_CREATES_CBMEM)
109 imd_lockdown(&imd);
111 /* Add the specified range first */
112 if (size)
113 cbmem_add(id, size);
115 /* Complete migration to CBMEM. */
116 cbmem_run_init_hooks(recovery);
118 cbmem_initialized = 1;
120 /* Recovery successful. */
121 return 0;
124 int cbmem_recovery(int is_wakeup)
126 int rv = 0;
127 if (!is_wakeup)
128 cbmem_initialize_empty();
129 else
130 rv = cbmem_initialize();
131 return rv;
134 const struct cbmem_entry *cbmem_entry_add(u32 id, u64 size64)
136 const struct imd_entry *e;
138 e = imd_entry_find_or_add(&imd, id, size64);
140 return imd_to_cbmem(e);
143 void *cbmem_add(u32 id, u64 size)
145 const struct imd_entry *e;
147 e = imd_entry_find_or_add(&imd, id, size);
149 if (e == NULL)
150 return NULL;
152 return imd_entry_at(&imd, e);
155 /* Retrieve a region provided a given id. */
156 const struct cbmem_entry *cbmem_entry_find(u32 id)
158 const struct imd_entry *e;
160 e = imd_entry_find(&imd, id);
162 return imd_to_cbmem(e);
165 void *cbmem_find(u32 id)
167 const struct imd_entry *e;
169 e = imd_entry_find(&imd, id);
171 if (e == NULL)
172 return NULL;
174 return imd_entry_at(&imd, e);
177 /* Remove a reserved region. Returns 0 on success, < 0 on error. Note: A region
178 * cannot be removed unless it was the last one added. */
179 int cbmem_entry_remove(const struct cbmem_entry *entry)
181 return imd_entry_remove(&imd, cbmem_to_imd(entry));
184 u64 cbmem_entry_size(const struct cbmem_entry *entry)
186 return imd_entry_size(cbmem_to_imd(entry));
189 void *cbmem_entry_start(const struct cbmem_entry *entry)
191 return imd_entry_at(&imd, cbmem_to_imd(entry));
194 void cbmem_add_bootmem(void)
196 void *baseptr = NULL;
197 size_t size = 0;
199 cbmem_get_region(&baseptr, &size);
200 bootmem_add_range((uintptr_t)baseptr, size, BM_MEM_TABLE);
203 void cbmem_get_region(void **baseptr, size_t *size)
205 imd_region_used(&imd, baseptr, size);
208 #if ENV_PAYLOAD_LOADER || (CONFIG(EARLY_CBMEM_LIST) && ENV_HAS_CBMEM)
210 * -fdata-sections doesn't work so well on read only strings. They all
211 * get put in the same section even though those strings may never be
212 * referenced in the final binary.
214 void cbmem_list(void)
216 static const struct imd_lookup lookup[] = { CBMEM_ID_TO_NAME_TABLE };
218 imd_print_entries(&imd, lookup, ARRAY_SIZE(lookup));
220 #endif
222 void cbmem_add_records_to_cbtable(struct lb_header *header)
224 struct imd_cursor cursor;
226 if (imd_cursor_init(&imd, &cursor))
227 return;
229 while (1) {
230 const struct imd_entry *e;
231 struct lb_cbmem_entry *lbe;
232 uint32_t id;
234 e = imd_cursor_next(&cursor);
236 if (e == NULL)
237 break;
239 id = imd_entry_id(e);
240 /* Don't add these metadata entries. */
241 if (id == CBMEM_ID_IMD_ROOT || id == CBMEM_ID_IMD_SMALL)
242 continue;
244 lbe = (struct lb_cbmem_entry *)lb_new_record(header);
245 lbe->tag = LB_TAG_CBMEM_ENTRY;
246 lbe->size = sizeof(*lbe);
247 lbe->address = (uintptr_t)imd_entry_at(&imd, e);
248 lbe->entry_size = imd_entry_size(e);
249 lbe->id = id;