[PATCH] arm64: dts: rockchip: adjust SMMU interrupt type
Heiko Stübner
heiko at sntech.de
Mon Feb 10 23:40:25 PST 2025
Am Montag, 10. Februar 2025, 22:37:29 MEZ schrieb Patrick Wildt:
> The SMMU architecture requires wired interrupts to be edge triggered,
> which does not align with the DT description for the RK3588. This leads
> to interrupt storms, as the SMMU continues to hold the pin high and only
> pulls it down for a short amount when issuing an IRQ. Update the DT
> description to be in line with the spec and perceived reality.
>
Cc'ed Niklas
This should probably also get a
Fixes: cd81d3a0695c ("arm64: dts: rockchip: add rk3588 pcie and php IOMMUs")
> Signed-off-by: Patrick Wildt <patrick at blueri.se>
> ---
> arch/arm64/boot/dts/rockchip/rk3588-base.dtsi | 16 ++++++++--------
> 1 file changed, 8 insertions(+), 8 deletions(-)
>
> diff --git a/arch/arm64/boot/dts/rockchip/rk3588-base.dtsi b/arch/arm64/boot/dts/rockchip/rk3588-base.dtsi
> index 8cfa30837ce7..520d0814a4de 100644
> --- a/arch/arm64/boot/dts/rockchip/rk3588-base.dtsi
> +++ b/arch/arm64/boot/dts/rockchip/rk3588-base.dtsi
> @@ -549,10 +549,10 @@ usb_host2_xhci: usb at fcd00000 {
> mmu600_pcie: iommu at fc900000 {
> compatible = "arm,smmu-v3";
> reg = <0x0 0xfc900000 0x0 0x200000>;
> - interrupts = <GIC_SPI 369 IRQ_TYPE_LEVEL_HIGH 0>,
> - <GIC_SPI 371 IRQ_TYPE_LEVEL_HIGH 0>,
> - <GIC_SPI 374 IRQ_TYPE_LEVEL_HIGH 0>,
> - <GIC_SPI 367 IRQ_TYPE_LEVEL_HIGH 0>;
> + interrupts = <GIC_SPI 369 IRQ_TYPE_EDGE_RISING 0>,
> + <GIC_SPI 371 IRQ_TYPE_EDGE_RISING 0>,
> + <GIC_SPI 374 IRQ_TYPE_EDGE_RISING 0>,
> + <GIC_SPI 367 IRQ_TYPE_EDGE_RISING 0>;
> interrupt-names = "eventq", "gerror", "priq", "cmdq-sync";
> #iommu-cells = <1>;
> };
> @@ -560,10 +560,10 @@ mmu600_pcie: iommu at fc900000 {
> mmu600_php: iommu at fcb00000 {
> compatible = "arm,smmu-v3";
> reg = <0x0 0xfcb00000 0x0 0x200000>;
> - interrupts = <GIC_SPI 381 IRQ_TYPE_LEVEL_HIGH 0>,
> - <GIC_SPI 383 IRQ_TYPE_LEVEL_HIGH 0>,
> - <GIC_SPI 386 IRQ_TYPE_LEVEL_HIGH 0>,
> - <GIC_SPI 379 IRQ_TYPE_LEVEL_HIGH 0>;
> + interrupts = <GIC_SPI 381 IRQ_TYPE_EDGE_RISING 0>,
> + <GIC_SPI 383 IRQ_TYPE_EDGE_RISING 0>,
> + <GIC_SPI 386 IRQ_TYPE_EDGE_RISING 0>,
> + <GIC_SPI 379 IRQ_TYPE_EDGE_RISING 0>;
> interrupt-names = "eventq", "gerror", "priq", "cmdq-sync";
> #iommu-cells = <1>;
> status = "disabled";
>
More information about the linux-arm-kernel
mailing list