Hi! The following changes since commit c1eb2ddf0f8075faddc5f7c3d39feae3e8e9d6b4:
Update version for v8.0.0 release (2023-04-19 17:27:13 +0100) are available in the Git repository at: https://gitlab.com/thuth/qemu.git tags/pull-request-2023-04-20 for you to fetch changes up to ec6fb1c8cd8d55c3d2a34cacfea6df0fe6c76057: tests/vm/freebsd: Update to FreeBSD 13.2 (2023-04-20 11:28:16 +0200) ---------------------------------------------------------------- * Compat machines for version 8.1 * Allow setting a chardev input file on the command line * Fix .travis.yml to work with non-public Travis instances, too * Move a lot of code from specifc_ss into softmmu_ss * Add a test case for TPM TIS I2C connected to Aspeed I2C controller * Update tests/vm/freebsd to version 13 * Some more misc minor fixes here and there ---------------------------------------------------------------- Cornelia Huck (1): hw: Add compat machines for 8.1 Juan Quintela (3): test: Fix test-crypto-secret when compiling without keyring support tests/migration: Only run auto_converge in slow mode MAINTAINERS: Add Juan Quintela to developer guides review Peter Maydell (2): qtest: Don't assert on "-qtest chardev:myid" chardev: Allow setting file chardev input file on the command line Stefan Berger (3): qtest: Add functions for accessing devices on Aspeed I2C controller qtest: Move tpm_util_tis_transmit() into tpm-tis-utils.c and rename it qtest: Add a test case for TPM TIS I2C connected to Aspeed I2C controller Stefan Weil (2): docs: Fix typo (wphx => whpx) docs/cxl: Fix sentence Thomas Huth (10): target/i386: Set family/model/stepping of the "max" CPU according to LM bit hw/char: Move two more files from specific_ss to softmmu_ss softmmu/qtest: Move the target-specific pseries RTAS code out of qtest.c include/exec: Provide the tswap() functions for target independent code, too softmmu: Make qtest.c target independent hw/display: Compile vga.c as target-independent code softmmu: Move dirtylimit.c into the target independent source set hw/core: Move numa.c into the target independent source set cpu: Remove parameter of list_cpus() tests/vm/freebsd: Update to FreeBSD 13.2 Vaibhav Jain (2): travis.yml: Add missing clang-10 package to the 'Clang (disable-tcg)' job travis.yml: Add missing 'flex', 'bison' packages to 'GCC (user)' job MAINTAINERS | 1 + docs/system/devices/cxl.rst | 2 +- docs/system/introduction.rst | 2 +- include/exec/cpu-all.h | 64 +-- include/exec/cpu-common.h | 2 +- include/exec/tswap.h | 72 ++++ include/hw/boards.h | 3 + include/hw/i2c/aspeed_i2c.h | 7 + include/hw/i386/pc.h | 3 + include/sysemu/qtest.h | 4 + tests/qtest/qtest_aspeed.h | 41 ++ tests/qtest/tpm-tis-util.h | 4 + tests/qtest/tpm-util.h | 3 - chardev/char-file.c | 8 + chardev/char.c | 3 + cpu.c | 2 +- hw/arm/virt.c | 9 +- hw/core/machine.c | 3 + hw/display/vga.c | 31 +- hw/i386/pc.c | 3 + hw/i386/pc_piix.c | 16 +- hw/i386/pc_q35.c | 14 +- hw/m68k/virt.c | 9 +- hw/ppc/spapr.c | 15 +- hw/ppc/spapr_rtas.c | 29 ++ hw/s390x/s390-virtio-ccw.c | 14 +- softmmu/dirtylimit.c | 3 +- softmmu/qtest.c | 53 +-- softmmu/vl.c | 2 +- target/i386/cpu.c | 31 +- tests/qtest/migration-test.c | 23 +- tests/qtest/qtest_aspeed.c | 117 ++++++ tests/qtest/tpm-crb-swtpm-test.c | 3 - tests/qtest/tpm-crb-test.c | 3 - tests/qtest/tpm-tis-device-swtpm-test.c | 5 +- tests/qtest/tpm-tis-i2c-test.c | 663 ++++++++++++++++++++++++++++++++ tests/qtest/tpm-tis-swtpm-test.c | 5 +- tests/qtest/tpm-tis-util.c | 47 ++- tests/qtest/tpm-util.c | 45 --- tests/unit/test-crypto-secret.c | 10 +- .travis.yml | 5 +- hw/char/meson.build | 5 +- hw/core/meson.build | 2 +- hw/display/meson.build | 2 +- qemu-options.hx | 10 +- softmmu/meson.build | 4 +- tests/qtest/meson.build | 3 + tests/vm/freebsd | 101 ++--- 48 files changed, 1224 insertions(+), 282 deletions(-) create mode 100644 include/exec/tswap.h create mode 100644 tests/qtest/qtest_aspeed.h create mode 100644 tests/qtest/qtest_aspeed.c create mode 100644 tests/qtest/tpm-tis-i2c-test.c