coreboot
coreboot is an Open Source project aimed at replacing the proprietary BIOS found in most computers.
memmap.c
Go to the documentation of this file.
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 
3 /* Use simple device model for this file even in ramstage */
4 #define __SIMPLE_DEVICE__
5 
6 #include <arch/romstage.h>
7 #include <cpu/x86/mtrr.h>
8 #include <cpu/x86/smm.h>
9 #include <device/pci_ops.h>
10 #include <cbmem.h>
13 #include <types.h>
14 
15 #include "haswell.h"
16 
18 {
20 }
21 
23 {
25 }
26 
28 {
29  return (union dpr_register) { .raw = pci_read_config32(HOST_BRIDGE, DPR) };
30 }
31 
32 /*
33  * Return the topmost memory address below 4 GiB available for general
34  * use, from software's view of memory. Do not confuse this with TOLUD,
35  * which applies to the DRAM as viewed by the memory controller itself.
36  */
38 {
39  /*
40  * Base of DPR is top of usable DRAM below 4 GiB. However, DPR
41  * isn't always enabled. Unlike most memory map registers, the
42  * DPR register stores top of DPR instead of its base address.
43  * Unless binary-patched, Haswell MRC.bin does not enable DPR.
44  * Top of DPR is R/O, and mirrored from TSEG base by hardware.
45  */
47 
48  const union dpr_register dpr = txt_get_chipset_dpr();
49 
50  /* Subtract DMA Protected Range size if enabled */
51  if (dpr.epm)
52  tolum -= dpr.size * MiB;
53 
54  return tolum;
55 }
56 
57 void *cbmem_top_chipset(void)
58 {
59  return (void *)top_of_low_usable_memory();
60 }
61 
62 void smm_region(uintptr_t *start, size_t *size)
63 {
64  *start = northbridge_get_tseg_base();
66 
67  *size -= *start;
68 }
69 
71 {
72  uintptr_t top_of_ram;
73 
74  /* Cache at least 8 MiB below the top of ram, and at most 8 MiB
75  * above top of the ram. This satisfies MTRR alignment requirement
76  * with different TSEG size configurations.
77  */
78  top_of_ram = ALIGN_DOWN((uintptr_t)cbmem_top(), 8 * MiB);
79  postcar_frame_add_mtrr(pcf, top_of_ram - 8 * MiB, 16 * MiB, MTRR_TYPE_WRBACK);
80 }
void postcar_frame_add_mtrr(struct postcar_frame *pcf, uintptr_t addr, size_t size, int type)
#define ALIGN_DOWN(x, a)
Definition: helpers.h:18
#define MiB
Definition: helpers.h:76
void * cbmem_top(void)
Definition: imd_cbmem.c:18
#define TSEG
Definition: host_bridge.h:60
#define DPR
Definition: host_bridge.h:27
#define BGSM
Definition: host_bridge.h:59
static __always_inline u32 pci_read_config32(const struct device *dev, u16 reg)
Definition: pci_ops.h:58
void * cbmem_top_chipset(void)
Definition: memmap.c:44
void fill_postcar_frame(struct postcar_frame *pcf)
Definition: memmap.c:63
void smm_region(uintptr_t *start, size_t *size)
Definition: memmap.c:50
static uintptr_t top_of_low_usable_memory(void)
Definition: memmap.c:37
static uintptr_t northbridge_get_tseg_limit(void)
Definition: memmap.c:22
union dpr_register txt_get_chipset_dpr(void)
Definition: memmap.c:27
static uintptr_t northbridge_get_tseg_base(void)
Definition: memmap.c:17
@ HOST_BRIDGE
Definition: reg_access.h:23
unsigned long uintptr_t
Definition: stdint.h:21
uint32_t raw
Definition: txt_register.h:174
uint32_t size
Definition: txt_register.h:170
uint32_t epm
Definition: txt_register.h:168
#define MTRR_TYPE_WRBACK
Definition: mtrr.h:14
typedef void(X86APIP X86EMU_intrFuncs)(int num)