btusb.txt 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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.yaml
  6. At the time of writing, the only OF supported devices
  7. (more may be added later) are:
  8. "usb1286,204e" (Marvell 8997)
  9. "usbcf3,e300" (Qualcomm QCA6174A)
  10. "usb4ca,301a" (Qualcomm QCA6174A (Lite-On))
  11. Also, vendors that use btusb may have device additional properties, e.g:
  12. Documentation/devicetree/bindings/net/bluetooth/marvell,sd8897-bt.yaml
  13. Optional properties:
  14. - interrupt-names: (see below)
  15. - interrupts : The interrupt specified by the name "wakeup" is the interrupt
  16. that shall be used for out-of-band wake-on-bt. Driver will
  17. request this interrupt for wakeup. During system suspend, the
  18. irq will be enabled so that the bluetooth chip can wakeup host
  19. platform out of band. During system resume, the irq will be
  20. disabled to make sure unnecessary interrupt is not received.
  21. Example:
  22. Following example uses irq pin number 3 of gpio0 for out of band wake-on-bt:
  23. &usb_host1_ehci {
  24. #address-cells = <1>;
  25. #size-cells = <0>;
  26. mvl_bt1: bt@1 {
  27. compatible = "usb1286,204e";
  28. reg = <1>;
  29. interrupt-parent = <&gpio0>;
  30. interrupt-names = "wakeup";
  31. interrupts = <3 IRQ_TYPE_LEVEL_LOW>;
  32. };
  33. };