regs-wdt.h 707 B

12345678910111213141516171819202122
  1. /*
  2. * Copyright (c) 2011 Zhang, Keguang <keguang.zhang@gmail.com>
  3. *
  4. * Loongson 1 watchdog register definitions.
  5. *
  6. * This program is free software; you can redistribute it and/or modify it
  7. * under the terms of the GNU General Public License as published by the
  8. * Free Software Foundation; either version 2 of the License, or (at your
  9. * option) any later version.
  10. */
  11. #ifndef __ASM_MACH_LOONGSON1_REGS_WDT_H
  12. #define __ASM_MACH_LOONGSON1_REGS_WDT_H
  13. #define LS1X_WDT_REG(x) \
  14. ((void __iomem *)KSEG1ADDR(LS1X_WDT_BASE + (x)))
  15. #define LS1X_WDT_EN LS1X_WDT_REG(0x0)
  16. #define LS1X_WDT_SET LS1X_WDT_REG(0x4)
  17. #define LS1X_WDT_TIMER LS1X_WDT_REG(0x8)
  18. #endif /* __ASM_MACH_LOONGSON1_REGS_WDT_H */