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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/arch/mips/philips/nino/reset.c
  3.  *
  4.  *  Copyright (C) 2001 Steven J. Hill (sjhill@realitydiluted.com)
  5.  *
  6.  * This program is free software; you can redistribute it and/or modify
  7.  * it under the terms of the GNU General Public License version 2 as
  8.  * published by the Free Software Foundation.
  9.  *
  10.  *  Generic restart, halt and power off functions for Philips Nino.
  11.  */
  12. #include <linux/init.h>
  13. #include <asm/reboot.h>
  14. void (*reset_vector)(void) = (void (*)(void)) 0xBFC00000;
  15. void nino_machine_restart(char *command)
  16. {
  17. reset_vector();
  18. }
  19. void nino_machine_halt(void)
  20. {
  21. reset_vector();
  22. }
  23. void nino_machine_power_off(void)
  24. {
  25. reset_vector();
  26. }
  27. void __init setup_nino_reset_vectors(void)
  28. {
  29. _machine_restart = nino_machine_restart;
  30. _machine_halt = nino_machine_halt;
  31. _machine_power_off = nino_machine_power_off;
  32. }