blob: 94e91ca7a1c5483ad4a5b4489795bdc0533d0d50 [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älkki26a682c2019-08-02 06:13:22 +030017#include <stage_cache.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}
Kyösti Mälkki26a682c2019-08-02 06:13:22 +030030
31void stage_cache_external_region(void **base, size_t *size)
32{
33 char *smm_base;
34 /* 1MiB cache size */
35 const long cache_size = CONFIG_SMM_RESERVED_SIZE;
36
37 /* Ramstage cache lives in TSEG region which is the definition of
38 * cbmem_top(). */
39 smm_base = cbmem_top();
40 *size = cache_size;
41 *base = &smm_base[smm_region_size() - cache_size];
42}