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 025F2C433F5 for ; Fri, 8 Apr 2022 12:42:04 +0000 (UTC) Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id 9177B83DA8; Fri, 8 Apr 2022 14:41:45 +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="L93JSCnD"; dkim-atps=neutral Received: by phobos.denx.de (Postfix, from userid 109) id E934E83DB4; Fri, 8 Apr 2022 14:41:38 +0200 (CEST) Received: from ams.source.kernel.org (ams.source.kernel.org [145.40.68.75]) (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 0EABB83DAA for ; Fri, 8 Apr 2022 14:41:32 +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 ams.source.kernel.org (Postfix) with ESMTPS id 9BB3BB82AA6; Fri, 8 Apr 2022 12:41:31 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 4004FC385A1; Fri, 8 Apr 2022 12:41:30 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1649421690; bh=0WoU5+nK2r1rR5Pssl1r5JNZ3OwB6ve2JTKm3cHs09E=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=L93JSCnDccX68gWGxDjzJ+5NWY3drHutsg8wxDr1lv4sojh4OMyxjG9oDdLMQeNUr cNxbgWGSN7gjFlYnVWnkYGXgerVSymyYZ5/E9b4c7Y2w0Of8WMbPMfTjzoWyCXlD1e X1/PeWSVEF9rcu59ulDQAiwABroiFlgnUQzBfVmTyYEo1Z46IzkxxDorq9jAz2SI8f 0cmvGNgxNorOVdGUcAIq2ERfkUSHNvg/rGCYJHePscVZCN709DqthoEjRBDjYN1CnZ 771j2L8wr3yP/C8dg9uKzdcek48dPlKMW7w/fcPzAaW9zrPxBwY9xLS9KOooYkcfET i8WYznmb7R36A== Received: by pali.im (Postfix) id ED9CE6D7; Fri, 8 Apr 2022 14:41:29 +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 4/9] powerpc: dts: p2020: Add Linux compatible string and property for eSDHC Date: Fri, 8 Apr 2022 14:39:53 +0200 Message-Id: <20220408123958.25724-5-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 kernel eSDHC driver for P2020 requires additional compatible string fsl,p2020-esdhc and interrupts property. Add them to p2020-post.dtsi file to make U-Boot board DTS files compatible for Linux kernel. Signed-off-by: Pali Rohár --- arch/powerpc/dts/p2020-post.dtsi | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/arch/powerpc/dts/p2020-post.dtsi b/arch/powerpc/dts/p2020-post.dtsi index 7709f3f9ade1..d15597394048 100644 --- a/arch/powerpc/dts/p2020-post.dtsi +++ b/arch/powerpc/dts/p2020-post.dtsi @@ -32,8 +32,9 @@ }; esdhc: sdhc@2e000 { - compatible = "fsl,esdhc"; + compatible = "fsl,p2020-esdhc", "fsl,esdhc"; reg = <0x2e000 0x1000>; + interrupts = <72 0x2 0 0>; /* Filled in by U-Boot */ clock-frequency = <0>; }; -- 2.20.1