regs-adc.h
上传用户:szlgq88
上传日期:2009-04-28
资源大小:48287k
文件大小:2k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /* linux/include/asm/arch-s3c2410/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.  *  Changelog:
  12.  *    27-09-2004     SAH     Created file
  13. */
  14. #ifndef __ASM_ARCH_REGS_ADC_H
  15. #define __ASM_ARCH_REGS_ADC_H "regs-adc.h"
  16. #define S3C2410_ADCREG(x) (x)
  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. /* ADCCON Register Bits */
  23. #define S3C2410_ADCCON_ECFLG (1<<15)
  24. #define S3C2410_ADCCON_PRSCEN (1<<14)
  25. #define S3C2410_ADCCON_PRSCVL(x) (((x)&0xFF)<<6)
  26. #define S3C2410_ADCCON_PRSCVLMASK (0xFF<<6)
  27. #define S3C2410_ADCCON_SELMUX(x) (((x)&0x7)<<3)
  28. #define S3C2410_ADCCON_MUXMASK (0x7<<3)
  29. #define S3C2410_ADCCON_STDBM (1<<2)
  30. #define S3C2410_ADCCON_READ_START (1<<1)
  31. #define S3C2410_ADCCON_ENABLE_START (1<<0)
  32. #define S3C2410_ADCCON_STARTMASK (0x3<<0)
  33. /* ADCTSC Register Bits */
  34. #define S3C2410_ADCTSC_YM_SEN (1<<7)
  35. #define S3C2410_ADCTSC_YP_SEN (1<<6)
  36. #define S3C2410_ADCTSC_XM_SEN (1<<5)
  37. #define S3C2410_ADCTSC_XP_SEN (1<<4)
  38. #define S3C2410_ADCTSC_PULL_UP_DISABLE (1<<3)
  39. #define S3C2410_ADCTSC_AUTO_PST (1<<2)
  40. #define S3C2410_ADCTSC_XY_PST (0x3<<0)
  41. /* ADCDAT0 Bits */
  42. #define S3C2410_ADCDAT0_UPDOWN (1<<15)
  43. #define S3C2410_ADCDAT0_AUTO_PST (1<<14)
  44. #define S3C2410_ADCDAT0_XY_PST (0x3<<12)
  45. #define S3C2410_ADCDAT0_XPDATA_MASK (0x03FF)
  46. /* ADCDAT1 Bits */
  47. #define S3C2410_ADCDAT1_UPDOWN (1<<15)
  48. #define S3C2410_ADCDAT1_AUTO_PST (1<<14)
  49. #define S3C2410_ADCDAT1_XY_PST (0x3<<12)
  50. #define S3C2410_ADCDAT1_YPDATA_MASK (0x03FF)
  51. #endif /* __ASM_ARCH_REGS_ADC_H */