From patchwork Thu Oct 28 19:23:17 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Himanshu Chauhan X-Patchwork-Id: 71956 Return-Path: X-Original-To: wd@gemini.denx.de Delivered-To: wd@gemini.denx.de Received: from diddl.denx.de (diddl.denx.de [10.0.0.6]) by gemini.denx.de (Postfix) with ESMTP id 20983152452 for ; Thu, 28 Oct 2010 21:24:28 +0200 (CEST) Received: from diddl.denx.de (localhost.localdomain [127.0.0.1]) by diddl.denx.de (Postfix) with ESMTP id 0C2A23364F8D for ; Thu, 28 Oct 2010 21:24:28 +0200 (CEST) Received: from pop.mnet-online.de by diddl.denx.de with POP3 (fetchmail-6.3.17) for (single-drop); Thu, 28 Oct 2010 21:24:28 +0200 (CEST) Received: from murder ([192.168.8.180]) by backend2 (Cyrus v2.2.12) with LMTPA; Thu, 28 Oct 2010 21:23:48 +0200 X-Sieve: CMU Sieve 2.2 Received: from mail.m-online.net (localhost [127.0.0.1]) by frontend1.mail.m-online.net (Cyrus v2.2.12) with LMTPA; Thu, 28 Oct 2010 21:23:47 +0200 Received: from scanner-2.m-online.net (scanner-2.mail.m-online.net [192.168.8.166]) by mail.m-online.net (Postfix) with ESMTP id 99CC41C001B5; Thu, 28 Oct 2010 21:23:47 +0200 (CEST) Received: from theia.denx.de (theia.denx.de [85.214.87.163]) by mxin-1.m-online.net (Postfix) with ESMTP id C399D46C0BB; Thu, 28 Oct 2010 21:23:44 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 8AB8128191; Thu, 28 Oct 2010 21:23:41 +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 42EWlP+uXdSn; Thu, 28 Oct 2010 21:23:41 +0200 (CEST) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 22F3128195; Thu, 28 Oct 2010 21:23:36 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 247B42818D for ; Thu, 28 Oct 2010 21:23:33 +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 XU4gQYUqwXnZ for ; Thu, 28 Oct 2010 21:23:31 +0200 (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 mail-pw0-f44.google.com (mail-pw0-f44.google.com [209.85.160.44]) by theia.denx.de (Postfix) with ESMTP id 075672814B for ; Thu, 28 Oct 2010 21:23:29 +0200 (CEST) Received: by pwj5 with SMTP id 5so281913pwj.3 for ; Thu, 28 Oct 2010 12:23:28 -0700 (PDT) Received: by 10.142.221.19 with SMTP id t19mr577562wfg.235.1288293807776; Thu, 28 Oct 2010 12:23:27 -0700 (PDT) Received: from localhost.localdomain ([118.95.28.138]) by mx.google.com with ESMTPS id x35sm15698784wfd.1.2010.10.28.12.23.25 (version=TLSv1/SSLv3 cipher=RC4-MD5); Thu, 28 Oct 2010 12:23:27 -0700 (PDT) From: Himanshu Chauhan To: u-boot@lists.denx.de Date: Fri, 29 Oct 2010 00:53:17 +0530 Message-Id: <1288293797-16422-1-git-send-email-hschauhan@nulltrace.org> X-Mailer: git-send-email 1.7.0.4 Subject: [U-Boot] [PATCH] CONFIG_SYS_SDRAM and CONFIG_SYS_INIT_SP_ADDR defines for versatile boards. 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: , MIME-Version: 1.0 Sender: u-boot-bounces@lists.denx.de Errors-To: u-boot-bounces@lists.denx.de X-Virus-Scanned: by amavisd-new at m-online.net Following is the patch for defining the subject line mentioned configuration defines for versatile boards. Signed-off-by: Himanshu Chauhan --- include/configs/versatile.h | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/include/configs/versatile.h b/include/configs/versatile.h index 45d8434..2da567a 100644 --- a/include/configs/versatile.h +++ b/include/configs/versatile.h @@ -231,4 +231,7 @@ #define CONFIG_SYS_FLASH_PROTECTION /* The devices have real protection */ #define CONFIG_SYS_FLASH_EMPTY_INFO /* flinfo indicates empty blocks */ +#define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM_1 +#define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_TEXT_BASE \ + - GENERATED_GBL_DATA_SIZE) #endif /* __CONFIG_H */