From patchwork Tue Oct 10 13:35:45 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Antony Antony X-Patchwork-Id: 823841 X-Patchwork-Delegate: jagannadh.teki@gmail.com Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=none (mailfrom) smtp.mailfrom=lists.denx.de (client-ip=81.169.180.215; helo=lists.denx.de; envelope-from=u-boot-bounces@lists.denx.de; receiver=) Received: from lists.denx.de (dione.denx.de [81.169.180.215]) by ozlabs.org (Postfix) with ESMTP id 3yBJ7P3kXhz9tYQ for ; Wed, 11 Oct 2017 00:37:05 +1100 (AEDT) Received: by lists.denx.de (Postfix, from userid 105) id 4234FC21C51; Tue, 10 Oct 2017 13:37:01 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on lists.denx.de X-Spam-Level: X-Spam-Status: No, score=-0.0 required=5.0 tests=RCVD_IN_MSPIKE_H3, RCVD_IN_MSPIKE_WL autolearn=unavailable autolearn_force=no version=3.4.0 Received: from lists.denx.de (localhost [IPv6:::1]) by lists.denx.de (Postfix) with ESMTP id 6EF0DC21C50; Tue, 10 Oct 2017 13:36:59 +0000 (UTC) Received: by lists.denx.de (Postfix, from userid 105) id 77D48C21C50; Tue, 10 Oct 2017 13:36:57 +0000 (UTC) Received: from lb2-smtp-cloud8.xs4all.net (lb2-smtp-cloud8.xs4all.net [194.109.24.25]) by lists.denx.de (Postfix) with ESMTPS id 1B282C21C26 for ; Tue, 10 Oct 2017 13:36:57 +0000 (UTC) Received: from localhost.localdomain ([83.163.117.153]) by smtp-cloud8.xs4all.net with ESMTPA id 1uhPecW9Tg5cR1uhQeKxkR; Tue, 10 Oct 2017 15:35:57 +0200 From: Antony Antony To: u-boot@lists.denx.de Date: Tue, 10 Oct 2017 15:35:45 +0200 Message-Id: <20171010133546.98061-1-antony@phenome.org> X-Mailer: git-send-email 2.11.0 (Apple Git-81) In-Reply-To: <20170921152217.4011-1-antony@phenome.org> References: <20170921152217.4011-1-antony@phenome.org> X-CMAE-Envelope: MS4wfFWQ7Ue9KuGuIy6YDOLRFpfCsFIj+/KLbPg/NuNnUdek18HY75QxzOPozf17k1asEzDcY5RuWGvs57KNppORnhxcqiO1xA7XRG8ulIfcKNSyzhnjM2No lsOaY2Dhgsvr9hbw9fVLPDW0DTzofPBaGwQmIHpIFbBZZ73vqmP+3Lk6tEPqtDZxAi9POjtZ7IJumI5cwchOzfdJ1nB8M9/EgOOR3nU9v/37Jgwsy//Pq9uJ RBkd4wzEGSlxEov0DNqHKIx5Rs8sUj6ckF40qVtilJJdqh4NrfpzNeWT+OIED2CX Cc: Antony Antony , Maxime Ripard , Icenowy Zheng Subject: [U-Boot] [PATCH v4 1/2] arm64: sun50i-h5.dtsi : add h5 & a64 compatible to mmc[0-2] X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.18 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" add more specific, Allwinner H5 SoC, compaitable to mmc0,1,2 current one comes from sun8i-h3.dtsi compatible = "allwinner,sun7i-a20-mmc", "allwinner,sun5i-a13-mmc"; Signed-off-by: Antony Antony --- arch/arm/dts/sun50i-h5.dtsi | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/arch/arm/dts/sun50i-h5.dtsi b/arch/arm/dts/sun50i-h5.dtsi index 4904c18..1f4c1d1 100644 --- a/arch/arm/dts/sun50i-h5.dtsi +++ b/arch/arm/dts/sun50i-h5.dtsi @@ -75,3 +75,15 @@ &gic { compatible = "arm,gic-400"; }; + +&mmc0 { + compatible = "allwinner,sun50i-h5-mmc", "allwinner,sun50i-a64-mmc"; +}; + +&mmc1 { + compatible = "allwinner,sun50i-h5-mmc", "allwinner,sun50i-a64-mmc"; +}; + +&mmc2 { + compatible = "allwinner,sun50i-h5-mmc", "allwinner,sun50i-a64-mmc"; +};