hrtimer和work工作隊列的使用

來源:互聯網
上載者:User

 

1.hrtimers - 為高解析度kernel定時器,可作為逾時或周期性定時器使用

1). hrtimer_init初始化定時器工作模式。

 hrtimer_init(&vibe_timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
 vibe_timer.function = vibrator_timer_func;

 /* 設定定時器的回呼函數,定時器到時該函數將被調用 */

 static enum hrtimer_restart vibrator_timer_func(struct hrtimer *timer)

 註:該回呼函數為原子操作不能被中斷

 

2). hrtimer_start的第二個參數用於設定逾時參數。
  hrtimer_start(&vibe_timer,
  ktime_set(value / 1000, (value % 1000) * 1000000),HRTIMER_MODE_REL);

 

3). INIT_WORK初始化工作隊列。

  INIT_WORK(&vibe_work, vibe_work_func);

  static void vibe_work_func(struct work_struct *work)

 

4). schedule_work調用工作隊列。

  schedule_work(&vibe_work);

 

view plaincopy
to clipboardprint?·········10········20········30········40········50········60········70········80········90········100·······110·······120·······130·······140·······150
  1. /* linux/drivers/ker-driver.c 
  2.  * Author: Woodpecker <Pecker.hu@gmail.com> 
  3.  * 
  4.  * kernel-driver 
  5.  * 
  6.  * This file is subject to the terms and conditions of the GNU General Public 
  7.  * License.  See the file COPYING in the main directory of this archive for 
  8.  * more details. 
  9.  * 
  10.  */  
  11.   
  12. #include <linux/module.h>     /* MODULE_LICENSE     */  
  13. #include <linux/kernel.h>     /* printk,pr_info     */  
  14. #include <linux/errno.h>      /* EINVAL,EAGAIN,etc. */  
  15. #include <linux/err.h>            /* IS_ERR             */  
  16. #include <linux/fb.h>         /* FB header file     */  
  17. #include <linux/init.h>           /* module_init        */  
  18. #include <linux/semaphore.h>  /* init_MUTEX APIs    */  
  19. #include <linux/mm.h>         /* vm_area_struct     */  
  20. #include <linux/dma-mapping.h>  /* DMA APIs             */  
  21. #include <linux/delay.h>      /* mdelay,msleep      */  
  22. #include <linux/hrtimer.h>   
  23. #include <linux/time.h>           /* struct timespec    */  
  24.   
  25. #define KER_PRINT(fmt, ...) printk("<ker-driver>"fmt, ##__VA_ARGS__);  
  26. static struct hrtimer vibe_timer;  
  27. static struct work_struct vibe_work;  
  28.   
  29. static void vibe_work_func(struct work_struct *work)  
  30. {  
  31.     KER_PRINT("vibe_work_func:msleep(50)/n");  
  32.     msleep(50); /* CPU sleep */  
  33. }  
  34.   
  35. static enum hrtimer_restart vibrator_timer_func(struct hrtimer *timer)   
  36. {             
  37.     struct timespec uptime;  
  38.       
  39.     do_posix_clock_monotonic_gettime(&uptime);  
  40.     KER_PRINT("Time:%lu.%02lu/n",  
  41.             (unsigned long) uptime.tv_sec,  
  42.             (uptime.tv_nsec / (NSEC_PER_SEC / 100)));  
  43.       
  44.     KER_PRINT("vibrator_timer_func/n");   
  45.     schedule_work(&vibe_work);  
  46.     return HRTIMER_NORESTART;  
  47. }  
  48.   
  49. static int __init ker_driver_init(void)  
  50. {  
  51.   
  52.     int value = 2000;   /* Time out setting,2 seconds */  
  53.     struct timespec uptime;  
  54.       
  55.     KER_PRINT("ker_driver_init/n");  
  56.     hrtimer_init(&vibe_timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);  
  57.     vibe_timer.function = vibrator_timer_func;  
  58.     hrtimer_start(&vibe_timer,  
  59.         ktime_set(value / 1000, (value % 1000) * 1000000),HRTIMER_MODE_REL);  
  60.       //static inline ktime_t ktime_set(const long secs, const unsigned long nsecs)  第一個參數為秒,第二個為納秒
  61.     do_posix_clock_monotonic_gettime(&uptime);  
  62.     KER_PRINT("Time:%lu.%02lu/n",  
  63.             (unsigned long) uptime.tv_sec,  
  64.             (uptime.tv_nsec / (NSEC_PER_SEC / 100)));  
  65.   
  66.     INIT_WORK(&vibe_work, vibe_work_func);  /* Intialize the work queue */  
  67.     return 0;  
  68.   
  69. }  
  70.   
  71. static void __exit ker_driver_exit(void)  
  72. {  
  73.     hrtimer_cancel(&vibe_timer);  
  74. }  
  75.   
  76. module_init(ker_driver_init);  
  77. module_exit(ker_driver_exit);  
  78.   
  79. MODULE_AUTHOR("Woodpecker <Pecker.hu@gmail.com>");  
  80. MODULE_DESCRIPTION("Kernel driver");  
  81. MODULE_LICENSE("GPL");  

 

驅動的運行結果:

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.