Manual driver binding and unbinding

來源:互聯網
上載者:User

One new feature in the 2.6.13-rc3 kernel release, is the ability to bind and unbind drivers from devices manually from user space.  Previously, the only way to disconnect a driver from a device was usually to unload the whole driver from memory, usingrmmod.

In the sysfs tree, every driver now has bind and unbind files associated with it:

    $ tree /sys/bus/usb/drivers/ub/    /sys/bus/usb/drivers/ub/    |-- 1-1:1.0 -> ../../../../devices/pci0000:00/0000:00:1d.7/usb1/1-1/1-1:1.0    |-- bind    |-- module -> ../../../../module/ub    `-- unbind

In order to unbind a device from a driver, simply write the bus id of the device to the unbind file:

    echo -n "1-1:1.0" > /sys/bus/usb/drivers/ub/unbind

and the device will no longer be bound to the driver:

    $ tree /sys/bus/usb/drivers/ub/    /sys/bus/usb/drivers/ub/    |-- bind    |-- module -> ../../../../module/ub    `-- unbind

To bind a device to a driver, the device must first not be controlled by any other driver.  To ensure this, look for the "driver" symlink in the device directory:

    $ tree /sys/bus/usb/devices/1-1:1.0    /sys/bus/usb/devices/1-1:1.0    |-- bAlternateSetting    |-- bInterfaceClass    |-- bInterfaceNumber    |-- bInterfaceProtocol    |-- bInterfaceSubClass    |-- bNumEndpoints    |-- bus -> ../../../../../../bus/usb    |-- modalias    `-- power        `-- state

Then, simply write the bus id of the device you wish to bind, into thebind file for that driver:

    echo -n "1-1:1.0" > /sys/bus/usb/drivers/usb-storage/bind

And check that the binding was successful:

    $ tree /sys/bus/usb/devices/1-1:1.0    /sys/bus/usb/devices/1-1:1.0    |-- bAlternateSetting    |-- bInterfaceClass    |-- bInterfaceNumber    |-- bInterfaceProtocol    |-- bInterfaceSubClass    |-- bNumEndpoints    |-- bus -> ../../../../../../bus/usb    |-- driver -> ../../../../../../bus/usb/drivers/usb-storage    |-- host2    |   `-- power    |       `-- state    |-- modalias    `-- power        `-- state

As the example above shows, this capability is very useful for switching devices between drivers which handle the same type of device (both theub andusb-storage drivers handle USB mass storage devices, like flash drives.)

A number of "enterprise" Linux distributions offer multiple drivers of different version levels in their kernel packages.  This manual binding feature will allow configuration tools to pick and choose which devices should be bound to which drivers, allowing
users to upgrade only specific devices if they wish to.

In order for a device to bind successfully with a driver, that driver must already support that device.  This is why you can not just arbitrarily bind any device to any driver.  To help with the issue of adding new devices support to drivers after they are
built, the PCI system offers a dynamic_id file in sysfs so that user space can write in new device ids that the driver should bind too.  In the future, this ability to add new driver IDs to a running kernel will be moved into the driver core to make
it available for all buses.

           (Log in to post comments)          

 

 

Manual driver binding and unbinding

Posted Jul 15, 2005 2:59 UTC (Fri) by mdomsch (subscriber, #5920)       [Link]   

    Last paragraph, it's not 'dynamic_id', but should be 'new_id'.

Manual driver binding and unbinding

Posted Jul 27, 2005 22:03 UTC (Wed) by MarkWilliamson (guest, #30166)       [Link]   

    This'll very _very_ handy for USB virtualisation under Xen - we'll be able
to unbind a device from the "host" kernel and plumb it through the USB
virtualising driver and into a guest kernel.  Great stuff!

Manual driver binding and unbinding

Posted Nov 25, 2005 3:26 UTC (Fri) by jik (guest, #34093)       [Link]   

    I've got Fedora Core development kernel 2.6.14-1.1707_FC5smp.  I tried the directions here to unbind the usbfs driver from my scanner.  After doing so, "lsusb" indeed shows "Driver=(none)", but when I look in /sys/bus/usb/devices/1-2:1.0, the directory
for the scanner device, I see that it still has a driver link pointing back at the usbfs driver, and /sys/bus/usb/drivers/usbfs still has a link pointing at the device.  Furthermore, I still can't open the scanner from inside vmware, so it appears that the
unbind didn't completely "take."  Any ideas?

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.