1 | v2: dropped the npcm7xx ethernet device, whose test case | 1 | Squashed in a trivial fix for 32-bit hosts: |
---|---|---|---|
2 | fails weirdly on the 'build-disabled' gitlab CI job: | ||
3 | https://gitlab.com/qemu-project/qemu/-/jobs/1034174731#L12 | ||
4 | 2 | ||
5 | The following changes since commit 8ba4bca570ace1e60614a0808631a517cf5df67a: | 3 | --- a/target/arm/mve_helper.c |
4 | +++ b/target/arm/mve_helper.c | ||
5 | @@ -XXX,XX +XXX,XX @@ DO_LDAV(vmlsldavxsw, 4, int32_t, true, +=, -=) | ||
6 | acc = EVENACC(acc, TO128(n[H##ESIZE(e + 1 * XCHG)] * \ | ||
7 | m[H##ESIZE(e)])); \ | ||
8 | } \ | ||
9 | - acc = int128_add(acc, 1 << 7); \ | ||
10 | + acc = int128_add(acc, int128_make64(1 << 7)); \ | ||
11 | } \ | ||
12 | } \ | ||
13 | mve_advance_vpt(env); \ | ||
6 | 14 | ||
7 | Merge remote-tracking branch 'remotes/kevin/tags/for-upstream' into staging (2021-02-15 17:13:57 +0000) | 15 | -- PMM |
16 | |||
17 | The following changes since commit 53f306f316549d20c76886903181413d20842423: | ||
18 | |||
19 | Merge remote-tracking branch 'remotes/ehabkost-gl/tags/x86-next-pull-request' into staging (2021-06-21 11:26:04 +0100) | ||
8 | 20 | ||
9 | are available in the Git repository at: | 21 | are available in the Git repository at: |
10 | 22 | ||
11 | https://git.linaro.org/people/pmaydell/qemu-arm.git tags/pull-target-arm-20210217 | 23 | https://git.linaro.org/people/pmaydell/qemu-arm.git tags/pull-target-arm-20210624 |
12 | 24 | ||
13 | for you to fetch changes up to 59c7a187dd8bd8ef675768dd8af9de11528ea7e2: | 25 | for you to fetch changes up to 90a76c6316cfe6416fc33814a838fb3928f746ee: |
14 | 26 | ||
15 | MAINTAINERS: add myself maintainer for the clock framework (2021-02-16 14:16:17 +0000) | 27 | docs/system: arm: Add nRF boards description (2021-06-24 14:58:48 +0100) |
16 | 28 | ||
17 | ---------------------------------------------------------------- | 29 | ---------------------------------------------------------------- |
18 | target-arm queue: | 30 | target-arm queue: |
19 | * Support ARMv8.5-MemTag for linux-user | 31 | * Don't require 'virt' board to be compiled in for ACPI GHES code |
20 | * ncpm7xx: Support SMBus | 32 | * docs: Document which architecture extensions we emulate |
21 | * MAINTAINERS: add section for Clock framework | 33 | * Fix bugs in M-profile FPCXT_NS accesses |
34 | * First slice of MVE patches | ||
35 | * Implement MTE3 | ||
36 | * docs/system: arm: Add nRF boards description | ||
22 | 37 | ||
23 | ---------------------------------------------------------------- | 38 | ---------------------------------------------------------------- |
24 | Hao Wu (5): | 39 | Alexandre Iooss (1): |
25 | hw/i2c: Implement NPCM7XX SMBus Module Single Mode | 40 | docs/system: arm: Add nRF boards description |
26 | hw/arm: Add I2C sensors for NPCM750 eval board | ||
27 | hw/arm: Add I2C sensors and EEPROM for GSJ machine | ||
28 | hw/i2c: Add a QTest for NPCM7XX SMBus Device | ||
29 | hw/i2c: Implement NPCM7XX SMBus Module FIFO Mode | ||
30 | 41 | ||
31 | Luc Michel (1): | 42 | Peter Collingbourne (1): |
32 | MAINTAINERS: add myself maintainer for the clock framework | 43 | target/arm: Implement MTE3 |
33 | 44 | ||
34 | Richard Henderson (31): | 45 | Peter Maydell (55): |
35 | tcg: Introduce target-specific page data for user-only | 46 | hw/acpi: Provide stub version of acpi_ghes_record_errors() |
36 | linux-user: Introduce PAGE_ANON | 47 | hw/acpi: Provide function acpi_ghes_present() |
37 | exec: Use uintptr_t for guest_base | 48 | target/arm: Use acpi_ghes_present() to see if we report ACPI memory errors |
38 | exec: Use uintptr_t in cpu_ldst.h | 49 | docs/system/arm: Document which architecture extensions we emulate |
39 | exec: Improve types for guest_addr_valid | 50 | target/arm/translate-vfp.c: Whitespace fixes |
40 | linux-user: Check for overflow in access_ok | 51 | target/arm: Handle FPU being disabled in FPCXT_NS accesses |
41 | linux-user: Tidy VERIFY_READ/VERIFY_WRITE | 52 | target/arm: Don't NOCP fault for FPCXT_NS accesses |
42 | bsd-user: Tidy VERIFY_READ/VERIFY_WRITE | 53 | target/arm: Handle writeback in VLDR/VSTR sysreg with no memory access |
43 | linux-user: Do not use guest_addr_valid for h2g_valid | 54 | target/arm: Factor FP context update code out into helper function |
44 | linux-user: Fix guest_addr_valid vs reserved_va | 55 | target/arm: Split vfp_access_check() into A and M versions |
45 | exec: Introduce cpu_untagged_addr | 56 | target/arm: Handle FPU check for FPCXT_NS insns via vfp_access_check_m() |
46 | exec: Use cpu_untagged_addr in g2h; split out g2h_untagged | 57 | target/arm: Implement MVE VLDR/VSTR (non-widening forms) |
47 | linux-user: Explicitly untag memory management syscalls | 58 | target/arm: Implement widening/narrowing MVE VLDR/VSTR insns |
48 | linux-user: Use guest_range_valid in access_ok | 59 | target/arm: Implement MVE VCLZ |
49 | exec: Rename guest_{addr,range}_valid to *_untagged | 60 | target/arm: Implement MVE VCLS |
50 | linux-user: Use cpu_untagged_addr in access_ok; split out *_untagged | 61 | target/arm: Implement MVE VREV16, VREV32, VREV64 |
51 | linux-user: Move lock_user et al out of line | 62 | target/arm: Implement MVE VMVN (register) |
52 | linux-user: Fix types in uaccess.c | 63 | target/arm: Implement MVE VABS |
53 | linux-user: Handle tags in lock_user/unlock_user | 64 | target/arm: Implement MVE VNEG |
54 | linux-user/aarch64: Implement PR_TAGGED_ADDR_ENABLE | 65 | tcg: Make gen_dup_i32/i64() public as tcg_gen_dup_i32/i64 |
55 | target/arm: Improve gen_top_byte_ignore | 66 | target/arm: Implement MVE VDUP |
56 | target/arm: Use the proper TBI settings for linux-user | 67 | target/arm: Implement MVE VAND, VBIC, VORR, VORN, VEOR |
57 | linux-user/aarch64: Implement PR_MTE_TCF and PR_MTE_TAG | 68 | target/arm: Implement MVE VADD, VSUB, VMUL |
58 | linux-user/aarch64: Implement PROT_MTE | 69 | target/arm: Implement MVE VMULH |
59 | target/arm: Split out syndrome.h from internals.h | 70 | target/arm: Implement MVE VRMULH |
60 | linux-user/aarch64: Pass syndrome to EXC_*_ABORT | 71 | target/arm: Implement MVE VMAX, VMIN |
61 | linux-user/aarch64: Signal SEGV_MTESERR for sync tag check fault | 72 | target/arm: Implement MVE VABD |
62 | linux-user/aarch64: Signal SEGV_MTEAERR for async tag check error | 73 | target/arm: Implement MVE VHADD, VHSUB |
63 | target/arm: Add allocation tag storage for user mode | 74 | target/arm: Implement MVE VMULL |
64 | target/arm: Enable MTE for user-only | 75 | target/arm: Implement MVE VMLALDAV |
65 | tests/tcg/aarch64: Add mte smoke tests | 76 | target/arm: Implement MVE VMLSLDAV |
77 | target/arm: Implement MVE VRMLALDAVH, VRMLSLDAVH | ||
78 | target/arm: Implement MVE VADD (scalar) | ||
79 | target/arm: Implement MVE VSUB, VMUL (scalar) | ||
80 | target/arm: Implement MVE VHADD, VHSUB (scalar) | ||
81 | target/arm: Implement MVE VBRSR | ||
82 | target/arm: Implement MVE VPST | ||
83 | target/arm: Implement MVE VQADD and VQSUB | ||
84 | target/arm: Implement MVE VQDMULH and VQRDMULH (scalar) | ||
85 | target/arm: Implement MVE VQDMULL scalar | ||
86 | target/arm: Implement MVE VQDMULH, VQRDMULH (vector) | ||
87 | target/arm: Implement MVE VQADD, VQSUB (vector) | ||
88 | target/arm: Implement MVE VQSHL (vector) | ||
89 | target/arm: Implement MVE VQRSHL | ||
90 | target/arm: Implement MVE VSHL insn | ||
91 | target/arm: Implement MVE VRSHL | ||
92 | target/arm: Implement MVE VQDMLADH and VQRDMLADH | ||
93 | target/arm: Implement MVE VQDMLSDH and VQRDMLSDH | ||
94 | target/arm: Implement MVE VQDMULL (vector) | ||
95 | target/arm: Implement MVE VRHADD | ||
96 | target/arm: Implement MVE VADC, VSBC | ||
97 | target/arm: Implement MVE VCADD | ||
98 | target/arm: Implement MVE VHCADD | ||
99 | target/arm: Implement MVE VADDV | ||
100 | target/arm: Make VMOV scalar <-> gpreg beatwise for MVE | ||
66 | 101 | ||
67 | docs/system/arm/nuvoton.rst | 2 +- | 102 | docs/system/arm/emulation.rst | 103 ++++ |
68 | bsd-user/qemu.h | 17 +- | 103 | docs/system/arm/nrf.rst | 51 ++ |
69 | include/exec/cpu-all.h | 47 +- | 104 | docs/system/target-arm.rst | 7 + |
70 | include/exec/cpu_ldst.h | 39 +- | 105 | include/hw/acpi/ghes.h | 9 + |
71 | include/exec/exec-all.h | 2 +- | 106 | include/tcg/tcg-op.h | 8 + |
72 | include/hw/arm/npcm7xx.h | 2 + | 107 | include/tcg/tcg.h | 1 - |
73 | include/hw/i2c/npcm7xx_smbus.h | 113 ++++ | 108 | target/arm/helper-mve.h | 357 +++++++++++++ |
74 | linux-user/aarch64/target_signal.h | 3 + | 109 | target/arm/helper.h | 2 + |
75 | linux-user/aarch64/target_syscall.h | 13 + | 110 | target/arm/internals.h | 11 + |
76 | linux-user/qemu.h | 76 +-- | 111 | target/arm/translate-a32.h | 3 + |
77 | linux-user/syscall_defs.h | 1 + | 112 | target/arm/translate.h | 10 + |
78 | target/arm/cpu-param.h | 3 + | 113 | target/arm/m-nocp.decode | 24 + |
79 | target/arm/cpu.h | 32 + | 114 | target/arm/mve.decode | 240 +++++++++ |
80 | target/arm/internals.h | 249 +------- | 115 | target/arm/vfp.decode | 14 - |
81 | target/arm/syndrome.h | 273 +++++++++ | 116 | hw/acpi/ghes-stub.c | 22 + |
82 | tests/tcg/aarch64/mte.h | 60 ++ | 117 | hw/acpi/ghes.c | 17 + |
83 | accel/tcg/translate-all.c | 32 +- | 118 | target/arm/cpu64.c | 2 +- |
84 | accel/tcg/user-exec.c | 51 +- | 119 | target/arm/kvm64.c | 6 +- |
85 | bsd-user/elfload.c | 2 +- | 120 | target/arm/mte_helper.c | 82 +-- |
86 | bsd-user/main.c | 8 +- | 121 | target/arm/mve_helper.c | 1160 +++++++++++++++++++++++++++++++++++++++++ |
87 | bsd-user/mmap.c | 23 +- | 122 | target/arm/translate-m-nocp.c | 550 +++++++++++++++++++ |
88 | hw/arm/npcm7xx.c | 68 ++- | 123 | target/arm/translate-mve.c | 759 +++++++++++++++++++++++++++ |
89 | hw/arm/npcm7xx_boards.c | 46 ++ | 124 | target/arm/translate-vfp.c | 741 +++++++------------------- |
90 | hw/i2c/npcm7xx_smbus.c | 1099 +++++++++++++++++++++++++++++++++++ | 125 | tcg/tcg-op-gvec.c | 20 +- |
91 | linux-user/aarch64/cpu_loop.c | 38 +- | 126 | MAINTAINERS | 1 + |
92 | linux-user/elfload.c | 18 +- | 127 | hw/acpi/meson.build | 6 +- |
93 | linux-user/flatload.c | 2 +- | 128 | target/arm/meson.build | 1 + |
94 | linux-user/hppa/cpu_loop.c | 39 +- | 129 | 27 files changed, 3578 insertions(+), 629 deletions(-) |
95 | linux-user/i386/cpu_loop.c | 6 +- | 130 | create mode 100644 docs/system/arm/emulation.rst |
96 | linux-user/i386/signal.c | 5 +- | 131 | create mode 100644 docs/system/arm/nrf.rst |
97 | linux-user/main.c | 4 +- | 132 | create mode 100644 target/arm/helper-mve.h |
98 | linux-user/mmap.c | 88 +-- | 133 | create mode 100644 hw/acpi/ghes-stub.c |
99 | linux-user/ppc/signal.c | 4 +- | 134 | create mode 100644 target/arm/mve_helper.c |
100 | linux-user/syscall.c | 165 ++++-- | ||
101 | linux-user/uaccess.c | 82 ++- | ||
102 | target/arm/cpu.c | 25 +- | ||
103 | target/arm/helper-a64.c | 4 +- | ||
104 | target/arm/mte_helper.c | 39 +- | ||
105 | target/arm/tlb_helper.c | 15 +- | ||
106 | target/arm/translate-a64.c | 25 +- | ||
107 | target/hppa/op_helper.c | 2 +- | ||
108 | target/i386/tcg/mem_helper.c | 2 +- | ||
109 | target/s390x/mem_helper.c | 4 +- | ||
110 | tests/qtest/npcm7xx_smbus-test.c | 495 ++++++++++++++++ | ||
111 | tests/tcg/aarch64/mte-1.c | 28 + | ||
112 | tests/tcg/aarch64/mte-2.c | 45 ++ | ||
113 | tests/tcg/aarch64/mte-3.c | 51 ++ | ||
114 | tests/tcg/aarch64/mte-4.c | 45 ++ | ||
115 | tests/tcg/aarch64/pauth-2.c | 1 - | ||
116 | MAINTAINERS | 11 + | ||
117 | hw/arm/Kconfig | 1 + | ||
118 | hw/i2c/meson.build | 1 + | ||
119 | hw/i2c/trace-events | 12 + | ||
120 | tests/qtest/meson.build | 1 + | ||
121 | tests/tcg/aarch64/Makefile.target | 6 + | ||
122 | tests/tcg/configure.sh | 4 + | ||
123 | 56 files changed, 2976 insertions(+), 553 deletions(-) | ||
124 | create mode 100644 include/hw/i2c/npcm7xx_smbus.h | ||
125 | create mode 100644 target/arm/syndrome.h | ||
126 | create mode 100644 tests/tcg/aarch64/mte.h | ||
127 | create mode 100644 hw/i2c/npcm7xx_smbus.c | ||
128 | create mode 100644 tests/qtest/npcm7xx_smbus-test.c | ||
129 | create mode 100644 tests/tcg/aarch64/mte-1.c | ||
130 | create mode 100644 tests/tcg/aarch64/mte-2.c | ||
131 | create mode 100644 tests/tcg/aarch64/mte-3.c | ||
132 | create mode 100644 tests/tcg/aarch64/mte-4.c | ||
133 | 135 | diff view generated by jsdifflib |