单片机
返回首页

ARM-linux s3c2440 之时钟分析

2016-06-12 来源:eefocus

S3c2440 时钟 & 电源管理时钟由三部分组成:  Clock control ,USB control, 和 Power control 

Clock control 部分可以产生时钟FCLK,提供ARM内核,HCLK 提供 AHB 总线外设,还有 PLCK APB 总线外设。 s3c2440 有两个内置的PLLS 锁相环,一个提供给 FCLK,HCLK,和PCLK,另一个提供给USB时钟(48MHZ)。Clock control 可以不使用PLL,而降低的时钟,通过软件设置,时能各中种外设,从而可以降低功耗。

Power control部分,用于电能管理,有四种工作模式:Normal mode, Slow mode, Idle mode, Sleep mode.

linux 中 s3c2440 时钟的初始化:


 

  1. MACHINE_START(S3C2440, 'SMDK2440')  
  2. /* Maintainer: Ben Dooks  */  
  3. .phys_io = S3C2410_PA_UART,  
  4. .io_pg_offst = (((u32)S3C24XX_VA_UART) >> 18) & 0xfffc,  
  5. .boot_params = S3C2410_SDRAM_PA + 0x100,  
  6.   
  7.   
  8. .init_irq = s3c24xx_init_irq,  
  9. .map_io = smdk2440_map_io,  
  10. .init_machine = smdk2440_machine_init,  
  11. .timer = &s3c24xx_timer,  
  12. MACHINE_END  

 

linux 入口时,在start_kernel()中调用 setup_arch(), 会进行平台体系相关初始化:


 

  1. smdk_2440_map_io()  --> s3c24xx_init_io() -->  s3c_init_cpu() -> s3c244x_init_clocks()  


 

  1. void __init s3c244x_init_clocks(int xtal)  
  2. {  
  3. /* initialise the clocks here, to allow other things like the 
  4. * console to use them, and to add new ones after the initialisation 
  5. */  
  6. s3c24xx_register_baseclocks(xtal);       //向系统注册基本时钟: FCLK,HCLK, PCLK  
  7. s3c244x_setup_clocks();                       //设置基本时钟的参数  
  8. s3c2410_baseclk_add();                      //添加其他外设的时钟  
  9. }  

 

系统将所有外设的时钟通过一个叫做struct clk的结构体来进行描述:

 

  1. struct clk {  
  2. struct list_head      list;  
  3. struct module        *owner;  
  4. struct clk           *parent;  
  5. const char           *name;  
  6. int      id;  
  7. int      usage;  
  8. unsigned long         rate;  
  9. unsigned long         ctrlbit;  
  10.   
  11. int    (*enable)(struct clk *, int enable);  
  12. int    (*set_rate)(struct clk *c, unsigned long rate);  
  13. unsigned long    (*get_rate)(struct clk *c);  
  14. unsigned long    (*round_rate)(struct clk *c, unsigned long rate);  
  15. int    (*set_parent)(struct clk *c, struct clk *parent);  
  16. };  

 

将所有时钟分成两类,一类是开启,一类关闭; 分别至于 两个数组中

 

  1. struct clk init_clocks[];   struct clk init_clocks_disable[];  

 

最后一一注册

注册时钟是通过这个函数注册的 

 

  1. /* initialise the clock system */  
  2.   
  3. int s3c24xx_register_clock(struct clk *clk)  
  4. {  
  5.     if (clk->enable == NULL)  
  6.         clk->enable = clk_null_enable;  
  7.   
  8.     /* add to the list of available clocks */  
  9.   
  10.     /* Quick check to see if this clock has already been registered. */  
  11.     BUG_ON(clk->list.prev != clk->list.next);  
  12.   
  13.     spin_lock(&clocks_lock);  
  14.     list_add(&clk->list, &clocks);  
  15.     spin_unlock(&clocks_lock);  
  16.   
  17.     return 0;  
  18. }  

 

 

进入单片机查看更多内容>>
相关视频
  • RISC-V嵌入式系统开发

  • SOC系统级芯片设计实验

  • 云龙51单片机实训视频教程(王云,字幕版)

  • 2022 Digi-Key KOL 系列: 你见过1GHz主频的单片机吗?Teensy 4.1开发板介绍

  • TI 新一代 C2000™ 微控制器:全方位助力伺服及马达驱动应用

  • MSP430电容触摸技术 - 防水Demo演示

精选电路图
  • CCD图像传感器在微光电视系统中的应用

  • 离子检测器电路分析

  • 非常简单的150W功放电路图

  • 一个简单的警笛电路图

  • 分享一个电网倾角计电路

  • 电谐波图形均衡器示意图

    相关电子头条文章