aboutsummaryrefslogtreecommitdiff
path: root/src/northbridge/intel/sandybridge/memmap.c
diff options
context:
space:
mode:
authorFelix Held <felix-coreboot@felixheld.de>2019-12-28 18:09:47 +0100
committerFelix Held <felix-coreboot@felixheld.de>2019-12-29 12:19:14 +0000
commit4902fee4412eb15bee5f5e164302730de0ce195e (patch)
tree505f51579902c768bdef21d22559e0cc79c5e809 /src/northbridge/intel/sandybridge/memmap.c
parentcf425783c8896173a74103bd4936d0c205954f83 (diff)
nb/intel/sandybridge: add and use defines for PCI_DEV(0,0,0) registers
This patch didn't change the resulting binary for an X230 when using TIMELESS_BUILD=1 Change-Id: Ibeb10c3e0c04dec76892a86fa39e60543b2ee2f5 Signed-off-by: Felix Held <felix-coreboot@felixheld.de> Reviewed-on: https://review.coreboot.org/c/coreboot/+/37969 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Patrick Rudolph <siro@das-labor.org> Reviewed-by: HAOUAS Elyes <ehaouas@noos.fr>
Diffstat (limited to 'src/northbridge/intel/sandybridge/memmap.c')
-rw-r--r--src/northbridge/intel/sandybridge/memmap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/northbridge/intel/sandybridge/memmap.c b/src/northbridge/intel/sandybridge/memmap.c
index 99888fa2ae..6ebd7e0bb6 100644
--- a/src/northbridge/intel/sandybridge/memmap.c
+++ b/src/northbridge/intel/sandybridge/memmap.c
@@ -27,7 +27,7 @@
static uintptr_t smm_region_start(void)
{
/* Base of TSEG is top of usable DRAM */
- uintptr_t tom = pci_read_config32(PCI_DEV(0,0,0), TSEG);
+ uintptr_t tom = pci_read_config32(PCI_DEV(0, 0, 0), TSEGMB);
return tom;
}