wdt.h 591 B

123456789101112131415161718192021222324
  1. /* SPDX-License-Identifier: GPL-2.0-or-later */
  2. /*
  3. * wdt.h -- Watchdog Driver for Wolfson WM8350 PMIC
  4. *
  5. * Copyright 2007, 2008 Wolfson Microelectronics PLC
  6. */
  7. #ifndef __LINUX_MFD_WM8350_WDT_H_
  8. #define __LINUX_MFD_WM8350_WDT_H_
  9. #include <linux/platform_device.h>
  10. #define WM8350_WDOG_HIB_MODE 0x0080
  11. #define WM8350_WDOG_DEBUG 0x0040
  12. #define WM8350_WDOG_MODE_MASK 0x0030
  13. #define WM8350_WDOG_TO_MASK 0x0007
  14. #define WM8350_IRQ_SYS_WDOG_TO 24
  15. struct wm8350_wdt {
  16. struct platform_device *pdev;
  17. };
  18. #endif