This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_kernel/gnu-master-arm-next-allnoconfig in repository toolchain/ci/qemu.
from b3f846c59d Merge remote-tracking branch 'remotes/huth-gitlab/tags/pull- [...] new c36c65ea3c target/arm: ARMv8.4-TTST extension new 078e9fe3cb target/arm: enable Small Translation tables in max CPU new 9a286bcdfd target/arm: fix typo in cpu.h ID_AA64PFR1 field name new f6450bcb6b target/arm: make ARMCPU.clidr 64-bit new a5fd319ae7 target/arm: make ARMCPU.ctr 64-bit new 2a14526a6f target/arm: add descriptions of CLIDR_EL1, CCSIDR_EL1, CTR_E [...] new 00a92832f4 target/arm: add aarch64 ID register fields to cpu.h new bd78b6be24 target/arm: add aarch32 ID register fields to cpu.h new 8d6fda8c10 ui/cocoa: Update path to docs in build tree new fa56cf7e86 docs: Add qemu-storage-daemon(1) manpage to meson.build new e4d51ac692 target/arm: Don't decode insns in the XScale/iWMMXt space as [...] new e7e29fdbbe hw/net/lan9118: Fix RX Status FIFO PEEK value new 5cab6d5a5a hw/net/lan9118: Add symbolic constants for register offsets new bcda710f6c hw/misc: Add clock converter in NPCM7XX CLK module new 0be12dc76a hw/timer: Refactor NPCM7XX Timer to use CLK clock new 77c05b0b74 hw/adc: Add an ADC module for NPCM7XX new 1e943c586a hw/misc: Add a PWM module for NPCM7XX new 73314f1384 hw/misc: Add QTest for NPCM7XX PWM Module new 828d651c58 hw/*: Use type casting for SysBusDevice in NPCM7XX new 1ff5a063d6 ui/cocoa: Fix openFile: deprecation on Big Sur new f8e1d8852e Merge remote-tracking branch 'remotes/pmaydell/tags/pull-tar [...]
The 21 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: docs/meson.build | 1 + docs/system/arm/nuvoton.rst | 4 +- hw/adc/meson.build | 1 + hw/adc/npcm7xx_adc.c | 301 +++++++++++++++ hw/adc/trace-events | 5 + hw/adc/trace.h | 1 + hw/arm/npcm7xx.c | 55 ++- hw/arm/npcm7xx_boards.c | 2 +- hw/mem/npcm7xx_mc.c | 2 +- hw/misc/meson.build | 1 + hw/misc/npcm7xx_clk.c | 797 ++++++++++++++++++++++++++++++++++++++- hw/misc/npcm7xx_gcr.c | 2 +- hw/misc/npcm7xx_pwm.c | 550 +++++++++++++++++++++++++++ hw/misc/npcm7xx_rng.c | 2 +- hw/misc/trace-events | 6 + hw/net/lan9118.c | 26 +- hw/nvram/npcm7xx_otp.c | 2 +- hw/ssi/npcm7xx_fiu.c | 2 +- hw/timer/npcm7xx_timer.c | 39 +- include/hw/adc/npcm7xx_adc.h | 69 ++++ include/hw/arm/npcm7xx.h | 4 + include/hw/misc/npcm7xx_clk.h | 146 ++++++- include/hw/misc/npcm7xx_pwm.h | 105 ++++++ include/hw/timer/npcm7xx_timer.h | 1 + meson.build | 1 + target/arm/cpu.h | 85 ++++- target/arm/cpu64.c | 1 + target/arm/helper.c | 15 +- target/arm/translate.c | 7 + tests/qtest/meson.build | 4 +- tests/qtest/npcm7xx_adc-test.c | 377 ++++++++++++++++++ tests/qtest/npcm7xx_pwm-test.c | 490 ++++++++++++++++++++++++ ui/cocoa.m | 7 +- 33 files changed, 3049 insertions(+), 62 deletions(-) create mode 100644 hw/adc/npcm7xx_adc.c create mode 100644 hw/adc/trace-events create mode 100644 hw/adc/trace.h create mode 100644 hw/misc/npcm7xx_pwm.c create mode 100644 include/hw/adc/npcm7xx_adc.h create mode 100644 include/hw/misc/npcm7xx_pwm.h create mode 100644 tests/qtest/npcm7xx_adc-test.c create mode 100644 tests/qtest/npcm7xx_pwm-test.c