]> git.openfabrics.org - ~shefty/rdma-dev.git/commitdiff
[ARM] 4588/1: S3C2412: Sleep configuration updates
authorBen Dooks <ben-linux@fluff.org>
Sun, 30 Sep 2007 09:00:10 +0000 (10:00 +0100)
committerRussell King <rmk+kernel@arm.linux.org.uk>
Fri, 12 Oct 2007 22:43:30 +0000 (23:43 +0100)
Make the S3C2412 sleep configuration clearer.

Signed-off-by: Ben Dooks <ben-linux@fluff.org>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
include/asm-arm/arch-s3c2410/regs-gpio.h

index dea578b8f7f66e1b035bc07b03baa3764e8c2d7e..b693158b2d3c28fae653ed989a60568c9aec3af2 100644 (file)
 
 /* definitions for each pin bit */
 #define S3C2412_SLPCON_LOW(x)  ( 0x00 << ((x) * 2))
-#define S3C2412_SLPCON_HI(x)   ( 0x01 << ((x) * 2))
+#define S3C2412_SLPCON_HIGH(x) ( 0x01 << ((x) * 2))
 #define S3C2412_SLPCON_IN(x)   ( 0x02 << ((x) * 2))
-#define S3C2412_SLPCON_PDWN(x) ( 0x03 << ((x) * 2))
+#define S3C2412_SLPCON_PULL(x) ( 0x03 << ((x) * 2))
+#define S3C2412_SLPCON_EINT(x) ( 0x02 << ((x) * 2))  /* only IRQ pins */
 #define S3C2412_SLPCON_MASK(x) ( 0x03 << ((x) * 2))
 
+#define S3C2412_SLPCON_ALL_LOW (0x0)
+#define S3C2412_SLPCON_ALL_HIGH        (0x11111111 | 0x44444444)
+#define S3C2412_SLPCON_ALL_IN          (0x22222222 | 0x88888888)
+#define S3C2412_SLPCON_ALL_PULL        (0x33333333)
+
 #endif /* __ASM_ARCH_REGS_GPIO_H */