It's changing the ROM base (devfn 14.3, register 0x6c) from 0xffc0 to 0xff00. The bootblock sets it up correctly, but AmdInitReset messes it up.
Any ideas? AGESA is particularly annoying to grep.
Alex
mrnuke [mailto:mr.nuke.me@gmail.com] wrote:
]It's changing the ROM base (devfn 14.3, register 0x6c) from 0xffc0 to 0xff00. ]The bootblock sets it up correctly, but AmdInitReset messes it up. ] ]Any ideas? AGESA is particularly annoying to grep. ] ]Alex
It is probably 102 of Hudson2LpcResetService.c: RwPci ((LPC_BUS_DEV_FUN << 16) + FCH_LPC_REG6C, AccessWidth32, 0xFFFFFF00, 0, StdHeader); Thanks, Scott
On Sunday, April 06, 2014 05:16:53 PM Scott Duplichan wrote:
mrnuke [mailto:mr.nuke.me@gmail.com] wrote:
]It's changing the ROM base (devfn 14.3, register 0x6c) from 0xffc0 to 0xff00. ]The bootblock sets it up correctly, but AmdInitReset messes it up. ] ]Any ideas? AGESA is particularly annoying to grep. ] ]Alex
It is probably 102 of Hudson2LpcResetService.c: RwPci ((LPC_BUS_DEV_FUN << 16) + FCH_LPC_REG6C, AccessWidth32, 0xFFFFFF00, 0, StdHeader);
Thanks! Yeah, killing that line solves the issue.
Alex