From patchwork Sun Nov 1 04:50:31 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thomas Abraham X-Patchwork-Id: 37366 X-Patchwork-Delegate: davem@davemloft.net Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from vger.kernel.org (vger.kernel.org [209.132.176.167]) by ozlabs.org (Postfix) with ESMTP id 6F59DB7C58 for ; Sun, 1 Nov 2009 15:52:52 +1100 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1750709AbZKAEwo (ORCPT ); Sun, 1 Nov 2009 00:52:44 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1750947AbZKAEwl (ORCPT ); Sun, 1 Nov 2009 00:52:41 -0400 Received: from ganesha.gnumonks.org ([213.95.27.120]:53528 "EHLO ganesha.gnumonks.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750889AbZKAEwk (ORCPT ); Sun, 1 Nov 2009 00:52:40 -0400 Received: from uucp by ganesha.gnumonks.org with local-bsmtp (Exim 4.69) (envelope-from ) id 1N4SQj-0003ZG-NA; Sun, 01 Nov 2009 05:52:41 +0100 Received: from [12.23.106.52] (helo=localhost.localdomain) by jackpot.kr.gnumonks.org with esmtp (Exim 4.69) (envelope-from ) id 1N4SCh-000563-Pj; Sun, 01 Nov 2009 13:38:11 +0900 From: Thomas Abraham To: ben-linux@fluff.org Cc: linux-arm-kernel@lists.infradead.org, linux-ide@vger.kernel.org, Thomas Abraham Subject: [PATCH 2/7] S3C64XX: Add MEM_SYS_CFG register definition. Date: Sun, 1 Nov 2009 13:50:31 +0900 Message-Id: <1257051031-8074-1-git-send-email-thomas.ab@samsung.com> X-Mailer: git-send-email 1.6.0.4 Sender: linux-ide-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-ide@vger.kernel.org This patch adds the definition of MEM_SYS_CFG register for S3C64xx platform. Signed-off-by: Abhilash Kesavan Signed-off-by: Thomas Abraham --- arch/arm/plat-s3c64xx/include/plat/regs-clock.h | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/arch/arm/plat-s3c64xx/include/plat/regs-clock.h b/arch/arm/plat-s3c64xx/include/plat/regs-clock.h index 2c3224c..ad0823e 100644 --- a/arch/arm/plat-s3c64xx/include/plat/regs-clock.h +++ b/arch/arm/plat-s3c64xx/include/plat/regs-clock.h @@ -15,6 +15,8 @@ #ifndef __PLAT_REGS_CLOCK_H #define __PLAT_REGS_CLOCK_H __FILE__ +#include + #define S3C_CLKREG(x) (S3C_VA_SYS + (x)) #define S3C_APLL_LOCK S3C_CLKREG(0x00) @@ -33,6 +33,7 @@ #define S3C_PCLK_GATE S3C_CLKREG(0x34) #define S3C_SCLK_GATE S3C_CLKREG(0x38) #define S3C_MEM0_GATE S3C_CLKREG(0x3C) +#define S3C_MEM_SYS_CFG S3C_CLKREG(0x120) /* CLKDIV0 */ #define S3C6400_CLKDIV0_MFC_MASK (0xf << 28)