blob: 295ef01c17931a8a80af20f9ca9f82b696efd78e [file] [log] [blame]
Stefan Reinauer66287442013-06-19 15:54:19 -07001/*
2 * This file is part of the coreboot project.
3 *
Stefan Reinauer66287442013-06-19 15:54:19 -07004 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; version 2 of the License.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
Stefan Reinauer66287442013-06-19 15:54:19 -070013 */
14
15#include <stddef.h>
16#include <cbmem.h>
Julius Werner1ed0c8c2014-10-20 13:16:29 -070017#include <soc/cpu.h>
Stefan Reinauer66287442013-06-19 15:54:19 -070018
Arthur Heymans340e4b82019-10-23 17:25:58 +020019void *cbmem_top_chipset(void)
Stefan Reinauer66287442013-06-19 15:54:19 -070020{
21 return (void *)(get_fb_base_kb() * KiB);
22}