Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit eebaa902 authored by Rohith Kollalsi's avatar Rohith Kollalsi Committed by Gerrit - the friendly Code Review server
Browse files

ARM: dts: msm: Change trigger type of dp_hs_phy_irq,dm_hs_phy_irq for kona

Irq type mentioned in dwc3-msm at usb_irq_info for dp_hs_phy_irq and
dm_hs_phy_irq is trigger rising but irq type for the same in kona dtsi is
edge both because of which mismatch is seen when mapping dp_hs_phy_irq
and dm_hs_phy_irq. This mismatch results in failure to register interrupts
with PDC controller.

To fix the type mismatch issue change the trigger type of dp_hs_phy_irq and
dm_hs_phy_irq to EDGE RISING.

Change-Id: Ia7bd47cdc853ac9c89f346c85b96640d1fd64098
parent 37969120
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -15,10 +15,10 @@
		#size-cells = <1>;
		ranges;

		interrupts-extended = <&pdc 14 IRQ_TYPE_EDGE_BOTH>,
		interrupts-extended = <&pdc 14 IRQ_TYPE_EDGE_RISING>,
			     <&intc GIC_SPI 130 IRQ_TYPE_LEVEL_HIGH>,
			     <&pdc 17 IRQ_TYPE_LEVEL_HIGH>,
			     <&pdc 15 IRQ_TYPE_EDGE_BOTH>;
			     <&pdc 15 IRQ_TYPE_EDGE_RISING>;
		interrupt-names = "dp_hs_phy_irq", "pwr_event_irq",
				"ss_phy_irq", "dm_hs_phy_irq";
		qcom,use-pdc-interrupts;