From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from out-174.mta1.migadu.com (out-174.mta1.migadu.com [95.215.58.174]) (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 53D5C4643C for ; Sun, 17 Dec 2023 17:34:45 +0000 (UTC) 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="DwF57sKL" Date: Sun, 17 Dec 2023 17:34:38 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.dev; s=key1; t=1702834483; 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=tMaWKK6aNhEcNfGg2LkGPbfORjqRLPRkKIISdX758Xs=; b=DwF57sKLMND/XMkN6KaeRPN8526vV2qSNpsGgPACgycdjmXJwmSQ41nD7AXG5J900WS2dQ ALV9Zcgid8ICXaFBUgWjFDD2HYgIjQv0mp7J9YXhF1LgCI4z4odlb2nulN0SYA3D5mKM26 45jlUdzYlJb2uwbzE4u2EBVCulRwlZw= X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. From: Oliver Upton To: Marc Zyngier Cc: Kunkun Jiang , James Morse , Suzuki K Poulose , Zenghui Yu , Catalin Marinas , Will Deacon , Jean-Philippe Brucker , "moderated list:ARM SMMU DRIVERS" , kvmarm@lists.linux.dev, open list , "wanghaibin.wang@huawei.com" Subject: Re: [bug report] GICv4.1: vSGI remains pending across the guest reset Message-ID: References: <7e7f2c0c-448b-10a9-8929-4b8f4f6e2a32@huawei.com> <87a5q983zc.wl-maz@kernel.org> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: X-Migadu-Flow: FLOW_OUT On Sun, Dec 17, 2023 at 05:33:16PM +0000, Oliver Upton wrote: > On Sun, Dec 17, 2023 at 11:26:15AM +0000, Marc Zyngier wrote: > > [...] > > > But this has *nothing* to do with the guest. This is the *host* > > userspace performing a write to the redistributor view, which has > > different semantics. Which is why your earlier description made no > > sense to me. > > > > I think the problem is slightly larger than what you describe. A write > > to ISPENDR0 should be propagated to the ITS for any values of the > > latch, just like this happens on enabling HW-backed SGIs. > > > > Can you please give this a go? > > What do you think about using this as an opportunity for a bit of > cleanup? It'd be nice unify the various MMIO and uaccess handlers for > SPENDING + CPENDING while being careful about the arch_timer interrupt. Cut myself off... Meant to say that user writes to SPENDING for GICv3 can then be treated as: > clear = ~val; > vgic_uaccess_write_spending(val); > vgic_uaccess_write_cpending(clear); -- Thanks, Oliver