qualcomm-bluetooth.txt 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. Qualcomm Bluetooth Chips
  2. ---------------------
  3. This documents the binding structure and common properties for serial
  4. attached Qualcomm devices.
  5. Serial attached Qualcomm devices shall be a child node of the host UART
  6. device the slave device is attached to.
  7. Required properties:
  8. - compatible: should contain one of the following:
  9. * "qcom,qca6174-bt"
  10. * "qcom,wcn3990-bt"
  11. Optional properties for compatible string qcom,qca6174-bt:
  12. - enable-gpios: gpio specifier used to enable chip
  13. - clocks: clock provided to the controller (SUSCLK_32KHZ)
  14. Required properties for compatible string qcom,wcn3990-bt:
  15. - vddio-supply: VDD_IO supply regulator handle.
  16. - vddxo-supply: VDD_XO supply regulator handle.
  17. - vddrf-supply: VDD_RF supply regulator handle.
  18. - vddch0-supply: VDD_CH0 supply regulator handle.
  19. Optional properties for compatible string qcom,wcn3990-bt:
  20. - max-speed: see Documentation/devicetree/bindings/serial/slave-device.txt
  21. Examples:
  22. serial@7570000 {
  23. label = "BT-UART";
  24. status = "okay";
  25. bluetooth {
  26. compatible = "qcom,qca6174-bt";
  27. enable-gpios = <&pm8994_gpios 19 GPIO_ACTIVE_HIGH>;
  28. clocks = <&divclk4>;
  29. };
  30. };
  31. serial@898000 {
  32. bluetooth {
  33. compatible = "qcom,wcn3990-bt";
  34. vddio-supply = <&vreg_s4a_1p8>;
  35. vddxo-supply = <&vreg_l7a_1p8>;
  36. vddrf-supply = <&vreg_l17a_1p3>;
  37. vddch0-supply = <&vreg_l25a_3p3>;
  38. max-speed = <3200000>;
  39. };
  40. };