mediatek-bluetooth.txt 1.0 KB

1234567891011121314151617181920212223242526272829303132333435
  1. MediaTek SoC built-in Bluetooth Devices
  2. ==================================
  3. This device is a serial attached device to BTIF device and thus it must be a
  4. child node of the serial node with BTIF. The dt-bindings details for BTIF
  5. device can be known via Documentation/devicetree/bindings/serial/8250.txt.
  6. Required properties:
  7. - compatible: Must be
  8. "mediatek,mt7622-bluetooth": for MT7622 SoC
  9. - clocks: Should be the clock specifiers corresponding to the entry in
  10. clock-names property.
  11. - clock-names: Should contain "ref" entries.
  12. - power-domains: Phandle to the power domain that the device is part of
  13. Example:
  14. btif: serial@1100c000 {
  15. compatible = "mediatek,mt7622-btif",
  16. "mediatek,mtk-btif";
  17. reg = <0 0x1100c000 0 0x1000>;
  18. interrupts = <GIC_SPI 90 IRQ_TYPE_LEVEL_LOW>;
  19. clocks = <&pericfg CLK_PERI_BTIF_PD>;
  20. clock-names = "main";
  21. reg-shift = <2>;
  22. reg-io-width = <4>;
  23. bluetooth {
  24. compatible = "mediatek,mt7622-bluetooth";
  25. power-domains = <&scpsys MT7622_POWER_DOMAIN_WB>;
  26. clocks = <&clk25m>;
  27. clock-names = "ref";
  28. };
  29. };