blob: 211f47671293b7cef401038f6ab626e27b663f32 [file] [log] [blame]
Aaron Durbin9a7d7bc2013-09-07 00:41:48 -05001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2013 Google, Inc.
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 as published by
8 * the Free Software Foundation; version 2 of the License.
9 *
10 * This program is distributed in the hope that it will be useful,
Aaron Durbin2c4aab32015-03-06 23:26:06 -060011 * but WITHOUT ANY WARRANTY; without even the implied warranty of
Aaron Durbin9a7d7bc2013-09-07 00:41:48 -050012 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
Aaron Durbin9a7d7bc2013-09-07 00:41:48 -050014 */
15
Aaron Durbin9a7d7bc2013-09-07 00:41:48 -050016#include <cbmem.h>
Julius Werner18ea2d32014-10-07 16:42:17 -070017#include <soc/iosf.h>
18#include <soc/smm.h>
Aaron Durbin7837be62013-10-21 22:32:00 -050019
Kyösti Mälkkif1e3c762014-12-22 12:28:07 +020020uintptr_t smm_region_start(void)
Aaron Durbin7837be62013-10-21 22:32:00 -050021{
Kyösti Mälkkif1e3c762014-12-22 12:28:07 +020022 return (iosf_bunit_read(BUNIT_SMRRL) << 20);
Aaron Durbin7837be62013-10-21 22:32:00 -050023}
Aaron Durbin9a7d7bc2013-09-07 00:41:48 -050024
Kyösti Mälkkif1e3c762014-12-22 12:28:07 +020025void *cbmem_top(void)
Aaron Durbin9a7d7bc2013-09-07 00:41:48 -050026{
Kyösti Mälkkif1e3c762014-12-22 12:28:07 +020027 return (void *) smm_region_start();
Aaron Durbin9a7d7bc2013-09-07 00:41:48 -050028}