malta-reset.c 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. /*
  2. * This file is subject to the terms and conditions of the GNU General Public
  3. * License. See the file "COPYING" in the main directory of this archive
  4. * for more details.
  5. *
  6. * Carsten Langgaard, carstenl@mips.com
  7. * Copyright (C) 1999,2000 MIPS Technologies, Inc. All rights reserved.
  8. */
  9. #include <linux/io.h>
  10. #include <linux/pm.h>
  11. #include <asm/reboot.h>
  12. #include <asm/mach-malta/malta-pm.h>
  13. #define SOFTRES_REG 0x1f000500
  14. #define GORESET 0x42
  15. static void mips_machine_restart(char *command)
  16. {
  17. unsigned int __iomem *softres_reg =
  18. ioremap(SOFTRES_REG, sizeof(unsigned int));
  19. __raw_writel(GORESET, softres_reg);
  20. }
  21. static void mips_machine_halt(void)
  22. {
  23. while (true);
  24. }
  25. static void mips_machine_power_off(void)
  26. {
  27. mips_pm_suspend(PIIX4_FUNC3IO_PMCNTRL_SUS_TYP_SOFF);
  28. pr_info("Failed to power down, resetting\n");
  29. mips_machine_restart(NULL);
  30. }
  31. static int __init mips_reboot_setup(void)
  32. {
  33. _machine_restart = mips_machine_restart;
  34. _machine_halt = mips_machine_halt;
  35. pm_power_off = mips_machine_power_off;
  36. return 0;
  37. }
  38. arch_initcall(mips_reboot_setup);