1 | Massively slimmed down v2: MemTag broke bsd-user, and the npcm7xx | 1 | v2: added a missing #include qemu/error-report.h which only causes |
---|---|---|---|
2 | ethernet device failed 'make check' on big-endian hosts. | 2 | build failure in some configs, not all. |
3 | 3 | ||
4 | -- PMM | 4 | The following changes since commit 853546f8128476eefb701d4a55b2781bb3a46faa: |
5 | 5 | ||
6 | The following changes since commit 83339e21d05c824ebc9131d644f25c23d0e41ecf: | 6 | Merge tag 'pull-loongarch-20240322' of https://gitlab.com/gaosong/qemu into staging (2024-03-22 10:59:57 +0000) |
7 | |||
8 | Merge remote-tracking branch 'remotes/stefanha-gitlab/tags/block-pull-request' into staging (2021-02-10 15:42:20 +0000) | ||
9 | 7 | ||
10 | are available in the Git repository at: | 8 | are available in the Git repository at: |
11 | 9 | ||
12 | https://git.linaro.org/people/pmaydell/qemu-arm.git tags/pull-target-arm-20210211-1 | 10 | https://git.linaro.org/people/pmaydell/qemu-arm.git tags/pull-target-arm-20240325-1 |
13 | 11 | ||
14 | for you to fetch changes up to d3c1183ffeb71ca3a783eae3d7e1c51e71e8a621: | 12 | for you to fetch changes up to fe3e38390126c2202292911c49d46fc7ee4a163a: |
15 | 13 | ||
16 | target/arm: Correctly initialize MDCR_EL2.HPMN (2021-02-11 19:48:09 +0000) | 14 | tests/qtest/libqtest.c: Check for g_setenv() failure (2024-03-25 14:17:07 +0000) |
17 | 15 | ||
18 | ---------------------------------------------------------------- | 16 | ---------------------------------------------------------------- |
19 | target-arm queue: | 17 | target-arm queue: |
20 | * Correctly initialize MDCR_EL2.HPMN | 18 | * Fixes for seven minor coverity issues |
21 | * versal: Use nr_apu_cpus in favor of hard coding 2 | ||
22 | * accel/tcg: Add URL of clang bug to comment about our workaround | ||
23 | * Add support for FEAT_DIT, Data Independent Timing | ||
24 | * Remove GPIO from unimplemented NPCM7XX | ||
25 | * Fix SCR RES1 handling | ||
26 | * Don't migrate CPUARMState.features | ||
27 | 19 | ||
28 | ---------------------------------------------------------------- | 20 | ---------------------------------------------------------------- |
29 | Aaron Lindsay (1): | 21 | Peter Maydell (7): |
30 | target/arm: Don't migrate CPUARMState.features | 22 | tests/qtest/npcm7xx_emc_test: Don't leak cmd_line |
23 | tests/unit/socket-helpers: Don't close(-1) | ||
24 | net/af-xdp.c: Don't leak sock_fds array in net_init_af_xdp() | ||
25 | hw/misc/pca9554: Correct error check bounds in get/set pin functions | ||
26 | hw/nvram/mac_nvram: Report failure to write data | ||
27 | tests/unit/test-throttle: Avoid unintended integer division | ||
28 | tests/qtest/libqtest.c: Check for g_setenv() failure | ||
31 | 29 | ||
32 | Daniel Müller (1): | 30 | hw/misc/pca9554.c | 4 ++-- |
33 | target/arm: Correctly initialize MDCR_EL2.HPMN | 31 | hw/nvram/mac_nvram.c | 6 +++++- |
34 | 32 | net/af-xdp.c | 3 +-- | |
35 | Edgar E. Iglesias (1): | 33 | tests/qtest/libqtest.c | 6 +++++- |
36 | hw/arm: versal: Use nr_apu_cpus in favor of hard coding 2 | 34 | tests/qtest/npcm7xx_emc-test.c | 4 ++-- |
37 | 35 | tests/unit/socket-helpers.c | 4 +++- | |
38 | Hao Wu (1): | 36 | tests/unit/test-throttle.c | 4 ++-- |
39 | hw/arm: Remove GPIO from unimplemented NPCM7XX | 37 | 7 files changed, 20 insertions(+), 11 deletions(-) |
40 | |||
41 | Mike Nawrocki (1): | ||
42 | target/arm: Fix SCR RES1 handling | ||
43 | |||
44 | Peter Maydell (2): | ||
45 | arm: Update infocenter.arm.com URLs | ||
46 | accel/tcg: Add URL of clang bug to comment about our workaround | ||
47 | |||
48 | Rebecca Cran (4): | ||
49 | target/arm: Add support for FEAT_DIT, Data Independent Timing | ||
50 | target/arm: Support AA32 DIT by moving PSTATE_SS from cpsr into env->pstate | ||
51 | target/arm: Set ID_AA64PFR0.DIT and ID_PFR0.DIT to 1 for "max" AA64 CPU | ||
52 | target/arm: Set ID_PFR0.DIT to 1 for "max" 32-bit CPU | ||
53 | |||
54 | include/hw/dma/pl080.h | 7 ++-- | ||
55 | include/hw/misc/arm_integrator_debug.h | 2 +- | ||
56 | include/hw/ssi/pl022.h | 5 ++- | ||
57 | target/arm/cpu.h | 17 ++++++++ | ||
58 | target/arm/internals.h | 6 +++ | ||
59 | accel/tcg/cpu-exec.c | 25 +++++++++--- | ||
60 | hw/arm/aspeed_ast2600.c | 2 +- | ||
61 | hw/arm/musca.c | 4 +- | ||
62 | hw/arm/npcm7xx.c | 8 ---- | ||
63 | hw/arm/xlnx-versal.c | 4 +- | ||
64 | hw/misc/arm_integrator_debug.c | 2 +- | ||
65 | hw/timer/arm_timer.c | 7 ++-- | ||
66 | target/arm/cpu.c | 4 ++ | ||
67 | target/arm/cpu64.c | 5 +++ | ||
68 | target/arm/helper-a64.c | 27 +++++++++++-- | ||
69 | target/arm/helper.c | 71 +++++++++++++++++++++++++++------- | ||
70 | target/arm/machine.c | 2 +- | ||
71 | target/arm/op_helper.c | 9 +---- | ||
72 | target/arm/translate-a64.c | 12 ++++++ | ||
73 | 19 files changed, 164 insertions(+), 55 deletions(-) | ||
74 | diff view generated by jsdifflib |