2020-05-05 20:48:50 +02:00
|
|
|
/* This file is part of the coreboot project. */
|
2019-10-09 16:04:54 +02:00
|
|
|
/*
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License version 2 and
|
|
|
|
* only version 2 as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <cbmem.h>
|
|
|
|
|
2019-10-23 17:25:58 +02:00
|
|
|
void *cbmem_top_chipset(void)
|
2019-10-09 16:04:54 +02:00
|
|
|
{
|
|
|
|
return (void *)((uintptr_t)4 * GiB);
|
|
|
|
}
|