system.h 247 B

12345678910111213
  1. /*
  2. * arch/arm/mach-vt8500/include/mach/system.h
  3. *
  4. */
  5. #include <asm/io.h>
  6. /* PM Software Reset request register */
  7. #define VT8500_PMSR_VIRT 0xf8130060
  8. static inline void arch_reset(char mode, const char *cmd)
  9. {
  10. writel(1, VT8500_PMSR_VIRT);
  11. }