diff options
Diffstat (limited to 'src/southbridge/via')
-rw-r--r-- | src/southbridge/via/k8t890/k8t890_dram.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/southbridge/via/k8t890/k8t890_dram.c b/src/southbridge/via/k8t890/k8t890_dram.c index 1c60a78a13..5339257743 100644 --- a/src/southbridge/via/k8t890/k8t890_dram.c +++ b/src/southbridge/via/k8t890/k8t890_dram.c @@ -91,6 +91,17 @@ static void get_memres(void *gp, struct device *dev, struct resource *res) (proposed_base < ((uint64_t) 0xffffffff) )) { resmax = res; } +#if HAVE_HIGH_TABLES==1 +/* in arch/i386/boot/tables.c */ +extern uint64_t high_tables_base, high_tables_size; + + if ((high_tables_base) && ((high_tables_base > proposed_base) && + (high_tables_base < (res->base + res->size)))) { + high_tables_base = proposed_base - high_tables_size; + printk_debug("Moving the high_tables_base pointer to " + "new base %llx\n", high_tables_base); + } +#endif } |