ioc.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:2k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/include/asm-arm/hardware/ioc.h
  3.  *
  4.  *  Copyright (C) Russell King
  5.  *
  6.  * This program is free software; you can redistribute it and/or modify
  7.  * it under the terms of the GNU General Public License version 2 as
  8.  * published by the Free Software Foundation.
  9.  *
  10.  *  Use these macros to read/write the IOC.  All it does is perform the actual
  11.  *  read/write.
  12.  */
  13. #ifndef __ASMARM_HARDWARE_IOC_H
  14. #define __ASMARM_HARDWARE_IOC_H
  15. #ifndef __ASSEMBLY__
  16. /*
  17.  * We use __raw_base variants here so that we give the compiler the
  18.  * chance to keep IOC_BASE in a register.
  19.  */
  20. #define ioc_readb(off) __raw_base_readb(IOC_BASE, (off))
  21. #define ioc_writeb(val,off) __raw_base_writeb(val, IOC_BASE, (off))
  22. #endif
  23. #define IOC_CONTROL (0x00)
  24. #define IOC_KARTTX (0x04)
  25. #define IOC_KARTRX (0x04)
  26. #define IOC_IRQSTATA (0x10)
  27. #define IOC_IRQREQA (0x14)
  28. #define IOC_IRQCLRA (0x14)
  29. #define IOC_IRQMASKA (0x18)
  30. #define IOC_IRQSTATB (0x20)
  31. #define IOC_IRQREQB (0x24)
  32. #define IOC_IRQMASKB (0x28)
  33. #define IOC_FIQSTAT (0x30)
  34. #define IOC_FIQREQ (0x34)
  35. #define IOC_FIQMASK (0x38)
  36. #define IOC_T0CNTL (0x40)
  37. #define IOC_T0LTCHL (0x40)
  38. #define IOC_T0CNTH (0x44)
  39. #define IOC_T0LTCHH (0x44)
  40. #define IOC_T0GO (0x48)
  41. #define IOC_T0LATCH (0x4c)
  42. #define IOC_T1CNTL (0x50)
  43. #define IOC_T1LTCHL (0x50)
  44. #define IOC_T1CNTH (0x54)
  45. #define IOC_T1LTCHH (0x54)
  46. #define IOC_T1GO (0x58)
  47. #define IOC_T1LATCH (0x5c)
  48. #define IOC_T2CNTL (0x60)
  49. #define IOC_T2LTCHL (0x60)
  50. #define IOC_T2CNTH (0x64)
  51. #define IOC_T2LTCHH (0x64)
  52. #define IOC_T2GO (0x68)
  53. #define IOC_T2LATCH (0x6c)
  54. #define IOC_T3CNTL (0x70)
  55. #define IOC_T3LTCHL (0x70)
  56. #define IOC_T3CNTH (0x74)
  57. #define IOC_T3LTCHH (0x74)
  58. #define IOC_T3GO (0x78)
  59. #define IOC_T3LATCH (0x7c)
  60. #endif