mirror of
https://github.com/armbian/build.git
synced 2025-08-09 20:56:57 +02:00
* Bump imx6 edge to 5.12.y * Bump odroid xu4 edge to 5.12.y * Bump Jetson nano edge to 5.12.y * WIP: Bump sunxi to 5.12.y - create a copy of patches and make a new link - wireless patches needs adjutement to 5.12 - some patches are still failing * Adjust wireless patches to build on 5.12.y * Remove template wireless patch * Move Espressobin edge to 5.12.y * Bump mvebu to 5.12 - patch 92-mvebu-gpio-remove-hardcoded-timer-assignment.patch was disabled @heisath - adjusted wireless driver for 8723ds * Adjust sunxi / sunxi64 edge to compile * Fix kernel config for Jetson nano edge * bump meson64 to 5.12.y * bump rockchip edge to 5.12.y * Bump rockchip64 to 5.12.y * Bump rk322x edge to 5.12.y @paolosabatino * Cleanup im6, re-add 5.10.y patches since one is missing in 5.12.y * Update odroidxu4 edge links * rk322x: moved rk322x-edge to kernel 5.12, fix overlay compilation, retouched included kernel modules * Cleanup: remove deprecated config Co-authored-by: Paolo Sabatino <paolo.sabatino@gmail.com>
58 lines
2.1 KiB
Diff
58 lines
2.1 KiB
Diff
From d063238f64a1f0a4e8baf11e55d9cc1989816ee6 Mon Sep 17 00:00:00 2001
|
|
From: Vasily Khoruzhick <anarsoul@gmail.com>
|
|
Date: Wed, 31 Oct 2018 20:05:14 -0700
|
|
Subject: [PATCH 141/146] dt-bindings: net: bluetooth: Add rtl8723bs-bluetooth
|
|
|
|
Add binding document for bluetooth part of RTL8723BS/RTL8723CS
|
|
|
|
Signed-off-by: Vasily Khoruzhick <anarsoul@gmail.com>
|
|
---
|
|
.../bindings/net/rtl8723bs-bluetooth.txt | 35 +++++++++++++++++++
|
|
1 file changed, 35 insertions(+)
|
|
create mode 100644 Documentation/devicetree/bindings/net/rtl8723bs-bluetooth.txt
|
|
|
|
diff --git a/Documentation/devicetree/bindings/net/rtl8723bs-bluetooth.txt b/Documentation/devicetree/bindings/net/rtl8723bs-bluetooth.txt
|
|
new file mode 100644
|
|
index 000000000000..8357f242ae4c
|
|
--- /dev/null
|
|
+++ b/Documentation/devicetree/bindings/net/rtl8723bs-bluetooth.txt
|
|
@@ -0,0 +1,35 @@
|
|
+RTL8723BS/RTL8723CS Bluetooth
|
|
+---------------------
|
|
+
|
|
+RTL8723CS/RTL8723CS is WiFi + BT chip. WiFi part is connected over SDIO, while
|
|
+BT is connected over serial. It speaks H5 protocol with few extra commands
|
|
+to upload firmware and change module speed.
|
|
+
|
|
+Required properties:
|
|
+
|
|
+ - compatible: should be one of the following:
|
|
+ * "realtek,rtl8723bs-bt"
|
|
+ * "realtek,rtl8723cs-bt"
|
|
+Optional properties:
|
|
+
|
|
+ - device-wake-gpios: GPIO specifier, used to wakeup the BT module (active high)
|
|
+ - enable-gpios: GPIO specifier, used to enable the BT module (active high)
|
|
+ - host-wake-gpios: GPIO specifier, used to wakeup the host processor (active high)
|
|
+ - firmware-postfix: firmware postfix to be used for firmware config
|
|
+ - reset-gpios: GPIO specifier, used to reset the BT module (active high)
|
|
+
|
|
+Example:
|
|
+
|
|
+&uart1 {
|
|
+ pinctrl-names = "default";
|
|
+ pinctrl-0 = <&uart1_pins>, <&uart1_rts_cts_pins>;
|
|
+ status = "okay";
|
|
+
|
|
+ bluetooth {
|
|
+ compatible = "realtek,rtl8723bs-bt";
|
|
+ reset-gpios = <&r_pio 0 4 GPIO_ACTIVE_LOW>; /* PL4 */
|
|
+ device-wake-gpios = <&r_pio 0 5 GPIO_ACTIVE_HIGH>; /* PL5 */
|
|
+ host-wakeup-gpios = <&r_pio 0 6 GPIO_ACTIVE_HIGH>; /* PL6 */
|
|
+ firmware-postfix="pine64";
|
|
+ };
|
|
+};
|
|
--
|
|
2.17.1
|
|
|