|
@@ -1152,13 +1152,11 @@ early_param("vmalloc", early_vmalloc);
|
|
|
|
|
|
phys_addr_t arm_lowmem_limit __initdata = 0;
|
|
|
|
|
|
-void __init sanity_check_meminfo(void)
|
|
|
+void __init adjust_lowmem_bounds(void)
|
|
|
{
|
|
|
phys_addr_t memblock_limit = 0;
|
|
|
- int highmem = 0;
|
|
|
u64 vmalloc_limit;
|
|
|
struct memblock_region *reg;
|
|
|
- bool should_use_highmem = false;
|
|
|
|
|
|
/*
|
|
|
* Let's use our own (unoptimized) equivalent of __pa() that is
|
|
@@ -1172,43 +1170,18 @@ void __init sanity_check_meminfo(void)
|
|
|
for_each_memblock(memory, reg) {
|
|
|
phys_addr_t block_start = reg->base;
|
|
|
phys_addr_t block_end = reg->base + reg->size;
|
|
|
- phys_addr_t size_limit = reg->size;
|
|
|
|
|
|
- if (reg->base >= vmalloc_limit)
|
|
|
- highmem = 1;
|
|
|
- else
|
|
|
- size_limit = vmalloc_limit - reg->base;
|
|
|
-
|
|
|
-
|
|
|
- if (!IS_ENABLED(CONFIG_HIGHMEM) || cache_is_vipt_aliasing()) {
|
|
|
-
|
|
|
- if (highmem) {
|
|
|
- pr_notice("Ignoring RAM at %pa-%pa (!CONFIG_HIGHMEM)\n",
|
|
|
- &block_start, &block_end);
|
|
|
- memblock_remove(reg->base, reg->size);
|
|
|
- should_use_highmem = true;
|
|
|
- continue;
|
|
|
- }
|
|
|
-
|
|
|
- if (reg->size > size_limit) {
|
|
|
- phys_addr_t overlap_size = reg->size - size_limit;
|
|
|
-
|
|
|
- pr_notice("Truncating RAM at %pa-%pa",
|
|
|
- &block_start, &block_end);
|
|
|
- block_end = vmalloc_limit;
|
|
|
- pr_cont(" to -%pa", &block_end);
|
|
|
- memblock_remove(vmalloc_limit, overlap_size);
|
|
|
- should_use_highmem = true;
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- if (!highmem) {
|
|
|
- if (block_end > arm_lowmem_limit) {
|
|
|
- if (reg->size > size_limit)
|
|
|
- arm_lowmem_limit = vmalloc_limit;
|
|
|
- else
|
|
|
- arm_lowmem_limit = block_end;
|
|
|
- }
|
|
|
+ if (reg->base < vmalloc_limit) {
|
|
|
+ if (block_end > arm_lowmem_limit)
|
|
|
+ /*
|
|
|
+ * Compare as u64 to ensure vmalloc_limit does
|
|
|
+ * not get truncated. block_end should always
|
|
|
+ * fit in phys_addr_t so there should be no
|
|
|
+ * issue with assignment.
|
|
|
+ */
|
|
|
+ arm_lowmem_limit = min_t(u64,
|
|
|
+ vmalloc_limit,
|
|
|
+ block_end);
|
|
|
|
|
|
/*
|
|
|
* Find the first non-pmd-aligned page, and point
|
|
@@ -1233,9 +1206,6 @@ void __init sanity_check_meminfo(void)
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- if (should_use_highmem)
|
|
|
- pr_notice("Consider using a HIGHMEM enabled kernel.\n");
|
|
|
-
|
|
|
high_memory = __va(arm_lowmem_limit - 1) + 1;
|
|
|
|
|
|
/*
|
|
@@ -1248,6 +1218,18 @@ void __init sanity_check_meminfo(void)
|
|
|
if (!memblock_limit)
|
|
|
memblock_limit = arm_lowmem_limit;
|
|
|
|
|
|
+ if (!IS_ENABLED(CONFIG_HIGHMEM) || cache_is_vipt_aliasing()) {
|
|
|
+ if (memblock_end_of_DRAM() > arm_lowmem_limit) {
|
|
|
+ phys_addr_t end = memblock_end_of_DRAM();
|
|
|
+
|
|
|
+ pr_notice("Ignoring RAM at %pa-%pa\n",
|
|
|
+ &memblock_limit, &end);
|
|
|
+ pr_notice("Consider using a HIGHMEM enabled kernel.\n");
|
|
|
+
|
|
|
+ memblock_remove(memblock_limit, end - memblock_limit);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
memblock_set_current_limit(memblock_limit);
|
|
|
}
|
|
|
|