From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from out-182.mta1.migadu.com (out-182.mta1.migadu.com [95.215.58.182]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 0E013B67F for ; Mon, 19 May 2025 01:41:09 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=95.215.58.182 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1747618872; cv=none; b=BuO6cGutn6eTE0dBp0cmygoyNNtWP/AqmdcmQive5wvD8Kre4QLNc1eF0L+uNFym5mHWoqCS/dd/2ENQtZrSYTnARz6sYSyWQo4O/7qqWIFKy6Myx5ec82AxB41h5g6zrFnmR7sEmVqOwOYrmqyjFXbfhQN38SvkCIrDaCvmWio= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1747618872; c=relaxed/simple; bh=8bHs+ArjuXoyWWFogB9cl5mRNW6ulxPQqWHlf2KmQVM=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=NrzUnYucwjzHng7oA2GDqxFAZgGJYZwnM7JzcRDbDilWjuYDxRo+L0+x35/68zYBSjHlyzDIyQ/AIbfD2xUi7sIbDxqPFonDw30f9YSRHXZosdvH608fHgJuzAkXng5Q0LpXPhfZ/zLdwI7eBCxTGJ/v9y7VScKyLBkXMa1gYVc= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.dev; spf=pass smtp.mailfrom=linux.dev; dkim=pass (1024-bit key) header.d=linux.dev header.i=@linux.dev header.b=ax3Wmx+N; arc=none smtp.client-ip=95.215.58.182 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.dev Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=linux.dev Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linux.dev header.i=@linux.dev header.b="ax3Wmx+N" Date: Sun, 18 May 2025 18:40:02 -0700 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.dev; s=key1; t=1747618868; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=rWlnN6iHkL3RXstnKSj+lwDH5uEBi7pc60tC98b9q5M=; b=ax3Wmx+NMw1xkAkBzBtxFl9a4AKU6VRhBnUQDioRGl9wm2B5KQS0WtxoGTWHgH9XwFj3RY HVU7snQyW3kST5tf20n3Fs3zoSdg8K75cJyY7SLm4xvy/9y8X1uoEh7PGLvs1KrsueTMlm Lep5/UUMGpBXYRfobuFAAW727pTRADk= X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. From: Oliver Upton To: Marc Zyngier Cc: kvmarm@lists.linux.dev, kvm@vger.kernel.org, linux-arm-kernel@lists.infradead.org, Joey Gouly , Suzuki K Poulose , Zenghui Yu , Eric Auger , Ganapatrao Kulkarni Subject: Re: [PATCH v4 00/17] KVM: arm64: Recursive NV support Message-ID: References: <20250514103501.2225951-1-maz@kernel.org> Precedence: bulk X-Mailing-List: kvmarm@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20250514103501.2225951-1-maz@kernel.org> X-Migadu-Flow: FLOW_OUT On Wed, May 14, 2025 at 11:34:43AM +0100, Marc Zyngier wrote: > Marc Zyngier (17): > arm64: sysreg: Add layout for VNCR_EL2 > KVM: arm64: nv: Allocate VNCR page when required > KVM: arm64: nv: Extract translation helper from the AT code > KVM: arm64: nv: Snapshot S1 ASID tagging information during walk > KVM: arm64: nv: Move TLBI range decoding to a helper > KVM: arm64: nv: Don't adjust PSTATE.M when L2 is nesting > KVM: arm64: nv: Add pseudo-TLB backing VNCR_EL2 > KVM: arm64: nv: Add userspace and guest handling of VNCR_EL2 > KVM: arm64: nv: Handle VNCR_EL2-triggered faults > KVM: arm64: nv: Handle mapping of VNCR_EL2 at EL2 > KVM: arm64: nv: Handle VNCR_EL2 invalidation from MMU notifiers > KVM: arm64: nv: Program host's VNCR_EL2 to the fixmap address > KVM: arm64: nv: Add S1 TLB invalidation primitive for VNCR_EL2 > KVM: arm64: nv: Plumb TLBI S1E2 into system instruction dispatch > KVM: arm64: nv: Remove dead code from ERET handling > KVM: arm64: Allow userspace to request KVM_ARM_VCPU_EL2* > KVM: arm64: Document NV caps and vcpu flags Let it rip! Reviewed-by: Oliver Upton Thanks, Oliver