Linux KVM/arm64 development list
 help / color / mirror / Atom feed
 messages from 2026-04-24 00:02:47 to 2026-04-28 16:01:52 UTC [more...]

[PATCH v2 00/28] KVM: s390: Introduce arm64 KVM
 2026-04-28 15:56 UTC  (27+ messages)
` [PATCH v2 01/28] VFIO: take reference to the KVM module
` [PATCH v2 02/28] KVM, vfio: remove symbol_get(kvm_get_kvm_safe) from vfio
` [PATCH v2 03/28] KVM, vfio: remove symbol_get(kvm_put_kvm) "
` [PATCH v2 04/28] arm64: Provide arm64 UAPI for other host architectures
` [PATCH v2 05/28] arm64: Extract sysreg definitions
` [PATCH v2 06/28] arm64: Provide arm64 API for non-native architectures
` [PATCH v2 07/28] KVM: arm64: Provide arm64 KVM "
` [PATCH v2 08/28] arm64: Extract pstate definitions from ptrace
` [PATCH v2 09/28] KVM: arm64: Share kvm_emulate definitions
` [PATCH v2 10/28] KVM: arm64: Make some arm64 KVM code shareable
` [PATCH v2 11/28] KVM: arm64: Access elements of vcpu_gp_regs individually
` [PATCH v2 12/28] KVM: arm64: Share reset general register code
` [PATCH v2 13/28] KVM: arm64: Extract & share ipa size shift calculation
` [PATCH v2 14/28] MAINTAINERS: Add Steffen as reviewer for KVM/arm64
` [PATCH v2 15/28] KVM: s390: Move s390 kvm code into a subdirectory
` [PATCH v2 16/28] KVM: S390: Refactor gmap
` [PATCH v2 17/28] KVM: Make device name configurable
` [PATCH v2 18/28] KVM: Remove KVM_MMIO as config option
` [PATCH v2 19/28] KVM: s390: Prepare kvm-s390 for a second kvm module
` [PATCH v2 21/28] KVM: s390: arm64: Introduce host definitions
` [PATCH v2 23/28] KVM: s390: Add basic arm64 kvm module
` [PATCH v2 24/28] KVM: s390: arm64: Implement required functions
` [PATCH v2 25/28] KVM: s390: arm64: Implement vm/vcpu create destroy
` [PATCH v2 26/28] KVM: s390: arm64: Implement vCPU IOCTLs
` [PATCH v2 27/28] KVM: s390: arm64: Implement basic page fault handler
` [PATCH v2 28/28] KVM: s390: arm64: Enable KVM_ARM64 config and Kbuild

[PATCH 00/43] KVM: arm64: Add GICv5 IRS support
 2026-04-28 15:55 UTC  (49+ messages)
` [PATCH 01/43] arm64/sysreg: Add GICv5 GIC VDPEND and VDRCFG encodings
` [PATCH 02/43] arm64/sysreg: Update ICC_CR0_EL1 with LINK and LINK_IDLE fields
` [PATCH 03/43] KVM: arm64: gic-v5: Add resident/non-resident hyp calls
` [PATCH 04/43] irqchip/gic-v5: Provide IRS config frame attrs to KVM
` [PATCH 05/43] KVM: arm64: gic-v5: Extract host IRS caps from IRS config frame
` [PATCH 06/43] KVM: arm64: gic-v5: Add VPE doorbell domain
` [PATCH 07/43] KVM: arm64: gic-v5: Create & manage VM and VPE tables
` [PATCH 08/43] KVM: arm64: gic-v5: Introduce guest IST alloc and management
` [PATCH 09/43] KVM: arm64: gic-v5: Implement VMT/vIST IRS MMIO Ops
` [PATCH 10/43] KVM: arm64: gic-v5: Implement VPE "
` [PATCH 11/43] KVM: arm64: gic-v5: Make VPEs valid in vgic_v5_reset()
` [PATCH 12/43] KVM: arm64: gic-v5: Clear db_fired flag before making VPE non-resident
` [PATCH 13/43] KVM: arm64: gic-v5: Make VPEs (non-)resident in vgic_load/put
` [PATCH 14/43] KVM: arm64: gic-v5: Request VPE doorbells when going non-resident
` [PATCH 15/43] KVM: arm64: gic-v5: Handle doorbells in kvm_vgic_vcpu_pending_irq()
` [PATCH 16/43] KVM: arm64: gic-v5: Initialise and teardown VMTEs & doorbells
` [PATCH 17/43] KVM: arm64: gic-v5: Enable VPE DBs on VPE reset and disable on teardown
` [PATCH 18/43] KVM: arm64: gic-v5: Define remaining IRS MMIO registers
` [PATCH 19/43] KVM: arm64: gic-v5: Introduce struct vgic_v5_irs and IRS base address
` [PATCH 20/43] KVM: arm64: gic-v5: Add IRS IODEV to iodev_types and generic MMIO handlers
` [PATCH 21/43] KVM: arm64: gic-v5: Add KVM_VGIC_V5_ADDR_TYPE_IRS to UAPI
` [PATCH 22/43] KVM: arm64: gic-v5: Add GICv5 IRS IODEV and MMIO emulation
` [PATCH 23/43] KVM: arm64: gic-v5: Set IRICHPPIDIS based on IRS enable state
` [PATCH 24/43] KVM: arm64: gic-v5: Call IRS init/teardown from vgic_v5 init/teardown
` [PATCH 25/43] KVM: arm64: gic-v5: Register the IRS IODEV
` [PATCH 26/43] Documentation: KVM: Extend VGICv5 docs for KVM_VGIC_V5_ADDR_TYPE_IRS
` [PATCH 27/43] KVM: arm64: selftests: Update vGICv5 selftest to set IRS address
` [PATCH 28/43] KVM: arm64: gic-v5: Introduce SPI AP list
` [PATCH 29/43] KVM: arm64: gic-v5: Add GIC VDPEND and GIC VDRCFG hyp calls
` [PATCH 30/43] KVM: arm64: gic-v5: Track SPI state for in-flight SPIs
` [PATCH 31/43] KVM: arm64: gic: Introduce set_pending_state() to irq_op
` [PATCH 32/43] KVM: arm64: gic-v5: Support SPI injection
` [PATCH 33/43] KVM: arm64: gic-v5: Add GICv5 SPI injection to irqfd
` [PATCH 34/43] KVM: arm64: gic-v5: Mask per-vcpu PPI state in vgic_v5_finalize_ppi_state()
` [PATCH 35/43] KVM: arm64: gic-v5: Add GICv5 EL1 sysreg userspace set/get interface
` [PATCH 36/43] KVM: arm64: gic-v5: Implement save/restore mechanisms for ISTs
` [PATCH 37/43] KVM: arm64: gic-v5: Handle userspace accesses to IRS MMIO region
` [PATCH 38/43] KVM: arm64: gic-v5: Add VGIC_GRP_IRS_REGS/VGIC_GRP_IST to UAPI
` [PATCH 39/43] KVM: arm64: gic-v5: Plumb in has/set/get_attr for sysregs & IRS MMIO regs
` [PATCH 40/43] Documentation: KVM: Document KVM_DEV_ARM_VGIC_GRP_CPU_SYSREGS for VGICv5
` [PATCH 41/43] Documentation: KVM: Add KVM_DEV_ARM_VGIC_GRP_IRS_REGS to VGICv5 docs
` [PATCH 42/43] Documentation: KVM: Add docs for KVM_DEV_ARM_VGIC_GRP_IST
` [PATCH 43/43] Documentation: KVM: Add the VGICv5 IRS save/restore sequences

[PATCH v4 0/3] Enforce host page-size alignment for shared buffers
 2026-04-28 15:22 UTC  (15+ messages)
` [PATCH v4 1/3] dma-direct: swiotlb: handle swiotlb alloc/free outside __dma_direct_alloc_pages
` [PATCH v4 2/3] swiotlb: dma: its: Enforce host page-size alignment for shared buffers
` [PATCH v4 3/3] coco: guest: arm64: Query host IPA-change alignment via RHI

[kvm-unit-tests PATCH] arm: add wfx test case
 2026-04-28 14:56 UTC  (3+ messages)

[PATCH 0/8] KVM: arm64: EL2 synchronisation and pKVM stage-2 error propagation fixes
 2026-04-28 14:36 UTC  (13+ messages)
` [PATCH 1/8] KVM: arm64: Make EL2 exception entry and exit context-synchronization events
` [PATCH 2/8] KVM: arm64: Synchronise HCR_EL2 writes on the guest exit path
` [PATCH 3/8] KVM: arm64: Guard against NULL vcpu on VHE hyp panic path
` [PATCH 4/8] KVM: arm64: Fix __deactivate_fgt macro parameter typo
` [PATCH 5/8] KVM: arm64: Propagate stage-2 map failure on host->guest share
` [PATCH 6/8] KVM: arm64: Propagate stage-2 map failure on host->guest donation
` [PATCH 7/8] KVM: arm64: Propagate stage-2 map failure on guest->host share
` [PATCH 8/8] KVM: arm64: Propagate stage-2 map failure on guest->host unshare

[RFC PATCH v2 1/4] security: ima: call ima_init() again at late_initcall_sync for defered TPM
 2026-04-28 13:21 UTC  (23+ messages)

[PATCH] KVM: arm64: Validate the FF-A memory access descriptor placement
 2026-04-27 12:48 UTC  (8+ messages)

[RFC PATCH v4 00/16] coco/TSM: Implement host-side support for Arm CCA TDISP setup
 2026-04-27  8:53 UTC  (17+ messages)
` [RFC PATCH v4 01/16] iommu/arm-smmu-v3: Discover RME support and realm IRQ topology
` [RFC PATCH v4 02/16] iommu/arm-smmu-v3: Save the programmed MSI message in msi_desc
` [RFC PATCH v4 03/16] iommu/arm-smmu-v3: Add initial pSMMU realm viommu plumbing
` [RFC PATCH v4 04/16] iommu/arm-smmu-v3: Track realm pSMMU users with refcount_t
` [RFC PATCH v4 05/16] coco: host: arm64: Add support for virtual device communication
` [RFC PATCH v4 06/16] coco: host: arm64: Add support for RMM vdev objects
` [RFC PATCH v4 07/16] coco: host: arm64: Add pdev stream key refresh and purge helpers
` [RFC PATCH v4 08/16] coco: host: arm64: Add helpers to unlock and destroy RMM vdev
` [RFC PATCH v4 09/16] coco: host: arm64: Add support for da object read RHI handling
` [RFC PATCH v4 10/16] coco: host: arm64: Add helper for cached object fetches
` [RFC PATCH v4 11/16] coco: host: arm64: Fetch interface report via RMI
` [RFC PATCH v4 12/16] coco: host: arm64: Fetch device measurements "
` [RFC PATCH v4 13/16] coco: host: KVM: arm64: Handle vdev validate-mapping exits
` [RFC PATCH v4 14/16] KVM: arm64: Unmap device mappings when a private granule is destroyed
` [RFC PATCH v4 15/16] coco: host: arm64: Transition vdevs to TDISP RUN state
` [RFC PATCH v4 16/16] KVM: arm64: CCA: enable DA in realm create parameters

[RFC PATCH v4 00/11] coco/TSM: Arm CCA guest TDISP lock/accept flow with verification and DMA enable
 2026-04-27  8:28 UTC  (12+ messages)
` [RFC PATCH v4 01/11] coco: guest: arm64: Guest TSM callback and realm device lock support
` [RFC PATCH v4 02/11] coco: guest: arm64: Fix a typo in the ARM_CCA_GUEST Kconfig help string ("and" -> "an")
` [RFC PATCH v4 03/11] coco: guest: arm64: Add Realm Host Interface and guest DA helper
` [RFC PATCH v4 04/11] coco: guest: arm64: Support guest-initiated TDI lock/unlock transitions
` [RFC PATCH v4 05/11] coco: guest: arm64: Refresh interface-report cache during device lock
` [RFC PATCH v4 06/11] coco: guest: arm64: Add measurement refresh via RHI_DA_VDEV_GET_MEASUREMENTS
` [RFC PATCH v4 07/11] coco: guest: arm64: Add guest APIs to read host-cached DA objects
` [RFC PATCH v4 08/11] coco: guest: arm64: Verify DA evidence with RSI_VDEV_GET_INFO digests
` [RFC PATCH v4 09/11] coco: guest: arm64: Hook TSM accept to Realm TDISP RUN transition
` [RFC PATCH v4 10/11] coco: arm64: dma: Update force_dma_unencrypted for accepted devices
` [RFC PATCH v4 11/11] coco: guest: arm64: Enable vdev DMA after attestation

[GIT PULL] KVM/arm64 fixes for 7.1, take #1
 2026-04-27  8:25 UTC  (2+ messages)

[RFC PATCH v4 00/14] coco/TSM: Host-side Arm CCA IDE setup via connect/disconnect callbacks
 2026-04-27  6:51 UTC  (15+ messages)
` [RFC PATCH v4 01/14] coco: host: arm64: Add host TSM callback and IDE stream allocation support
` [RFC PATCH v4 02/14] coco: host: arm64: Create RMM pdev objects for PCI endpoints
` [RFC PATCH v4 03/14] coco: host: arm64: Add RMM device communication helpers
` [RFC PATCH v4 04/14] coco: host: arm64: Add helper to stop and tear down an RMM pdev
` [RFC PATCH v4 05/14] X.509: Make certificate parser public
` [RFC PATCH v4 06/14] X.509: Parse Subject Alternative Name in certificates
` [RFC PATCH v4 07/14] X.509: Move certificate length retrieval into new helper
` [RFC PATCH v4 08/14] coco: host: arm64: Register device public key with RMM
` [RFC PATCH v4 09/14] coco: host: arm64: Initialize RMM pdev state for TDISP IDE connect
` [RFC PATCH v4 10/14] coco: host: arm64: Coordinate peer stream waits during pdev communication
` [RFC PATCH v4 11/14] coco: host: arm64: Connect RMM pdev streams for IDE devices
` [RFC PATCH v4 12/14] coco: host: arm64: Refcount root-port pdevs used by IDE streams
` [RFC PATCH v4 13/14] PCI/TSM: Move CMA DOE mailbox discovery out of pci_tsm_pf0_constructor()
` [RFC PATCH v4 14/14] coco: host: arm64: Add NCOH_SYS stream support for RC endpoints

[PATCH] KVM: arm64: Wake-up from WFI when iqrchip is in userspace
 2026-04-27  5:31 UTC  (5+ messages)

[PATCH v4 00/49] KVM: arm64: Add LR overflow infrastructure (the final one, I swear!)
 2026-04-26 14:07 UTC  (11+ messages)
` [PATCH v4 35/49] KVM: arm64: GICv3: nv: Plug L1 LR sync into deactivation primitive

[RFC PATCH v3 0/4] Fix IMA + TPM initialisation ordering issue
 2026-04-25 14:19 UTC  (11+ messages)
` [RFC PATCH v3 1/4] lsm: Allow LSMs to register for late_initcall_sync init
` [RFC PATCH v3 2/4] security: ima: call ima_init() again at late_initcall_sync for defered TPM
` [RFC PATCH v3 3/4] Revert "tpm: tpm_crb_ffa: try to probe tpm_crb_ffa when it's built-in"
` [RFC PATCH v3 4/4] Revert "firmware: arm_ffa: Change initcall level of ffa_init() to rootfs_initcall"

[PATCH 0/1] KVM: arm64: nv: Implement nested stage-2 reverse map
 2026-04-24 19:45 UTC  (6+ messages)
` [PATCH 1/1] KVM: arm64: nv: Avoid full shadow s2 unmap

[PATCH 0/3] KVM: arm64: vgic: Fix IIDR revision handling and add revision 1
 2026-04-24 12:24 UTC  (4+ messages)
` [PATCH 1/3] KVM: arm64: vgic: Fix IIDR revision field extracted from wrong value
  ` (subset) "

[PATCH 0/6] KVM: arm64: pKVM init and feature detection fixes
 2026-04-24 11:08 UTC  (9+ messages)
` [PATCH 1/6] KVM: arm64: Fix FEAT_Debugv8p9 to check DebugVer, not PMUVer
` [PATCH 2/6] KVM: arm64: Fix typo in feature check comments
` [PATCH 3/6] KVM: arm64: Fix FEAT_SPE_FnE to use PMSIDR_EL1.FnE, not PMSVer
` [PATCH 4/6] KVM: arm64: Fix kvm_vcpu_initialized() macro parameter
` [PATCH 5/6] KVM: arm64: Fix pin leak and publication ordering in __pkvm_init_vcpu()
` [PATCH 6/6] KVM: arm64: Fix initialisation order in __pkvm_init_finalise()

[PATCH v2] KVM: arm64: Reject non compliant SMCCC function calls in pKVM
 2026-04-24 11:08 UTC  (2+ messages)

[PATCH v3 0/5] Support the FEAT_HDBSS introduced in Armv9.5
 2026-04-24 10:08 UTC  (10+ messages)
` [PATCH v3 4/5] KVM: arm64: Enable HDBSS support and handle HDBSSF events


This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox