diff options
author | Ben Dooks <ben-linux@fluff.org> | 2010-01-19 21:09:28 -0500 |
---|---|---|
committer | Ben Dooks <ben-linux@fluff.org> | 2010-01-20 23:45:51 -0500 |
commit | 6890556c140469622497bea98cf49bf93f92f922 (patch) | |
tree | 67bf70c1bc46e02b77f2be9e659bff57bc2e844f /arch/arm/plat-samsung/include/plat/regs-adc.h | |
parent | 54b89177ac533dc7439491afd26baf59464b425c (diff) |
ARM: SAMSUNG: Move more support into plat-samsung
Move header files which are not likely to be touched in
any further support addition out of plat-s3c's include
directory into plat-samsung.
Signed-off-by: Ben Dooks <ben-linux@fluff.org>
Diffstat (limited to 'arch/arm/plat-samsung/include/plat/regs-adc.h')
-rw-r--r-- | arch/arm/plat-samsung/include/plat/regs-adc.h | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/arch/arm/plat-samsung/include/plat/regs-adc.h b/arch/arm/plat-samsung/include/plat/regs-adc.h new file mode 100644 index 000000000000..f43c8dab39e4 --- /dev/null +++ b/arch/arm/plat-samsung/include/plat/regs-adc.h | |||
@@ -0,0 +1,63 @@ | |||
1 | /* arch/arm/mach-s3c2410/include/mach/regs-adc.h | ||
2 | * | ||
3 | * Copyright (c) 2004 Shannon Holland <holland@loser.net> | ||
4 | * | ||
5 | * This program is free software; yosu can redistribute it and/or modify | ||
6 | * it under the terms of the GNU General Public License version 2 as | ||
7 | * published by the Free Software Foundation. | ||
8 | * | ||
9 | * S3C2410 ADC registers | ||
10 | */ | ||
11 | |||
12 | #ifndef __ASM_ARCH_REGS_ADC_H | ||
13 | #define __ASM_ARCH_REGS_ADC_H "regs-adc.h" | ||
14 | |||
15 | #define S3C2410_ADCREG(x) (x) | ||
16 | |||
17 | #define S3C2410_ADCCON S3C2410_ADCREG(0x00) | ||
18 | #define S3C2410_ADCTSC S3C2410_ADCREG(0x04) | ||
19 | #define S3C2410_ADCDLY S3C2410_ADCREG(0x08) | ||
20 | #define S3C2410_ADCDAT0 S3C2410_ADCREG(0x0C) | ||
21 | #define S3C2410_ADCDAT1 S3C2410_ADCREG(0x10) | ||
22 | #define S3C64XX_ADCUPDN S3C2410_ADCREG(0x14) | ||
23 | #define S3C64XX_ADCCLRINT S3C2410_ADCREG(0x18) | ||
24 | #define S3C64XX_ADCCLRINTPNDNUP S3C2410_ADCREG(0x20) | ||
25 | |||
26 | |||
27 | /* ADCCON Register Bits */ | ||
28 | #define S3C2410_ADCCON_ECFLG (1<<15) | ||
29 | #define S3C2410_ADCCON_PRSCEN (1<<14) | ||
30 | #define S3C2410_ADCCON_PRSCVL(x) (((x)&0xFF)<<6) | ||
31 | #define S3C2410_ADCCON_PRSCVLMASK (0xFF<<6) | ||
32 | #define S3C2410_ADCCON_SELMUX(x) (((x)&0x7)<<3) | ||
33 | #define S3C2410_ADCCON_MUXMASK (0x7<<3) | ||
34 | #define S3C2410_ADCCON_STDBM (1<<2) | ||
35 | #define S3C2410_ADCCON_READ_START (1<<1) | ||
36 | #define S3C2410_ADCCON_ENABLE_START (1<<0) | ||
37 | #define S3C2410_ADCCON_STARTMASK (0x3<<0) | ||
38 | |||
39 | |||
40 | /* ADCTSC Register Bits */ | ||
41 | #define S3C2410_ADCTSC_YM_SEN (1<<7) | ||
42 | #define S3C2410_ADCTSC_YP_SEN (1<<6) | ||
43 | #define S3C2410_ADCTSC_XM_SEN (1<<5) | ||
44 | #define S3C2410_ADCTSC_XP_SEN (1<<4) | ||
45 | #define S3C2410_ADCTSC_PULL_UP_DISABLE (1<<3) | ||
46 | #define S3C2410_ADCTSC_AUTO_PST (1<<2) | ||
47 | #define S3C2410_ADCTSC_XY_PST(x) (((x)&0x3)<<0) | ||
48 | |||
49 | /* ADCDAT0 Bits */ | ||
50 | #define S3C2410_ADCDAT0_UPDOWN (1<<15) | ||
51 | #define S3C2410_ADCDAT0_AUTO_PST (1<<14) | ||
52 | #define S3C2410_ADCDAT0_XY_PST (0x3<<12) | ||
53 | #define S3C2410_ADCDAT0_XPDATA_MASK (0x03FF) | ||
54 | |||
55 | /* ADCDAT1 Bits */ | ||
56 | #define S3C2410_ADCDAT1_UPDOWN (1<<15) | ||
57 | #define S3C2410_ADCDAT1_AUTO_PST (1<<14) | ||
58 | #define S3C2410_ADCDAT1_XY_PST (0x3<<12) | ||
59 | #define S3C2410_ADCDAT1_YPDATA_MASK (0x03FF) | ||
60 | |||
61 | #endif /* __ASM_ARCH_REGS_ADC_H */ | ||
62 | |||
63 | |||