Re: [U-Boot] [PATCH-ARM] Add support for Embest SBC2440-II Board 5/7

2009-07-09 Thread kevin.morf...@fearnside-systems.co.uk
Hi Jean-Christophe Jean-Christophe PLAGNIOL-VILLARD wrote: + +#include config.h + +#ifdef CONFIG_S3C24X0 + +/* Register addresses. */ +# ifdef CONFIG_S3C2400 +#define pWTCON 0x1530 +#define INTMSK 0x1448 +#define CLKDIVN 0x14800014 +#else

Re: [U-Boot] [PATCH-ARM] Add support for Embest SBC2440-II Board 5/7

2009-07-09 Thread Jean-Christophe PLAGNIOL-VILLARD
+ /* + * mask all IRQs by setting all bits in the INTMR - default + */ + mov r1, #0x + ldr r0, =INTMSK + str r1, [r0] +# if defined(CONFIG_S3C2410) || defined(CONFIG_S3C2440) + ldr r1, =INTSMASK + ldr r0, =INTSUBMSK + str r1, [r0] +#

Re: [U-Boot] [PATCH-ARM] Add support for Embest SBC2440-II Board 5/7

2009-07-08 Thread Jean-Christophe PLAGNIOL-VILLARD
+ +#include config.h + +#ifdef CONFIG_S3C24X0 + +/* Register addresses. */ +# ifdef CONFIG_S3C2400 + #define pWTCON 0x1530 + #define INTMSK 0x1448 + #define CLKDIVN 0x14800014 +#else + #define pWTCON 0x5300 + #define

[U-Boot] [PATCH-ARM] Add support for Embest SBC2440-II Board 5/7

2009-06-24 Thread kevin.morf...@fearnside-systems.co.uk
Patches 5 to 7, replace [PATCH-ARM 2/2] Add support for the Embest SBC2440-II Board 2/2 submitted on 19/06/2009. This patch adds support for the s3c2440 cpu, excluding the NAND driver which is in patch 6/7. This patch assume the following patches have already been applied: - [PATCH-ARM]