qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
 messages from 2024-01-11 23:30:40 to 2024-01-12 13:36:02 UTC [more...]

[PATCH 0/2] Export debug triggers as an extension
 2024-01-12 13:34 UTC  (8+ messages)
` [PATCH 1/2] target/riscv: Export sdtrig as an extension and ISA string
` [PATCH 2/2] target/riscv: Raise an exception when sdtrig is turned off

[PULL 00/13] replay fixes for replay_kernel
 2024-01-12 13:27 UTC  (5+ messages)
` [PULL 13/13] tests/avocado: remove skips from replay_kernel

[PATCH 00/88] esp: rework ESP emulation to use a SCSI phase-based state machine
 2024-01-12 12:54 UTC  (89+ messages)
` [PATCH 01/88] esp: don't clear cmdfifo when esp_select() fails in get_cmd()
` [PATCH 02/88] esp: move existing request cancel check into esp_select()
` [PATCH 03/88] esp.c: add FIFO wraparound support to esp_fifo_pop_buf()
` [PATCH 04/88] esp: remove FIFO clear from esp_select()
` [PATCH 05/88] esp: move esp_select() to ESP selection commands from get_cmd()
` [PATCH 06/88] esp: update esp_set_tc() to set STAT_TC flag
` [PATCH 07/88] esp: start removal of manual STAT_TC setting when transfer counter reaches zero
` [PATCH 08/88] esp: move command execution logic to new esp_run_cmd() function
` [PATCH 09/88] esp: update TC check logic in do_dma_pdma_cb() to check for TC == 0
` [PATCH 10/88] esp: move buffer and TC logic into separate to/from device paths in esp_do_dma()
` [PATCH 11/88] esp.c: remove unused case from esp_pdma_read()
` [PATCH 12/88] esp.c: don't accumulate directly into cmdfifo
` [PATCH 13/88] esp.c: decrement the TC during MESSAGE OUT and COMMAND phases
` [PATCH 14/88] esp.c: introduce esp_set_phase() helper function
` [PATCH 15/88] esp.c: remove another set of manual STAT_TC updates
` [PATCH 16/88] esp.c: remove MacOS TI workaround that pads FIFO transfers to ESP_FIFO_SZ
` [PATCH 17/88] esp.c: don't reset the TC and ESP_RSEQ state when executing a SCSI command
` [PATCH 18/88] esp.c: don't clear RFLAGS register when DMA is complete
` [PATCH 19/88] esp: remove zero transfer size check from esp_do_dma()
` [PATCH 20/88] esp.c: update condition for esp_dma_done() in esp_do_dma() from device path
` [PATCH 21/88] esp.c: update condition for esp_dma_done() in esp_do_dma() to "
` [PATCH 22/88] esp.c: ensure that the PDMA callback is called for every device read
` [PATCH 23/88] esp.c: don't immediately raise INTR_BS if SCSI data needed in esp_do_dma()
` [PATCH 24/88] esp.c: remove TC adjustment in esp_do_dma() from device path
` [PATCH 25/88] esp.c: remove unaligned adjustment in do_dma_pdma_cb() to "
` [PATCH 26/88] esp.c: remove unneeded if() check in esp_transfer_data()
` [PATCH 27/88] esp.c: update end of transfer logic at the end of esp_transfer_data()
` [PATCH 28/88] esp.c: consolidate async_len and TC == 0 checks in do_dma_pdma_cb() and esp_do_dma()
` [PATCH 29/88] esp.c: fix premature end of phase logic esp_command_complete
` [PATCH 30/88] esp.c: move TC and FIFO check logic into esp_dma_done()
` [PATCH 31/88] esp.c: rename esp_dma_done() to esp_dma_ti_check()
` [PATCH 32/88] esp.c: copy PDMA logic for transfers to device from do_dma_pdma_cb() to esp_do_dma()
` [PATCH 33/88] esp.c: copy logic for do_cmd transfers "
` [PATCH 34/88] esp.c: update esp_do_dma() bypass if async_len is zero to include non-zero transfer check
` [PATCH 35/88] esp.c: move end of SCSI transfer check after TC adjustment in do_dma_pdma_cb()
` [PATCH 36/88] esp.c: remove s_without_satn_pdma_cb() PDMA callback
` [PATCH 37/88] esp.c: introduce esp_get_phase() function
` [PATCH 38/88] esp.c: convert esp_do_dma() to switch statement based upon SCSI phase
` [PATCH 39/88] esp.c: convert do_dma_pdma_db() "
` [PATCH 40/88] esp.c: convert esp_do_nodma() "
` [PATCH 41/88] esp.c: convert esp_do_dma() do_cmd path to check for SCSI phase instead
` [PATCH 42/88] esp.c: convert do_dma_pdma_cb() "
` [PATCH 43/88] esp.c: convert esp_do_nodma() "
` [PATCH 44/88] esp.c: convert esp_reg_write() "
` [PATCH 45/88] esp.c: remove do_cmd from ESPState
` [PATCH 46/88] esp.c: untangle MESSAGE OUT and COMMAND phase logic in esp_do_dma()
` [PATCH 47/88] esp.c: untangle MESSAGE OUT and COMMAND phase logic in do_dma_pdma_cb()
` [PATCH 48/88] esp.c: untangle MESSAGE OUT and COMMAND phase logic in esp_do_nodma()
` [PATCH 49/88] esp.c: move CMD_SELATN end of message phase detection to esp_do_dma() and do_dma_pdma_cb()
` [PATCH 50/88] esp.c: move CMD_TI "
` [PATCH 51/88] esp.c: don't use get_cmd() for CMD_SEL DMA commands
` [PATCH 52/88] esp.c: move CMD_SELATNS end of command logic to esp_do_dma() and do_dma_pdma_cb()
` [PATCH 53/88] esp.c: replace do_dma_pdma_cb() with esp_do_dma()
` [PATCH 54/88] esp.c: move CMD_ICCS command logic to esp_do_dma()
` [PATCH 55/88] esp.c: always use esp_do_dma() in pdma_cb()
` [PATCH 56/88] esp.c: remove unused PDMA callback implementation
` [PATCH 57/88] esp.c: rename data_in_ready to to data_ready
` [PATCH 58/88] esp.c: separate logic based upon ESP command in esp_command_complete()
` [PATCH 59/88] esp.c: separate logic based upon ESP command in esp_transfer_data()
` [PATCH 60/88] esp.c: use deferred interrupts for both DATA IN and DATA OUT phases
` [PATCH 61/88] esp.c: remove DATA IN phase logic when reading from FIFO
` [PATCH 62/88] esp.c: zero command register when TI command terminates due to phase change
` [PATCH 63/88] esp.c: remove unneeded ti_cmd field
` [PATCH 64/88] esp.c: don't raise INTR_BS interrupt in DATA IN phase until TI command issued
` [PATCH 65/88] esp.c: move non-DMA TI logic to separate esp_nodma_ti_dataout() function
` [PATCH 66/88] esp.c: process non-DMA FIFO writes in esp_do_nodma()
` [PATCH 67/88] esp.c: replace get_cmd() with esp_do_nodma()
` [PATCH 68/88] esp.c: move write_response() non-DMA logic to esp_do_nodma()
` [PATCH 69/88] esp.c: consolidate end of command sequence after ICCS command
` [PATCH 70/88] esp.c: ensure that STAT_INT is cleared when reading ESP_RINTR
` [PATCH 71/88] esp.c: don't clear the SCSI phase "
` [PATCH 72/88] esp.c: handle TC underflow for DMA SCSI requests
` [PATCH 73/88] esp.c: remove restriction on FIFO read access when DMA memory routines defined
` [PATCH 74/88] esp.c: handle non-DMA FIFO writes used to terminate DMA commands
` [PATCH 75/88] esp.c: improve ESP_RSEQ logic consolidation
` [PATCH 76/88] esp.c: only transfer non-DMA COMMAND phase data for specific commands
` [PATCH 77/88] esp.c: only transfer non-DMA MESSAGE OUT "
` [PATCH 78/88] esp.c: consolidate DMA and PDMA logic in DATA OUT phase
` [PATCH 79/88] esp.c: consolidate DMA and PDMA logic in DATA IN phase
` [PATCH 80/88] esp.c: consolidate DMA and PDMA logic in MESSAGE OUT phase
` [PATCH 81/88] esp.c: remove redundant n variable in PDMA COMMAND phase
` [PATCH 82/88] esp.c: consolidate DMA and PDMA logic in STATUS and MESSAGE IN phases
` [PATCH 83/88] esp.c: replace n variable with len in esp_do_nodma()
` [PATCH 84/88] esp.c: implement DMA Transfer Pad command for DATA phases
` [PATCH 85/88] esp.c: rename irq_data IRQ to drq_irq
` [PATCH 86/88] esp.c: keep track of the DRQ state during DMA
` [PATCH 87/88] esp.c: switch TypeInfo registration to use DEFINE_TYPES() macro
` [PATCH 88/88] esp.c: add my copyright to the file

[PATCH 0/4] esp-pci: fixes for Linux and MS-DOS
 2024-01-12 13:15 UTC  (5+ messages)
` [PATCH 1/4] esp-pci.c: use correct address register for PCI DMA transfers
` [PATCH 2/4] esp-pci.c: generate PCI interrupt from separate ESP and PCI sources
` [PATCH 3/4] esp-pci.c: synchronise setting of DMA_STAT_DONE with ESP completion interrupt
` [PATCH 4/4] esp-pci.c: set DMA_STAT_BCMBLT when BLAST command issued

[PULL 00/22] testing and misc updates
 2024-01-12 13:11 UTC  (25+ messages)
` [PULL 01/22] tests/avocado: Add a test for a little-endian microblaze machine
` [PULL 02/22] tests/avocado: use snapshot=on in kvm_xen_guest
` [PULL 03/22] gitlab: include microblazeel in testing
` [PULL 04/22] chardev: use bool for fe_is_open
` [PULL 05/22] qtest: bump min meson timeout to 60 seconds
` [PULL 06/22] qtest: bump migration-test timeout to 8 minutes
` [PULL 07/22] qtest: bump qom-test timeout to 15 minutes
` [PULL 08/22] qtest: bump npcm7xx_pwm-test timeout to 5 minutes
` [PULL 09/22] qtest: bump test-hmp timeout to 4 minutes
` [PULL 10/22] qtest: bump pxe-test timeout to 10 minutes
` [PULL 11/22] qtest: bump prom-env-test timeout to 6 minutes
` [PULL 12/22] qtest: bump boot-serial-test timeout to 3 minutes
` [PULL 13/22] qtest: bump qos-test timeout to 2 minutes
` [PULL 14/22] qtest: bump aspeed_smc-test timeout to 6 minutes
` [PULL 15/22] qtest: bump bios-table-test timeout to 9 minutes
` [PULL 16/22] tests/qtest: Bump the device-introspect-test timeout to 12 minutes
` [PULL 17/22] tests/unit: Bump test-aio-multithread test timeout to 2 minutes
` [PULL 18/22] tests/unit: Bump test-crypto-block test timeout to 5 minutes
` [PULL 19/22] tests/fp: Bump fp-test-mulAdd test timeout to 3 minutes
` [PULL 20/22] mtest2make: stop disabling meson test timeouts
` [PULL 21/22] readthodocs: fully specify a build environment
` [PULL 22/22] Revert "tests/avocado: remove skips from replay_kernel"

[PATCH 0/2] ppc: Rename power5+ and power7+ for the new QOM naming rules
 2024-01-12 12:48 UTC  (8+ messages)
` [PATCH 1/2] target/ppc/cpu-models: Rename power5+ and power7+ for "

[PULL 00/14] loongarch-to-apply queue
 2024-01-12 12:48 UTC  (2+ messages)

[PULL 0/6] Firmware/edk2 20231213 patches
 2024-01-12 12:47 UTC  (6+ messages)
      `  "

[PATCH] load_elf: fix iterator type in glue
 2024-01-12 12:46 UTC  (3+ messages)
` [PATCH v2] load_elf: fix iterators' types for elf file processing

[RFC PATCH v3 00/30] migration: File based migration with multifd and fixed-ram
 2024-01-12 10:40 UTC  (6+ messages)
` [RFC PATCH v3 04/30] io: fsync before closing a file channel

[PATCH] coroutine-ucontext: Save fake stack for pooled coroutine
 2024-01-12 10:36 UTC 

[PATCH v3 0/9] target/hppa qemu v8.2 regression fixes
 2024-01-12 10:29 UTC  (10+ messages)
` [PATCH v3 1/9] hw/hppa/machine: Allow up to 3840 MB total memory
` [PATCH v3 2/9] hw/hppa/machine: Disable default devices with --nodefaults option
` [PATCH v3 3/9] hw/pci-host/astro: Add missing astro & elroy registers for NetBSD
` [PATCH v3 4/9] target/hppa: Fix PDC address translation on PA2.0 with PSW.W=0
` [PATCH v3 5/9] hw/hppa: Move software power button address back into PDC
` [PATCH v3 6/9] target/hppa: Avoid accessing %gr0 when raising exception
` [PATCH v3 7/9] target/hppa: Export function hppa_set_ior_and_isr()
` [PATCH v3 8/9] target/hppa: Fix IOR and ISR on unaligned access trap
` [PATCH v3 9/9] target/hppa: Fix IOR and ISR on error in probe

[PATCH 00/33] hw/cpu/arm: Remove one use of qemu_get_cpu() in A7/A15 MPCore priv
 2024-01-12 10:26 UTC  (22+ messages)

[PATCH 0/5] Remove deprecated command line options
 2024-01-12 10:13 UTC  (7+ messages)
` [PATCH 1/5] qemu-options: Remove the deprecated -no-hpet option
` [PATCH 2/5] qemu-options: Remove the deprecated -no-acpi option
` [PATCH 3/5] qemu-options: Remove the deprecated -async-teardown option
` [PATCH 4/5] qemu-options: Remove the deprecated -chroot option
` [PATCH 5/5] qemu-options: Remove the deprecated -singlestep option

[PATCH 0/2] gitlab: Add config for Loongarch64 custom runner
 2024-01-12  9:52 UTC  (6+ messages)
` [PATCH 1/2] gitlab: Introduce Loongarch64 runner

[PATCH v4 0/4] hw/misc/pvpanic: add support for normal shutdowns
 2024-01-12  9:51 UTC  (9+ messages)
` [PATCH v4 1/4] linux-headers: drop pvpanic.h
` [PATCH v4 2/4] hw/misc/pvpanic: centralize definition of supported events
` [PATCH v4 3/4] tests/qtest/pvpanic: use centralized "
` [PATCH v4 4/4] hw/misc/pvpanic: add support for normal shutdowns

[PATCH v5 0/3] Support RISC-V IOPMP
 2024-01-12  9:43 UTC  (4+ messages)
` [PATCH v5 1/3] hw/core: Add config stream
` [PATCH v5 2/3] Add RISC-V IOPMP support
` [PATCH v5 3/3] hw/riscv/virt: Add "

[PATCH 00/12] TCG Plugin inline operation enhancement
 2024-01-12  8:58 UTC  (10+ messages)
` [PATCH 04/12] tests/plugin/inline: migrate to new per_vcpu API
` [PATCH 09/12] contrib/plugins/hotblocks: "
` [PATCH 10/12] contrib/plugins/howvec: "

[PATCH] vhost-user: add VIRTIO_F_IN_ORDER and VIRTIO_F_NOTIFICATION_DATA feature
 2024-01-12  8:18 UTC  (3+ messages)
      ` FW: "

[PATCH v2 0/9] target/hppa qemu v8.2 regression fixes
 2024-01-12  7:52 UTC  (8+ messages)
` [PATCH v2 2/9] hw/hppa/machine: Disable default devices with --nodefaults option

[PATCH] util/uri: Remove is_hex() function
 2024-01-12  7:19 UTC  (3+ messages)

[PATCH v4 0/2] Add support for LAM in QEMU
 2024-01-12  6:00 UTC  (3+ messages)
` [PATCH v4 1/2] target/i386: add support for LAM in CPUID enumeration
` [PATCH v4 2/2] target/i386: add control bits support for LAM

[PATCH 0/4] target/xtensa: provide configuration with MPU
 2024-01-12  4:21 UTC  (5+ messages)
` [PATCH 1/4] target/xtensa: add translation for wsr.mpucfg
` [PATCH 2/4] target/xtensa: import sample_controller32 core
` [PATCH 3/4] tests/tcg/xtensa: tidy test linker script
` [PATCH 4/4] tests/tcg/xtensa: fix SR test for configs with MPU

[PATCH v2 00/43] testing and plugin updates for 9.0 (pre-PR)
 2024-01-12  3:49 UTC  (5+ messages)
` [PATCH v2 25/43] target/riscv: Validate misa_mxl_max only once
` [PATCH v2 38/43] plugins: add an API to read registers

[PATCH v4 00/17] target/riscv: deprecate riscv_cpu_options[]
 2024-01-12  3:16 UTC  (12+ messages)
` [PATCH v4 10/17] target/riscv: create finalize_features() for KVM
` [PATCH v4 12/17] target/riscv: move 'cbop_blocksize' to riscv_cpu_properties[]
` [PATCH v4 15/17] target/riscv/cpu.c: move 'mvendorid' "
` [PATCH v4 16/17] target/riscv/cpu.c: move 'mimpid' "
` [PATCH v4 17/17] target/riscv/cpu.c: move 'marchid' "

[PATCH] vhost-user.rst: Fix vring address description
 2024-01-12  0:45 UTC 

[PATCH] hw/core: Handle cpu_model_from_type() returning NULL value
 2024-01-12  2:07 UTC  (4+ messages)

[PATCH v2 0/2] target/riscv: Add support for 'B' extension
 2024-01-12  1:22 UTC  (2+ messages)

[PATCH v4 0/3] Add device STM32L4x5 SYSCFG
 2024-01-11 23:31 UTC  (3+ messages)
` [PATCH v4 2/3] hw/arm: Connect STM32L4x5 SYSCFG to STM32L4x5 SoC


This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).