123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787 |
- /*
- * Bluetooth support for Realtek devices
- *
- * Copyright (C) 2015 Endless Mobile, Inc.
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- */
- #include <linux/module.h>
- #include <linux/firmware.h>
- #include <asm/unaligned.h>
- #include <linux/usb.h>
- #include <net/bluetooth/bluetooth.h>
- #include <net/bluetooth/hci_core.h>
- #include "btrtl.h"
- #define VERSION "0.1"
- #define RTL_EPATCH_SIGNATURE "Realtech"
- #define RTL_ROM_LMP_3499 0x3499
- #define RTL_ROM_LMP_8723A 0x1200
- #define RTL_ROM_LMP_8723B 0x8723
- #define RTL_ROM_LMP_8821A 0x8821
- #define RTL_ROM_LMP_8761A 0x8761
- #define RTL_ROM_LMP_8822B 0x8822
- #define RTL_CONFIG_MAGIC 0x8723ab55
- #define IC_MATCH_FL_LMPSUBV (1 << 0)
- #define IC_MATCH_FL_HCIREV (1 << 1)
- #define IC_MATCH_FL_HCIVER (1 << 2)
- #define IC_MATCH_FL_HCIBUS (1 << 3)
- #define IC_INFO(lmps, hcir) \
- .match_flags = IC_MATCH_FL_LMPSUBV | IC_MATCH_FL_HCIREV, \
- .lmp_subver = (lmps), \
- .hci_rev = (hcir)
- struct id_table {
- __u16 match_flags;
- __u16 lmp_subver;
- __u16 hci_rev;
- __u8 hci_ver;
- __u8 hci_bus;
- bool config_needed;
- bool has_rom_version;
- char *fw_name;
- char *cfg_name;
- };
- struct btrtl_device_info {
- const struct id_table *ic_info;
- u8 rom_version;
- u8 *fw_data;
- int fw_len;
- u8 *cfg_data;
- int cfg_len;
- };
- static const struct id_table ic_id_table[] = {
- { IC_MATCH_FL_LMPSUBV, RTL_ROM_LMP_8723A, 0x0,
- .config_needed = false,
- .has_rom_version = false,
- .fw_name = "rtl_bt/rtl8723a_fw.bin",
- .cfg_name = NULL },
- { IC_MATCH_FL_LMPSUBV, RTL_ROM_LMP_3499, 0x0,
- .config_needed = false,
- .has_rom_version = false,
- .fw_name = "rtl_bt/rtl8723a_fw.bin",
- .cfg_name = NULL },
- /* 8723BS */
- { .match_flags = IC_MATCH_FL_LMPSUBV | IC_MATCH_FL_HCIREV |
- IC_MATCH_FL_HCIVER | IC_MATCH_FL_HCIBUS,
- .lmp_subver = RTL_ROM_LMP_8723B,
- .hci_rev = 0xb,
- .hci_ver = 6,
- .hci_bus = HCI_UART,
- .config_needed = true,
- .has_rom_version = true,
- .fw_name = "rtl_bt/rtl8723bs_fw.bin",
- .cfg_name = "rtl_bt/rtl8723bs_config" },
- /* 8723B */
- { IC_INFO(RTL_ROM_LMP_8723B, 0xb),
- .config_needed = false,
- .has_rom_version = true,
- .fw_name = "rtl_bt/rtl8723b_fw.bin",
- .cfg_name = "rtl_bt/rtl8723b_config" },
- /* 8723D */
- { IC_INFO(RTL_ROM_LMP_8723B, 0xd),
- .config_needed = true,
- .has_rom_version = true,
- .fw_name = "rtl_bt/rtl8723d_fw.bin",
- .cfg_name = "rtl_bt/rtl8723d_config" },
- /* 8723DS */
- { .match_flags = IC_MATCH_FL_LMPSUBV | IC_MATCH_FL_HCIREV |
- IC_MATCH_FL_HCIVER | IC_MATCH_FL_HCIBUS,
- .lmp_subver = RTL_ROM_LMP_8723B,
- .hci_rev = 0xd,
- .hci_ver = 8,
- .hci_bus = HCI_UART,
- .config_needed = true,
- .has_rom_version = true,
- .fw_name = "rtl_bt/rtl8723ds_fw.bin",
- .cfg_name = "rtl_bt/rtl8723ds_config" },
- /* 8821A */
- { IC_INFO(RTL_ROM_LMP_8821A, 0xa),
- .config_needed = false,
- .has_rom_version = true,
- .fw_name = "rtl_bt/rtl8821a_fw.bin",
- .cfg_name = "rtl_bt/rtl8821a_config" },
- /* 8821C */
- { IC_INFO(RTL_ROM_LMP_8821A, 0xc),
- .config_needed = false,
- .has_rom_version = true,
- .fw_name = "rtl_bt/rtl8821c_fw.bin",
- .cfg_name = "rtl_bt/rtl8821c_config" },
- /* 8761A */
- { IC_MATCH_FL_LMPSUBV, RTL_ROM_LMP_8761A, 0x0,
- .config_needed = false,
- .has_rom_version = true,
- .fw_name = "rtl_bt/rtl8761a_fw.bin",
- .cfg_name = "rtl_bt/rtl8761a_config" },
- /* 8822B */
- { IC_INFO(RTL_ROM_LMP_8822B, 0xb),
- .config_needed = true,
- .has_rom_version = true,
- .fw_name = "rtl_bt/rtl8822b_fw.bin",
- .cfg_name = "rtl_bt/rtl8822b_config" },
- };
- static const struct id_table *btrtl_match_ic(u16 lmp_subver, u16 hci_rev,
- u8 hci_ver, u8 hci_bus)
- {
- int i;
- for (i = 0; i < ARRAY_SIZE(ic_id_table); i++) {
- if ((ic_id_table[i].match_flags & IC_MATCH_FL_LMPSUBV) &&
- (ic_id_table[i].lmp_subver != lmp_subver))
- continue;
- if ((ic_id_table[i].match_flags & IC_MATCH_FL_HCIREV) &&
- (ic_id_table[i].hci_rev != hci_rev))
- continue;
- if ((ic_id_table[i].match_flags & IC_MATCH_FL_HCIVER) &&
- (ic_id_table[i].hci_ver != hci_ver))
- continue;
- if ((ic_id_table[i].match_flags & IC_MATCH_FL_HCIBUS) &&
- (ic_id_table[i].hci_bus != hci_bus))
- continue;
- break;
- }
- if (i >= ARRAY_SIZE(ic_id_table))
- return NULL;
- return &ic_id_table[i];
- }
- static int rtl_read_rom_version(struct hci_dev *hdev, u8 *version)
- {
- struct rtl_rom_version_evt *rom_version;
- struct sk_buff *skb;
- /* Read RTL ROM version command */
- skb = __hci_cmd_sync(hdev, 0xfc6d, 0, NULL, HCI_INIT_TIMEOUT);
- if (IS_ERR(skb)) {
- rtl_dev_err(hdev, "Read ROM version failed (%ld)\n",
- PTR_ERR(skb));
- return PTR_ERR(skb);
- }
- if (skb->len != sizeof(*rom_version)) {
- rtl_dev_err(hdev, "RTL version event length mismatch\n");
- kfree_skb(skb);
- return -EIO;
- }
- rom_version = (struct rtl_rom_version_evt *)skb->data;
- rtl_dev_info(hdev, "rom_version status=%x version=%x\n",
- rom_version->status, rom_version->version);
- *version = rom_version->version;
- kfree_skb(skb);
- return 0;
- }
- static int rtlbt_parse_firmware(struct hci_dev *hdev,
- struct btrtl_device_info *btrtl_dev,
- unsigned char **_buf)
- {
- const u8 extension_sig[] = { 0x51, 0x04, 0xfd, 0x77 };
- struct rtl_epatch_header *epatch_info;
- unsigned char *buf;
- int i, len;
- size_t min_size;
- u8 opcode, length, data;
- int project_id = -1;
- const unsigned char *fwptr, *chip_id_base;
- const unsigned char *patch_length_base, *patch_offset_base;
- u32 patch_offset = 0;
- u16 patch_length, num_patches;
- static const struct {
- __u16 lmp_subver;
- __u8 id;
- } project_id_to_lmp_subver[] = {
- { RTL_ROM_LMP_8723A, 0 },
- { RTL_ROM_LMP_8723B, 1 },
- { RTL_ROM_LMP_8821A, 2 },
- { RTL_ROM_LMP_8761A, 3 },
- { RTL_ROM_LMP_8822B, 8 },
- { RTL_ROM_LMP_8723B, 9 }, /* 8723D */
- { RTL_ROM_LMP_8821A, 10 }, /* 8821C */
- };
- min_size = sizeof(struct rtl_epatch_header) + sizeof(extension_sig) + 3;
- if (btrtl_dev->fw_len < min_size)
- return -EINVAL;
- fwptr = btrtl_dev->fw_data + btrtl_dev->fw_len - sizeof(extension_sig);
- if (memcmp(fwptr, extension_sig, sizeof(extension_sig)) != 0) {
- rtl_dev_err(hdev, "extension section signature mismatch\n");
- return -EINVAL;
- }
- /* Loop from the end of the firmware parsing instructions, until
- * we find an instruction that identifies the "project ID" for the
- * hardware supported by this firwmare file.
- * Once we have that, we double-check that that project_id is suitable
- * for the hardware we are working with.
- */
- while (fwptr >= btrtl_dev->fw_data + (sizeof(*epatch_info) + 3)) {
- opcode = *--fwptr;
- length = *--fwptr;
- data = *--fwptr;
- BT_DBG("check op=%x len=%x data=%x", opcode, length, data);
- if (opcode == 0xff) /* EOF */
- break;
- if (length == 0) {
- rtl_dev_err(hdev, "found instruction with length 0\n");
- return -EINVAL;
- }
- if (opcode == 0 && length == 1) {
- project_id = data;
- break;
- }
- fwptr -= length;
- }
- if (project_id < 0) {
- rtl_dev_err(hdev, "failed to find version instruction\n");
- return -EINVAL;
- }
- /* Find project_id in table */
- for (i = 0; i < ARRAY_SIZE(project_id_to_lmp_subver); i++) {
- if (project_id == project_id_to_lmp_subver[i].id)
- break;
- }
- if (i >= ARRAY_SIZE(project_id_to_lmp_subver)) {
- rtl_dev_err(hdev, "unknown project id %d\n", project_id);
- return -EINVAL;
- }
- if (btrtl_dev->ic_info->lmp_subver !=
- project_id_to_lmp_subver[i].lmp_subver) {
- rtl_dev_err(hdev, "firmware is for %x but this is a %x\n",
- project_id_to_lmp_subver[i].lmp_subver,
- btrtl_dev->ic_info->lmp_subver);
- return -EINVAL;
- }
- epatch_info = (struct rtl_epatch_header *)btrtl_dev->fw_data;
- if (memcmp(epatch_info->signature, RTL_EPATCH_SIGNATURE, 8) != 0) {
- rtl_dev_err(hdev, "bad EPATCH signature\n");
- return -EINVAL;
- }
- num_patches = le16_to_cpu(epatch_info->num_patches);
- BT_DBG("fw_version=%x, num_patches=%d",
- le32_to_cpu(epatch_info->fw_version), num_patches);
- /* After the rtl_epatch_header there is a funky patch metadata section.
- * Assuming 2 patches, the layout is:
- * ChipID1 ChipID2 PatchLength1 PatchLength2 PatchOffset1 PatchOffset2
- *
- * Find the right patch for this chip.
- */
- min_size += 8 * num_patches;
- if (btrtl_dev->fw_len < min_size)
- return -EINVAL;
- chip_id_base = btrtl_dev->fw_data + sizeof(struct rtl_epatch_header);
- patch_length_base = chip_id_base + (sizeof(u16) * num_patches);
- patch_offset_base = patch_length_base + (sizeof(u16) * num_patches);
- for (i = 0; i < num_patches; i++) {
- u16 chip_id = get_unaligned_le16(chip_id_base +
- (i * sizeof(u16)));
- if (chip_id == btrtl_dev->rom_version + 1) {
- patch_length = get_unaligned_le16(patch_length_base +
- (i * sizeof(u16)));
- patch_offset = get_unaligned_le32(patch_offset_base +
- (i * sizeof(u32)));
- break;
- }
- }
- if (!patch_offset) {
- rtl_dev_err(hdev, "didn't find patch for chip id %d",
- btrtl_dev->rom_version);
- return -EINVAL;
- }
- BT_DBG("length=%x offset=%x index %d", patch_length, patch_offset, i);
- min_size = patch_offset + patch_length;
- if (btrtl_dev->fw_len < min_size)
- return -EINVAL;
- /* Copy the firmware into a new buffer and write the version at
- * the end.
- */
- len = patch_length;
- buf = kmemdup(btrtl_dev->fw_data + patch_offset, patch_length,
- GFP_KERNEL);
- if (!buf)
- return -ENOMEM;
- memcpy(buf + patch_length - 4, &epatch_info->fw_version, 4);
- *_buf = buf;
- return len;
- }
- static int rtl_download_firmware(struct hci_dev *hdev,
- const unsigned char *data, int fw_len)
- {
- struct rtl_download_cmd *dl_cmd;
- int frag_num = fw_len / RTL_FRAG_LEN + 1;
- int frag_len = RTL_FRAG_LEN;
- int ret = 0;
- int i;
- dl_cmd = kmalloc(sizeof(struct rtl_download_cmd), GFP_KERNEL);
- if (!dl_cmd)
- return -ENOMEM;
- for (i = 0; i < frag_num; i++) {
- struct sk_buff *skb;
- BT_DBG("download fw (%d/%d)", i, frag_num);
- dl_cmd->index = i;
- if (i == (frag_num - 1)) {
- dl_cmd->index |= 0x80; /* data end */
- frag_len = fw_len % RTL_FRAG_LEN;
- }
- memcpy(dl_cmd->data, data, frag_len);
- /* Send download command */
- skb = __hci_cmd_sync(hdev, 0xfc20, frag_len + 1, dl_cmd,
- HCI_INIT_TIMEOUT);
- if (IS_ERR(skb)) {
- rtl_dev_err(hdev, "download fw command failed (%ld)\n",
- PTR_ERR(skb));
- ret = -PTR_ERR(skb);
- goto out;
- }
- if (skb->len != sizeof(struct rtl_download_response)) {
- rtl_dev_err(hdev, "download fw event length mismatch\n");
- kfree_skb(skb);
- ret = -EIO;
- goto out;
- }
- kfree_skb(skb);
- data += RTL_FRAG_LEN;
- }
- out:
- kfree(dl_cmd);
- return ret;
- }
- static int rtl_load_file(struct hci_dev *hdev, const char *name, u8 **buff)
- {
- const struct firmware *fw;
- int ret;
- rtl_dev_info(hdev, "rtl: loading %s\n", name);
- ret = request_firmware(&fw, name, &hdev->dev);
- if (ret < 0)
- return ret;
- ret = fw->size;
- *buff = kmemdup(fw->data, ret, GFP_KERNEL);
- if (!*buff)
- ret = -ENOMEM;
- release_firmware(fw);
- return ret;
- }
- static int btrtl_setup_rtl8723a(struct hci_dev *hdev,
- struct btrtl_device_info *btrtl_dev)
- {
- if (btrtl_dev->fw_len < 8)
- return -EINVAL;
- /* Check that the firmware doesn't have the epatch signature
- * (which is only for RTL8723B and newer).
- */
- if (!memcmp(btrtl_dev->fw_data, RTL_EPATCH_SIGNATURE, 8)) {
- rtl_dev_err(hdev, "unexpected EPATCH signature!\n");
- return -EINVAL;
- }
- return rtl_download_firmware(hdev, btrtl_dev->fw_data,
- btrtl_dev->fw_len);
- }
- static int btrtl_setup_rtl8723b(struct hci_dev *hdev,
- struct btrtl_device_info *btrtl_dev)
- {
- unsigned char *fw_data = NULL;
- int ret;
- u8 *tbuff;
- ret = rtlbt_parse_firmware(hdev, btrtl_dev, &fw_data);
- if (ret < 0)
- goto out;
- if (btrtl_dev->cfg_len > 0) {
- tbuff = kzalloc(ret + btrtl_dev->cfg_len, GFP_KERNEL);
- if (!tbuff) {
- ret = -ENOMEM;
- goto out;
- }
- memcpy(tbuff, fw_data, ret);
- kfree(fw_data);
- memcpy(tbuff + ret, btrtl_dev->cfg_data, btrtl_dev->cfg_len);
- ret += btrtl_dev->cfg_len;
- fw_data = tbuff;
- }
- rtl_dev_info(hdev, "cfg_sz %d, total sz %d\n", btrtl_dev->cfg_len, ret);
- ret = rtl_download_firmware(hdev, fw_data, ret);
- out:
- kfree(fw_data);
- return ret;
- }
- static struct sk_buff *btrtl_read_local_version(struct hci_dev *hdev)
- {
- struct sk_buff *skb;
- skb = __hci_cmd_sync(hdev, HCI_OP_READ_LOCAL_VERSION, 0, NULL,
- HCI_INIT_TIMEOUT);
- if (IS_ERR(skb)) {
- rtl_dev_err(hdev, "HCI_OP_READ_LOCAL_VERSION failed (%ld)\n",
- PTR_ERR(skb));
- return skb;
- }
- if (skb->len != sizeof(struct hci_rp_read_local_version)) {
- rtl_dev_err(hdev, "HCI_OP_READ_LOCAL_VERSION event length mismatch\n");
- kfree_skb(skb);
- return ERR_PTR(-EIO);
- }
- return skb;
- }
- void btrtl_free(struct btrtl_device_info *btrtl_dev)
- {
- kfree(btrtl_dev->fw_data);
- kfree(btrtl_dev->cfg_data);
- kfree(btrtl_dev);
- }
- EXPORT_SYMBOL_GPL(btrtl_free);
- struct btrtl_device_info *btrtl_initialize(struct hci_dev *hdev,
- const char *postfix)
- {
- struct btrtl_device_info *btrtl_dev;
- struct sk_buff *skb;
- struct hci_rp_read_local_version *resp;
- char cfg_name[40];
- u16 hci_rev, lmp_subver;
- u8 hci_ver;
- int ret;
- btrtl_dev = kzalloc(sizeof(*btrtl_dev), GFP_KERNEL);
- if (!btrtl_dev) {
- ret = -ENOMEM;
- goto err_alloc;
- }
- skb = btrtl_read_local_version(hdev);
- if (IS_ERR(skb)) {
- ret = PTR_ERR(skb);
- goto err_free;
- }
- resp = (struct hci_rp_read_local_version *)skb->data;
- rtl_dev_info(hdev, "rtl: examining hci_ver=%02x hci_rev=%04x lmp_ver=%02x lmp_subver=%04x\n",
- resp->hci_ver, resp->hci_rev,
- resp->lmp_ver, resp->lmp_subver);
- hci_ver = resp->hci_ver;
- hci_rev = le16_to_cpu(resp->hci_rev);
- lmp_subver = le16_to_cpu(resp->lmp_subver);
- kfree_skb(skb);
- btrtl_dev->ic_info = btrtl_match_ic(lmp_subver, hci_rev, hci_ver,
- hdev->bus);
- if (!btrtl_dev->ic_info) {
- rtl_dev_info(hdev, "rtl: unknown IC info, lmp subver %04x, hci rev %04x, hci ver %04x",
- lmp_subver, hci_rev, hci_ver);
- return btrtl_dev;
- }
- if (btrtl_dev->ic_info->has_rom_version) {
- ret = rtl_read_rom_version(hdev, &btrtl_dev->rom_version);
- if (ret)
- goto err_free;
- }
- btrtl_dev->fw_len = rtl_load_file(hdev, btrtl_dev->ic_info->fw_name,
- &btrtl_dev->fw_data);
- if (btrtl_dev->fw_len < 0) {
- rtl_dev_err(hdev, "firmware file %s not found\n",
- btrtl_dev->ic_info->fw_name);
- ret = btrtl_dev->fw_len;
- goto err_free;
- }
- if (btrtl_dev->ic_info->cfg_name) {
- if (postfix) {
- snprintf(cfg_name, sizeof(cfg_name), "%s-%s.bin",
- btrtl_dev->ic_info->cfg_name, postfix);
- } else {
- snprintf(cfg_name, sizeof(cfg_name), "%s.bin",
- btrtl_dev->ic_info->cfg_name);
- }
- btrtl_dev->cfg_len = rtl_load_file(hdev, cfg_name,
- &btrtl_dev->cfg_data);
- if (btrtl_dev->ic_info->config_needed &&
- btrtl_dev->cfg_len <= 0) {
- rtl_dev_err(hdev, "mandatory config file %s not found\n",
- btrtl_dev->ic_info->cfg_name);
- ret = btrtl_dev->cfg_len;
- goto err_free;
- }
- }
- return btrtl_dev;
- err_free:
- btrtl_free(btrtl_dev);
- err_alloc:
- return ERR_PTR(ret);
- }
- EXPORT_SYMBOL_GPL(btrtl_initialize);
- int btrtl_download_firmware(struct hci_dev *hdev,
- struct btrtl_device_info *btrtl_dev)
- {
- /* Match a set of subver values that correspond to stock firmware,
- * which is not compatible with standard btusb.
- * If matched, upload an alternative firmware that does conform to
- * standard btusb. Once that firmware is uploaded, the subver changes
- * to a different value.
- */
- if (!btrtl_dev->ic_info) {
- rtl_dev_info(hdev, "rtl: assuming no firmware upload needed\n");
- return 0;
- }
- switch (btrtl_dev->ic_info->lmp_subver) {
- case RTL_ROM_LMP_8723A:
- case RTL_ROM_LMP_3499:
- return btrtl_setup_rtl8723a(hdev, btrtl_dev);
- case RTL_ROM_LMP_8723B:
- case RTL_ROM_LMP_8821A:
- case RTL_ROM_LMP_8761A:
- case RTL_ROM_LMP_8822B:
- return btrtl_setup_rtl8723b(hdev, btrtl_dev);
- default:
- rtl_dev_info(hdev, "rtl: assuming no firmware upload needed\n");
- return 0;
- }
- }
- EXPORT_SYMBOL_GPL(btrtl_download_firmware);
- int btrtl_setup_realtek(struct hci_dev *hdev)
- {
- struct btrtl_device_info *btrtl_dev;
- int ret;
- btrtl_dev = btrtl_initialize(hdev, NULL);
- if (IS_ERR(btrtl_dev))
- return PTR_ERR(btrtl_dev);
- ret = btrtl_download_firmware(hdev, btrtl_dev);
- btrtl_free(btrtl_dev);
- return ret;
- }
- EXPORT_SYMBOL_GPL(btrtl_setup_realtek);
- int btrtl_shutdown_realtek(struct hci_dev *hdev)
- {
- struct sk_buff *skb;
- int ret;
- /* According to the vendor driver, BT must be reset on close to avoid
- * firmware crash.
- */
- skb = __hci_cmd_sync(hdev, HCI_OP_RESET, 0, NULL, HCI_INIT_TIMEOUT);
- if (IS_ERR(skb)) {
- ret = PTR_ERR(skb);
- bt_dev_err(hdev, "HCI reset during shutdown failed");
- return ret;
- }
- kfree_skb(skb);
- return 0;
- }
- EXPORT_SYMBOL_GPL(btrtl_shutdown_realtek);
- static unsigned int btrtl_convert_baudrate(u32 device_baudrate)
- {
- switch (device_baudrate) {
- case 0x0252a00a:
- return 230400;
- case 0x05f75004:
- return 921600;
- case 0x00005004:
- return 1000000;
- case 0x04928002:
- case 0x01128002:
- return 1500000;
- case 0x00005002:
- return 2000000;
- case 0x0000b001:
- return 2500000;
- case 0x04928001:
- return 3000000;
- case 0x052a6001:
- return 3500000;
- case 0x00005001:
- return 4000000;
- case 0x0252c014:
- default:
- return 115200;
- }
- }
- int btrtl_get_uart_settings(struct hci_dev *hdev,
- struct btrtl_device_info *btrtl_dev,
- unsigned int *controller_baudrate,
- u32 *device_baudrate, bool *flow_control)
- {
- struct rtl_vendor_config *config;
- struct rtl_vendor_config_entry *entry;
- int i, total_data_len;
- bool found = false;
- total_data_len = btrtl_dev->cfg_len - sizeof(*config);
- if (total_data_len <= 0) {
- rtl_dev_warn(hdev, "no config loaded\n");
- return -EINVAL;
- }
- config = (struct rtl_vendor_config *)btrtl_dev->cfg_data;
- if (le32_to_cpu(config->signature) != RTL_CONFIG_MAGIC) {
- rtl_dev_err(hdev, "invalid config magic\n");
- return -EINVAL;
- }
- if (total_data_len < le16_to_cpu(config->total_len)) {
- rtl_dev_err(hdev, "config is too short\n");
- return -EINVAL;
- }
- for (i = 0; i < total_data_len; ) {
- entry = ((void *)config->entry) + i;
- switch (le16_to_cpu(entry->offset)) {
- case 0xc:
- if (entry->len < sizeof(*device_baudrate)) {
- rtl_dev_err(hdev, "invalid UART config entry\n");
- return -EINVAL;
- }
- *device_baudrate = get_unaligned_le32(entry->data);
- *controller_baudrate = btrtl_convert_baudrate(
- *device_baudrate);
- if (entry->len >= 13)
- *flow_control = !!(entry->data[12] & BIT(2));
- else
- *flow_control = false;
- found = true;
- break;
- default:
- rtl_dev_dbg(hdev, "skipping config entry 0x%x (len %u)\n",
- le16_to_cpu(entry->offset), entry->len);
- break;
- };
- i += sizeof(*entry) + entry->len;
- }
- if (!found) {
- rtl_dev_err(hdev, "no UART config entry found\n");
- return -ENOENT;
- }
- rtl_dev_dbg(hdev, "device baudrate = 0x%08x\n", *device_baudrate);
- rtl_dev_dbg(hdev, "controller baudrate = %u\n", *controller_baudrate);
- rtl_dev_dbg(hdev, "flow control %d\n", *flow_control);
- return 0;
- }
- EXPORT_SYMBOL_GPL(btrtl_get_uart_settings);
- MODULE_AUTHOR("Daniel Drake <drake@endlessm.com>");
- MODULE_DESCRIPTION("Bluetooth support for Realtek devices ver " VERSION);
- MODULE_VERSION(VERSION);
- MODULE_LICENSE("GPL");
- MODULE_FIRMWARE("rtl_bt/rtl8723a_fw.bin");
- MODULE_FIRMWARE("rtl_bt/rtl8723b_fw.bin");
- MODULE_FIRMWARE("rtl_bt/rtl8723b_config.bin");
- MODULE_FIRMWARE("rtl_bt/rtl8723bs_fw.bin");
- MODULE_FIRMWARE("rtl_bt/rtl8723bs_config.bin");
- MODULE_FIRMWARE("rtl_bt/rtl8723ds_fw.bin");
- MODULE_FIRMWARE("rtl_bt/rtl8723ds_config.bin");
- MODULE_FIRMWARE("rtl_bt/rtl8761a_fw.bin");
- MODULE_FIRMWARE("rtl_bt/rtl8761a_config.bin");
- MODULE_FIRMWARE("rtl_bt/rtl8821a_fw.bin");
- MODULE_FIRMWARE("rtl_bt/rtl8821a_config.bin");
- MODULE_FIRMWARE("rtl_bt/rtl8822b_fw.bin");
- MODULE_FIRMWARE("rtl_bt/rtl8822b_config.bin");
|