at91_pit.h 750 B

12345678910111213141516171819202122232425262728
  1. /*
  2. * [origin: Linux kernel include/asm-arm/arch-at91/at91_pit.h]
  3. *
  4. * Copyright (C) 2007 Andrew Victor
  5. * Copyright (C) 2007 Atmel Corporation.
  6. *
  7. * Periodic Interval Timer (PIT) - System peripherals regsters.
  8. * Based on AT91SAM9261 datasheet revision D.
  9. *
  10. * SPDX-License-Identifier: GPL-2.0+
  11. */
  12. #ifndef AT91_PIT_H
  13. #define AT91_PIT_H
  14. typedef struct at91_pit {
  15. u32 mr; /* 0x00 Mode Register */
  16. u32 sr; /* 0x04 Status Register */
  17. u32 pivr; /* 0x08 Periodic Interval Value Register */
  18. u32 piir; /* 0x0C Periodic Interval Image Register */
  19. } at91_pit_t;
  20. #define AT91_PIT_MR_IEN 0x02000000
  21. #define AT91_PIT_MR_EN 0x01000000
  22. #define AT91_PIT_MR_PIV_MASK(x) (x & 0x000fffff)
  23. #define AT91_PIT_MR_PIV(x) (x & AT91_PIT_MR_PIV_MASK)
  24. #endif