From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-8.4 required=3.0 tests=BUG6152_INVALID_DATE_TZ_ABSURD,DKIMWL_WL_HIGH,DKIM_SIGNED,DKIM_VALID, DKIM_VALID_AU,INCLUDES_PATCH,INVALID_DATE_TZ_ABSURD,MAILING_LIST_MULTI, MENTIONS_GIT_HOSTING,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id EF630C010CF for ; Tue, 5 Nov 2019 12:12:19 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id B951E222C2 for ; Tue, 5 Nov 2019 12:12:19 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1572955939; bh=wJEUl0IX5YDlu6cviNeHytANF9rzykoFZOuWvRdOFTE=; h=To:Subject:Date:From:Cc:In-Reply-To:References:List-ID:From; b=RItFkvmQ6wkOXuxmk6Jnqb+GqmEgufM5zN8RJerDImII4wSgewuaDYsCYD5C28Odp nvasL3A7Lhh6smhcuyfi2FgLzhrK1HtJWo878LH+9bATD1iQLbIrOJxUNvGm7QYw8F Ggt/1LbjOcvSZ+vhsYzaNU23iaUnjIM9JMqIZfRI= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S2388318AbfKEMMS (ORCPT ); Tue, 5 Nov 2019 07:12:18 -0500 Received: from inca-roads.misterjones.org ([213.251.177.50]:50887 "EHLO inca-roads.misterjones.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S2388008AbfKEMMS (ORCPT ); Tue, 5 Nov 2019 07:12:18 -0500 Received: from www-data by cheepnis.misterjones.org with local (Exim 4.80) (envelope-from ) id 1iRxh0-0006tt-3v; Tue, 05 Nov 2019 13:12:14 +0100 To: Zenghui Yu Subject: Re: [PATCH v2 03/36] irqchip/gic-v3-its: Allow LPI invalidation via the DirectLPI interface X-PHP-Originating-Script: 0:main.inc MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Date: Tue, 05 Nov 2019 13:21:34 +0109 From: Marc Zyngier Cc: , , Eric Auger , James Morse , Julien Thierry , Suzuki K Poulose , Thomas Gleixner , Jason Cooper , Lorenzo Pieralisi , Andrew Murray , Jayachandran C , Robert Richter In-Reply-To: <6d96dfc1-723a-be1e-d4ae-39c79e7fe080@huawei.com> References: <20191027144234.8395-1-maz@kernel.org> <20191027144234.8395-4-maz@kernel.org> <86ftj7ybg2.wl-maz@kernel.org> <6d96dfc1-723a-be1e-d4ae-39c79e7fe080@huawei.com> Message-ID: <796315fdd5a06cdce9e1546ff2c34433@www.loen.fr> X-Sender: maz@kernel.org User-Agent: Roundcube Webmail/0.7.2 X-SA-Exim-Connect-IP: X-SA-Exim-Rcpt-To: yuzenghui@huawei.com, kvmarm@lists.cs.columbia.edu, linux-kernel@vger.kernel.org, eric.auger@redhat.com, james.morse@arm.com, julien.thierry.kdev@gmail.com, suzuki.poulose@arm.com, tglx@linutronix.de, jason@lakedaemon.net, lorenzo.pieralisi@arm.com, andrew.murray@arm.com, jnair@marvell.com, rrichter@marvell.com X-SA-Exim-Mail-From: maz@kernel.org X-SA-Exim-Scanned: No (on cheepnis.misterjones.org); SAEximRunCond expanded to false Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 2019-11-05 11:39, Zenghui Yu wrote: > Hi Marc, > > On 2019/11/1 21:26, Marc Zyngier wrote: >> On Thu, 31 Oct 2019 08:49:32 +0000, >> Zenghui Yu wrote: >>> >>> But this patch really drives me to look through all callsites of >>> dev_event_to_col(), the abstraction which can be used _only_ with >>> physical LPI mappings. >>> >>> I find that when building the INV command, we use >>> dev_event_to_col() >>> to find the "sync_obj" and then pass it to the following SYNC >>> command. >>> But the "INV+SYNC" will be performed both on physical LPI and >>> *VLPI* >>> (lpi_update_config/its_send_inv). >>> So I have two questions about the way we sending INV on VLPI: >>> >>> 1) Which "sync" command should be followed? SYNC or VSYNC? >>> (we currently use SYNC, while the spec says, SYNC "ensures all >>> outstanding ITS operations associated with *physical* interrupts >>> for the Redistributor are globally observed ...") >>> >>> 2) The "sync_obj" we are currently using seems to be wrong. >> I think you're right on both counts (where were you when I wrote the >> initial GICv4 support? ;-). I think the confusion stems from the >> fact > > (I'm a bit late here :-). > >> that there is no 'VINV' command, and we simply overlooked the sync >> object issue. It is quite likely that existing implementations don't >> care much about the difference (otherwise we'd have seen the problem >> before), but it doesn't hurt to do the right thing. >> I have the following patch as part of a set of fixes that I'm about >> to >> post (once I get a chance to test them), let me know what you think. >> >> M. >> diff --git a/drivers/irqchip/irq-gic-v3-its.c >> b/drivers/irqchip/irq-gic-v3-its.c >> index a47ed2ba2907..75ab3716a870 100644 >> --- a/drivers/irqchip/irq-gic-v3-its.c >> +++ b/drivers/irqchip/irq-gic-v3-its.c >> @@ -702,6 +702,24 @@ static struct its_vpe >> *its_build_vmovp_cmd(struct its_node *its, >> return valid_vpe(its, desc->its_vmovp_cmd.vpe); >> } >> +static struct its_vpe *its_build_vinv_cmd(struct its_node *its, >> + struct its_cmd_block *cmd, >> + struct its_cmd_desc *desc) >> +{ >> + struct its_vlpi_map *map; >> + >> + map = dev_event_to_vlpi_map(desc->its_inv_cmd.dev, >> + desc->its_inv_cmd.event_id); > > Indeed! I think we need this kind of abstraction for VLPI. Yeah, I finally realised we'd needed something like that, and made it part of the get_vlpi_map() patch. > >> + >> + its_encode_cmd(cmd, GITS_CMD_INV); >> + its_encode_devid(cmd, desc->its_inv_cmd.dev->device_id); >> + its_encode_event_id(cmd, desc->its_inv_cmd.event_id); >> + >> + its_fixup_cmd(cmd); >> + >> + return valid_vpe(its, map->vpe); >> +} >> + >> static u64 its_cmd_ptr_to_offset(struct its_node *its, >> struct its_cmd_block *ptr) >> { >> @@ -1068,6 +1086,20 @@ static void its_send_vinvall(struct its_node >> *its, struct its_vpe *vpe) >> its_send_single_vcommand(its, its_build_vinvall_cmd, &desc); >> } >> +static void its_send_vinv(struct its_device *dev, u32 event_id) >> +{ >> + struct its_cmd_desc desc; >> + >> + /* >> + * There is no real VINV command. This is just a normal INV, >> + * with a VSYNC instead of a SYNC. >> + */ >> + desc.its_inv_cmd.dev = dev; >> + desc.its_inv_cmd.event_id = event_id; >> + >> + its_send_single_vcommand(dev->its, its_build_vinv_cmd, &desc); >> +} >> + >> /* >> * irqchip functions - assumes MSI, mostly. >> */ >> @@ -1142,8 +1174,10 @@ static void lpi_update_config(struct irq_data >> *d, u8 clr, u8 set) >> lpi_write_config(d, clr, set); >> if (gic_rdists->has_direct_lpi && !irqd_is_forwarded_to_vcpu(d)) >> direct_lpi_inv(d); >> - else >> + else if (!irqd_is_forwarded_to_vcpu(d)) >> its_send_inv(its_dev, its_get_event_id(d)); >> + else >> + its_send_vinv(its_dev, its_get_event_id(d)); > > Yeah, this is exactly what I was having in the mind when reporting > this > problem - "maybe we should have a SW emulated VINV+VSYNC for VLPI". > So I think this patch has done the right thing. > > And what about the INT and CLEAR? In response to guest's INT/CLEAR > commands, hypervisor (I mean KVM) will bother the ITS driver to send > INT/CLEAR for VLPIs. They're both followed by SYNC and might need > the > same fixes? Yup. Please see this series[1], which has grown quite a few fixups, including some pretty old ones (I've just pushed an update, and should post it shortly). Thanks, M. [1] https://git.kernel.org/pub/scm/linux/kernel/git/maz/arm-platforms.git/log/?h=irq/gic-5.5-wip -- Jazz is not dead. It just smells funny...