qemu-arm.nongnu.org archive mirror
 help / color / mirror / Atom feed
 messages from 2023-08-10 13:17:18 to 2023-08-16 15:04:04 UTC [more...]

[RFC PATCH 00/24] plugins: Allow to read registers
 2023-08-16 15:03 UTC  (38+ messages)
` [RFC PATCH 01/24] contrib/plugins: Use GRWLock in execlog
` [RFC PATCH 02/24] gdbstub: Introduce GDBFeature structure
` [RFC PATCH 03/24] gdbstub: Add num_regs member to GDBFeature
` [RFC PATCH 04/24] gdbstub: Introduce gdb_find_static_feature()
` [RFC PATCH 06/24] hw/core/cpu: Replace gdb_core_xml_file with gdb_core_feature
` [RFC PATCH 07/24] target/arm: Use GDBFeature for dynamic XML
` [RFC PATCH 10/24] gdbstub: Use GDBFeature for gdb_register_coprocessor
` [RFC PATCH 12/24] gdbstub: Simplify XML lookup
` [RFC PATCH 13/24] hw/core/cpu: Remove gdb_get_dynamic_xml member
` [RFC PATCH 14/24] gdbstub: Add members to identify registers to GDBFeature
` [RFC PATCH 15/24] target/arm: Fill new members of GDBFeature
` [RFC PATCH 21/24] plugins: Allow to read registers
` [RFC PATCH 22/24] contrib/plugins: Allow to log registers
` [RFC PATCH 24/24] contrib/plugins: Add cc plugin

[PATCH v4 00/25] plugins: Allow to read registers
 2023-08-16 14:51 UTC  (26+ messages)
` [PATCH v4 01/25] contrib/plugins: Use GRWLock in execlog
` [PATCH v4 02/25] gdbstub: Introduce GDBFeature structure
` [PATCH v4 03/25] gdbstub: Add num_regs member to GDBFeature
` [PATCH v4 04/25] gdbstub: Introduce gdb_find_static_feature()
` [PATCH v4 05/25] target/arm: Move the reference to arm-core.xml
` [PATCH v4 06/25] hw/core/cpu: Replace gdb_core_xml_file with gdb_core_feature
` [PATCH v4 07/25] gdbstub: Introduce GDBFeatureBuilder
` [PATCH v4 08/25] target/arm: Use GDBFeature for dynamic XML
` [PATCH v4 09/25] target/ppc: "
` [PATCH v4 10/25] target/riscv: "
` [PATCH v4 11/25] gdbstub: Use GDBFeature for gdb_register_coprocessor
` [PATCH v4 12/25] gdbstub: Use GDBFeature for GDBRegisterState
` [PATCH v4 13/25] hw/core/cpu: Return static value with gdb_arch_name()
` [PATCH v4 14/25] gdbstub: Dynamically allocate target.xml buffer
` [PATCH v4 15/25] gdbstub: Simplify XML lookup
` [PATCH v4 16/25] hw/core/cpu: Remove gdb_get_dynamic_xml member
` [PATCH v4 17/25] gdbstub: Add members to identify registers to GDBFeature
` [PATCH v4 18/25] hw/core/cpu: Add a parameter to gdb_read_register/gdb_write_register
` [PATCH v4 19/25] gdbstub: Hide gdb_has_xml
` [PATCH v4 20/25] gdbstub: Expose functions to read registers
` [PATCH v4 21/25] cpu: Call plugin hooks only when ready
` [PATCH v4 22/25] plugins: Allow to read registers
` [PATCH v4 23/25] contrib/plugins: Allow to log registers
` [PATCH v4 24/25] plugins: Support C++
` [PATCH v4 25/25] contrib/plugins: Add cc plugin

[PATCH 0/4] tcg/aarch64: Enable BTI within the JIT
 2023-08-16 14:25 UTC  (5+ messages)
` [PATCH 1/4] tcg: Add tcg_out_tb_start backend hook
` [PATCH 2/4] util/cpuinfo-aarch64: Add CPUINFO_BTI
` [PATCH 3/4] tcg/aarch64: Emit BTI insns at jump landing pads
` [PATCH 4/4] tcg: Map code_gen_buffer with PROT_BTI

[PATCH 0/9] gdbstub and testing fixes for 8.2
 2023-08-16 13:52 UTC  (17+ messages)
` [PATCH 1/9] gitlab: enable ccache for many build jobs
` [PATCH 2/9] tests/docker: cleanup non-verbose output
` [PATCH 3/9] tests/tcg: remove quoting for info output
` [PATCH 4/9] tests: remove test-gdbstub.py
` [PATCH 5/9] tests/tcg: clean-up gdb confirm/pagination settings
` [PATCH 6/9] gdbstub: fixes cases where wrong threads were reported to GDB on SIGINT
` [PATCH 7/9] gdbstub: remove unused user_ctx field
` [PATCH 8/9] gdbstub: refactor get_feature_xml
` [PATCH 9/9] gdbstub: replace global gdb_has_xml with a function

[PATCH v3 00/25] plugins: Allow to read registers
 2023-08-16 13:39 UTC  (26+ messages)
` [PATCH v3 01/25] contrib/plugins: Use GRWLock in execlog
` [PATCH v3 02/25] gdbstub: Introduce GDBFeature structure
` [PATCH v3 03/25] gdbstub: Add num_regs member to GDBFeature
` [PATCH v3 04/25] gdbstub: Introduce gdb_find_static_feature()
` [PATCH v3 05/25] target/arm: Move the reference to arm-core.xml
` [PATCH v3 06/25] hw/core/cpu: Replace gdb_core_xml_file with gdb_core_feature
` [PATCH v3 07/25] gdbstub: Introduce GDBFeatureBuilder
` [PATCH v3 08/25] target/arm: Use GDBFeature for dynamic XML
` [PATCH v3 09/25] target/ppc: "
` [PATCH v3 10/25] target/riscv: "
` [PATCH v3 11/25] gdbstub: Use GDBFeature for gdb_register_coprocessor
` [PATCH v3 12/25] gdbstub: Use GDBFeature for GDBRegisterState
` [PATCH v3 13/25] hw/core/cpu: Return static value with gdb_arch_name()
` [PATCH v3 14/25] gdbstub: Dynamically allocate target.xml buffer
` [PATCH v3 15/25] gdbstub: Simplify XML lookup
` [PATCH v3 16/25] hw/core/cpu: Remove gdb_get_dynamic_xml member
` [PATCH v3 17/25] gdbstub: Add members to identify registers to GDBFeature
` [PATCH v3 18/25] hw/core/cpu: Add a parameter to gdb_read_register/gdb_write_register
` [PATCH v3 19/25] gdbstub: Hide gdb_has_xml
` [PATCH v3 20/25] gdbstub: Expose functions to read registers
` [PATCH v3 21/25] cpu: Call plugin hooks only when ready
` [PATCH v3 22/25] plugins: Allow to read registers
` [PATCH v3 23/25] contrib/plugins: Allow to log registers
` [PATCH v3 24/25] plugins: Support C++
` [PATCH v3 25/25] contrib/plugins: Add cc plugin

[PATCH v3 1/3] hw/i2c/aspeed: Fix Tx count and Rx size error in buffer pool mode
 2023-08-16  9:44 UTC  (7+ messages)
    `  "
` [PATCH v3 2/3] hw/i2c/aspeed: Fix TXBUF transmission start position error
` [PATCH v3 3/3] hw/i2c/aspeed: Add support for buffer organization

[PATCH for-8.2 00/24] tcg: Introduce negsetcond opcodes
 2023-08-15 13:16 UTC  (48+ messages)
` [PATCH 01/24] "
` [PATCH 02/24] tcg: Use tcg_gen_negsetcond_*
` [PATCH 03/24] target/alpha: Use tcg_gen_movcond_i64 in gen_fold_mzero
` [PATCH 04/24] target/arm: Use tcg_gen_negsetcond_*
` [PATCH 05/24] target/m68k: "
` [PATCH 06/24] target/openrisc: "
` [PATCH 07/24] target/ppc: "
` [PATCH 08/24] target/sparc: Use tcg_gen_movcond_i64 in gen_edge
` [PATCH 11/24] tcg/ppc: Use the Set Boolean Extension
` [PATCH 12/24] tcg/aarch64: Implement negsetcond_*
` [PATCH 13/24] tcg/arm: Implement negsetcond_i32
` [PATCH 16/24] tcg/sparc64: Implement negsetcond_*
` [PATCH 17/24] tcg/i386: Merge tcg_out_brcond{32,64}
` [PATCH 18/24] tcg/i386: Merge tcg_out_setcond{32,64}
` [PATCH 19/24] tcg/i386: Merge tcg_out_movcond{32,64}
` [PATCH 20/24] tcg/i386: Add cf parameter to tcg_out_cmp
` [PATCH 21/24] tcg/i386: Use CMP+SBB in tcg_out_setcond
` [PATCH 22/24] tcg/i386: Clear dest first in tcg_out_setcond if possible
` [PATCH 23/24] tcg/i386: Use shift in tcg_out_setcond
` [PATCH 24/24] tcg/i386: Implement negsetcond_*

[PATCH v2] arm/kvm: Enable support for KVM_CAP_ARM_EAGER_SPLIT_CHUNK_SIZE
 2023-08-15  9:27 UTC 

[PATCH for-8.2 0/5] target/arm: Implement cortex-a710
 2023-08-14  8:49 UTC  (14+ messages)
` [PATCH 2/5] target/arm: Reduce dcz_blocksize to uint8_t
` [PATCH 3/5] target/arm: Allow cpu to configure GM blocksize
` [PATCH 4/5] target/arm: Support more GM blocksizes
` [PATCH 5/5] target/arm: Implement cortex-a710

[PATCH 0/8] some testing and gdbstub fixes
 2023-08-14  7:59 UTC  (23+ messages)
` [PATCH 1/8] gitlab: enable ccache for many build jobs
` [PATCH 2/8] tests/docker: cleanup non-verbose output
` [PATCH 3/8] tests/tcg: remove quoting for info output
` [PATCH 4/8] tests: remove test-gdbstub.py
` [PATCH 5/8] tests/tcg: clean-up gdb confirm/pagination settings
` [PATCH 6/8] tests/tcg: ensure system-mode gdb tests start stopped
` [PATCH 7/8] gdbstub: more fixes for client Ctrl-C handling
` [PATCH 8/8] gdbstub: don't complain about preemptive ACK chars

[PATCH] hw/pci-host: Allow extended config space access for Designware PCIe host
 2023-08-12  5:37 UTC  (10+ messages)

[PATCH v2 00/11] target/arm: Implement cortex-a710
 2023-08-11 21:40 UTC  (12+ messages)
` [PATCH v2 01/11] target/arm: Reduce dcz_blocksize to uint8_t
` [PATCH v2 02/11] target/arm: Allow cpu to configure GM blocksize
` [PATCH v2 03/11] target/arm: Support more GM blocksizes
` [PATCH v2 04/11] target/arm: When tag memory is not present, set MTE=1
` [PATCH v2 05/11] target/arm: Introduce make_ccsidr64
` [PATCH v2 06/11] target/arm: Apply access checks to neoverse-n1 special registers
` [PATCH v2 07/11] target/arm: Apply access checks to neoverse-v1 "
` [PATCH v2 08/11] target/arm: Implement RMR_EL3 for neoverse-v1
` [PATCH v2 09/11] target/arm: Suppress FEAT_TRBE (Trace Buffer Extension)
` [PATCH v2 10/11] target/arm: Implement FEAT_HPDS2 as a no-op
` [PATCH v2 11/11] target/arm: Implement cortex-a710

[PULL 1/2] hw/pci-host: Allow extended config space access for Designware PCIe host
 2023-08-11 17:30 UTC  (2+ messages)

A confusion about CXL in arm virt machine
 2023-08-11 10:31 UTC  (5+ messages)
` CXL Namespaces of ACPI disappearing in Qemu demo

[PATCH v2 1/4] hw/i2c/aspeed: Fix I2CD_POOL_CTRL register bit field defination
 2023-08-11 10:03 UTC  (6+ messages)
` [PATCH v2 2/4] hw/i2c/aspeed: Fix Tx count and Rx size error
` [PATCH v2 3/4] hw/i2c/aspeed: Fix TXBUF transmission start position error
` [PATCH v2 4/4] hw/i2c/aspeed: Add support for BUFFER ORGANIZATION in new register mode

[PATCH-for-8.2] target/arm/cpu: Allow logging disabled CPU features at UNIMP level
 2023-08-10 16:44 UTC  (3+ messages)

[PATCH] Aspeed: i2c: Fixed Tx and Rx error in BUFF Mode
 2023-08-10 13:55 UTC 

[PATCH v3 0/6] target/arm: Fixes for RME
 2023-08-10 13:36 UTC  (3+ messages)


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 read-only IMAP folder(s) and NNTP newsgroup(s).