52 lines · yaml
1# SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause2%YAML 1.23---4$id: http://devicetree.org/schemas/net/bluetooth/mediatek,mt7622-bluetooth.yaml#5$schema: http://devicetree.org/meta-schemas/core.yaml#6 7title: MediaTek SoC built-in Bluetooth8 9description:10 This device is a serial attached device to BTIF device and thus it must be a11 child node of the serial node with BTIF. The dt-bindings details for BTIF12 device can be known via Documentation/devicetree/bindings/serial/8250.yaml.13 14maintainers:15 - Sean Wang <sean.wang@mediatek.com>16 17allOf:18 - $ref: bluetooth-controller.yaml#19 20properties:21 compatible:22 const: mediatek,mt7622-bluetooth23 24 clocks:25 maxItems: 126 27 clock-names:28 const: ref29 30 power-domains:31 maxItems: 132 33required:34 - clocks35 - clock-names36 - power-domains37 38unevaluatedProperties: false39 40examples:41 - |42 #include <dt-bindings/power/mt7622-power.h>43 44 serial {45 bluetooth {46 compatible = "mediatek,mt7622-bluetooth";47 power-domains = <&scpsys MT7622_POWER_DOMAIN_WB>;48 clocks = <&clk25m>;49 clock-names = "ref";50 };51 };52