blob: 2e8addef97ecb2ba3f9b335aff9d6ca442df00ff [file] [log] [blame]
Kyösti Mälkkicb08e162013-10-15 17:19:41 +03001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2011 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,
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.
Kyösti Mälkkicb08e162013-10-15 17:19:41 +030014 */
15
Angel Pons1db5bc72020-01-15 00:49:03 +010016/* Use simple device model for this file even in ramstage */
Kyösti Mälkkicb08e162013-10-15 17:19:41 +030017#define __SIMPLE_DEVICE__
18
Kyösti Mälkkia963acd2019-08-16 20:34:25 +030019#include <arch/romstage.h>
Kyösti Mälkkicd7a70f2019-08-17 20:51:08 +030020#include <commonlib/helpers.h>
Kyösti Mälkkie2e1f122019-08-09 09:34:23 +030021#include <cpu/x86/mtrr.h>
Kyösti Mälkki540151f2019-08-15 11:20:18 +030022#include <cpu/x86/smm.h>
Kyösti Mälkkif1b58b72019-03-01 13:43:02 +020023#include <device/pci_ops.h>
Kyösti Mälkkicb08e162013-10-15 17:19:41 +030024#include <cbmem.h>
25#include "haswell.h"
26
Kyösti Mälkkif1e3c762014-12-22 12:28:07 +020027static uintptr_t smm_region_start(void)
Kyösti Mälkkicb08e162013-10-15 17:19:41 +030028{
29 /*
30 * Base of TSEG is top of usable DRAM below 4GiB. The register has
Martin Roth128c1042016-11-18 09:29:03 -070031 * 1 MiB alignment.
Kyösti Mälkkicb08e162013-10-15 17:19:41 +030032 */
Angel Pons1db5bc72020-01-15 00:49:03 +010033 uintptr_t tom = pci_read_config32(HOST_BRIDGE, TSEG);
Kyösti Mälkkif1e3c762014-12-22 12:28:07 +020034 return tom & ~((1 << 20) - 1);
35}
36
Arthur Heymans340e4b82019-10-23 17:25:58 +020037void *cbmem_top_chipset(void)
Kyösti Mälkkif1e3c762014-12-22 12:28:07 +020038{
39 return (void *)smm_region_start();
Kyösti Mälkkicb08e162013-10-15 17:19:41 +030040}
Kyösti Mälkki825646e2019-08-02 06:14:50 +030041
Kyösti Mälkki540151f2019-08-15 11:20:18 +030042void smm_region(uintptr_t *start, size_t *size)
Kyösti Mälkki825646e2019-08-02 06:14:50 +030043{
Kyösti Mälkki540151f2019-08-15 11:20:18 +030044 *start = smm_region_start();
45 *size = CONFIG_SMM_TSEG_SIZE;
Kyösti Mälkki825646e2019-08-02 06:14:50 +030046}
Kyösti Mälkkie2e1f122019-08-09 09:34:23 +030047
Kyösti Mälkki5bc641a2019-08-09 09:37:49 +030048void fill_postcar_frame(struct postcar_frame *pcf)
Kyösti Mälkkie2e1f122019-08-09 09:34:23 +030049{
Kyösti Mälkkie2e1f122019-08-09 09:34:23 +030050 uintptr_t top_of_ram;
51
Kyösti Mälkkie2e1f122019-08-09 09:34:23 +030052 /* Cache at least 8 MiB below the top of ram, and at most 8 MiB
53 * above top of the ram. This satisfies MTRR alignment requirement
54 * with different TSEG size configurations.
55 */
Angel Pons1db5bc72020-01-15 00:49:03 +010056 top_of_ram = ALIGN_DOWN((uintptr_t)cbmem_top(), 8 * MiB);
57 postcar_frame_add_mtrr(pcf, top_of_ram - 8 * MiB, 16 * MiB, MTRR_TYPE_WRBACK);
Kyösti Mälkkie2e1f122019-08-09 09:34:23 +030058}