From 0a18d64d00a9fcfd096c14f28e7b4d62bca0a829 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ky=C3=B6sti=20M=C3=A4lkki?= Date: Mon, 28 Jun 2021 21:43:31 +0300 Subject: nb,soc/intel: Handle upper RAM boundary MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: I2d99523647dfb43265db8f2701b525afd1870fc5 Signed-off-by: Kyösti Mälkki Reviewed-on: https://review.coreboot.org/c/coreboot/+/55929 Tested-by: build bot (Jenkins) Reviewed-by: Arthur Heymans --- src/northbridge/intel/e7505/northbridge.c | 26 ++++++++++------------ src/northbridge/intel/gm45/northbridge.c | 7 +----- src/northbridge/intel/haswell/northbridge.c | 8 ++----- src/northbridge/intel/ironlake/northbridge.c | 3 +-- src/northbridge/intel/pineview/northbridge.c | 8 +------ src/northbridge/intel/sandybridge/northbridge.c | 6 +---- src/northbridge/intel/x4x/northbridge.c | 7 +----- src/soc/intel/baytrail/northcluster.c | 3 +-- src/soc/intel/braswell/northcluster.c | 3 +-- src/soc/intel/broadwell/northbridge.c | 7 +----- .../intel/common/block/systemagent/systemagent.c | 8 ++----- src/soc/intel/denverton_ns/systemagent.c | 7 +----- 12 files changed, 25 insertions(+), 68 deletions(-) diff --git a/src/northbridge/intel/e7505/northbridge.c b/src/northbridge/intel/e7505/northbridge.c index faa46e0d8a83..33e101830986 100644 --- a/src/northbridge/intel/e7505/northbridge.c +++ b/src/northbridge/intel/e7505/northbridge.c @@ -1,5 +1,6 @@ /* SPDX-License-Identifier: GPL-2.0-only */ +#include #include #include #include @@ -11,9 +12,8 @@ static void mch_domain_read_resources(struct device *dev) { int idx; - unsigned long tomk, tolmk; - unsigned long remapbasek, remaplimitk; - const unsigned long basek_4G = 4 * (GiB / KiB); + unsigned long tolmk; + uint64_t tom, remapbase, remaplimit; struct device *mc_dev; pci_domain_read_resources(dev); @@ -25,28 +25,26 @@ static void mch_domain_read_resources(struct device *dev) tolmk = pci_read_config16(mc_dev, TOLM) >> 11; tolmk <<= 17; - tomk = pci_read_config8(mc_dev, DRB_ROW_7); - tomk <<= 16; + tom = pci_read_config8(mc_dev, DRB_ROW_7); + tom <<= 26; /* Remapped region with a 64 MiB granularity in register definition. Limit is inclusive, so add one. */ - remapbasek = pci_read_config16(mc_dev, REMAPBASE) & 0x3ff; - remapbasek <<= 16; + remapbase = pci_read_config16(mc_dev, REMAPBASE) & 0x3ff; + remapbase <<= 26; - remaplimitk = pci_read_config16(mc_dev, REMAPLIMIT) & 0x3ff; - remaplimitk += 1; - remaplimitk <<= 16; + remaplimit = pci_read_config16(mc_dev, REMAPLIMIT) & 0x3ff; + remaplimit += 1; + remaplimit <<= 26; /* Report the memory regions */ idx = 10; ram_resource_kb(dev, idx++, 0, tolmk); mmio_resource_kb(dev, idx++, 0xa0000 / KiB, (0xc0000 - 0xa0000) / KiB); - if (tomk > basek_4G) - ram_resource_kb(dev, idx++, basek_4G, tomk - basek_4G); - if (remaplimitk > remapbasek) - ram_resource_kb(dev, idx++, remapbasek, remaplimitk - remapbasek); + ASSERT(tom == remapbase); + upper_ram_end(dev, idx++, remaplimit); } static void mch_domain_set_resources(struct device *dev) diff --git a/src/northbridge/intel/gm45/northbridge.c b/src/northbridge/intel/gm45/northbridge.c index d2a8742660f8..f41adf32be18 100644 --- a/src/northbridge/intel/gm45/northbridge.c +++ b/src/northbridge/intel/gm45/northbridge.c @@ -121,12 +121,7 @@ static void mch_domain_read_resources(struct device *dev) * If >= 4GB installed then memory from TOLUD to 4GB * is remapped above TOM, TOUUD will account for both */ - touud >>= 10; /* Convert to KB */ - if (touud > 4096 * 1024) { - ram_resource_kb(dev, idx++, 4096 * 1024, touud - (4096 * 1024)); - printk(BIOS_INFO, "Available memory above 4GB: %lluM\n", - (touud >> 10) - 4096); - } + upper_ram_end(dev, idx++, touud); printk(BIOS_DEBUG, "Adding UMA memory area base=0x%llx " "size=0x%llx\n", ((u64)tomk) << 10, ((u64)uma_sizek) << 10); diff --git a/src/northbridge/intel/haswell/northbridge.c b/src/northbridge/intel/haswell/northbridge.c index a1bd143dd248..8465561f5de1 100644 --- a/src/northbridge/intel/haswell/northbridge.c +++ b/src/northbridge/intel/haswell/northbridge.c @@ -237,7 +237,7 @@ static void mc_report_map_entries(struct device *dev, uint64_t *values) static void mc_add_dram_resources(struct device *dev, int *resource_cnt) { - unsigned long base_k, size_k, touud_k, index; + unsigned long base_k, size_k, index; struct resource *resource; uint64_t mc_values[NUM_MAP_ENTRIES]; @@ -312,11 +312,7 @@ static void mc_add_dram_resources(struct device *dev, int *resource_cnt) } /* 4GiB -> TOUUD */ - base_k = 4096 * 1024; /* 4GiB */ - touud_k = mc_values[TOUUD_REG] >> 10; - size_k = touud_k - base_k; - if (touud_k > base_k) - ram_resource_kb(dev, index++, base_k, size_k); + upper_ram_end(dev, index++, mc_values[TOUUD_REG]); /* Reserve everything between A segment and 1MB: * diff --git a/src/northbridge/intel/ironlake/northbridge.c b/src/northbridge/intel/ironlake/northbridge.c index aec0fc0b31f7..af602f1e76df 100644 --- a/src/northbridge/intel/ironlake/northbridge.c +++ b/src/northbridge/intel/ironlake/northbridge.c @@ -134,8 +134,7 @@ static void mc_read_resources(struct device *dev) mmio_resource_kb(dev, index++, gtt_base / KiB, uma_size_gtt * KiB); mmio_resource_kb(dev, index++, igd_base / KiB, uma_size_igd * KiB); - if (touud > 4096) - ram_resource_kb(dev, index++, (4096 * KiB), ((touud - 4096) * KiB)); + upper_ram_end(dev, index++, touud * MiB); /* This memory is not DMA-capable. */ if (touud >= 8192 - 64) diff --git a/src/northbridge/intel/pineview/northbridge.c b/src/northbridge/intel/pineview/northbridge.c index bfef56e4c46e..677243232946 100644 --- a/src/northbridge/intel/pineview/northbridge.c +++ b/src/northbridge/intel/pineview/northbridge.c @@ -44,7 +44,6 @@ static void mch_domain_read_resources(struct device *dev) u32 tomk, tolud, tseg_sizek; u32 cbmem_topk, delta_cbmem; u16 index; - const u32 top32memk = 4 * (GiB / KiB); struct device *mch = pcidev_on_root(0, 0); @@ -108,12 +107,7 @@ static void mch_domain_read_resources(struct device *dev) * If > 4GB installed then memory from TOLUD to 4GB * is remapped above TOM, TOUUD will account for both */ - touud >>= 10; /* Convert to KB */ - if (touud > top32memk) { - ram_resource_kb(dev, index++, top32memk, touud - top32memk); - printk(BIOS_INFO, "Available memory above 4GB: %lluM\n", - (touud - top32memk) / KiB); - } + upper_ram_end(dev, index++, touud); mmconf_resource(dev, index++); diff --git a/src/northbridge/intel/sandybridge/northbridge.c b/src/northbridge/intel/sandybridge/northbridge.c index 51e7847788a1..14fde8b08a60 100644 --- a/src/northbridge/intel/sandybridge/northbridge.c +++ b/src/northbridge/intel/sandybridge/northbridge.c @@ -211,11 +211,7 @@ static void mc_read_resources(struct device *dev) * If >= 4GB installed, then memory from TOLUD to 4GB is remapped above TOM. * TOUUD will account for both memory chunks. */ - touud >>= 10; /* Convert to KB */ - if (touud > 4096 * 1024) { - ram_resource_kb(dev, index++, 4096 * 1024, touud - (4096 * 1024)); - printk(BIOS_INFO, "Available memory above 4GB: %lluM\n", (touud >> 10) - 4096); - } + upper_ram_end(dev, index++, touud); add_fixed_resources(dev, index++); } diff --git a/src/northbridge/intel/x4x/northbridge.c b/src/northbridge/intel/x4x/northbridge.c index 035862d49911..015e0ac658fb 100644 --- a/src/northbridge/intel/x4x/northbridge.c +++ b/src/northbridge/intel/x4x/northbridge.c @@ -88,12 +88,7 @@ static void mch_domain_read_resources(struct device *dev) * If >= 4GB installed then memory from TOLUD to 4GB * is remapped above TOM, TOUUD will account for both */ - touud >>= 10; /* Convert to KB */ - if (touud > top32memk) { - ram_resource_kb(dev, index++, top32memk, touud - top32memk); - printk(BIOS_INFO, "Available memory above 4GB: %lluM\n", - (touud - top32memk) >> 10); - } + upper_ram_end(dev, index++, touud); printk(BIOS_DEBUG, "Adding UMA memory area base=0x%08x size=0x%08x\n", tomk << 10, uma_sizek << 10); diff --git a/src/soc/intel/baytrail/northcluster.c b/src/soc/intel/baytrail/northcluster.c index 3d6cae9b61e8..ecfc3ff5033f 100644 --- a/src/soc/intel/baytrail/northcluster.c +++ b/src/soc/intel/baytrail/northcluster.c @@ -100,8 +100,7 @@ static void nc_read_resources(struct device *dev) */ bmbound_hi = iosf_bunit_read(BUNIT_BMBOUND_HI) & ~((1 << 24) - 1); bmbound_hi <<= 4; - if (bmbound_hi > 4ull * GiB) - ram_from_to(dev, index++, 4ull * GiB, bmbound_hi); + upper_ram_end(dev, index++, bmbound_hi); /* * Reserve everything between A segment and 1MB: diff --git a/src/soc/intel/braswell/northcluster.c b/src/soc/intel/braswell/northcluster.c index 8337f50c32bc..63347ee47120 100644 --- a/src/soc/intel/braswell/northcluster.c +++ b/src/soc/intel/braswell/northcluster.c @@ -116,8 +116,7 @@ static void nc_read_resources(struct device *dev) */ bmbound_hi = iosf_bunit_read(BUNIT_BMBOUND_HI) & ~((1 << 24) - 1); bmbound_hi <<= 4; - if (bmbound_hi > 4ull * GiB) - ram_from_to(dev, index++, 4ull * GiB, bmbound_hi); + upper_ram_end(dev, index++, bmbound_hi); /* * Reserve everything between A segment and 1MB: diff --git a/src/soc/intel/broadwell/northbridge.c b/src/soc/intel/broadwell/northbridge.c index 4adf926d953e..b65a7589b0b3 100644 --- a/src/soc/intel/broadwell/northbridge.c +++ b/src/soc/intel/broadwell/northbridge.c @@ -259,7 +259,6 @@ static void mc_report_map_entries(struct device *dev, uint64_t *values) static void mc_add_dram_resources(struct device *dev, int *resource_cnt) { unsigned long base_k, size_k; - unsigned long touud_k; unsigned long index; struct resource *resource; uint64_t mc_values[NUM_MAP_ENTRIES]; @@ -342,11 +341,7 @@ static void mc_add_dram_resources(struct device *dev, int *resource_cnt) IORESOURCE_ASSIGNED; /* 4GiB -> TOUUD */ - base_k = 4096 * 1024; /* 4GiB */ - touud_k = mc_values[TOUUD_REG] >> 10; - size_k = touud_k - base_k; - if (touud_k > base_k) - ram_resource_kb(dev, index++, base_k, size_k); + upper_ram_end(dev, index++, mc_values[TOUUD_REG]); /* Reserve everything between A segment and 1MB: * diff --git a/src/soc/intel/common/block/systemagent/systemagent.c b/src/soc/intel/common/block/systemagent/systemagent.c index 04580c25696b..1fbd8aa7f087 100644 --- a/src/soc/intel/common/block/systemagent/systemagent.c +++ b/src/soc/intel/common/block/systemagent/systemagent.c @@ -186,7 +186,7 @@ static void sa_get_mem_map(struct device *dev, uint64_t *values) */ static void sa_add_dram_resources(struct device *dev, int *resource_count) { - uintptr_t base_k, touud_k; + uintptr_t base_k; size_t size_k; uint64_t sa_map_values[MAX_MAP_ENTRIES]; uintptr_t top_of_ram; @@ -212,11 +212,7 @@ static void sa_add_dram_resources(struct device *dev, int *resource_count) mmio_resource_kb(dev, index++, base_k / KiB, size_k / KiB); /* 4GiB -> TOUUD */ - base_k = 4 * (GiB / KiB); /* 4GiB */ - touud_k = sa_map_values[SA_TOUUD_REG] / KiB; - size_k = touud_k - base_k; - if (touud_k > base_k) - ram_resource_kb(dev, index++, base_k, size_k); + upper_ram_end(dev, index++, sa_map_values[SA_TOUUD_REG]); /* * Reserve everything between A segment and 1MB: diff --git a/src/soc/intel/denverton_ns/systemagent.c b/src/soc/intel/denverton_ns/systemagent.c index 116dc9008987..29953a6931da 100644 --- a/src/soc/intel/denverton_ns/systemagent.c +++ b/src/soc/intel/denverton_ns/systemagent.c @@ -191,7 +191,6 @@ static void mc_report_map_entries(struct device *dev, uint64_t *values) static void mc_add_dram_resources(struct device *dev) { unsigned long base_k, size_k; - unsigned long touud_k; unsigned long index; struct resource *resource; uint64_t mc_values[NUM_MAP_ENTRIES]; @@ -262,11 +261,7 @@ static void mc_add_dram_resources(struct device *dev) IORESOURCE_ASSIGNED | IORESOURCE_CACHEABLE; /* 4GiB -> TOUUD */ - base_k = 4096 * 1024; /* 4GiB */ - touud_k = mc_values[TOUUD_REG] >> 10; - size_k = touud_k - base_k; - if (touud_k > base_k) - ram_resource_kb(dev, index++, base_k, size_k); + upper_ram_end(dev, index++, mc_values[TOUUD_REG]); /* * Reserve everything between A segment and 1MB: -- cgit v1.2.3