timer.h 260 B

123456789101112131415161718
  1. /*
  2. * Copyright (C) 2012 Altera Corporation <www.altera.com>
  3. *
  4. * SPDX-License-Identifier: GPL-2.0+
  5. */
  6. #ifndef _SOCFPGA_TIMER_H_
  7. #define _SOCFPGA_TIMER_H_
  8. struct socfpga_timer {
  9. u32 load_val;
  10. u32 curr_val;
  11. u32 ctrl;
  12. u32 eoi;
  13. u32 int_stat;
  14. };
  15. #endif