watchdog.h 946 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. /* SPDX-License-Identifier: GPL-2.0+ */
  2. /*
  3. * Copyright (C) 2011 Samsung Electronics
  4. * Heungjun Kim <riverful.kim@samsung.com>
  5. */
  6. #ifndef __ASM_ARM_ARCH_WATCHDOG_H_
  7. #define __ASM_ARM_ARCH_WATCHDOG_H_
  8. #define WTCON_RESET_OFFSET 0
  9. #define WTCON_INTEN_OFFSET 2
  10. #define WTCON_CLKSEL_OFFSET 3
  11. #define WTCON_EN_OFFSET 5
  12. #define WTCON_PRE_OFFSET 8
  13. #define WTCON_CLK_16 0x0
  14. #define WTCON_CLK_32 0x1
  15. #define WTCON_CLK_64 0x2
  16. #define WTCON_CLK_128 0x3
  17. #define WTCON_CLK(x) ((x & 0x3) << WTCON_CLKSEL_OFFSET)
  18. #define WTCON_PRESCALER(x) ((x) << WTCON_PRE_OFFSET)
  19. #define WTCON_EN (0x1 << WTCON_EN_OFFSET)
  20. #define WTCON_RESET (0x1 << WTCON_RESET_OFFSET)
  21. #define WTCON_INT (0x1 << WTCON_INTEN_OFFSET)
  22. #ifndef __ASSEMBLY__
  23. struct s5p_watchdog {
  24. unsigned int wtcon;
  25. unsigned int wtdat;
  26. unsigned int wtcnt;
  27. unsigned int wtclrint;
  28. };
  29. /* functions */
  30. void wdt_stop(void);
  31. void wdt_start(unsigned int timeout);
  32. #endif /* __ASSEMBLY__ */
  33. #endif