From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 6E08B7BB0D; Wed, 21 Feb 2024 13:30:15 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1708522215; cv=none; b=IkLJMpHh1PMfPj5o+daecKoOSc47/ZZnfG78/6z2NljEq8l8/aopuHPAeqzgJ8hmwKoqGT8nL0kdwCGipHc+qsNr5rTMzaY/uWSxUKwP+SUh8NH4vMKQiSG439ed4mxW6bxUshuE1/kWaOfW4Hp3sKCsFB4BfLCjJYawag0aTAo= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1708522215; c=relaxed/simple; bh=d+bO35aU/NsncNW7d8svI5m2+BoxHtc1R4GbTABk1zk=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=YHV/qxsDpqT7RaM5oKObQx2p8Xttjjl7W69ifnsWUM/+JlL9RRhi4AJ1dryQH2ntlW7vE3Hs4ydZXrRVVNtpAxoWN7Lo+vmOqbu2OTbL9ws5LPMkcLJeRWoAu3QUkahOMfwXgQwv2mveiGs+pal0glYoqRIhGDNexJHOtvIpQic= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=IeB2ufqr; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="IeB2ufqr" Received: by smtp.kernel.org (Postfix) with ESMTPSA id CBC0BC433C7; Wed, 21 Feb 2024 13:30:14 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1708522215; bh=d+bO35aU/NsncNW7d8svI5m2+BoxHtc1R4GbTABk1zk=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=IeB2ufqriqw/4KNCX2rHPj/1TUeUc/EuqbOhiwrLb58BKtBpe6WXykhm+9ef8FNpG fVJ0UeH++kRu7kDWSL8+yy3blw9iBQH09h1pAAnAOZunCwC/MDTYi0Kqkpc3/O8pOV CLggqbk4dPvK6Pev+MSCcmXqt6+wQPUeQyAMHh4Q= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Manivannan Sadhasivam , Johan Hovold , Konrad Dybcio , Manivannan Sadhasivam , Bjorn Andersson , Sasha Levin Subject: [PATCH 5.15 105/476] ARM: dts: qcom: sdx55: fix USB SS wakeup Date: Wed, 21 Feb 2024 14:02:36 +0100 Message-ID: <20240221130011.856032915@linuxfoundation.org> X-Mailer: git-send-email 2.43.2 In-Reply-To: <20240221130007.738356493@linuxfoundation.org> References: <20240221130007.738356493@linuxfoundation.org> User-Agent: quilt/0.67 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 5.15-stable review patch. If anyone has any objections, please let me know. ------------------ From: Johan Hovold [ Upstream commit 710dd03464e4ab5b3d329768388b165d61958577 ] The USB SS PHY interrupt needs to be provided by the PDC interrupt controller in order to be able to wake the system up from low-power states. Fixes: fea4b41022f3 ("ARM: dts: qcom: sdx55: Add USB3 and PHY support") Cc: stable@vger.kernel.org # 5.12 Cc: Manivannan Sadhasivam Signed-off-by: Johan Hovold Reviewed-by: Konrad Dybcio Reviewed-by: Manivannan Sadhasivam Link: https://lore.kernel.org/r/20231213173131.29436-4-johan+linaro@kernel.org Signed-off-by: Bjorn Andersson Signed-off-by: Sasha Levin --- arch/arm/boot/dts/qcom-sdx55.dtsi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm/boot/dts/qcom-sdx55.dtsi b/arch/arm/boot/dts/qcom-sdx55.dtsi index 9c0d2432f105..67159e8608ed 100644 --- a/arch/arm/boot/dts/qcom-sdx55.dtsi +++ b/arch/arm/boot/dts/qcom-sdx55.dtsi @@ -421,7 +421,7 @@ usb: usb@a6f8800 { assigned-clock-rates = <19200000>, <200000000>; interrupts-extended = <&intc GIC_SPI 131 IRQ_TYPE_LEVEL_HIGH>, - <&intc GIC_SPI 198 IRQ_TYPE_LEVEL_HIGH>, + <&pdc 51 IRQ_TYPE_LEVEL_HIGH>, <&pdc 11 IRQ_TYPE_EDGE_BOTH>, <&pdc 10 IRQ_TYPE_EDGE_BOTH>; interrupt-names = "hs_phy_irq", "ss_phy_irq", -- 2.43.0