blob: f1131f6e3f8ccad48634b43b81acd3ae538f6499 [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
16#include <arch/io.h>
17#include <cbmem.h>
Julius Werner18ea2d32014-10-07 16:42:17 -070018#include <soc/iosf.h>
19#include <soc/smm.h>
Aaron Durbin7837be62013-10-21 22:32:00 -050020
Kyösti Mälkkif1e3c762014-12-22 12:28:07 +020021uintptr_t smm_region_start(void)
Aaron Durbin7837be62013-10-21 22:32:00 -050022{
Kyösti Mälkkif1e3c762014-12-22 12:28:07 +020023 return (iosf_bunit_read(BUNIT_SMRRL) << 20);
Aaron Durbin7837be62013-10-21 22:32:00 -050024}
Aaron Durbin9a7d7bc2013-09-07 00:41:48 -050025
Kyösti Mälkkif1e3c762014-12-22 12:28:07 +020026void *cbmem_top(void)
Aaron Durbin9a7d7bc2013-09-07 00:41:48 -050027{
Kyösti Mälkkif1e3c762014-12-22 12:28:07 +020028 return (void *) smm_region_start();
Aaron Durbin9a7d7bc2013-09-07 00:41:48 -050029}