Fix high tables address calculation on cn700 with VIDEO_MB > 0.
Signed-off-by: Myles Watson <mylesgw@gmail.com> Acked-by: Uwe Hermann <uwe@hermann-uwe.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4775 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
parent
9a04f17af0
commit
75472d27e4
1 changed files with 2 additions and 2 deletions
|
@ -186,8 +186,8 @@ static void pci_domain_set_resources(device_t dev)
|
|||
}
|
||||
|
||||
#if CONFIG_HAVE_HIGH_TABLES == 1
|
||||
high_tables_base = (tolmk - HIGH_TABLES_SIZE) * 1024;
|
||||
high_tables_size = HIGH_TABLES_SIZE* 1024;
|
||||
high_tables_base = (tolmk - CONFIG_VIDEO_MB * 1024 - HIGH_TABLES_SIZE) * 1024;
|
||||
high_tables_size = HIGH_TABLES_SIZE * 1024;
|
||||
printk_debug("tom: %lx, high_tables_base: %llx, high_tables_size: %llx\n", tomk*1024, high_tables_base, high_tables_size);
|
||||
#endif
|
||||
|
||||
|
|
Loading…
Reference in a new issue