mirror of
https://github.com/openwrt/openwrt.git
synced 2025-01-25 13:49:26 +00:00
67d998e25d
Changelog: https://cdn.kernel.org/pub/linux/kernel/v5.x/ChangeLog-5.15.145 No patches needed a rebase. 23.05 backport: Rebased patch mediatek/100-dts-update-mt7622-rfb1.patch due to changes introduced in commit e37aa926447f ("arm64: dts: mediatek: mt7622: fix memory node warning check") in version v5.15.143 and we jumped over from v5.15.139 directly to v5.15.145. Build system: x86_64 Build-tested: ramips/tplink_archer-a6-v3 Run-tested: ramips/tplink_archer-a6-v3 23.05 backport: Stijn: Compile-tested: ath79/generic, ipq40xx/generic, mvebu/cortexa72, ramips/mt{7621,7620,76x8}, realtek/rtl{838x,930x}, 86/64. Run-tested: cortexa72 (RB5009UG+S+IN), mt7621 (EAP615-Wall v1), rtl838x (GS1900-10HP, GS1900-8HP, GS108T v3). Petr: Compile-tested: ipq807x, mvebu/cortexa9 Run-tested: turris-omnia, prpl-haze Tested-by: Stijn Segers <foss@volatilesystems.org> [23.05 testing] Signed-off-by: John Audia <therealgraysky@proton.me> Signed-off-by: Petr Štetiar <ynezz@true.cz> [23.05 refresh] (cherry picked from commit 8de4cc77a6d5c25e48566d0203f159287ac7f3fe)
52 lines
1.6 KiB
Diff
52 lines
1.6 KiB
Diff
From 5cb03751455c299b1bf10cb48631bf359cfb11b5 Mon Sep 17 00:00:00 2001
|
|
From: "mark-yw.chen" <mark-yw.chen@mediatek.com>
|
|
Date: Wed, 1 Sep 2021 11:32:25 +0800
|
|
Subject: [PATCH 1/5] Bluetooth: btusb: Support public address configuration
|
|
for MediaTek Chip.
|
|
|
|
The MediaTek chip support vendor specific HCI command(0xfc1a) to
|
|
change the public address. Add hdev->set_bdaddr handler for MediaTek
|
|
Chip. After doing a power cycle or MediaTek Bluetooth reset, BD_ADDR
|
|
will bring back the original one.
|
|
|
|
Signed-off-by: mark-yw.chen <mark-yw.chen@mediatek.com>
|
|
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
|
|
---
|
|
drivers/bluetooth/btusb.c | 18 ++++++++++++++++++
|
|
1 file changed, 18 insertions(+)
|
|
|
|
--- a/drivers/bluetooth/btusb.c
|
|
+++ b/drivers/bluetooth/btusb.c
|
|
@@ -2287,6 +2287,23 @@ struct btmtk_section_map {
|
|
};
|
|
} __packed;
|
|
|
|
+static int btusb_set_bdaddr_mtk(struct hci_dev *hdev, const bdaddr_t *bdaddr)
|
|
+{
|
|
+ struct sk_buff *skb;
|
|
+ long ret;
|
|
+
|
|
+ skb = __hci_cmd_sync(hdev, 0xfc1a, sizeof(bdaddr), bdaddr, HCI_INIT_TIMEOUT);
|
|
+ if (IS_ERR(skb)) {
|
|
+ ret = PTR_ERR(skb);
|
|
+ bt_dev_err(hdev, "changing Mediatek device address failed (%ld)",
|
|
+ ret);
|
|
+ return ret;
|
|
+ }
|
|
+ kfree_skb(skb);
|
|
+
|
|
+ return 0;
|
|
+}
|
|
+
|
|
static void btusb_mtk_wmt_recv(struct urb *urb)
|
|
{
|
|
struct hci_dev *hdev = urb->context;
|
|
@@ -3941,6 +3958,7 @@ static int btusb_probe(struct usb_interf
|
|
hdev->shutdown = btusb_mtk_shutdown;
|
|
hdev->manufacturer = 70;
|
|
hdev->cmd_timeout = btusb_mtk_cmd_timeout;
|
|
+ hdev->set_bdaddr = btusb_set_bdaddr_mtk;
|
|
set_bit(HCI_QUIRK_NON_PERSISTENT_SETUP, &hdev->quirks);
|
|
data->recv_acl = btusb_recv_acl_mtk;
|
|
}
|