blob: 015f13c5030f4695f69db3e61aa687e4aff3886f [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>
Kyösti Mälkki568a42a2019-08-14 06:48:28 +030017#include <cpu/x86/smm.h>
Julius Werner18ea2d32014-10-07 16:42:17 -070018#include <soc/iosf.h>
Aaron Durbin7837be62013-10-21 22:32:00 -050019
Kyösti Mälkki568a42a2019-08-14 06:48:28 +030020static uintptr_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älkki568a42a2019-08-14 06:48:28 +030025static size_t smm_region_size(void)
26{
27 return CONFIG_SMM_TSEG_SIZE;
28}
29
Kyösti Mälkkif1e3c762014-12-22 12:28:07 +020030void *cbmem_top(void)
Aaron Durbin9a7d7bc2013-09-07 00:41:48 -050031{
Kyösti Mälkkif1e3c762014-12-22 12:28:07 +020032 return (void *) smm_region_start();
Aaron Durbin9a7d7bc2013-09-07 00:41:48 -050033}
Kyösti Mälkki26a682c2019-08-02 06:13:22 +030034
Kyösti Mälkki568a42a2019-08-14 06:48:28 +030035void smm_region(uintptr_t *start, size_t *size)
Kyösti Mälkki26a682c2019-08-02 06:13:22 +030036{
Kyösti Mälkki568a42a2019-08-14 06:48:28 +030037 *start = (iosf_bunit_read(BUNIT_SMRRL) & 0xFFFF) << 20;
38 *size = smm_region_size();
Kyösti Mälkki26a682c2019-08-02 06:13:22 +030039}