From mboxrd@z Thu Jan 1 00:00:00 1970 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 phobos.denx.de (phobos.denx.de [85.214.62.61]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id BA12AC433EF for ; Fri, 8 Apr 2022 12:43:06 +0000 (UTC) Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id 53D8983DF8; Fri, 8 Apr 2022 14:42:09 +0200 (CEST) Authentication-Results: phobos.denx.de; dmarc=pass (p=none dis=none) header.from=kernel.org Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=u-boot-bounces@lists.denx.de Authentication-Results: phobos.denx.de; dkim=pass (2048-bit key; unprotected) header.d=kernel.org header.i=@kernel.org header.b="JX0htjCZ"; dkim-atps=neutral Received: by phobos.denx.de (Postfix, from userid 109) id 56B8983DCA; Fri, 8 Apr 2022 14:41:49 +0200 (CEST) Received: from dfw.source.kernel.org (dfw.source.kernel.org [IPv6:2604:1380:4641:c500::1]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by phobos.denx.de (Postfix) with ESMTPS id 22D1383DD3 for ; Fri, 8 Apr 2022 14:41:35 +0200 (CEST) Authentication-Results: phobos.denx.de; dmarc=pass (p=none dis=none) header.from=kernel.org Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=pali@kernel.org 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 dfw.source.kernel.org (Postfix) with ESMTPS id CF67E620C8; Fri, 8 Apr 2022 12:41:33 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 1B1C4C385A1; Fri, 8 Apr 2022 12:41:33 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1649421693; bh=Z+9Yo7Mw2gh5M6va+flHPRCf2iGwsoXaK8HDD0XhwtM=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=JX0htjCZXZqOP5mQmPNXzvRy3SEMkw9W5WWm7N2xiggf4SQSwzvHDZ0zzyrcwjslI tfTisy9nDDan5lSNwdSHSUb1Mh5AKJxLxBmMdh48ARWxxf9YMwuXZnbtzhcMqLmZYO 3J+LWBdxZvbKc8gttLsZriHEFP+R5DfWUMgdpA7Xy6xeH7VmqAmH+0PwYUPzIp1dks dC47hubNXhbMpWEOrvJmsq08anvTJ3vqgYSbokVbYXJsLpIiJcnaaG23kdKetNOVhQ Wete+M2z8ZRnnpMJlBCJkXplF0uk2TY6Ymp+pDG0Z9kft78UwRHQdgD6Rkvrft7hDm fvjvZJ/0CnxjA== Received: by pali.im (Postfix) id C96FD6D7; Fri, 8 Apr 2022 14:41:32 +0200 (CEST) From: =?UTF-8?q?Pali=20Roh=C3=A1r?= To: Priyanka Jain , Wolfgang Denk , Sinan Akman Cc: u-boot@lists.denx.de Subject: [PATCH 7/9] powerpc: dts: p2020: Make usb@22000 node compatible for Linux kernel driver Date: Fri, 8 Apr 2022 14:39:56 +0200 Message-Id: <20220408123958.25724-8-pali@kernel.org> X-Mailer: git-send-email 2.20.1 In-Reply-To: <20220408123958.25724-1-pali@kernel.org> References: <20220408123958.25724-1-pali@kernel.org> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.39 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" X-Virus-Scanned: clamav-milter 0.103.5 at phobos.denx.de X-Virus-Status: Clean Linux P2020 USB kernel driver uses compatible string fsl-usb2-dr-v1.6 and needs more DT properties. Copy P2020 usb@22000 properties from upstream Linux kernel. Signed-off-by: Pali Rohár --- arch/powerpc/dts/p2020-post.dtsi | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/arch/powerpc/dts/p2020-post.dtsi b/arch/powerpc/dts/p2020-post.dtsi index 2135710ccc3a..0a296cffe56f 100644 --- a/arch/powerpc/dts/p2020-post.dtsi +++ b/arch/powerpc/dts/p2020-post.dtsi @@ -14,8 +14,11 @@ bus-frequency = <0x0>; usb@22000 { - compatible = "fsl-usb2-dr"; + compatible = "fsl-usb2-dr-v1.6", "fsl-usb2-dr"; reg = <0x22000 0x1000>; + #address-cells = <1>; + #size-cells = <0>; + interrupts = <28 0x2 0 0>; phy_type = "ulpi"; }; -- 2.20.1