1 | Third time's the charm... | 1 | v2: dropped a couple of cadence_gem changes to ID regs that |
---|---|---|---|
2 | caused new clang sanitizer warnings. | ||
2 | 3 | ||
3 | -- PMM | 4 | -- PMM |
4 | 5 | ||
5 | The following changes since commit 98bfaac788be0ca63d7d010c8d4ba100ff1d8278: | 6 | The following changes since commit dddb37495b844270088e68e3bf30b764d48d863f: |
6 | 7 | ||
7 | Merge remote-tracking branch 'remotes/armbru/tags/pull-qapi-2017-09-01-v3' into staging (2017-09-04 13:28:09 +0100) | 8 | Merge remote-tracking branch 'remotes/awilliam/tags/vfio-updates-20181015.0' into staging (2018-10-15 18:44:04 +0100) |
8 | 9 | ||
9 | are available in the git repository at: | 10 | are available in the Git repository at: |
10 | 11 | ||
11 | git://git.linaro.org/people/pmaydell/qemu-arm.git tags/pull-target-arm-20170904-2 | 12 | https://git.linaro.org/people/pmaydell/qemu-arm.git tags/pull-target-arm-20181016-1 |
12 | 13 | ||
13 | for you to fetch changes up to 7229ec5825df6b933f150b54a8a2bedd2de1864c: | 14 | for you to fetch changes up to 2ef297af07196c29446556537861f8e7dfeeae7b: |
14 | 15 | ||
15 | arm_gicv3_kvm: Fix compile warning (2017-09-04 17:13:53 +0100) | 16 | coccinelle: new inplace-byteswaps.cocci to remove inplace-byteswapping calls (2018-10-16 17:14:55 +0100) |
16 | 17 | ||
17 | ---------------------------------------------------------------- | 18 | ---------------------------------------------------------------- |
18 | target-arm: | 19 | target-arm queue: |
19 | * collection of M profile cleanups and minor bugfixes | 20 | * hw/arm/virt: add DT property /secure-chosen/stdout-path indicating secure UART |
20 | * loader: handle ELF files with overlapping zero-init data | 21 | * target/arm: Fix aarch64_sve_change_el wrt EL0 |
21 | * virt: allow PMU instantiation with userspace irqchip | 22 | * target/arm: Define fields of ISAR registers |
22 | * wdt_aspeed: Add support for the reset width register | 23 | * target/arm: Align cortex-r5 id_isar0 |
23 | * cpu: Define new cpu_transaction_failed() hook | 24 | * target/arm: Fix cortex-a7 id_isar0 |
24 | * Mark some SoC devices as not user-creatable | 25 | * net/cadence_gem: Fix various bugs, add support for new |
25 | * arm: Fix aa64 ldp register writeback | 26 | features that will be used by the Xilinx Versal board |
26 | * arm_gicv3_kvm: Fix compile warning | 27 | * target-arm: powerctl: Enable HVC when starting CPUs to EL2 |
28 | * target/arm: Add the Cortex-A72 | ||
29 | * target/arm: Mark PMINTENCLR and PMINTENCLR_EL1 accesses as possibly doing IO | ||
30 | * target/arm: Mask PMOVSR writes based on supported counters | ||
31 | * target/arm: Initialize ARMMMUFaultInfo in v7m_stack_read/write | ||
32 | * coccinelle: new inplace-byteswaps.cocci to remove inplace-byteswapping calls | ||
27 | 33 | ||
28 | ---------------------------------------------------------------- | 34 | ---------------------------------------------------------------- |
29 | Andrew Jeffery (2): | 35 | Aaron Lindsay (2): |
30 | watchdog: wdt_aspeed: Add support for the reset width register | 36 | target/arm: Mark PMINTENCLR and PMINTENCLR_EL1 accesses as possibly doing IO |
31 | aspeed_soc: Propagate silicon-rev to watchdog | 37 | target/arm: Mask PMOVSR writes based on supported counters |
32 | 38 | ||
33 | Andrew Jones (4): | 39 | Edgar E. Iglesias (8): |
34 | hw/arm/virt: add pmu interrupt state | 40 | net: cadence_gem: Disable TSU feature bit |
35 | target/arm/kvm: pmu: split init and set-irq stages | 41 | net: cadence_gem: Use uint32_t for 32bit descriptor words |
36 | hw/arm/virt: allow pmu instantiation with userspace irqchip | 42 | net: cadence_gem: Add macro with max number of descriptor words |
37 | target/arm/kvm: pmu: improve error handling | 43 | net: cadence_gem: Add support for extended descriptors |
44 | net: cadence_gem: Add support for selecting the DMA MemoryRegion | ||
45 | net: cadence_gem: Implement support for 64bit descriptor addresses | ||
46 | target-arm: powerctl: Enable HVC when starting CPUs to EL2 | ||
47 | target/arm: Add the Cortex-A72 | ||
38 | 48 | ||
39 | Peter Maydell (22): | 49 | Jerome Forissier (1): |
40 | target/arm: Use MMUAccessType enum rather than int | 50 | hw/arm/virt: add DT property /secure-chosen/stdout-path indicating secure UART |
41 | target/arm: Don't trap WFI/WFE for M profile | ||
42 | target/arm: Consolidate PMSA handling in get_phys_addr() | ||
43 | target/arm: Tighten up Thumb decode where new v8M insns will be | ||
44 | hw/intc/armv7m_nvic.c: Remove out of date comment | ||
45 | target/arm: Remove incorrect comment about MPU_CTRL | ||
46 | target/arm: Fix outdated comment about exception exit | ||
47 | target/arm: Define and use XPSR bit masks | ||
48 | target/arm: Don't store M profile PRIMASK and FAULTMASK in daif | ||
49 | target/arm: Don't use cpsr_write/cpsr_read to transfer M profile XPSR | ||
50 | target/arm: Make arm_cpu_dump_state() handle the M-profile XPSR | ||
51 | target/arm: Don't calculate lr in arm_v7m_cpu_do_interrupt() until needed | ||
52 | target/arm: Create and use new function arm_v7m_is_handler_mode() | ||
53 | armv7m_nvic.h: Move from include/hw/arm to include/hw/intc | ||
54 | nvic: Implement "user accesses BusFault" SCS region behaviour | ||
55 | loader: Handle ELF files with overlapping zero-initialized data | ||
56 | loader: Ignore zero-sized ELF segments | ||
57 | memory.h: Move MemTxResult type to memattrs.h | ||
58 | cpu: Define new cpu_transaction_failed() hook | ||
59 | cputlb: Support generating CPU exceptions on memory transaction failures | ||
60 | target/arm: Factor out fault delivery code | ||
61 | target/arm: Allow deliver_fault() caller to specify EA bit | ||
62 | 51 | ||
63 | Philippe Mathieu-Daudé (1): | 52 | Peter Maydell (2): |
64 | hw/arm: use defined type name instead of hard-coded string | 53 | target/arm: Initialize ARMMMUFaultInfo in v7m_stack_read/write |
54 | coccinelle: new inplace-byteswaps.cocci to remove inplace-byteswapping calls | ||
65 | 55 | ||
66 | Pranith Kumar (1): | 56 | Richard Henderson (4): |
67 | arm_gicv3_kvm: Fix compile warning | 57 | target/arm: Fix aarch64_sve_change_el wrt EL0 |
58 | target/arm: Define fields of ISAR registers | ||
59 | target/arm: Align cortex-r5 id_isar0 | ||
60 | target/arm: Fix cortex-a7 id_isar0 | ||
68 | 61 | ||
69 | Richard Henderson (1): | 62 | include/hw/net/cadence_gem.h | 7 +- |
70 | target/arm: Fix aa64 ldp register writeback | 63 | target/arm/cpu.h | 95 ++++++++++++++- |
64 | hw/arm/virt.c | 4 + | ||
65 | hw/net/cadence_gem.c | 185 ++++++++++++++++++++--------- | ||
66 | target/arm/arm-powerctl.c | 10 ++ | ||
67 | target/arm/cpu.c | 7 +- | ||
68 | target/arm/cpu64.c | 66 +++++++++- | ||
69 | target/arm/helper.c | 27 +++-- | ||
70 | target/arm/op_helper.c | 6 +- | ||
71 | scripts/coccinelle/inplace-byteswaps.cocci | 65 ++++++++++ | ||
72 | 10 files changed, 402 insertions(+), 70 deletions(-) | ||
73 | create mode 100644 scripts/coccinelle/inplace-byteswaps.cocci | ||
71 | 74 | ||
72 | Thomas Huth (2): | ||
73 | hw/arm/aspeed_soc: Mark devices as user_creatable = false | ||
74 | hw/arm/digic: Mark device with user_creatable = false | ||
75 | |||
76 | include/exec/memattrs.h | 10 +++ | ||
77 | include/exec/memory.h | 10 --- | ||
78 | include/hw/arm/armv7m.h | 2 +- | ||
79 | include/hw/elf_ops.h | 72 +++++++++++++++++-- | ||
80 | include/hw/{arm => intc}/armv7m_nvic.h | 0 | ||
81 | include/hw/watchdog/wdt_aspeed.h | 2 + | ||
82 | include/qom/cpu.h | 22 ++++++ | ||
83 | softmmu_template.h | 4 +- | ||
84 | target/arm/cpu.h | 56 +++++++++++---- | ||
85 | target/arm/internals.h | 5 +- | ||
86 | target/arm/kvm_arm.h | 9 ++- | ||
87 | accel/tcg/cputlb.c | 32 ++++++++- | ||
88 | hw/arm/armv7m.c | 4 +- | ||
89 | hw/arm/aspeed_soc.c | 4 ++ | ||
90 | hw/arm/digic.c | 2 + | ||
91 | hw/arm/exynos4210.c | 4 +- | ||
92 | hw/arm/highbank.c | 11 +-- | ||
93 | hw/arm/realview.c | 6 +- | ||
94 | hw/arm/vexpress.c | 6 +- | ||
95 | hw/arm/virt.c | 12 +++- | ||
96 | hw/arm/xilinx_zynq.c | 14 ++-- | ||
97 | hw/intc/arm_gicv3_kvm.c | 2 +- | ||
98 | hw/intc/armv7m_nvic.c | 68 +++++++++++------- | ||
99 | hw/watchdog/wdt_aspeed.c | 93 ++++++++++++++++++++++--- | ||
100 | target/arm/cpu.c | 7 +- | ||
101 | target/arm/helper.c | 124 ++++++++++++++++----------------- | ||
102 | target/arm/kvm.c | 6 +- | ||
103 | target/arm/kvm32.c | 8 ++- | ||
104 | target/arm/kvm64.c | 63 ++++++++++------- | ||
105 | target/arm/machine.c | 54 +++++++++++++- | ||
106 | target/arm/op_helper.c | 121 +++++++++++++++++--------------- | ||
107 | target/arm/translate-a64.c | 29 ++++---- | ||
108 | target/arm/translate.c | 106 +++++++++++++++++++++------- | ||
109 | 33 files changed, 677 insertions(+), 291 deletions(-) | ||
110 | rename include/hw/{arm => intc}/armv7m_nvic.h (100%) | ||
111 | diff view generated by jsdifflib |