From patchwork Mon Mar 6 20:28:25 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Masahiro Yamada X-Patchwork-Id: 94933 Delivered-To: patch@linaro.org Received: by 10.140.82.71 with SMTP id g65csp1565145qgd; Mon, 6 Mar 2017 12:28:45 -0800 (PST) X-Received: by 10.223.160.162 with SMTP id m31mr16619000wrm.54.1488832125762; Mon, 06 Mar 2017 12:28:45 -0800 (PST) Return-Path: Received: from lists.denx.de (dione.denx.de. [81.169.180.215]) by mx.google.com with ESMTP id 184si15933348wmz.16.2017.03.06.12.28.45; Mon, 06 Mar 2017 12:28:45 -0800 (PST) Received-SPF: pass (google.com: best guess record for domain of u-boot-bounces@lists.denx.de designates 81.169.180.215 as permitted sender) client-ip=81.169.180.215; Authentication-Results: mx.google.com; dkim=neutral (body hash did not verify) header.i=@nifty.com; spf=pass (google.com: best guess record for domain of u-boot-bounces@lists.denx.de designates 81.169.180.215 as permitted sender) smtp.mailfrom=u-boot-bounces@lists.denx.de Received: by lists.denx.de (Postfix, from userid 105) id 34C18C21CC2; Mon, 6 Mar 2017 20:28:43 +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=T_DKIM_INVALID 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 1D30FC21C2C; Mon, 6 Mar 2017 20:28:42 +0000 (UTC) Received: by lists.denx.de (Postfix, from userid 105) id 313D2C21C2C; Mon, 6 Mar 2017 20:28:41 +0000 (UTC) Received: from conuserg-11.nifty.com (conuserg-11.nifty.com [210.131.2.78]) by lists.denx.de (Postfix) with ESMTPS id 0413DC21C28 for ; Mon, 6 Mar 2017 20:28:39 +0000 (UTC) Received: from grover.sesame (FL1-111-169-71-157.osk.mesh.ad.jp [111.169.71.157]) (authenticated) by conuserg-11.nifty.com with ESMTP id v26KSQmi015995; Tue, 7 Mar 2017 05:28:31 +0900 DKIM-Filter: OpenDKIM Filter v2.10.3 conuserg-11.nifty.com v26KSQmi015995 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=nifty.com; s=dec2015msa; t=1488832111; bh=X9tQqVqJYqljl95pB5qPVMk/yCUx41D7/AqEJKu7Lqo=; h=From:To:Cc:Subject:Date:From; b=xGozlrUUz/sbWNAOIluK8X4HSu8pOO5TQ6/DvGDg2os9LjS5aEz6Rhk8kvY9wsTRO al+zQWr5VXOIogdxgtpT01rhQK+8Mk9lALsLX8Dl8jddsb8fnBPRaMb5mLn0tJufzG /ZS9wkTpUS7FpPU2Cf5YL0nEjgnWVq/O5j/SLLz9DJYFcQtKzwK9X1uIB8vDP8Vxvy 2TrCWDXXE3gFelQxtT3Wc4MCOWtssRTstyWhjmKnNuooHgyUY/7pRF92e1XCJnR8wV y2Owh7zv4MgkJREm6O8bAkjQAR2YY0CMU9eFjR/gqQeETJtP15wLYtWzXZXqvYiVNr WIxev9HYcPOUA== X-Nifty-SrcIP: [111.169.71.157] From: Masahiro Yamada To: u-boot@lists.denx.de Date: Tue, 7 Mar 2017 05:28:25 +0900 Message-Id: <1488832105-5459-1-git-send-email-yamada.masahiro@socionext.com> X-Mailer: git-send-email 2.7.4 Subject: [U-Boot] [PATCH] ARM: uniphier: set DRAM_SPARSE flag for LD21 boards 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" Commit 04cd4e7215d3 ("ARM: uniphier: remove DRAM base address from board parameters") accidentally unset the DRAM_SPARSE flag, and changed the physical map of the DRAM channels. Revive the original behavior. Fixes: 04cd4e7215d3 ("ARM: uniphier: remove DRAM base address from board parameters") Signed-off-by: Masahiro Yamada Reported-by: Shunji Sato --- arch/arm/mach-uniphier/boards.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm/mach-uniphier/boards.c b/arch/arm/mach-uniphier/boards.c index db7d192..e3b9335 100644 --- a/arch/arm/mach-uniphier/boards.c +++ b/arch/arm/mach-uniphier/boards.c @@ -199,7 +199,7 @@ static const struct uniphier_board_data uniphier_ld21_data = { .size = 0x40000000, .width = 32, }, - .flags = UNIPHIER_BD_BOARD_LD21_GLOBAL, + .flags = UNIPHIER_BD_DRAM_SPARSE | UNIPHIER_BD_BOARD_LD21_GLOBAL, }; #endif