summary refs log tree commit diff stats
path: root/scripts/lib/kdoc/kdoc_parser.py (unfollow)
Commit message (Collapse)AuthorFilesLines
2025-09-26target/arm: Move ID register field defs to cpu-features.hPeter Maydell3-410/+412
Currently we define constants for the ID register fields in cpu.h. This means they're defined for a lot more code in QEMU than actually needs them. Move them to cpu-features.h, which is where we define the feature functions that test fields in these registers. There's only one place where we need to use some of these macro definitions that we weren't already including cpu-features.h: linux-user/arm/target_proc.h. Otherwise this patch is a pure movement of code from one file to the other. Signed-off-by: Peter Maydell <peter.maydell@linaro.org> Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
2025-09-26target/arm: Trace vCPU reset callPhilippe Mathieu-Daudé2-0/+3
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
2025-09-26target/arm: Trace emulated firmware reset callPhilippe Mathieu-Daudé2-0/+7
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
2025-09-26target/arm: Convert power control DPRINTF() uses to trace eventsPhilippe Mathieu-Daudé2-18/+14
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
2025-09-26target/arm: Replace magic GIC values by proper definitionsPhilippe Mathieu-Daudé1-2/+2
Prefer the FIELD_DP64() macro and self-describing GIC definitions over magic values. Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
2025-09-26contrib/plugins/uftrace: add documentationPierrick Bouvier1