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 <will.deacon@xxxxxxx> wrote: >>> On Tue, Jun 20, 2017 at 07:47:39PM +0530, Geetha sowjanya wrote: >>>> From: Geetha Sowjanya <geethasowjanya.akula@xxxxxxxxxx> >>>> >>>> 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 <gakula@xxxxxxxxxxxxxxxxxx> >>>> --- >>>> .../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... -- To unsubscribe from this list: send the line "unsubscribe linux-acpi" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html