Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751083AbdLZPsf (ORCPT ); Tue, 26 Dec 2017 10:48:35 -0500 Received: from mail.kernel.org ([198.145.29.99]:55336 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750758AbdLZPsd (ORCPT ); Tue, 26 Dec 2017 10:48:33 -0500 DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 3E8E72191C Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=kernel.org Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=robh+dt@kernel.org X-Google-Smtp-Source: ACJfBos4gTKpuGuHrD5Ws+qdNbEFmcZVldKekLAgl8X0+2jPxFPhrHaArIQciQiH0TaPrV1K5sKS2LNQPCkHnMWvDpM= MIME-Version: 1.0 In-Reply-To: <20171226023646.17722-3-jeffy.chen@rock-chips.com> References: <20171226023646.17722-1-jeffy.chen@rock-chips.com> <20171226023646.17722-3-jeffy.chen@rock-chips.com> From: Rob Herring Date: Tue, 26 Dec 2017 09:48:11 -0600 X-Gmail-Original-Message-ID: Message-ID: Subject: Re: [RFC PATCH v12 2/5] of/irq: Adjust of_pci_irq parsing for multiple interrupts To: Jeffy Chen Cc: "linux-kernel@vger.kernel.org" , Bjorn Helgaas , linux-pm@vger.kernel.org, Tony Lindgren , Shawn Lin , Brian Norris , "Rafael J. Wysocki" , Doug Anderson , Frank Rowand , "open list:OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS" Content-Type: text/plain; charset="UTF-8" Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2574 Lines: 82 On Mon, Dec 25, 2017 at 8:36 PM, Jeffy Chen wrote: > Currently we are considering the first irq as the PCI interrupt pin, > but a PCI device may have multiple interrupts(e.g. PCIe WAKE# pin). > > Only parse the PCI interrupt pin when the irq is unnamed or named as > "pci". > > Signed-off-by: Jeffy Chen > --- > > Changes in v13: None > Changes in v12: None > Changes in v11: > Address Brian's comments. > > Changes in v10: None > Changes in v9: None > Changes in v8: None > Changes in v7: None > Changes in v6: None > Changes in v5: None > Changes in v3: None > Changes in v2: None > > drivers/of/of_pci_irq.c | 22 +++++++++++++++++++--- > 1 file changed, 19 insertions(+), 3 deletions(-) > > diff --git a/drivers/of/of_pci_irq.c b/drivers/of/of_pci_irq.c > index 3a05568f65df..d39565d5477b 100644 > --- a/drivers/of/of_pci_irq.c > +++ b/drivers/of/of_pci_irq.c > @@ -27,9 +27,25 @@ int of_irq_parse_pci(const struct pci_dev *pdev, struct of_phandle_args *out_irq > */ > dn = pci_device_to_OF_node(pdev); > if (dn) { > - rc = of_irq_parse_one(dn, 0, out_irq); > - if (!rc) > - return rc; > + struct property *prop; > + const char *name; > + int index = 0; > + > + of_property_for_each_string(dn, "interrupt-names", prop, name) { > + if (!strcmp(name, "pci")) > + break; > + index++; > + } > + > + /* > + * Only parse from DT if we have no "interrupt-names", > + * or if we found an interrupt named "pci". > + */ > + if (index == 0 || name) { > + rc = of_irq_parse_one(dn, index, out_irq); > + if (!rc) > + return rc; > + } As mentioned before, use of_property_match_string. The following should work: index = of_property_match_string(dn, "interrupt-names", "pci"); if (index == -EINVAL) /* Property doesn't exist */ index = 0; if (index >= 0) { rc = of_irq_parse_one(dn, index, out_irq); if (!rc) return rc; } > } > > /* Ok, we don't, time to have fun. Let's start by building up an > -- > 2.11.0 > > > -- > To unsubscribe from this list: send the line "unsubscribe devicetree" in > the body of a message to majordomo@vger.kernel.org > More majordomo info at http://vger.kernel.org/majordomo-info.html