aboutsummaryrefslogtreecommitdiff
path: root/src/northbridge
diff options
context:
space:
mode:
authorArthur Heymans <arthur@aheymans.xyz>2021-01-18 00:43:46 +0100
committerAngel Pons <th3fanbus@gmail.com>2021-01-19 22:53:16 +0000
commit839c98aa8d85842852a9cca321de43a57664d48b (patch)
tree8599209c82fedd3c36049401553d25009fecf37a /src/northbridge
parent6473473417bfb0ce4961cbce8b80c29786e1d39f (diff)
nb/intel/ironlake/northbridge.c: Fix overlapping resources
Fixed resources should not overlap. Change-Id: I7a70f5475c1d701db2cb8cbea659bacf6d0c52ae Signed-off-by: Arthur Heymans <arthur@aheymans.xyz> Reviewed-on: https://review.coreboot.org/c/coreboot/+/49622 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Patrick Rudolph <siro@das-labor.org> Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Diffstat (limited to 'src/northbridge')
-rw-r--r--src/northbridge/intel/ironlake/northbridge.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/northbridge/intel/ironlake/northbridge.c b/src/northbridge/intel/ironlake/northbridge.c
index e01bf7dae1..9dc38ec3d4 100644
--- a/src/northbridge/intel/ironlake/northbridge.c
+++ b/src/northbridge/intel/ironlake/northbridge.c
@@ -105,7 +105,7 @@ static void mc_read_resources(struct device *dev)
/* Report the memory regions */
ram_resource(dev, index++, 0, 0xa0000 / KiB);
- ram_resource(dev, index++, 0xc0000 / KiB, (tseg_base - 0xc0000) / KiB);
+ ram_resource(dev, index++, 1 * MiB / KiB, (tseg_base - 1 * MiB) / KiB);
mmio_resource(dev, index++, tseg_base / KiB, CONFIG_SMM_TSEG_SIZE / KiB);