1 /* SPDX-License-Identifier: GPL-2.0-only */
4 #include <boot/coreboot_tables.h>
6 #include <console/console.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 uintptr_t cbmem_top(void)
20 if (ENV_CREATES_CBMEM
) {
24 top
= cbmem_top_chipset();
27 if (ENV_POSTCAR
|| ENV_RAMSTAGE
)
28 return _cbmem_top_ptr
;
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
)
56 /* The test is only effective on X86 and when address hits UC memory. */
58 quick_ram_check_or_die(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
, (void *)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");
77 /* Add the specified range first */
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
, (void *)cbmem_top());
100 if (imd_recover(&imd
))
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
108 if (ENV_CREATES_CBMEM
)
111 /* Add the specified range first */
115 /* Complete migration to CBMEM. */
116 cbmem_run_init_hooks(recovery
);
118 cbmem_initialized
= 1;
120 /* Recovery successful. */
124 int cbmem_recovery(int is_wakeup
)
128 cbmem_initialize_empty();
130 rv
= cbmem_initialize();
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
);
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
);
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)
199 if (cbmem_get_region(&baseptr
, &size
)) {
200 printk(BIOS_ERR
, "CBMEM pointer/size not found!\n");
203 bootmem_add_range((uintptr_t)baseptr
, size
, BM_MEM_TABLE
);
206 int cbmem_get_region(void **baseptr
, size_t *size
)
208 return imd_region_used(&imd
, baseptr
, size
);
211 #if ENV_PAYLOAD_LOADER || (CONFIG(EARLY_CBMEM_LIST) && ENV_HAS_CBMEM)
213 * -fdata-sections doesn't work so well on read only strings. They all
214 * get put in the same section even though those strings may never be
215 * referenced in the final binary.
217 void cbmem_list(void)
219 static const struct imd_lookup lookup
[] = { CBMEM_ID_TO_NAME_TABLE
};
221 imd_print_entries(&imd
, lookup
, ARRAY_SIZE(lookup
));
225 void cbmem_add_records_to_cbtable(struct lb_header
*header
)
227 struct imd_cursor cursor
;
229 if (imd_cursor_init(&imd
, &cursor
))
233 const struct imd_entry
*e
;
234 struct lb_cbmem_entry
*lbe
;
237 e
= imd_cursor_next(&cursor
);
242 id
= imd_entry_id(e
);
243 /* Don't add these metadata entries. */
244 if (id
== CBMEM_ID_IMD_ROOT
|| id
== CBMEM_ID_IMD_SMALL
)
247 lbe
= (struct lb_cbmem_entry
*)lb_new_record(header
);
248 lbe
->tag
= LB_TAG_CBMEM_ENTRY
;
249 lbe
->size
= sizeof(*lbe
);
250 lbe
->address
= (uintptr_t)imd_entry_at(&imd
, e
);
251 lbe
->entry_size
= imd_entry_size(e
);