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 Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 72CC2C4332F for ; Tue, 12 Dec 2023 10:30:35 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender: Content-Transfer-Encoding:Content-Type:List-Subscribe:List-Help:List-Post: List-Archive:List-Unsubscribe:List-Id:In-Reply-To:MIME-Version:References: Message-ID:Subject:CC:To:From:Date:Reply-To:Content-ID:Content-Description: Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID: List-Owner; bh=vfQn8p8iMF1b98ly8Ly51ou5Osv5WXadDN17WZiPfZc=; b=QiXTjhfjRxxwUJ Tlve5VNcciltzSWVRxcfw+Jww8yYT9m+Ue3L+ACz3xOk97wuiWXcEQsYq7w9M8rK4Job6y8Zi8z4Y BQJzffbx3da4WahN+pDKysvuWjq22PlSyLDDfZLDcnl3CUUz8ElEakpbXrR730Zh+ta6EFrTzs5Hs Ub0JxkUZYYS4Fa9b9QKpIs/gylpq3O+4bT3ELggmYatEvGwzsQYDU6uW950hSYjNUdrA1jij/W7Z5 KH8n9gmOd2vdl/9moxQqq5zg3dWzQsCfaAAgUsZ9FStWdUeVvPmTr6CaNaxxwLr2n5abFEpgZaKX/ TJDW0aE4uimDbjtTS+zg==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.96 #2 (Red Hat Linux)) id 1rD01d-00BIo8-0f; Tue, 12 Dec 2023 10:30:05 +0000 Received: from 60-248-80-70.hinet-ip.hinet.net ([60.248.80.70] helo=Atcsqr.andestech.com) by bombadil.infradead.org with esmtps (Exim 4.96 #2 (Red Hat Linux)) id 1rD01Z-00BInL-1L; Tue, 12 Dec 2023 10:30:03 +0000 Received: from mail.andestech.com (ATCPCS16.andestech.com [10.0.1.222]) by Atcsqr.andestech.com with ESMTP id 3BCASoWD093073; Tue, 12 Dec 2023 18:28:50 +0800 (+08) (envelope-from peterlin@andestech.com) Received: from APC323 (10.0.12.98) by ATCPCS16.andestech.com (10.0.1.222) with Microsoft SMTP Server id 14.3.498.0; Tue, 12 Dec 2023 18:28:47 +0800 Date: Tue, 12 Dec 2023 18:28:47 +0800 From: Yu-Chien Peter Lin To: Thomas Gleixner CC: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , Subject: Re: [PATCH v4 03/13] irqchip/riscv-intc: Introduce Andes hart-level interrupt controller Message-ID: References: <20231122121235.827122-1-peterlin@andestech.com> <20231122121235.827122-4-peterlin@andestech.com> <87y1e4r8db.ffs@tglx> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <87y1e4r8db.ffs@tglx> User-Agent: Mutt/2.2.10 (2023-03-25) X-Originating-IP: [10.0.12.98] X-DNSRBL: X-MAIL: Atcsqr.andestech.com 3BCASoWD093073 X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20231212_023001_932297_B2C0B9AD X-CRM114-Status: GOOD ( 24.88 ) X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org Hi Thomas, On Fri, Dec 08, 2023 at 05:01:36PM +0100, Thomas Gleixner wrote: > On Wed, Nov 22 2023 at 20:12, Yu Chien Peter Lin wrote: > > To share the riscv_intc_domain_map() with the generic RISC-V INTC and > > ACPI, we add a chip parameter to riscv_intc_init_common(), so it can be > > s/we// > > See: Documentation/process/ > > > passed to the irq_domain_set_info() as private data. > > diff --git a/drivers/irqchip/irq-riscv-intc.c b/drivers/irqchip/irq-riscv-intc.c > > index 2fdd40f2a791..30f0036c8978 100644 > > --- a/drivers/irqchip/irq-riscv-intc.c > > +++ b/drivers/irqchip/irq-riscv-intc.c > > @@ -17,6 +17,7 @@ > > #include > > #include > > #include > > +#include > > > > static struct irq_domain *intc_domain; > > > > @@ -46,6 +47,31 @@ static void riscv_intc_irq_unmask(struct irq_data *d) > > csr_set(CSR_IE, BIT(d->hwirq)); > > } > > > > +static void andes_intc_irq_mask(struct irq_data *d) > > +{ > > + /* > > + * Andes specific S-mode local interrupt causes (hwirq) > > + * are defined as (256 + n) and controlled by n-th bit > > + * of SLIE. > > + */ > > + unsigned int mask = BIT(d->hwirq % BITS_PER_LONG); > > How is this supposed to be correct with BITS_PER_LONG == 64? Yes, I should subtract ANDES_SLI_CAUSE_BASE directly here. > > + > > + if (d->hwirq < ANDES_SLI_CAUSE_BASE) > > + csr_clear(CSR_IE, mask); > > + else > > + csr_clear(ANDES_CSR_SLIE, mask); > > +} > > + > > +static void andes_intc_irq_unmask(struct irq_data *d) > > +{ > > + unsigned int mask = BIT(d->hwirq % BITS_PER_LONG); > > Ditto. > > > + if (d->hwirq < ANDES_SLI_CAUSE_BASE) > > + csr_set(CSR_IE, mask); > > + else > > + csr_set(ANDES_CSR_SLIE, mask); > > +} > > > static int riscv_intc_domain_map(struct irq_domain *d, unsigned int irq, > > irq_hw_number_t hwirq) > > { > > + struct irq_chip *chip = d->host_data; > > + > > irq_set_percpu_devid(irq); > > - irq_domain_set_info(d, irq, hwirq, &riscv_intc_chip, d->host_data, > > + irq_domain_set_info(d, irq, hwirq, chip, d->host_data, > > So this sets 'chip_data' to the chip itself. What's the point? Just set > it to NULL as the chip obviously does not need chip_data at all. Will fix. Thanks. Best regards, Peter Lin > > handle_percpu_devid_irq, NULL, NULL); > > > > return 0; > > @@ -112,11 +147,12 @@ static struct fwnode_handle *riscv_intc_hwnode(void) > > return intc_domain->fwnode; > > } > > > > -static int __init riscv_intc_init_common(struct fwnode_handle *fn) > > +static int __init riscv_intc_init_common(struct fwnode_handle *fn, > > + struct irq_chip *chip) > > { > > int rc; > > > > - intc_domain = irq_domain_create_tree(fn, &riscv_intc_domain_ops, NULL); > > + intc_domain = irq_domain_create_tree(fn, &riscv_intc_domain_ops, chip); > > if (!intc_domain) { > > pr_err("unable to add IRQ domain\n"); > > return -ENXIO; > > @@ -138,6 +174,7 @@ static int __init riscv_intc_init(struct device_node *node, > > { > > int rc; > > unsigned long hartid; > > + struct irq_chip *chip = &riscv_intc_chip; > > https://www.kernel.org/doc/html/latest/process/maintainer-tip.html#variable-declarations > > Thanks > > tglx _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel