btusb.txt 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. Generic Bluetooth controller over USB (btusb driver)
  2. ---------------------------------------------------
  3. Required properties:
  4. - compatible : should comply with the format "usbVID,PID" specified in
  5. Documentation/devicetree/bindings/usb/usb-device.txt
  6. At the time of writing, the only OF supported devices
  7. (more may be added later) are:
  8. "usb1286,204e" (Marvell 8997)
  9. Also, vendors that use btusb may have device additional properties, e.g:
  10. Documentation/devicetree/bindings/net/marvell-bt-8xxx.txt
  11. Optional properties:
  12. - interrupt-names: (see below)
  13. - interrupts : The interrupt specified by the name "wakeup" is the interrupt
  14. that shall be used for out-of-band wake-on-bt. Driver will
  15. request this interrupt for wakeup. During system suspend, the
  16. irq will be enabled so that the bluetooth chip can wakeup host
  17. platform out of band. During system resume, the irq will be
  18. disabled to make sure unnecessary interrupt is not received.
  19. Example:
  20. Following example uses irq pin number 3 of gpio0 for out of band wake-on-bt:
  21. &usb_host1_ehci {
  22. #address-cells = <1>;
  23. #size-cells = <0>;
  24. mvl_bt1: bt@1 {
  25. compatible = "usb1286,204e";
  26. reg = <1>;
  27. interrupt-parent = <&gpio0>;
  28. interrupt-names = "wakeup";
  29. interrupts = <3 IRQ_TYPE_LEVEL_LOW>;
  30. };
  31. };