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-lts-allmodconfig in repository toolchain/ci/qemu.
from 15a0578903 Merge remote-tracking branch 'remotes/vivier-m68k/tags/m68k- [...] adds f0ed36a64f iothread: rename PollParamInfo to IOThreadParamInfo adds 1cc7eada97 iothread: use IOThreadParamInfo in iothread_[set|get]_param() adds c09124dcb8 Merge remote-tracking branch 'remotes/stefanha/tags/block-pu [...] adds 45a904af38 aspeed/smc: Add watchdog Control/Status Registers adds 32c54bd0ed aspeed/smc: Introduce aspeed_smc_error() helper adds d0180a3ae4 aspeed/smc: Stop using the model name for the memory regions adds 30b6852ce4 aspeed/smc: Drop AspeedSMCController structure adds a7d78beff4 aspeed/smc: Remove the 'flash' attribute from AspeedSMCFlash adds 6bb55e7967 aspeed/smc: Remove the 'size' attribute from AspeedSMCFlash adds 10f915e4ca aspeed/smc: Rename AspeedSMCFlash 'id' to 'cs' adds f75b533117 aspeed/smc: QOMify AspeedSMCFlash adds 71255c48e7 aspeed/smc: Add default reset values adds a779e37c68 aspeed/smc: Introduce a new addr_width() class handler adds 33456a8870 aspeed/smc: Remove unused attribute 'irqline' adds 602610383f aspeed/i2c: QOMify AspeedI2CBus adds 9fffe140a9 hw: aspeed_gpio: Fix pin I/O type declarations adds 87bd33e8b0 hw: aspeed_gpio: Fix GPIO array indexing adds 5857974d5d hw/adc: Add basic Aspeed ADC model adds 199fd6230c hw/arm: Integrate ADC model into Aspeed SoC adds a8eb9a4333 aspeed/wdt: Add trace events adds e2804a1ec9 aspeed/smc: Dump address offset in trace events adds 81d8537cb2 Merge remote-tracking branch 'remotes/clg/tags/pull-aspeed-2 [...] new 9557af9ce9 configure: don't override the selected host test compiler if [...] new 4f0ebed418 tests/tcg/sha1: remove endian include new 5343a837cd tests/tcg: move some multiarch files and make conditional new 5c24acf320 tests/docker: promote debian-riscv64-cross to a full image new 9f62025141 gitlab: Add cross-riscv64-system, cross-riscv64-user new 9d03f5abed travis.yml: Remove the "Release tarball" job new dcbad7a6ed gitlab: skip the check-patch job on the upstream repo new f13abca0a3 gitlab: fix passing of TEST_TARGETS env to cirrus new 6a78a987c6 plugins/: Add missing functions to symbol list new 5d23d53023 target/s390x: move tcg_gen_insn_start to s390x_tr_insn_start new 453d50ce75 accel/tcg: re-factor plugin_inject_cb so we can assert insn_ [...] new 9b89cdb2a5 .github: move repo lockdown to the v2 configuration new 17888749ba tests/docker: add a debian-native image and make available new bfd9a76f9c Merge remote-tracking branch 'remotes/stsquad/tags/pull-for- [...]
The 14 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: .github/lockdown.yml | 34 - .github/workflows/lockdown.yml | 30 + .gitlab-ci.d/cirrus.yml | 2 +- .gitlab-ci.d/cirrus/build.yml | 1 + .gitlab-ci.d/container-cross.yml | 3 +- .gitlab-ci.d/crossbuilds.yml | 19 + .gitlab-ci.d/static_checks.yml | 2 +- .travis.yml | 23 - accel/tcg/plugin-gen.c | 157 +-- configure | 6 +- hw/adc/aspeed_adc.c | 427 ++++++++ hw/adc/meson.build | 1 + hw/adc/trace-events | 3 + hw/arm/aspeed.c | 18 +- hw/arm/aspeed_ast2600.c | 22 +- hw/arm/aspeed_soc.c | 15 +- hw/gpio/aspeed_gpio.c | 88 +- hw/i2c/aspeed_i2c.c | 101 +- hw/ssi/aspeed_smc.c | 1134 +++++++++++--------- hw/watchdog/trace-events | 4 + hw/watchdog/wdt_aspeed.c | 5 + include/hw/adc/aspeed_adc.h | 55 + include/hw/arm/aspeed_soc.h | 2 + include/hw/gpio/aspeed_gpio.h | 5 +- include/hw/i2c/aspeed_i2c.h | 8 +- include/hw/ssi/aspeed_smc.h | 82 +- include/tcg/tcg.h | 6 - iothread.c | 28 +- plugins/qemu-plugins.symbols | 3 + target/s390x/tcg/translate.c | 10 +- tests/docker/Makefile.include | 6 +- tests/docker/common.rc | 10 +- tests/docker/dockerfiles/debian-native.docker | 49 + .../docker/dockerfiles/debian-riscv64-cross.docker | 46 +- tests/tcg/multiarch/Makefile.target | 15 +- tests/tcg/multiarch/{ => libs}/float_helpers.c | 2 +- tests/tcg/multiarch/{ => linux}/linux-test.c | 0 tests/tcg/multiarch/sha1.c | 1 - tests/tcg/x86_64/Makefile.target | 4 + 39 files changed, 1638 insertions(+), 789 deletions(-) delete mode 100644 .github/lockdown.yml create mode 100644 .github/workflows/lockdown.yml create mode 100644 hw/adc/aspeed_adc.c create mode 100644 include/hw/adc/aspeed_adc.h create mode 100644 tests/docker/dockerfiles/debian-native.docker rename tests/tcg/multiarch/{ => libs}/float_helpers.c (99%) rename tests/tcg/multiarch/{ => linux}/linux-test.c (100%)