ep7212.h 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. /*
  2. * arch/arm/include/asm/hardware/ep7212.h
  3. *
  4. * This file contains the hardware definitions of the EP7212 internal
  5. * registers.
  6. *
  7. * Copyright (C) 2000 Deep Blue Solutions Ltd.
  8. *
  9. * This program is free software; you can redistribute it and/or modify
  10. * it under the terms of the GNU General Public License as published by
  11. * the Free Software Foundation; either version 2 of the License, or
  12. * (at your option) any later version.
  13. *
  14. * This program is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. * GNU General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU General Public License
  20. * along with this program; if not, write to the Free Software
  21. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  22. */
  23. #ifndef __ASM_HARDWARE_EP7212_H
  24. #define __ASM_HARDWARE_EP7212_H
  25. /*
  26. * define EP7212_BASE to be the base address of the region
  27. * you want to access.
  28. */
  29. #define EP7212_PHYS_BASE (0x80000000)
  30. #ifndef __ASSEMBLY__
  31. #define ep_readl(off) __raw_readl(EP7212_BASE + (off))
  32. #define ep_writel(val,off) __raw_writel(val, EP7212_BASE + (off))
  33. #endif
  34. /*
  35. * These registers are specific to the EP7212 only
  36. */
  37. #define DAIR 0x2000
  38. #define DAIR0 0x2040
  39. #define DAIDR1 0x2080
  40. #define DAIDR2 0x20c0
  41. #define DAISR 0x2100
  42. #define SYSCON3 0x2200
  43. #define INTSR3 0x2240
  44. #define INTMR3 0x2280
  45. #define LEDFLSH 0x22c0
  46. #define DAIR_DAIEN (1 << 16)
  47. #define DAIR_ECS (1 << 17)
  48. #define DAIR_LCTM (1 << 19)
  49. #define DAIR_LCRM (1 << 20)
  50. #define DAIR_RCTM (1 << 21)
  51. #define DAIR_RCRM (1 << 22)
  52. #define DAIR_LBM (1 << 23)
  53. #define DAIDR2_FIFOEN (1 << 15)
  54. #define DAIDR2_FIFOLEFT (0x0d << 16)
  55. #define DAIDR2_FIFORIGHT (0x11 << 16)
  56. #define DAISR_RCTS (1 << 0)
  57. #define DAISR_RCRS (1 << 1)
  58. #define DAISR_LCTS (1 << 2)
  59. #define DAISR_LCRS (1 << 3)
  60. #define DAISR_RCTU (1 << 4)
  61. #define DAISR_RCRO (1 << 5)
  62. #define DAISR_LCTU (1 << 6)
  63. #define DAISR_LCRO (1 << 7)
  64. #define DAISR_RCNF (1 << 8)
  65. #define DAISR_RCNE (1 << 9)
  66. #define DAISR_LCNF (1 << 10)
  67. #define DAISR_LCNE (1 << 11)
  68. #define DAISR_FIFO (1 << 12)
  69. #define SYSCON3_ADCCON (1 << 0)
  70. #define SYSCON3_DAISEL (1 << 3)
  71. #define SYSCON3_ADCCKNSEN (1 << 4)
  72. #define SYSCON3_FASTWAKE (1 << 8)
  73. #define SYSCON3_DAIEN (1 << 9)
  74. #endif /* __ASM_HARDWARE_EP7212_H */