linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 2/7] S3C64XX: Add MEM_SYS_CFG register definition.
@ 2009-11-01  4:50 Thomas Abraham
  2009-11-01 13:02 ` Ben Dooks
  0 siblings, 1 reply; 3+ messages in thread
From: Thomas Abraham @ 2009-11-01  4:50 UTC (permalink / raw)
  To: linux-arm-kernel

This patch adds the definition of MEM_SYS_CFG register for
S3C64xx platform.

Signed-off-by: Abhilash Kesavan <a.kesavan@samsung.com>
Signed-off-by: Thomas Abraham <thomas.ab@samsung.com>
---
 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 <plat/map-base.h>
+
 #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)
-- 
1.5.3.4

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [PATCH 2/7] S3C64XX: Add MEM_SYS_CFG register definition.
  2009-11-01  4:50 [PATCH 2/7] S3C64XX: Add MEM_SYS_CFG register definition Thomas Abraham
@ 2009-11-01 13:02 ` Ben Dooks
  2009-11-02  6:11   ` Thomas Abraham
  0 siblings, 1 reply; 3+ messages in thread
From: Ben Dooks @ 2009-11-01 13:02 UTC (permalink / raw)
  To: linux-arm-kernel

On Sun, Nov 01, 2009 at 01:50:31PM +0900, Thomas Abraham wrote:
> This patch adds the definition of MEM_SYS_CFG register for
> S3C64xx platform.
> 
> Signed-off-by: Abhilash Kesavan <a.kesavan@samsung.com>
> Signed-off-by: Thomas Abraham <thomas.ab@samsung.com>
> ---
>  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 <plat/map-base.h>
> +

Why are you adding <plat/map-base.h> here?

-- 
Ben

Q:      What's a light-year?
A:      One-third less calories than a regular year.

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [PATCH 2/7] S3C64XX: Add MEM_SYS_CFG register definition.
  2009-11-01 13:02 ` Ben Dooks
@ 2009-11-02  6:11   ` Thomas Abraham
  0 siblings, 0 replies; 3+ messages in thread
From: Thomas Abraham @ 2009-11-02  6:11 UTC (permalink / raw)
  To: linux-arm-kernel

On Sun, Nov 1, 2009 at 10:02 PM, Ben Dooks <ben-linux@fluff.org> wrote:
> On Sun, Nov 01, 2009 at 01:50:31PM +0900, Thomas Abraham wrote:
>> This patch adds the definition of MEM_SYS_CFG register for
>> S3C64xx platform.
>>
>> Signed-off-by: Abhilash Kesavan <a.kesavan@samsung.com>
>> Signed-off-by: Thomas Abraham <thomas.ab@samsung.com>
>> ---
>> ?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 <plat/map-base.h>
>> +
>
> Why are you adding <plat/map-base.h> here?
>

I will remove it. That was a mistake.

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2009-11-02  6:11 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-11-01  4:50 [PATCH 2/7] S3C64XX: Add MEM_SYS_CFG register definition Thomas Abraham
2009-11-01 13:02 ` Ben Dooks
2009-11-02  6:11   ` Thomas Abraham

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).