mtu.h 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. #ifndef __PLAT_MTU_H
  2. #define __PLAT_MTU_H
  3. /* should be set by the platform code */
  4. extern void __iomem *mtu_base;
  5. /*
  6. * The MTU device hosts four different counters, with 4 set of
  7. * registers. These are register names.
  8. */
  9. #define MTU_IMSC 0x00 /* Interrupt mask set/clear */
  10. #define MTU_RIS 0x04 /* Raw interrupt status */
  11. #define MTU_MIS 0x08 /* Masked interrupt status */
  12. #define MTU_ICR 0x0C /* Interrupt clear register */
  13. /* per-timer registers take 0..3 as argument */
  14. #define MTU_LR(x) (0x10 + 0x10 * (x) + 0x00) /* Load value */
  15. #define MTU_VAL(x) (0x10 + 0x10 * (x) + 0x04) /* Current value */
  16. #define MTU_CR(x) (0x10 + 0x10 * (x) + 0x08) /* Control reg */
  17. #define MTU_BGLR(x) (0x10 + 0x10 * (x) + 0x0c) /* At next overflow */
  18. /* bits for the control register */
  19. #define MTU_CRn_ENA 0x80
  20. #define MTU_CRn_PERIODIC 0x40 /* if 0 = free-running */
  21. #define MTU_CRn_PRESCALE_MASK 0x0c
  22. #define MTU_CRn_PRESCALE_1 0x00
  23. #define MTU_CRn_PRESCALE_16 0x04
  24. #define MTU_CRn_PRESCALE_256 0x08
  25. #define MTU_CRn_32BITS 0x02
  26. #define MTU_CRn_ONESHOT 0x01 /* if 0 = wraps reloading from BGLR*/
  27. /* Other registers are usual amba/primecell registers, currently not used */
  28. #define MTU_ITCR 0xff0
  29. #define MTU_ITOP 0xff4
  30. #define MTU_PERIPH_ID0 0xfe0
  31. #define MTU_PERIPH_ID1 0xfe4
  32. #define MTU_PERIPH_ID2 0xfe8
  33. #define MTU_PERIPH_ID3 0xfeC
  34. #define MTU_PCELL0 0xff0
  35. #define MTU_PCELL1 0xff4
  36. #define MTU_PCELL2 0xff8
  37. #define MTU_PCELL3 0xffC
  38. #endif /* __PLAT_MTU_H */