2020-03-04 15:10:45 +01:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
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
|
|
|
|
2019-10-23 17:25:58 +02:00
|
|
|
void *cbmem_top_chipset(void)
|
2013-10-13 03:15:40 +02:00
|
|
|
{
|
2018-06-03 11:29:50 +02:00
|
|
|
/* Top of CBMEM is at highest usable DRAM address below 4GiB. */
|
2019-10-23 17:02:50 +02:00
|
|
|
return (void *)restore_top_of_low_cacheable();
|
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 */
|