blob: e43fcde82443efea31cd88c9c8c3cd8bc81c3eb3 [file] [log] [blame]
Kyösti Mälkki191d2212014-06-15 12:06:12 +03001/*
2 * This file is part of the coreboot project.
3 *
Kyösti Mälkki191d2212014-06-15 12:06:12 +03004 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; version 2 of the License.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
Kyösti Mälkki191d2212014-06-15 12:06:12 +030013 */
14
15#define __SIMPLE_DEVICE__
16
Kyösti Mälkkia963acd2019-08-16 20:34:25 +030017#include <arch/romstage.h>
Kyösti Mälkkif1b58b72019-03-01 13:43:02 +020018#include <device/pci_ops.h>
Kyösti Mälkki191d2212014-06-15 12:06:12 +030019#include <cbmem.h>
Kyösti Mälkki2c3fd492016-07-22 22:52:14 +030020#include <cpu/x86/mtrr.h>
Kyösti Mälkkid53fd702019-08-14 06:25:55 +030021#include <cpu/x86/smm.h>
Kyösti Mälkki2c3fd492016-07-22 22:52:14 +030022#include <program_loading.h>
Kyösti Mälkkif091f4d2019-08-14 03:49:21 +030023#include <cpu/intel/smm_reloc.h>
Angel Pons95de2312020-02-17 13:08:53 +010024#include "ironlake.h"
Kyösti Mälkki191d2212014-06-15 12:06:12 +030025
Kyösti Mälkkif1e3c762014-12-22 12:28:07 +020026static uintptr_t smm_region_start(void)
Kyösti Mälkki191d2212014-06-15 12:06:12 +030027{
28 /* Base of TSEG is top of usable DRAM */
Kyösti Mälkkif1e3c762014-12-22 12:28:07 +020029 uintptr_t tom = pci_read_config32(PCI_DEV(0,0,0), TSEG);
30 return tom;
31}
32
Kyösti Mälkkid53fd702019-08-14 06:25:55 +030033static uintptr_t northbridge_get_tseg_base(void)
Arthur Heymans97c7c6b2018-05-15 16:45:21 +020034{
Kyösti Mälkkid53fd702019-08-14 06:25:55 +030035 return smm_region_start();
Arthur Heymans97c7c6b2018-05-15 16:45:21 +020036}
37
Kyösti Mälkkid53fd702019-08-14 06:25:55 +030038static size_t northbridge_get_tseg_size(void)
Kyösti Mälkkif6c20682019-08-02 06:14:50 +030039{
40 return CONFIG_SMM_TSEG_SIZE;
41}
42
Arthur Heymans340e4b82019-10-23 17:25:58 +020043void *cbmem_top_chipset(void)
Kyösti Mälkkif1e3c762014-12-22 12:28:07 +020044{
45 return (void *) smm_region_start();
Kyösti Mälkki191d2212014-06-15 12:06:12 +030046}
Kyösti Mälkkia4ffe9d2016-06-27 13:24:11 +030047
Kyösti Mälkkid53fd702019-08-14 06:25:55 +030048void smm_region(uintptr_t *start, size_t *size)
Kyösti Mälkkif6c20682019-08-02 06:14:50 +030049{
Kyösti Mälkkid53fd702019-08-14 06:25:55 +030050 *start = northbridge_get_tseg_base();
51 *size = northbridge_get_tseg_size();
Kyösti Mälkkif6c20682019-08-02 06:14:50 +030052}
53
Kyösti Mälkki5bc641a2019-08-09 09:37:49 +030054void fill_postcar_frame(struct postcar_frame *pcf)
Kyösti Mälkkia4ffe9d2016-06-27 13:24:11 +030055{
Kyösti Mälkki2c3fd492016-07-22 22:52:14 +030056 uintptr_t top_of_ram;
57
Kyösti Mälkki2c3fd492016-07-22 22:52:14 +030058 /* Cache at least 8 MiB below the top of ram, and at most 8 MiB
59 * above top of the ram. This satisfies MTRR alignment requirement
60 * with different TSEG size configurations.
61 */
62 top_of_ram = ALIGN_DOWN((uintptr_t)cbmem_top(), 8*MiB);
Kyösti Mälkki5bc641a2019-08-09 09:37:49 +030063 postcar_frame_add_mtrr(pcf, top_of_ram - 8*MiB, 8*MiB, MTRR_TYPE_WRBACK);
64 postcar_frame_add_mtrr(pcf, top_of_ram, 8*MiB, MTRR_TYPE_WRBACK);
Kyösti Mälkkia4ffe9d2016-06-27 13:24:11 +030065}