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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * linux/include/asm-arm/arch-s3c2410/cpu_s3c2410.h
  3.  *
  4.  * Copyright (C) 2001 MIZI Research, Inc.
  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 as published by
  8.  * the Free Software Foundation; either version 2 of the License, or
  9.  * (at your option) any later version.
  10.  *
  11.  * This program is distributed in the hope that it will be useful,
  12.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14.  * GNU General Public License for more details.
  15.  *
  16.  * You should have received a copy of the GNU General Public License
  17.  * along with this program; if not, write to the Free Software
  18.  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  19.  */
  20. /*
  21.  * History
  22.  *
  23.  * 2002-03-22: Janghoon Lyu <nandy@mizi.com>
  24.  *    - Initial code
  25.  *    
  26.  * 2002-05-21: Janghoon Lyu <nandy@mizi.com>
  27.  *    - for S3C2410
  28.  *
  29.  */
  30. #ifndef _CPU_S3C2410_H_
  31. #define _CPU_S3C2410_H_
  32. #include <asm/hardware.h>
  33. #define GET_PCLK 0
  34. #define GET_HCLK 1
  35. #define GET_MDIV(x) FExtr(x, fPLL_MDIV)
  36. #define GET_PDIV(x) FExtr(x, fPLL_PDIV)
  37. #define GET_SDIV(x) FExtr(x, fPLL_SDIV)
  38. unsigned long s3c2410_get_cpu_clk(void);
  39. unsigned long s3c2410_get_bus_clk(int);
  40. #endif /* _CPU_S3C2410_H_ */