From nobody Fri Sep 5 20:03:51 2025 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 362ACC32772 for ; Tue, 23 Aug 2022 11:12:33 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1348425AbiHWLMa (ORCPT ); Tue, 23 Aug 2022 07:12:30 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:51272 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1357436AbiHWLK4 (ORCPT ); Tue, 23 Aug 2022 07:10:56 -0400 Received: from ams.source.kernel.org (ams.source.kernel.org [145.40.68.75]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id C0C0CB776F; Tue, 23 Aug 2022 02:17:26 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ams.source.kernel.org (Postfix) with ESMTPS id 8292EB81C65; Tue, 23 Aug 2022 09:17:19 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id D48F4C433D6; Tue, 23 Aug 2022 09:17:17 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1661246238; bh=LlcxZvBvl6kYnPAUtZWbgaij/bWbK1I+bLgA9oV/ii4=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=bl4Jhu622liTw6J7VFxndcsVGbDAuNz+7hF1rD4QZwQ/nvQa37DmoDs2rAcL+6EyP MpOgaPL404zakNs6t5a3kdy4lCsQV+sWJVH/6mA2o8ggefuwWKc17Dm9IpSvbWPiES aizNE4yQ3ioEFOdu8x0Xp9UyKIWfWjam1FnOUIZY= From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, Ryuta NAKANISHI , Kunihiko Hayashi , Arnd Bergmann Subject: [PATCH 5.4 046/389] ARM: dts: uniphier: Fix USB interrupts for PXs2 SoC Date: Tue, 23 Aug 2022 10:22:04 +0200 Message-Id: <20220823080117.528053912@linuxfoundation.org> X-Mailer: git-send-email 2.37.2 In-Reply-To: <20220823080115.331990024@linuxfoundation.org> References: <20220823080115.331990024@linuxfoundation.org> User-Agent: quilt/0.67 MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Type: text/plain; charset="utf-8" From: Kunihiko Hayashi commit 9b0dc7abb5cc43a2dbf90690c3c6011dcadc574d upstream. An interrupt for USB device are shared with USB host. Set interrupt-names property to common "dwc_usb3" instead of "host" and "peripheral". Cc: stable@vger.kernel.org Fixes: 45be1573ad19 ("ARM: dts: uniphier: Add USB3 controller nodes") Reported-by: Ryuta NAKANISHI Signed-off-by: Kunihiko Hayashi Signed-off-by: Arnd Bergmann Signed-off-by: Greg Kroah-Hartman --- arch/arm/boot/dts/uniphier-pxs2.dtsi | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) --- a/arch/arm/boot/dts/uniphier-pxs2.dtsi +++ b/arch/arm/boot/dts/uniphier-pxs2.dtsi @@ -585,8 +585,8 @@ compatible =3D "socionext,uniphier-dwc3", "snps,dwc3"; status =3D "disabled"; reg =3D <0x65a00000 0xcd00>; - interrupt-names =3D "host", "peripheral"; - interrupts =3D <0 134 4>, <0 135 4>; + interrupt-names =3D "dwc_usb3"; + interrupts =3D <0 134 4>; pinctrl-names =3D "default"; pinctrl-0 =3D <&pinctrl_usb0>, <&pinctrl_usb2>; clock-names =3D "ref", "bus_early", "suspend"; @@ -681,8 +681,8 @@ compatible =3D "socionext,uniphier-dwc3", "snps,dwc3"; status =3D "disabled"; reg =3D <0x65c00000 0xcd00>; - interrupt-names =3D "host", "peripheral"; - interrupts =3D <0 137 4>, <0 138 4>; + interrupt-names =3D "dwc_usb3"; + interrupts =3D <0 137 4>; pinctrl-names =3D "default"; pinctrl-0 =3D <&pinctrl_usb1>, <&pinctrl_usb3>; clock-names =3D "ref", "bus_early", "suspend";