<meter id="pryje"><nav id="pryje"><delect id="pryje"></delect></nav></meter>
          <label id="pryje"></label>

          新聞中心

          EEPW首頁(yè) > 嵌入式系統(tǒng) > 設(shè)計(jì)應(yīng)用 > ARM-linux s3c2440 之時(shí)鐘分析

          ARM-linux s3c2440 之時(shí)鐘分析

          作者: 時(shí)間:2016-11-19 來(lái)源:網(wǎng)絡(luò) 收藏
          S3c2440 時(shí)鐘 & 電源管理時(shí)鐘由三部分組成: Clock control ,USB control, 和 Power control

          Clock control 部分可以產(chǎn)生時(shí)鐘FCLK,提供ARM內(nèi)核,HCLK 提供 AHB 總線外設(shè),還有 PLCK APB 總線外設(shè)。 s3c2440 有兩個(gè)內(nèi)置的PLLS 鎖相環(huán),一個(gè)提供給 FCLK,HCLK,和PCLK,另一個(gè)提供給USB時(shí)鐘(48MHZ)。Clock control 可以不使用PLL,而降低的時(shí)鐘,通過(guò)軟件設(shè)置,時(shí)能各中種外設(shè),從而可以降低功耗

          本文引用地址:http://www.ex-cimer.com/article/201611/318127.htm

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

          linux 中 s3c2440 時(shí)鐘的初始化:


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

          linux 入口時(shí),在start_kernel()中調(diào)用 setup_arch(), 會(huì)進(jìn)行平臺(tái)體系相關(guān)初始化:


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


          1. void__inits3c244x_init_clocks(intxtal)
          2. {
          3. /*initialisetheclockshere,toallowotherthingslikethe
          4. *consoletousethem,andtoaddnewonesaftertheinitialisation
          5. */
          6. s3c24xx_register_baseclocks(xtal);//向系統(tǒng)注冊(cè)基本時(shí)鐘:FCLK,HCLK,PCLK
          7. s3c244x_setup_clocks();//設(shè)置基本時(shí)鐘的參數(shù)
          8. s3c2410_baseclk_add();//添加其他外設(shè)的時(shí)鐘
          9. }

          系統(tǒng)將所有外設(shè)的時(shí)鐘通過(guò)一個(gè)叫做struct clk的結(jié)構(gòu)體來(lái)進(jìn)行描述:

          1. structclk{
          2. structlist_headlist;
          3. structmodule*owner;
          4. structclk*parent;
          5. constchar*name;
          6. intid;
          7. intusage;
          8. unsignedlongrate;
          9. unsignedlongctrlbit;
          10. int(*enable)(structclk*,intenable);
          11. int(*set_rate)(structclk*c,unsignedlongrate);
          12. unsignedlong(*get_rate)(structclk*c);
          13. unsignedlong(*round_rate)(structclk*c,unsignedlongrate);
          14. int(*set_parent)(structclk*c,structclk*parent);
          15. };

          將所有時(shí)鐘分成兩類,一類是開(kāi)啟,一類關(guān)閉; 分別至于 兩個(gè)數(shù)組中

          1. structclkinit_clocks[];structclkinit_clocks_disable[];

          最后一一注冊(cè)

          注冊(cè)時(shí)鐘是通過(guò)這個(gè)函數(shù)注冊(cè)的

          1. /*initialisetheclocksystem*/
          2. ints3c24xx_register_clock(structclk*clk)
          3. {
          4. if(clk->enable==NULL)
          5. clk->enable=clk_null_enable;
          6. /*addtothelistofavailableclocks*/
          7. /*Quickchecktoseeifthisclockhasalreadybeenregistered.*/
          8. BUG_ON(clk->list.prev!=clk->list.next);
          9. spin_lock(&clocks_lock);
          10. list_add(&clk->list,&clocks);
          11. spin_unlock(&clocks_lock);
          12. return0;
          13. }




          關(guān)鍵詞: ARMlinuxs3c2440時(shí)鐘分

          評(píng)論


          技術(shù)專區(qū)

          關(guān)閉
          看屁屁www成人影院,亚洲人妻成人图片,亚洲精品成人午夜在线,日韩在线 欧美成人 (function(){ var bp = document.createElement('script'); var curProtocol = window.location.protocol.split(':')[0]; if (curProtocol === 'https') { bp.src = 'https://zz.bdstatic.com/linksubmit/push.js'; } else { bp.src = 'http://push.zhanzhang.baidu.com/push.js'; } var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(bp, s); })();