reset.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:1k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/arch/mips/sni/process.c
  3.  *
  4.  *  Reset a SNI machine.
  5.  */
  6. #include <asm/io.h>
  7. #include <asm/reboot.h>
  8. #include <asm/system.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
  16. kb_wait(void)
  17. {
  18. int i;
  19. for (i=0; i<0x10000; i++)
  20. if ((inb_p(0x64) & 0x02) == 0)
  21. break;
  22. }
  23. /* XXX This ends up at the ARC firmware prompt ...  */
  24. void sni_machine_restart(char *command)
  25. {
  26. int i, j;
  27. /* This does a normal via the keyboard controller like a PC.
  28.    We can do that easier ...  */
  29. sti();
  30. for (;;) {
  31. for (i=0; i<100; i++) {
  32. kb_wait();
  33. for(j = 0; j < 100000 ; j++)
  34. /* nothing */;
  35. outb_p(0xfe,0x64);  /* pulse reset low */
  36. }
  37. }
  38. }
  39. void sni_machine_halt(void)
  40. {
  41. }
  42. void sni_machine_power_off(void)
  43. {
  44. *(volatile unsigned char *)PCIMT_CSWCSM = 0xfd;
  45. }