reset.c 1015 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. /*
  2. * This program is free software; you can redistribute it and/or modify it
  3. * under the terms of the GNU General Public License as published by the
  4. * Free Software Foundation; either version 2 of the License, or (at your
  5. * option) any later version.
  6. *
  7. * Copyright (C) 2007 Lemote, Inc. & Institute of Computing Technology
  8. * Author: Fuxin Zhang, zhangfx@lemote.com
  9. */
  10. #include <linux/pm.h>
  11. #include <asm/reboot.h>
  12. static void loongson2e_restart(char *command)
  13. {
  14. #ifdef CONFIG_32BIT
  15. *(unsigned long *)0xbfe00104 &= ~(1 << 2);
  16. *(unsigned long *)0xbfe00104 |= (1 << 2);
  17. #else
  18. *(unsigned long *)0xffffffffbfe00104 &= ~(1 << 2);
  19. *(unsigned long *)0xffffffffbfe00104 |= (1 << 2);
  20. #endif
  21. __asm__ __volatile__("jr\t%0"::"r"(0xbfc00000));
  22. }
  23. static void loongson2e_halt(void)
  24. {
  25. while (1) ;
  26. }
  27. static void loongson2e_power_off(void)
  28. {
  29. loongson2e_halt();
  30. }
  31. void mips_reboot_setup(void)
  32. {
  33. _machine_restart = loongson2e_restart;
  34. _machine_halt = loongson2e_halt;
  35. pm_power_off = loongson2e_power_off;
  36. }