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 时钟的初始化:
- MACHINE_START(S3C2440,”SMDK2440″)
- /*Maintainer:BenDooks
*/ - .phys_io=S3C2410_PA_UART,
- .io_pg_offst=(((u32)S3C24XX_VA_UART)>>18)&0xfffc,
- .boot_params=S3C2410_SDRAM_PA+0x100,
- .init_irq=s3c24xx_init_irq,
- .map_io=smdk2440_map_io,
- .init_machine=smdk2440_machine_init,
- .timer=&s3c24xx_timer,
- MACHINE_END
linux 进口时,在start_kernel()中调用 setup_arch(), 会进行渠道体系相关初始化:
- smdk_2440_map_io()–>s3c24xx_init_io()–>s3c_init_cpu()->s3c244x_init_clocks()
- void__inits3c244x_init_clocks(intxtal)
- {
- /*initialisetheclockshere,toallowotherthingslikethe
- *consoletousethem,andtoaddnewonesaftertheinitialisation
- */
- s3c24xx_register_baseclocks(xtal);//向体系注册根本时钟:FCLK,HCLK,PCLK
- s3c244x_setup_clocks();//设置根本时钟的参数
- s3c2410_baseclk_add();//增加其他外设的时钟
- }
体系将一切外设的时钟经过一个叫做struct clk的结构体来进行描绘:
- structclk{
- structlist_headlist;
- structmodule*owner;
- structclk*parent;
- constchar*name;
- intid;
- intusage;
- unsignedlongrate;
- unsignedlongctrlbit;
- int(*enable)(structclk*,intenable);
- int(*set_rate)(structclk*c,unsignedlongrate);
- unsignedlong(*get_rate)(structclk*c);
- unsignedlong(*round_rate)(structclk*c,unsignedlongrate);
- int(*set_parent)(structclk*c,structclk*parent);
- };
将一切时钟分红两类,一类是舱位,一类封闭; 别离至于 两个数组中
- structclkinit_clocks[];structclkinit_clocks_disable[];
最终逐个注册
注册时钟是经过这个函数注册的
- /*initialisetheclocksystem*/
- ints3c24xx_register_clock(structclk*clk)
- {
- if(clk->enable==NULL)
- clk->enable=clk_null_enable;
- /*addtothelistofavailableclocks*/
- /*Quickchecktoseeifthisclockhasalreadybeenregistered.*/
- BUG_ON(clk->list.prev!=clk->list.next);
- spin_lock(&clocks_lock);
- list_add(&clk->list,&clocks);
- spin_unlock(&clocks_lock);
- return0;
- }