summary refs log tree commit diff stats
path: root/gitlab/issues_text/target_arm/host_missing/accel_missing/2588
diff options
context:
space:
mode:
authorChristian Krinitsin <mail@krinitsin.com>2025-06-01 21:35:14 +0200
committerChristian Krinitsin <mail@krinitsin.com>2025-06-01 21:35:14 +0200
commit3e4c5a6261770bced301b5e74233e7866166ea5b (patch)
tree9379fddaba693ef8a045da06efee8529baa5f6f4 /gitlab/issues_text/target_arm/host_missing/accel_missing/2588
parente5634e2806195bee44407853c4bf8776f7abfa4f (diff)
downloadqemu-analysis-3e4c5a6261770bced301b5e74233e7866166ea5b.tar.gz
qemu-analysis-3e4c5a6261770bced301b5e74233e7866166ea5b.zip
clean up repository
Diffstat (limited to 'gitlab/issues_text/target_arm/host_missing/accel_missing/2588')
-rw-r--r--gitlab/issues_text/target_arm/host_missing/accel_missing/258843
1 files changed, 0 insertions, 43 deletions
diff --git a/gitlab/issues_text/target_arm/host_missing/accel_missing/2588 b/gitlab/issues_text/target_arm/host_missing/accel_missing/2588
deleted file mode 100644
index 1a2840ddb..000000000
--- a/gitlab/issues_text/target_arm/host_missing/accel_missing/2588
+++ /dev/null
@@ -1,43 +0,0 @@
-qemu-system-arm regression: NonSecure World can change Secure World MMU mapping.
-Description of problem:
-A NonSecure execution context is able to override MMU L1 translation table
-flags set by Secure context on Secure World memory.
-
-This is not consistent with the same code running on real hardware and it's a
-regression over past qemu releases as 9.0.0 behaves correctly.
-Steps to reproduce:
-This has been tested with
-[GoTEE-example](https://github.com/usbarmory/GoTEE-example) as follows:
-
-```
-# building tamago
-wget https://github.com/usbarmory/tamago-go/archive/refs/tags/latest.zip
-unzip latest.zip
-cd tamago-go-latest/src && ./all.bash
-cd ../bin && export TAMAGO=`pwd`/go
-
-# building and running GoTEE-example
-wget https://github.com/usbarmory/GoTEE-example/archive/refs/heads/master.zip
-unzip master.zip
-cd GoTEE-example
-export TARGET=usbarmory && make clean && make nonsecure_os_go && make trusted_applet_go && make trusted_os && make qemu
-```
-
-#
-Additional information:
-The issue relates to the fact that the NonSecure World, at startup, configures
-the MMU with the NX bit for the entire address space not belonging to its
-firmware .text area.
-
-On real hardware this MMU configuration by NonSecure world does not affect the
-Secure World translation tables.
-
-On qemu 9.1.0, however it does and this is inconsistent with real hardware
-behavior. On qemu 9.0.0 the behaviour is correct so the issue has been
-introduced between these two releases.
-
-The switch between Secure and NonSecure is done
-[here](https://github.com/usbarmory/GoTEE/blob/7e62563c0628fed3ee0aebb4702e22be9bb636e3/monitor/exec_arm.s#L73).
-
-The MMU first level address table which sets the NX bit is done
-[here](https://github.com/usbarmory/tamago/blob/273d67cd811dfcb1782c0fe596ac14d43d0ce117/arm/mmu.go#L85).