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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * linux/include/asm-arm/arch-s3c2400/system.h
  3.  *
  4.  * Copyright (C) 2001,2002 MIZI Research, Inc.
  5.  *
  6.  * Author: Janghoon Lyu <nandy@mizi.com>
  7.  *   Date: $Date: 2002/05/30 08:08:08 $
  8.  *
  9.  * $Revision: 1.1 $
  10.  *
  11.  * This file is subject to the terms and conditions of the GNU General Public
  12.  * License.  See the file COPYING in the main directory of this archive
  13.  * for more details.
  14.  */
  15. #include <linux/config.h>
  16. #include <asm/arch/hardware.h>
  17. static inline void arch_idle(void)
  18. {
  19. /* TODO */
  20. cpu_do_idle(0);
  21. }
  22. /*
  23.  * NB: 
  24.  * 悼累篮 救登瘤父, 屈怕绰 捞犯霸 登具 瞪 巴 鞍澜.
  25.  * vivi俊辑绰 肋登绰单 恐 咯扁辑绰 救瞪鳖???
  26.  */
  27. static inline void arch_reset(char mode)
  28. {
  29. if (mode == 's') {
  30. /* Jump into ROM at address 0 */
  31. cpu_reset(0);
  32. } else {
  33. WTCNT = 0x100;
  34. WTDAT = 0x100;
  35. WTCON = 0x8021;
  36. }
  37. }