summaryrefslogtreecommitdiffstats
path: root/target-xtensa/cpu.c
diff options
context:
space:
mode:
authorPeter Maydell2015-03-08 15:32:38 +0100
committerPeter Maydell2015-03-08 15:32:38 +0100
commit6608c7e9eb65727524f6f590b1e716ec6e7877d4 (patch)
treed8134e22149677448083fb726ad464ef9a39fc16 /target-xtensa/cpu.c
parentMerge remote-tracking branch 'remotes/qmp-unstable/queue/qmp' into staging (diff)
parenttarget-xtensa: xtfpga: fix ml605 flash size (diff)
downloadqemu-6608c7e9eb65727524f6f590b1e716ec6e7877d4.tar.gz
qemu-6608c7e9eb65727524f6f590b1e716ec6e7877d4.tar.xz
qemu-6608c7e9eb65727524f6f590b1e716ec6e7877d4.zip
Merge remote-tracking branch 'remotes/xtensa/tags/20150307-xtensa' into staging
Xtensa updates: - implement do_unassigned_access callback; - fix ML605 xtfpga FLASH size. # gpg: Signature made Sat Mar 7 12:35:05 2015 GMT using RSA key ID F83FA044 # gpg: Good signature from "Max Filippov <max.filippov@cogentembedded.com>" # gpg: aka "Max Filippov <jcmvbkbc@gmail.com>" * remotes/xtensa/tags/20150307-xtensa: target-xtensa: xtfpga: fix ml605 flash size target-xtensa: implement do_unassigned_access callback hw/xtensa: allow reads/writes in the system I/O region Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'target-xtensa/cpu.c')
-rw-r--r--target-xtensa/cpu.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/target-xtensa/cpu.c b/target-xtensa/cpu.c
index 6a5414f815..2b75678995 100644
--- a/target-xtensa/cpu.c
+++ b/target-xtensa/cpu.c
@@ -151,6 +151,7 @@ static void xtensa_cpu_class_init(ObjectClass *oc, void *data)
#ifndef CONFIG_USER_ONLY
cc->do_unaligned_access = xtensa_cpu_do_unaligned_access;
cc->get_phys_page_debug = xtensa_cpu_get_phys_page_debug;
+ cc->do_unassigned_access = xtensa_cpu_do_unassigned_access;
#endif
cc->debug_excp_handler = xtensa_breakpoint_handler;
dc->vmsd = &vmstate_xtensa_cpu;