Esempio n. 1
0
void set_top_of_ram(uint64_t ramtop)
{
	backup_top_of_ram(ramtop);
	ramtop_pointer = (void *)(uintptr_t)ramtop;
}
Esempio n. 2
0
/* This is for compatibility with old boards only. Any new chipset and board
 * must implement get_top_of_ram() for both romstage and ramstage to support
 * early features like COLLECT_TIMESTAMPS and CBMEM_CONSOLE.
 */
void set_top_of_ram(uint64_t ramtop)
{
	backup_top_of_ram(ramtop);
	cbmem_late_set_table(ramtop - HIGH_MEMORY_SIZE, HIGH_MEMORY_SIZE);
}