blob: a780c6bcf1a9ebf1f3e758ef37db0e45d981202c [file] [log] [blame]
Nitheesh Sekar20e75872018-09-14 11:24:10 +05301/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2018, The Linux Foundation. All rights reserved.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 and
8 * only version 2 as published by the Free Software Foundation.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 */
15
16#include <cbmem.h>
17
Arthur Heymans340e4b82019-10-23 17:25:58 +020018void *cbmem_top_chipset(void)
Nitheesh Sekar20e75872018-09-14 11:24:10 +053019{
20 return (void *)((uintptr_t)3 * GiB);
21}