mt_timer.h 423 B

1234567891011121314151617181920
  1. /*
  2. * Copyright (c) 2020, MediaTek Inc. All rights reserved.
  3. *
  4. * SPDX-License-Identifier: BSD-3-Clause
  5. */
  6. #ifndef MT_TIMER_H
  7. #define MT_TIMER_H
  8. #define SYSTIMER_BASE (0x10017000)
  9. #define CNTCR_REG (SYSTIMER_BASE + 0x0)
  10. #define CNTSR_REG (SYSTIMER_BASE + 0x4)
  11. #define COMP_15_EN (1 << 10)
  12. #define COMP_20_EN (1 << 11)
  13. void mt_systimer_init(void);
  14. #endif /* MT_TIMER_H */