pm.h 694 B

123456789101112131415161718192021222324252627282930
  1. /*
  2. * arch/arm/mach-prima2/pm.h
  3. *
  4. * Copyright (c) 2011 Cambridge Silicon Radio Limited, a CSR plc group company.
  5. *
  6. * Licensed under GPLv2 or later.
  7. */
  8. #ifndef _MACH_PRIMA2_PM_H_
  9. #define _MACH_PRIMA2_PM_H_
  10. #define SIRFSOC_PWR_SLEEPFORCE 0x01
  11. #define SIRFSOC_SLEEP_MODE_MASK 0x3
  12. #define SIRFSOC_DEEP_SLEEP_MODE 0x1
  13. #define SIRFSOC_PWRC_PDN_CTRL 0x0
  14. #define SIRFSOC_PWRC_PON_OFF 0x4
  15. #define SIRFSOC_PWRC_TRIGGER_EN 0x8
  16. #define SIRFSOC_PWRC_PIN_STATUS 0x14
  17. #define SIRFSOC_PWRC_SCRATCH_PAD1 0x18
  18. #define SIRFSOC_PWRC_SCRATCH_PAD2 0x1C
  19. #ifndef __ASSEMBLY__
  20. extern int sirfsoc_finish_suspend(unsigned long);
  21. #endif
  22. #endif