歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
您现在的位置: Linux教程網 >> UnixLinux >  >> Linux編程 >> Linux編程

Linux USB subsystem --- USB Hub initialize

目的:對USB作深入學習,在此留下筆記。歡迎討論。

[Linux 3.2] [driver/usb/core/hub.c]

函數:usb_hub_init

  1. int usb_hub_init(void)  
  2. {  
  3.     if (usb_register(&hub_driver) < 0) {  
  4.         printk(KERN_ERR "%s: can't register hub driver\n",  
  5.             usbcore_name);  
  6.         return -1;  
  7.     }  
  8.   
  9.     khubd_task = kthread_run(hub_thread, NULL, "khubd");  
  10.     if (!IS_ERR(khubd_task))  
  11.         return 0;  
  12.   
  13.     /* Fall through if kernel_thread failed */  
  14.     usb_deregister(&hub_driver);  
  15.     printk(KERN_ERR "%s: can't start khubd\n", usbcore_name);  
  16.   
  17.     return -1;  
  18. }  

usb_hub_init主要完成兩個功能,一是注冊hub驅動,另一個則是啟動一個名為khubd的內核線程(通過ps可以看到此線程,也可以叫進程。內核不區分進程和線程)。

hub驅動的注冊,與usbfs驅動注冊是一樣。在完成注冊後,可以在/sys/bus/usb/drivers下面看到usb目錄,在usb目錄下面,創建如下屬性文件:

bind  module  new_id  uevent  unbind

下面分析khubd線程的創建:

       kthread_run(hub_thread, NULL, "khubd") --> hub_thread --> set_freezable() --> hub_events() --> wait_event_freezable(khubd_wait, !list_empty(&hub_event_list) || kthread_should_stop()); 至此進入睡眠,等待khubd_wait來喚醒這個進程。

       hub_events主要用來處理port status change和hub status change。

       等USB enumeration時,會對hub_events進行更進一步分析。

Copyright © Linux教程網 All Rights Reserved