From patchwork Wed Jun 15 05:46:09 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Masahiro Yamada X-Patchwork-Id: 70088 Delivered-To: patch@linaro.org Received: by 10.140.106.246 with SMTP id e109csp2399700qgf; Tue, 14 Jun 2016 22:54:56 -0700 (PDT) X-Received: by 10.194.203.135 with SMTP id kq7mr9537839wjc.46.1465970096628; Tue, 14 Jun 2016 22:54:56 -0700 (PDT) Return-Path: Received: from theia.denx.de (theia.denx.de. [85.214.87.163]) by mx.google.com with ESMTP id e20si3091893wma.7.2016.06.14.22.54.56; Tue, 14 Jun 2016 22:54:56 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of u-boot-bounces@lists.denx.de designates 85.214.87.163 as permitted sender) client-ip=85.214.87.163; 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 85.214.87.163 as permitted sender) smtp.mailfrom=u-boot-bounces@lists.denx.de Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 862F8A752D; Wed, 15 Jun 2016 07:54:55 +0200 (CEST) Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id sd_QYmv3dmYm; Wed, 15 Jun 2016 07:54:55 +0200 (CEST) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id CB813A7519; Wed, 15 Jun 2016 07:54:54 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 33A05A7519 for ; Wed, 15 Jun 2016 07:54:52 +0200 (CEST) Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id bfHKIPQ4_Rsj for ; Wed, 15 Jun 2016 07:54:52 +0200 (CEST) X-Greylist: delayed 361 seconds by postgrey-1.34 at theia; Wed, 15 Jun 2016 07:54:46 CEST X-policyd-weight: NOT_IN_SBL_XBL_SPAMHAUS=-1.5 NOT_IN_SPAMCOP=-1.5 NOT_IN_BL_NJABL=-1.5 (only DNSBL check requested) Received: from condef005-v.nifty.com (condef005-v.nifty.com [210.131.4.242]) by theia.denx.de (Postfix) with ESMTPS id 7D1E8A74D0 for ; Wed, 15 Jun 2016 07:54:46 +0200 (CEST) Received: from conuserg-11.nifty.com ([10.26.8.74])by condef005-v.nifty.com with ESMTP id u5F5jfhD021233 for ; Wed, 15 Jun 2016 14:45:41 +0900 Received: from beagle.diag.org (p14092-ipngnfx01kyoto.kyoto.ocn.ne.jp [153.142.97.92]) (authenticated) by conuserg-11.nifty.com with ESMTP id u5F5iuci015966; Wed, 15 Jun 2016 14:44:57 +0900 DKIM-Filter: OpenDKIM Filter v2.10.3 conuserg-11.nifty.com u5F5iuci015966 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=nifty.com; s=dec2015msa; t=1465969497; bh=vNyfj8dP7T4CC98aAQ0IdcY+Rb2QdAxTC1T4vTO3YXg=; h=From:To:Cc:Subject:Date:From; b=Zc7ir76njpOI9FZwQllZ35uuuO8CBxo8a43Wyzwm+PaTupKa9ixRrt86FRHHY8gzY FgnzSQ6utKs+pso9u8dewdNZcJYa9cmpipSzrECKtv19ePBTn434oCNohnYn0i7c05 hadUqGV4juWb2lyjX9FxwDg4Wb8TQX+zmCO8chvAm0Pa18Hwr5OudtgOUMauowYHhC UjQFSVwLt7Kw2BNi0sdpIUmtR3EnkYfMPHHGUF6PZxnVKA+VshdC31hciWt3eGjoDz tHwdaAAie+47d5FsfKPDuEbf7Sf6+hpfWuDL/YREOGuAkGKTwJzu0O7qq6UTqoTlL/ IZRSlouK0WB7Q== X-Nifty-SrcIP: [153.142.97.92] From: Masahiro Yamada To: u-boot@lists.denx.de Date: Wed, 15 Jun 2016 14:46:09 +0900 Message-Id: <1465969569-20696-1-git-send-email-yamada.masahiro@socionext.com> X-Mailer: git-send-email 1.9.1 Subject: [U-Boot] [PATCH] ARM: uniphier: change CPU_RELEASE_ADDR to the head of DRAM space X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.15 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" At first, 256 byte of the head of DRAM space was reserved for some reasons. However, as the progress of development, it turned out unnecessary, and it was never used in the end. Move the CPU release address to leave no space. Signed-off-by: Masahiro Yamada --- include/configs/uniphier.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -- 1.9.1 _______________________________________________ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot diff --git a/include/configs/uniphier.h b/include/configs/uniphier.h index 9d14c2d..68f6c9f 100644 --- a/include/configs/uniphier.h +++ b/include/configs/uniphier.h @@ -100,7 +100,7 @@ #ifdef CONFIG_ARM64 #define CONFIG_ARMV8_MULTIENTRY -#define CPU_RELEASE_ADDR 0x80000100 +#define CPU_RELEASE_ADDR 0x80000000 #define COUNTER_FREQUENCY 50000000 #define CONFIG_GICV3 #define GICD_BASE 0x5fe00000