From: "Yanli Yang" <yanli.yang@bedmex.com>
To: <linux-bluetooth@vger.kernel.org>
Cc: <marcel@holtmann.org>, <devicetree@vger.kernel.org>,
<robh@kernel.org>, <krzk+dt@kernel.org>, <conor+dt@kernel.org>,
<linux-kernel@vger.kernel.org>, <zhirunliu@aicsemi.com>,
<dijiaxu@aicsemi.com>, <chunqiuliu@aicsemi.com>,
<liheng.wei@bedmex.com>, <yanli.yang@bedmex.com>
Subject: [RFC PATCH v3 2/3] Bluetooth: dt-bindings: Add AIC8800D80
Date: Mon, 21 Sep 2026 15:25:42 +0800 [thread overview]
Message-ID: <aff45beb52d4bcc99b0fdcb862b7b984ad737d92.1789974593.git.yanli.yang@bedmex.com> (raw)
In-Reply-To: <cover.1789974593.git.yanli.yang@bedmex.com>
Describe the AIC8800D80 Bluetooth SDIO firmware-loading function and
UART HCI interface. Link the UART node to its SDIO firmware provider
with the aic,firmware-sdio phandle.
Add the binding file to the AIC Bluetooth MAINTAINERS entry.
Signed-off-by: Zhirun Liu <zhirunliu@aicsemi.com>
Signed-off-by: Dijia Xu <dijiaxu@aicsemi.com>
Signed-off-by: Chunqiu Liu <chunqiuliu@aicsemi.com>
Signed-off-by: Liheng Wei <liheng.wei@bedmex.com>
Signed-off-by: Yanli Yang <yanli.yang@bedmex.com>
---
.../net/bluetooth/aic,aic8800d80-bt.yaml | 83 +++++++++++++++++++
MAINTAINERS | 10 +++
2 files changed, 93 insertions(+)
create mode 100644 Documentation/devicetree/bindings/net/bluetooth/aic,aic8800d80-bt.yaml
diff --git a/Documentation/devicetree/bindings/net/bluetooth/aic,aic8800d80-bt.yaml b/Documentation/devicetree/bindings/net/bluetooth/aic,aic8800d80-bt.yaml
new file mode 100644
index 000000000000..9c04ba62ecef
--- /dev/null
+++ b/Documentation/devicetree/bindings/net/bluetooth/aic,aic8800d80-bt.yaml
@@ -0,0 +1,83 @@
+# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
+%YAML 1.2
+---
+$id: http://devicetree.org/schemas/net/bluetooth/aic,aic8800d80-bt.yaml#
+$schema: http://devicetree.org/meta-schemas/core.yaml#
+
+title: AIC AIC8800D80 Bluetooth
+
+maintainers:
+ - Zhirun Liu <zhirunliu@aicsemi.com>
+ - Dijia Xu <dijiaxu@aicsemi.com>
+ - Chunqiu Liu <chunqiuliu@aicsemi.com>
+ - Liheng Wei <liheng.wei@bedmex.com>
+ - Yanli Yang <yanli.yang@bedmex.com>
+
+description:
+ The AIC8800D80 is a Wi-Fi and Bluetooth combination chip. The Bluetooth
+ firmware is loaded through SDIO function 1, while Bluetooth HCI traffic uses
+ the H4 protocol over a UART interface with hardware flow control.
+
+properties:
+ compatible:
+ enum:
+ - aic,aic8800d80-bt
+ - aic,aic8800d80-bt-sdio
+
+ reg:
+ maxItems: 1
+
+ max-speed: false
+
+ aic,firmware-sdio:
+ $ref: /schemas/types.yaml#/definitions/phandle
+ description:
+ Phandle to the SDIO function used to load the Bluetooth firmware.
+
+required:
+ - compatible
+
+allOf:
+ - $ref: bluetooth-controller.yaml#
+ - if:
+ properties:
+ compatible:
+ const: aic,aic8800d80-bt-sdio
+ then:
+ properties:
+ reg:
+ items:
+ - const: 1
+ aic,firmware-sdio: false
+ required:
+ - reg
+ else:
+ properties:
+ reg: false
+ required:
+ - aic,firmware-sdio
+ allOf:
+ - $ref: /schemas/serial/serial-peripheral-props.yaml#
+
+unevaluatedProperties: false
+
+examples:
+ - |
+ mmc {
+ #address-cells = <1>;
+ #size-cells = <0>;
+
+ bt_sdio: bluetooth@1 {
+ compatible = "aic,aic8800d80-bt-sdio";
+ reg = <1>;
+ };
+ };
+
+ serial {
+ uart-has-rtscts;
+
+ bluetooth {
+ compatible = "aic,aic8800d80-bt";
+ aic,firmware-sdio = <&bt_sdio>;
+ };
+ };
diff --git a/MAINTAINERS b/MAINTAINERS
index af5a8b4b0bb5..20662fe78632 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -729,6 +729,16 @@ S: Maintained
F: drivers/scsi/aha152x*
F: drivers/scsi/pcmcia/aha152x*
+AIC BLUETOOTH DRIVER
+M: Zhirun Liu <zhirunliu@aicsemi.com>
+M: Dijia Xu <dijiaxu@aicsemi.com>
+M: Chunqiu Liu <chunqiuliu@aicsemi.com>
+M: Liheng Wei <liheng.wei@bedmex.com>
+M: Yanli Yang <yanli.yang@bedmex.com>
+L: linux-bluetooth@vger.kernel.org
+S: Maintained
+F: Documentation/devicetree/bindings/net/bluetooth/aic,aic8800d80-bt.yaml
+
AIC7XXX / AIC79XX SCSI DRIVER
M: Hannes Reinecke <hare@suse.com>
L: linux-scsi@vger.kernel.org
--
2.34.1
next prev parent reply other threads:[~2026-09-21 7:26 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-09-16 8:12 [RFC PATCH bluetooth-next 0/3] Bluetooth: Add AIC8800D80 SDIO firmware loader and UART HCI Yanli Yang
2026-09-16 8:12 ` [RFC PATCH bluetooth-next 1/3] dt-bindings: vendor-prefixes: Add AIC Semiconductor Yanli Yang
2026-09-16 8:12 ` [RFC PATCH bluetooth-next 2/3] dt-bindings: net: bluetooth: Add AIC8800D80 Yanli Yang
2026-09-16 8:12 ` [RFC PATCH bluetooth-next 3/3] Bluetooth: btaic: Add AIC8800D80 SDIO loader and UART transport Yanli Yang
2026-09-20 9:50 ` [RFC PATCH v2 0/3] Bluetooth: Add AIC8800D80 SDIO firmware loader and UART HCI Yanli Yang
2026-09-20 9:50 ` [RFC PATCH v2 1/3] dt-bindings: vendor-prefixes: Add AIC Semiconductor Yanli Yang
2026-09-20 9:50 ` [RFC PATCH v2 2/3] dt-bindings: net: bluetooth: Add AIC8800D80 Yanli Yang
2026-09-20 9:50 ` [RFC PATCH v2 3/3] Bluetooth: btaic: Add AIC8800D80 SDIO loader and UART transport Yanli Yang
2026-09-21 7:25 ` [RFC PATCH v3 0/3] Bluetooth: Add AIC8800D80 support Yanli Yang
2026-09-21 7:25 ` [RFC PATCH v3 1/3] Bluetooth: dt-bindings: Add AIC vendor prefix Yanli Yang
2026-09-21 7:25 ` Yanli Yang [this message]
2026-09-21 7:25 ` [RFC PATCH v3 3/3] Bluetooth: btaic: Add AIC8800D80 support Yanli Yang
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=aff45beb52d4bcc99b0fdcb862b7b984ad737d92.1789974593.git.yanli.yang@bedmex.com \
--to=yanli.yang@bedmex.com \
--cc=chunqiuliu@aicsemi.com \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=dijiaxu@aicsemi.com \
--cc=krzk+dt@kernel.org \
--cc=liheng.wei@bedmex.com \
--cc=linux-bluetooth@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=marcel@holtmann.org \
--cc=robh@kernel.org \
--cc=zhirunliu@aicsemi.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®