From patchwork Sat Dec 4 21:31:46 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?q?Andreas_Bie=C3=9Fmann?= X-Patchwork-Id: 74279 X-Patchwork-Delegate: info@emk-elektronik.de Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from theia.denx.de (theia.denx.de [85.214.87.163]) by ozlabs.org (Postfix) with ESMTP id 41069B70A4 for ; Sun, 5 Dec 2010 08:32:06 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 8DA2928200; Sat, 4 Dec 2010 22:32:03 +0100 (CET) X-Virus-Scanned: Debian amavisd-new at theia.denx.de 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 vQySYYBrI0kC; Sat, 4 Dec 2010 22:32:03 +0100 (CET) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 35168281B9; Sat, 4 Dec 2010 22:32:02 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 18B0D281B9 for ; Sat, 4 Dec 2010 22:32:00 +0100 (CET) X-Virus-Scanned: Debian amavisd-new at theia.denx.de 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 71Ka89DKwSD7 for ; Sat, 4 Dec 2010 22:31:58 +0100 (CET) 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 mail-bw0-f66.google.com (mail-bw0-f66.google.com [209.85.214.66]) by theia.denx.de (Postfix) with ESMTP id 07C98281B8 for ; Sat, 4 Dec 2010 22:31:56 +0100 (CET) Received: by bwz7 with SMTP id 7so5130687bwz.9 for ; Sat, 04 Dec 2010 13:31:55 -0800 (PST) Received: by 10.204.118.7 with SMTP id t7mr4061808bkq.97.1291498315577; Sat, 04 Dec 2010 13:31:55 -0800 (PST) Received: from andreas-mbp.erlangen.biessmann.tld (dslb-092-075-127-153.pools.arcor-ip.net [92.75.127.153]) by mx.google.com with ESMTPS id g8sm1611561bkg.11.2010.12.04.13.31.54 (version=SSLv3 cipher=RC4-MD5); Sat, 04 Dec 2010 13:31:54 -0800 (PST) From: =?UTF-8?q?Andreas=20Bie=C3=9Fmann?= To: u-boot@lists.denx.de Date: Sat, 4 Dec 2010 22:31:46 +0100 Message-Id: <1291498306-37801-1-git-send-email-andreas.devel@googlemail.com> X-Mailer: git-send-email 1.7.3.2 MIME-Version: 1.0 Subject: [U-Boot] [PATCH] at91rm9200ek: fix SDRAM initialistation values X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.9 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: u-boot-bounces@lists.denx.de Errors-To: u-boot-bounces@lists.denx.de Signed-off-by: Andreas Bießmann --- Dear Reinhard, please considre this patch to be added into v2010.12, I misconfigured the SDRAM initialisation values in 99fa97e9 regards Andreas Bießmann include/configs/at91rm9200ek.h | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/include/configs/at91rm9200ek.h b/include/configs/at91rm9200ek.h index 57e17e9..9d87e03 100644 --- a/include/configs/at91rm9200ek.h +++ b/include/configs/at91rm9200ek.h @@ -106,7 +106,7 @@ #define CONFIG_SYS_EBI_CSA_VAL 0x00000002 /* CS1=CONFIG_SYS_SDRAM */ #define CONFIG_SYS_SDRC_CR_VAL 0x2188c155 /* set up the CONFIG_SYS_SDRAM */ #define CONFIG_SYS_SDRAM CONFIG_SYS_SDRAM_BASE /* address of the SDRAM */ -#define CONFIG_SYS_SDRAM1 CONFIG_SYS_SDRAM_BASE /* address of the SDRAM */ +#define CONFIG_SYS_SDRAM1 (CONFIG_SYS_SDRAM_BASE+0x80) #define CONFIG_SYS_SDRAM_VAL 0x00000000 /* value written to CONFIG_SYS_SDRAM */ #define CONFIG_SYS_SDRC_MR_VAL 0x00000002 /* Precharge All */ #define CONFIG_SYS_SDRC_MR_VAL1 0x00000004 /* refresh */