2013-06-27 07:20:09 +02:00
|
|
|
/*
|
|
|
|
* This file is part of the coreboot project.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; version 2 of the License.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*/
|
|
|
|
|
2014-01-04 08:42:02 +01:00
|
|
|
#include <stdlib.h>
|
2013-06-27 07:20:09 +02:00
|
|
|
#include <cbmem.h>
|
|
|
|
|
2019-03-06 01:53:33 +01:00
|
|
|
#if CONFIG(CBMEM_TOP_BACKUP)
|
2017-04-19 06:37:38 +02:00
|
|
|
|
2013-10-13 03:15:40 +02:00
|
|
|
void *cbmem_top(void)
|
|
|
|
{
|
2018-06-03 11:29:50 +02:00
|
|
|
static void *cbmem_top_backup;
|
|
|
|
void *top_backup;
|
2017-04-19 06:37:38 +02:00
|
|
|
|
2017-04-19 18:57:01 +02:00
|
|
|
if (ENV_RAMSTAGE && cbmem_top_backup != NULL)
|
|
|
|
return cbmem_top_backup;
|
2015-05-26 18:15:45 +02:00
|
|
|
|
2018-06-03 11:29:50 +02:00
|
|
|
/* Top of CBMEM is at highest usable DRAM address below 4GiB. */
|
|
|
|
top_backup = (void *)restore_top_of_low_cacheable();
|
2015-05-26 18:15:45 +02:00
|
|
|
|
2017-04-19 06:37:38 +02:00
|
|
|
if (ENV_RAMSTAGE)
|
2018-06-03 11:29:50 +02:00
|
|
|
cbmem_top_backup = top_backup;
|
2017-04-19 06:37:38 +02:00
|
|
|
|
2018-06-03 11:29:50 +02:00
|
|
|
return top_backup;
|
2013-10-13 03:15:40 +02:00
|
|
|
}
|
2014-12-19 07:20:45 +01:00
|
|
|
|
2017-04-19 06:37:38 +02:00
|
|
|
#endif /* CBMEM_TOP_BACKUP */
|