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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * linux/include/asm-arm/arch-pxa/system.h
  3.  *
  4.  * Author: Nicolas Pitre
  5.  * Created: Jun 15, 2001
  6.  * Copyright: MontaVista Software Inc.
  7.  * 
  8.  * This program is free software; you can redistribute it and/or modify
  9.  * it under the terms of the GNU General Public License version 2 as
  10.  * published by the Free Software Foundation.
  11.  */
  12. #include "hardware.h"
  13. static inline void arch_idle(void)
  14. {
  15. if (!hlt_counter) {
  16. int flags;
  17. local_irq_save(flags);
  18. if(!current->need_resched)
  19. cpu_do_idle(0);
  20. local_irq_restore(flags);
  21. }
  22. }
  23. static inline void arch_reset(char mode)
  24. {
  25. if (mode == 's') {
  26. /* Jump into ROM at address 0 */
  27. cpu_reset(0);
  28. } else {
  29. /* Initialize the watchdog and let it fire */
  30. OWER = OWER_WME;
  31. OSSR = OSSR_M3;
  32. OSMR3 = OSCR + 36864; /* ... in 10 ms */
  33. }
  34. }