On 17.07.2024 11:48 AM, Varadarajan Narayanan wrote: > Trigger type is incorrectly specified as IRQ_TYPE_EDGE_BOTH > instead of IRQ_TYPE_LEVEL_HIGH. This trigger type is not > supported for SPIs and results in probe failure with -EINVAL. > > Fixes: 927173bf8a0e ("arm64: dts: qcom: Add missing interrupts for qcs404/ipq5332") > Signed-off-by: Varadarajan Narayanan <quic_varada@xxxxxxxxxxx> > --- > arch/arm64/boot/dts/qcom/ipq5332.dtsi | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/arch/arm64/boot/dts/qcom/ipq5332.dtsi b/arch/arm64/boot/dts/qcom/ipq5332.dtsi > index f58fd70be826..56304f996dbf 100644 > --- a/arch/arm64/boot/dts/qcom/ipq5332.dtsi > +++ b/arch/arm64/boot/dts/qcom/ipq5332.dtsi > @@ -322,8 +322,8 @@ usb: usb@8af8800 { > reg = <0x08af8800 0x400>; > > interrupts = <GIC_SPI 62 IRQ_TYPE_LEVEL_HIGH>, > - <GIC_SPI 53 IRQ_TYPE_EDGE_BOTH>, > - <GIC_SPI 52 IRQ_TYPE_EDGE_BOTH>; > + <GIC_SPI 53 IRQ_TYPE_LEVEL_HIGH>, > + <GIC_SPI 52 IRQ_TYPE_LEVEL_HIGH>; Reviewed-by: Konrad Dybcio <konrad.dybcio@xxxxxxxxxx> Probably worth asking, is there a MPM/PDC on this platform? Konrad