Omap3530Timer.h 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. /** @file
  2. Copyright (c) 2008 - 2009, Apple Inc. All rights reserved.<BR>
  3. SPDX-License-Identifier: BSD-2-Clause-Patent
  4. **/
  5. #ifndef __OMAP3530TIMER_H__
  6. #define __OMAP3530TIMER_H__
  7. #define GPTIMER1_BASE (0x48313000)
  8. #define GPTIMER2_BASE (0x49032000)
  9. #define GPTIMER3_BASE (0x49034000)
  10. #define GPTIMER4_BASE (0x49036000)
  11. #define GPTIMER5_BASE (0x49038000)
  12. #define GPTIMER6_BASE (0x4903A000)
  13. #define GPTIMER7_BASE (0x4903C000)
  14. #define GPTIMER8_BASE (0x4903E000)
  15. #define GPTIMER9_BASE (0x49040000)
  16. #define GPTIMER10_BASE (0x48086000)
  17. #define GPTIMER11_BASE (0x48088000)
  18. #define GPTIMER12_BASE (0x48304000)
  19. #define WDTIMER2_BASE (0x48314000)
  20. #define GPTIMER_TIOCP_CFG (0x0010)
  21. #define GPTIMER_TISTAT (0x0014)
  22. #define GPTIMER_TISR (0x0018)
  23. #define GPTIMER_TIER (0x001C)
  24. #define GPTIMER_TWER (0x0020)
  25. #define GPTIMER_TCLR (0x0024)
  26. #define GPTIMER_TCRR (0x0028)
  27. #define GPTIMER_TLDR (0x002C)
  28. #define GPTIMER_TTGR (0x0030)
  29. #define GPTIMER_TWPS (0x0034)
  30. #define GPTIMER_TMAR (0x0038)
  31. #define GPTIMER_TCAR1 (0x003C)
  32. #define GPTIMER_TSICR (0x0040)
  33. #define GPTIMER_TCAR2 (0x0044)
  34. #define GPTIMER_TPIR (0x0048)
  35. #define GPTIMER_TNIR (0x004C)
  36. #define GPTIMER_TCVR (0x0050)
  37. #define GPTIMER_TOCR (0x0054)
  38. #define GPTIMER_TOWR (0x0058)
  39. #define WSPR (0x048)
  40. #define TISR_TCAR_IT_FLAG_MASK BIT2
  41. #define TISR_OVF_IT_FLAG_MASK BIT1
  42. #define TISR_MAT_IT_FLAG_MASK BIT0
  43. #define TISR_ALL_INTERRUPT_MASK (TISR_TCAR_IT_FLAG_MASK | TISR_OVF_IT_FLAG_MASK | TISR_MAT_IT_FLAG_MASK)
  44. #define TISR_TCAR_IT_FLAG_NOT_PENDING (0UL << 2)
  45. #define TISR_OVF_IT_FLAG_NOT_PENDING (0UL << 1)
  46. #define TISR_MAT_IT_FLAG_NOT_PENDING (0UL << 0)
  47. #define TISR_NO_INTERRUPTS_PENDING (TISR_TCAR_IT_FLAG_NOT_PENDING | TISR_OVF_IT_FLAG_NOT_PENDING | TISR_MAT_IT_FLAG_NOT_PENDING)
  48. #define TISR_TCAR_IT_FLAG_CLEAR BIT2
  49. #define TISR_OVF_IT_FLAG_CLEAR BIT1
  50. #define TISR_MAT_IT_FLAG_CLEAR BIT0
  51. #define TISR_CLEAR_ALL (TISR_TCAR_IT_FLAG_CLEAR | TISR_OVF_IT_FLAG_CLEAR | TISR_MAT_IT_FLAG_CLEAR)
  52. #define TCLR_AR_AUTORELOAD BIT1
  53. #define TCLR_AR_ONESHOT (0UL << 1)
  54. #define TCLR_ST_ON BIT0
  55. #define TCLR_ST_OFF (0UL << 0)
  56. #define TIER_TCAR_IT_ENABLE (BIT2
  57. #define TIER_TCAR_IT_DISABLE (0UL << 2)
  58. #define TIER_OVF_IT_ENABLE BIT1
  59. #define TIER_OVF_IT_DISABLE (0UL << 1)
  60. #define TIER_MAT_IT_ENABLE BIT0
  61. #define TIER_MAT_IT_DISABLE (0UL << 0)
  62. #endif // __OMAP3530TIMER_H__