Received: by 2002:a05:6a10:206:0:0:0:0 with SMTP id 6csp4700121pxj; Tue, 25 May 2021 14:18:53 -0700 (PDT) X-Google-Smtp-Source: ABdhPJyzi8qhlQHl6T62JfYzRFrsEZ5vdYOS3XHYQls95EJDlyxfhWC1UNPMqNa1Vgk5VFClRXxS X-Received: by 2002:a05:6638:505:: with SMTP id i5mr31355108jar.141.1621977533318; Tue, 25 May 2021 14:18:53 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1621977533; cv=none; d=google.com; s=arc-20160816; b=PFKK2vLTZgi4y5z4rJXTUooAxnFmEZWoTU8ht0j4QXpuXo9dRyUeXzCcUzX4TEcgtV ir+Ua5IZS55g8283KmAEAEtvONKFMfdH50S/FVSX1i+mo+YfXdak80DJ2gmxe6TzYKIn XfMbiYXPckK7xuw8EMn9V67JX6+gfjp3HRLyiNXPVQ4WeC3sGDR8qMzt4pB+AM/8QEui tELzf7ky1n6YNVv54wy9LgLyX63mQKjOCHdwil+yEOw4R9CexzXLTXk3zz5fYaR6NFlV npmIp9xknJUZRt8Eygv7Occsfnq6pbV/8KE9LfXehEymo5upDJtWYiZmsGV043uPfSuX xDIQ== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:content-transfer-encoding:mime-version :references:in-reply-to:message-id:date:subject:cc:to:from; bh=WSP45Z/ilvWxtvJMfny5WjJDFJ9K/tyhQWKbo0OsLzM=; b=q5jAIrYD3MjV3gJNABJ3UDT3xHA3ak4xEv+5Nh9jeUVTje9SURFcmONKU797O2AL8k 7wRxYR/No5VYwETri9QVu5b9Zr+8cWRqgvoOC+p5tG4PhK0CkWsis4dk9OEibpWJiwxz bSLPCluMpyudfxGrEFhxU+ag3XDgM/wHk5n3LKWoiHI3IeYHKRHL2p9V86+PI8QBxDtS 9xW0TSoBeDnqGfAmG6lAkjePv42B3pdfVt17vboRe5f3ic1IbLAg+JkQG9GbjDxBmsYI Qgpl7b22tQ+ke5Awiby4jQKtpWhRSdnAIJqYyonH7orRdMCAZcyJp4row+c4KXrHq/mj HVmA== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org; dmarc=fail (p=NONE sp=NONE dis=NONE) header.from=arm.com Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id q3si22284847ilu.88.2021.05.25.14.18.40; Tue, 25 May 2021 14:18:53 -0700 (PDT) Received-SPF: pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org; dmarc=fail (p=NONE sp=NONE dis=NONE) header.from=arm.com Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S234135AbhEYRf0 (ORCPT + 99 others); Tue, 25 May 2021 13:35:26 -0400 Received: from foss.arm.com ([217.140.110.172]:33116 "EHLO foss.arm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S234062AbhEYRe7 (ORCPT ); Tue, 25 May 2021 13:34:59 -0400 Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id 14C85168F; Tue, 25 May 2021 10:33:29 -0700 (PDT) Received: from e113632-lin.cambridge.arm.com (e113632-lin.cambridge.arm.com [10.1.194.46]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPA id 1025B3F73B; Tue, 25 May 2021 10:33:22 -0700 (PDT) From: Valentin Schneider To: linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org Cc: Marc Zyngier , Thomas Gleixner , Lorenzo Pieralisi , Vincenzo Frascino Subject: [RFC PATCH v2 07/10] genirq, irq-gic-v3: Make NMI flow handlers use ->irq_ack() if available Date: Tue, 25 May 2021 18:32:52 +0100 Message-Id: <20210525173255.620606-8-valentin.schneider@arm.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20210525173255.620606-1-valentin.schneider@arm.com> References: <20210525173255.620606-1-valentin.schneider@arm.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Subsequent patches will make the gic-v3 irqchip use an ->irq_ack() callback. As a preparation, make the NMI flow handlers call said callback if it is available. Since this departs from the fasteoi scheme of only issuing a suffix ->eoi(), rename the NMI flow handlers. Signed-off-by: Valentin Schneider --- drivers/irqchip/irq-gic-v3.c | 4 ++-- include/linux/irq.h | 4 ++-- kernel/irq/chip.c | 25 ++++++++++++++----------- 3 files changed, 18 insertions(+), 15 deletions(-) diff --git a/drivers/irqchip/irq-gic-v3.c b/drivers/irqchip/irq-gic-v3.c index 37a23aa6de37..af11396996e3 100644 --- a/drivers/irqchip/irq-gic-v3.c +++ b/drivers/irqchip/irq-gic-v3.c @@ -484,10 +484,10 @@ static int gic_irq_nmi_setup(struct irq_data *d) /* Setting up PPI as NMI, only switch handler for first NMI */ if (!refcount_inc_not_zero(&ppi_nmi_refs[idx])) { refcount_set(&ppi_nmi_refs[idx], 1); - desc->handle_irq = handle_percpu_devid_fasteoi_nmi; + desc->handle_irq = handle_percpu_devid_nmi; } } else { - desc->handle_irq = handle_fasteoi_nmi; + desc->handle_irq = handle_nmi; } gic_irq_set_prio(d, GICD_INT_NMI_PRI); diff --git a/include/linux/irq.h b/include/linux/irq.h index 37075929e329..0b45e42812d6 100644 --- a/include/linux/irq.h +++ b/include/linux/irq.h @@ -669,8 +669,8 @@ extern void handle_percpu_devid_irq(struct irq_desc *desc); extern void handle_bad_irq(struct irq_desc *desc); extern void handle_nested_irq(unsigned int irq); -extern void handle_fasteoi_nmi(struct irq_desc *desc); -extern void handle_percpu_devid_fasteoi_nmi(struct irq_desc *desc); +extern void handle_nmi(struct irq_desc *desc); +extern void handle_percpu_devid_nmi(struct irq_desc *desc); extern int irq_chip_compose_msi_msg(struct irq_data *data, struct msi_msg *msg); extern int irq_chip_pm_get(struct irq_data *data); diff --git a/kernel/irq/chip.c b/kernel/irq/chip.c index c2ca6b748987..099bc7e13d1b 100644 --- a/kernel/irq/chip.c +++ b/kernel/irq/chip.c @@ -748,18 +748,16 @@ void handle_fasteoi_irq(struct irq_desc *desc) EXPORT_SYMBOL_GPL(handle_fasteoi_irq); /** - * handle_fasteoi_nmi - irq handler for NMI interrupt lines + * handle_nmi - irq handler for NMI interrupt lines * @desc: the interrupt description structure for this irq * * A simple NMI-safe handler, considering the restrictions * from request_nmi. * - * Only a single callback will be issued to the chip: an ->eoi() - * call when the interrupt has been serviced. This enables support - * for modern forms of interrupt handlers, which handle the flow - * details in hardware, transparently. + * An ->ack() callback will be issued before servicing the interrupt, + * followed by an ->eoi() call. */ -void handle_fasteoi_nmi(struct irq_desc *desc) +void handle_nmi(struct irq_desc *desc) { struct irq_chip *chip = irq_desc_get_chip(desc); struct irqaction *action = desc->action; @@ -768,6 +766,9 @@ void handle_fasteoi_nmi(struct irq_desc *desc) __kstat_incr_irqs_this_cpu(desc); + if (chip->irq_ack) + chip->irq_ack(&desc->irq_data); + trace_irq_handler_entry(irq, action); /* * NMIs cannot be shared, there is only one action. @@ -778,7 +779,7 @@ void handle_fasteoi_nmi(struct irq_desc *desc) if (chip->irq_eoi) chip->irq_eoi(&desc->irq_data); } -EXPORT_SYMBOL_GPL(handle_fasteoi_nmi); +EXPORT_SYMBOL_GPL(handle_nmi); /** * handle_edge_irq - edge type IRQ handler @@ -1032,14 +1033,13 @@ void handle_percpu_devid_irq(struct irq_desc *desc) } /** - * handle_percpu_devid_fasteoi_nmi - Per CPU local NMI handler with per cpu + * handle_percpu_devid_nmi - Per CPU local NMI handler with per cpu * dev ids * @desc: the interrupt description structure for this irq * - * Similar to handle_fasteoi_nmi, but handling the dev_id cookie - * as a percpu pointer. + * Similar to handle_nmi, but handling the dev_id cookie as a percpu pointer. */ -void handle_percpu_devid_fasteoi_nmi(struct irq_desc *desc) +void handle_percpu_devid_nmi(struct irq_desc *desc) { struct irq_chip *chip = irq_desc_get_chip(desc); struct irqaction *action = desc->action; @@ -1048,6 +1048,9 @@ void handle_percpu_devid_fasteoi_nmi(struct irq_desc *desc) __kstat_incr_irqs_this_cpu(desc); + if (chip->irq_ack) + chip->irq_ack(&desc->irq_data); + trace_irq_handler_entry(irq, action); res = action->handler(irq, raw_cpu_ptr(action->percpu_dev_id)); trace_irq_handler_exit(irq, action, res); -- 2.25.1