ARM: Update the size/location of the coreboot tables so we can boot again

Change-Id: I3235f42c7faaf28a63455162ea55dc1a6bebd1f5
Signed-off-by: Gabe Black <gabeblack@google.com>
Reviewed-by: Hung-Te Lin <hungte@google.com>
Reviewed-on: https://gerrit.chromium.org/gerrit/48290
Reviewed-by: Hung-Te Lin <hungte@chromium.org>
Tested-by: Gabe Black <gabeblack@chromium.org>
Commit-Queue: Gabe Black <gabeblack@chromium.org>
Reviewed-on: http://review.coreboot.org/4128
Tested-by: build bot (Jenkins)
Reviewed-by: Ronald G. Minnich <rminnich@gmail.com>
This commit is contained in:
Gabe Black 2013-04-11 22:44:37 -07:00 committed by Stefan Reinauer
parent 19afe8de6d
commit 98e4d8aabb
1 changed files with 1 additions and 1 deletions

View File

@ -283,7 +283,7 @@ static int cb_parse_header(void *addr, int len, struct sysinfo_t *info)
int get_coreboot_info(struct sysinfo_t *info)
{
int ret = cb_parse_header(phys_to_virt(0xbff00000), 0x100000, info);
int ret = cb_parse_header(phys_to_virt(0xbc000000), 0x4000000, info);
return (ret == 1) ? 0 : -1;
}