Kyösti Mälkki (kyosti.malkki@gmail.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/1857
-gerrit
commit 85259974fd0bd95d3cf581beeefc9c14228475fa Author: Kyösti Mälkki kyosti.malkki@gmail.com Date: Wed Nov 14 10:45:05 2012 +0200
Read memory from target by default
Reads from unknown memory regions did not come from the target. This fixes runs done without proper chipset filters.
Change-Id: If9c7ab2fd18e2719346fd54610fcb7a73eb31a73 Signed-off-by: Kyösti Mälkki kyosti.malkki@gmail.com --- SerialICE/simba/core_io.lua | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-)
diff --git a/SerialICE/simba/core_io.lua b/SerialICE/simba/core_io.lua index b89a3e2..0b823cc 100644 --- a/SerialICE/simba/core_io.lua +++ b/SerialICE/simba/core_io.lua @@ -39,13 +39,8 @@ filter_io_fallback = { --
function mem_undefined(f, action) - if (action.write) then - action.to_hw = true - action.to_qemu = false - else - action.to_hw = false - action.to_qemu = true - end + action.to_hw = true + action.to_qemu = false action.undefined = true return true end