From patchwork Thu Sep 1 09:18:35 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: =?utf-8?q?=C5=81ukasz_Majewski?= X-Patchwork-Id: 112849 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 843F4B6F7F for ; Thu, 1 Sep 2011 19:18:49 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id A5786280D6; Thu, 1 Sep 2011 11:18:47 +0200 (CEST) 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 NQnPkXWFPhHX; Thu, 1 Sep 2011 11:18:47 +0200 (CEST) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 2428D280CE; Thu, 1 Sep 2011 11:18:46 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 3F664280CE for ; Thu, 1 Sep 2011 11:18:43 +0200 (CEST) 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 oc6o7FbwuOQd for ; Thu, 1 Sep 2011 11:18:42 +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 mailout4.w1.samsung.com (mailout4.w1.samsung.com [210.118.77.14]) by theia.denx.de (Postfix) with ESMTP id 1761C280CC for ; Thu, 1 Sep 2011 11:18:40 +0200 (CEST) MIME-version: 1.0 Received: from euspt2 ([210.118.77.14]) by mailout4.w1.samsung.com (Sun Java(tm) System Messaging Server 6.3-8.04 (built Jul 29 2009; 32bit)) with ESMTP id <0LQU00B8W772U040@mailout4.w1.samsung.com> for u-boot@lists.denx.de; Thu, 01 Sep 2011 10:18:39 +0100 (BST) Received: from linux.samsung.com ([106.116.38.10]) by spt2.w1.samsung.com (iPlanet Messaging Server 5.2 Patch 2 (built Jul 14 2004)) with ESMTPA id <0LQU0099K772QM@spt2.w1.samsung.com> for u-boot@lists.denx.de; Thu, 01 Sep 2011 10:18:38 +0100 (BST) Received: from mcdsrvbld02.digital.local (unknown [106.116.37.23]) by linux.samsung.com (Postfix) with ESMTP id 17237270055; Thu, 01 Sep 2011 11:20:05 +0200 (CEST) Date: Thu, 01 Sep 2011 11:18:35 +0200 From: Lukasz Majewski To: u-boot@lists.denx.de Message-id: <1314868715-4034-1-git-send-email-l.majewski@samsung.com> X-Mailer: git-send-email 1.7.5.4 Cc: Minkyu Kang , Kyungmin Park , m.szyprowski@samsung.com Subject: [U-Boot] [PATCH] dcache:s5p CONFIG_SYS_CACHELINE_SIZE added to s5p targets 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 Define the D-cache line size for S5PC110 GONI and S5PC210 Universal reference targets. Signed-off-by: Lukasz Majewski Signed-off-by: Kyungmin Park Cc: Minkyu Kang --- Depend on: http://patchwork.ozlabs.org/patch/112847/ --- include/configs/s5p_goni.h | 1 + include/configs/s5pc210_universal.h | 2 ++ 2 files changed, 3 insertions(+), 0 deletions(-) diff --git a/include/configs/s5p_goni.h b/include/configs/s5p_goni.h index aef3a9d..c860420 100644 --- a/include/configs/s5p_goni.h +++ b/include/configs/s5p_goni.h @@ -224,6 +224,7 @@ #define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_LOAD_ADDR - 0x1000000) #define CONFIG_MAX8998_PMIC +#define CONFIG_SYS_CACHELINE_SIZE 64 /* D-cache line size */ #include /* diff --git a/include/configs/s5pc210_universal.h b/include/configs/s5pc210_universal.h index 4031016..4ec5170 100644 --- a/include/configs/s5pc210_universal.h +++ b/include/configs/s5pc210_universal.h @@ -243,4 +243,6 @@ #define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_LOAD_ADDR - GENERATED_GBL_DATA_SIZE) +#define CONFIG_SYS_CACHELINE_SIZE 32 /* D-cache line size */ + #endif /* __CONFIG_H */