cpu.h
上传用户:wealth48
上传日期:2022-06-24
资源大小:1701k
文件大小:1k
源码类别:

uCOS

开发平台:

C/C++

  1. /***************************************************************************
  2. Copyright (c) 2004-2007 threewater@up-tech.com, All rights reserved.
  3. by threewter 2005.6.24
  4. ***************************************************************************/
  5. /***************************************************************************
  6.     #说明: s3c2410 寄存器定义
  7. ----------------------------------  Bug  --------------------------------------
  8. ----------------------------------  TODO list  --------------------------------------
  9. ----------------------------------修正--------------------------------------
  10. 2005-5-24 创建
  11. ***************************************************************************/
  12. #ifndef _CPU_S3C2410_H_
  13. #define _CPU_S3C2410_H_
  14. #define GET_PCLK 0
  15. #define GET_HCLK 1
  16. #define GET_MDIV(x) FExtr(x, fPLL_MDIV)
  17. #define GET_PDIV(x) FExtr(x, fPLL_PDIV)
  18. #define GET_SDIV(x) FExtr(x, fPLL_SDIV)
  19. unsigned long s3c2410_get_cpu_clk(void);
  20. unsigned long s3c2410_get_bus_clk(int);
  21. int s3c2410_cpu_init(void);
  22. #endif /* _CPU_S3C2410_H_ */