reset.c 927 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. /*
  2. * linux/arch/mips/sni/process.c
  3. *
  4. * Reset a SNI machine.
  5. */
  6. #include <linux/delay.h>
  7. #include <asm/io.h>
  8. #include <asm/reboot.h>
  9. #include <asm/sni.h>
  10. /*
  11. * This routine reboots the machine by asking the keyboard
  12. * controller to pulse the reset-line low. We try that for a while,
  13. * and if it doesn't work, we do some other stupid things.
  14. */
  15. static inline void kb_wait(void)
  16. {
  17. int i;
  18. for (i = 0; i < 0x10000; i++)
  19. if ((inb_p(0x64) & 0x02) == 0)
  20. break;
  21. }
  22. /* XXX This ends up at the ARC firmware prompt ... */
  23. void sni_machine_restart(char *command)
  24. {
  25. int i;
  26. /* This does a normal via the keyboard controller like a PC.
  27. We can do that easier ... */
  28. local_irq_disable();
  29. for (;;) {
  30. for (i = 0; i < 100; i++) {
  31. kb_wait();
  32. udelay(50);
  33. outb_p(0xfe, 0x64); /* pulse reset low */
  34. udelay(50);
  35. }
  36. }
  37. }
  38. void sni_machine_power_off(void)
  39. {
  40. *(volatile unsigned char *)PCIMT_CSWCSM = 0xfd;
  41. }