Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752812AbdFUJar (ORCPT ); Wed, 21 Jun 2017 05:30:47 -0400 Received: from foss.arm.com ([217.140.101.70]:49426 "EHLO foss.arm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751154AbdFUJao (ORCPT ); Wed, 21 Jun 2017 05:30:44 -0400 Subject: Re: [PATCH v8 3/3] iommu/arm-smmu-v3: Add workaround for Cavium ThunderX2 erratum #126 To: Will Deacon , Geetha Akula References: <1497968259-16390-1-git-send-email-gakula@caviumnetworks.com> <1497968259-16390-4-git-send-email-gakula@caviumnetworks.com> <20170620180038.GC28035@arm.com> <20170621090835.GD3768@arm.com> Cc: Geetha sowjanya , Robin Murphy , Lorenzo Pieralisi , Hanjun Guo , Sudeep Holla , Linux IOMMU , Robert Moore , Lv Zheng , "Rafael J. Wysocki" , jcm@redhat.com, linux-kernel@vger.kernel.org, Robert Richter , Catalin Marinas , Sunil Goutham , linux-arm-kernel@lists.infradead.org, linux-acpi@vger.kernel.org, devel@acpica.org, Linu Cherian , Charles Garcia-Tobin , Rob Herring , Geetha Sowjanya From: Marc Zyngier Organization: ARM Ltd Message-ID: <2e334fe2-864e-d2b9-1699-20aee5d26007@arm.com> Date: Wed, 21 Jun 2017 10:30:39 +0100 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Thunderbird/45.8.0 MIME-Version: 1.0 In-Reply-To: <20170621090835.GD3768@arm.com> Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 3356 Lines: 73 On 21/06/17 10:08, Will Deacon wrote: > Hi Geetha, > > On Wed, Jun 21, 2017 at 12:09:45PM +0530, Geetha Akula wrote: >> On Tue, Jun 20, 2017 at 11:30 PM, Will Deacon wrote: >>> On Tue, Jun 20, 2017 at 07:47:39PM +0530, Geetha sowjanya wrote: >>>> From: Geetha Sowjanya >>>> >>>> Cavium ThunderX2 SMMU doesn't support MSI and also doesn't have unique irq >>>> lines for gerror, eventq and cmdq-sync. >>>> >>>> SHARED_IRQ option is set as a errata workaround, which allows to share the irq >>>> line by register single irq handler for all the interrupts. >>>> >>>> Signed-off-by: Geetha sowjanya >>>> --- >>>> .../devicetree/bindings/iommu/arm,smmu-v3.txt | 5 ++ >>>> drivers/iommu/arm-smmu-v3.c | 73 ++++++++++++++++---- >>>> 2 files changed, 64 insertions(+), 14 deletions(-) >>>> >>>> diff --git a/Documentation/devicetree/bindings/iommu/arm,smmu-v3.txt b/Documentation/devicetree/bindings/iommu/arm,smmu-v3.txt >>>> index 6ecc48c..44b40e0 100644 >>>> --- a/Documentation/devicetree/bindings/iommu/arm,smmu-v3.txt >>>> +++ b/Documentation/devicetree/bindings/iommu/arm,smmu-v3.txt >>>> @@ -55,6 +55,11 @@ the PCIe specification. >>>> Set for Caviun ThunderX2 silicon that doesn't support >>>> SMMU page1 register space. >>>> >>>> +- cavium,cn9900-broken-unique-irqline >>>> + : Use single irq line for all the SMMUv3 interrupts. >>>> + Set for Caviun ThunderX2 silicon that doesn't support >>>> + MSI and also doesn't have unique irq lines for gerror, >>>> + eventq and cmdq-sync. >>> >>> I think we're better off just supporting a new (optional) named interrupt >>> as "combined", and then allowing that to be used instead of the others. >> >> Are you suggesting to have new name irq "combined" like gerror ? >> If yes, then this won't be possible with apci. We need to update iort spec to >> add new name irq. > > I'm mainly talking about the DT binding here, but I don't see why you > can't hack drivers/acpi/arm64/iort.c like you did for the other erratum and > have it register a single interrupt called "combined" based on the model > number. > >>>> + arm_smmu_shared_irq_thread, >>>> + IRQF_ONESHOT | IRQF_SHARED, >>> >>> Why do you need IRQF_SHARED here? >> >> >> +devm_request_threaded_irq(smmu->dev, irq, >> + arm_smmu_combined_irq_handler, >> + arm_smmu_combined_irq_thread, >> + IRQF_SHARED, >> + "arm-smmu-v3-combined-irq", smmu); >> >> On multi-node system, node1 SMMU's share irq lines with node0 SMMU's. > > How does that work? Are these really MSIs under the hood? If so, why didn't > you just build them as... MSIs? More specifically, I suspect that they are made out of message-signalled SPIs, targeting the GIC distributor directly... That's the only way I can imagine it has been built... If I'm right, we probably have the firmware programming the same SPI number in both nodes. But of course, that's pure speculation. M. -- Jazz is not dead. It just smells funny...