1 // SPDX-License-Identifier: GPL-2.0-or-later 2 /* 3 * Bluetooth support for Realtek devices 4 * 5 * Copyright (C) 2015 Endless Mobile, Inc. 6 */ 7 8 #include <linux/module.h> 9 #include <linux/firmware.h> 10 #include <asm/unaligned.h> 11 #include <linux/usb.h> 12 13 #include <net/bluetooth/bluetooth.h> 14 #include <net/bluetooth/hci_core.h> 15 16 #include "btrtl.h" 17 18 #define VERSION "0.1" 19 20 #define RTL_EPATCH_SIGNATURE "Realtech" 21 #define RTL_ROM_LMP_8723A 0x1200 22 #define RTL_ROM_LMP_8723B 0x8723 23 #define RTL_ROM_LMP_8821A 0x8821 24 #define RTL_ROM_LMP_8761A 0x8761 25 #define RTL_ROM_LMP_8822B 0x8822 26 #define RTL_ROM_LMP_8852A 0x8852 27 #define RTL_CONFIG_MAGIC 0x8723ab55 28 29 #define IC_MATCH_FL_LMPSUBV (1 << 0) 30 #define IC_MATCH_FL_HCIREV (1 << 1) 31 #define IC_MATCH_FL_HCIVER (1 << 2) 32 #define IC_MATCH_FL_HCIBUS (1 << 3) 33 #define IC_INFO(lmps, hcir, hciv, bus) \ 34 .match_flags = IC_MATCH_FL_LMPSUBV | IC_MATCH_FL_HCIREV | \ 35 IC_MATCH_FL_HCIVER | IC_MATCH_FL_HCIBUS, \ 36 .lmp_subver = (lmps), \ 37 .hci_rev = (hcir), \ 38 .hci_ver = (hciv), \ 39 .hci_bus = (bus) 40 41 enum btrtl_chip_id { 42 CHIP_ID_8723A, 43 CHIP_ID_8723B, 44 CHIP_ID_8821A, 45 CHIP_ID_8761A, 46 CHIP_ID_8822B = 8, 47 CHIP_ID_8723D, 48 CHIP_ID_8821C, 49 CHIP_ID_8822C = 13, 50 CHIP_ID_8761B, 51 CHIP_ID_8852A = 18, 52 }; 53 54 struct id_table { 55 __u16 match_flags; 56 __u16 lmp_subver; 57 __u16 hci_rev; 58 __u8 hci_ver; 59 __u8 hci_bus; 60 bool config_needed; 61 bool has_rom_version; 62 bool has_msft_ext; 63 char *fw_name; 64 char *cfg_name; 65 }; 66 67 struct btrtl_device_info { 68 const struct id_table *ic_info; 69 u8 rom_version; 70 u8 *fw_data; 71 int fw_len; 72 u8 *cfg_data; 73 int cfg_len; 74 bool drop_fw; 75 int project_id; 76 }; 77 78 static const struct id_table ic_id_table[] = { 79 /* 8723A */ 80 { IC_INFO(RTL_ROM_LMP_8723A, 0xb, 0x6, HCI_USB), 81 .config_needed = false, 82 .has_rom_version = false, 83 .fw_name = "rtl_bt/rtl8723a_fw.bin", 84 .cfg_name = NULL }, 85 86 /* 8723BS */ 87 { IC_INFO(RTL_ROM_LMP_8723B, 0xb, 0x6, HCI_UART), 88 .config_needed = true, 89 .has_rom_version = true, 90 .fw_name = "rtl_bt/rtl8723bs_fw.bin", 91 .cfg_name = "rtl_bt/rtl8723bs_config" }, 92 93 /* 8723B */ 94 { IC_INFO(RTL_ROM_LMP_8723B, 0xb, 0x6, HCI_USB), 95 .config_needed = false, 96 .has_rom_version = true, 97 .fw_name = "rtl_bt/rtl8723b_fw.bin", 98 .cfg_name = "rtl_bt/rtl8723b_config" }, 99 100 /* 8723D */ 101 { IC_INFO(RTL_ROM_LMP_8723B, 0xd, 0x8, HCI_USB), 102 .config_needed = true, 103 .has_rom_version = true, 104 .fw_name = "rtl_bt/rtl8723d_fw.bin", 105 .cfg_name = "rtl_bt/rtl8723d_config" }, 106 107 /* 8723DS */ 108 { IC_INFO(RTL_ROM_LMP_8723B, 0xd, 0x8, HCI_UART), 109 .config_needed = true, 110 .has_rom_version = true, 111 .fw_name = "rtl_bt/rtl8723ds_fw.bin", 112 .cfg_name = "rtl_bt/rtl8723ds_config" }, 113 114 /* 8821A */ 115 { IC_INFO(RTL_ROM_LMP_8821A, 0xa, 0x6, HCI_USB), 116 .config_needed = false, 117 .has_rom_version = true, 118 .fw_name = "rtl_bt/rtl8821a_fw.bin", 119 .cfg_name = "rtl_bt/rtl8821a_config" }, 120 121 /* 8821C */ 122 { IC_INFO(RTL_ROM_LMP_8821A, 0xc, 0x8, HCI_USB), 123 .config_needed = false, 124 .has_rom_version = true, 125 .has_msft_ext = true, 126 .fw_name = "rtl_bt/rtl8821c_fw.bin", 127 .cfg_name = "rtl_bt/rtl8821c_config" }, 128 129 /* 8761A */ 130 { IC_INFO(RTL_ROM_LMP_8761A, 0xa, 0x6, HCI_USB), 131 .config_needed = false, 132 .has_rom_version = true, 133 .fw_name = "rtl_bt/rtl8761a_fw.bin", 134 .cfg_name = "rtl_bt/rtl8761a_config" }, 135 136 /* 8761B */ 137 { IC_INFO(RTL_ROM_LMP_8761A, 0xb, 0xa, HCI_UART), 138 .config_needed = false, 139 .has_rom_version = true, 140 .has_msft_ext = true, 141 .fw_name = "rtl_bt/rtl8761b_fw.bin", 142 .cfg_name = "rtl_bt/rtl8761b_config" }, 143 144 /* 8761BU */ 145 { IC_INFO(RTL_ROM_LMP_8761A, 0xb, 0xa, HCI_USB), 146 .config_needed = false, 147 .has_rom_version = true, 148 .fw_name = "rtl_bt/rtl8761bu_fw.bin", 149 .cfg_name = "rtl_bt/rtl8761bu_config" }, 150 151 /* 8822C with UART interface */ 152 { IC_INFO(RTL_ROM_LMP_8822B, 0xc, 0x8, HCI_UART), 153 .config_needed = true, 154 .has_rom_version = true, 155 .has_msft_ext = true, 156 .fw_name = "rtl_bt/rtl8822cs_fw.bin", 157 .cfg_name = "rtl_bt/rtl8822cs_config" }, 158 159 /* 8822C with UART interface */ 160 { IC_INFO(RTL_ROM_LMP_8822B, 0xc, 0xa, HCI_UART), 161 .config_needed = true, 162 .has_rom_version = true, 163 .has_msft_ext = true, 164 .fw_name = "rtl_bt/rtl8822cs_fw.bin", 165 .cfg_name = "rtl_bt/rtl8822cs_config" }, 166 167 /* 8822C with USB interface */ 168 { IC_INFO(RTL_ROM_LMP_8822B, 0xc, 0xa, HCI_USB), 169 .config_needed = false, 170 .has_rom_version = true, 171 .has_msft_ext = true, 172 .fw_name = "rtl_bt/rtl8822cu_fw.bin", 173 .cfg_name = "rtl_bt/rtl8822cu_config" }, 174 175 /* 8822B */ 176 { IC_INFO(RTL_ROM_LMP_8822B, 0xb, 0x7, HCI_USB), 177 .config_needed = true, 178 .has_rom_version = true, 179 .has_msft_ext = true, 180 .fw_name = "rtl_bt/rtl8822b_fw.bin", 181 .cfg_name = "rtl_bt/rtl8822b_config" }, 182 183 /* 8852A */ 184 { IC_INFO(RTL_ROM_LMP_8852A, 0xa, 0xb, HCI_USB), 185 .config_needed = false, 186 .has_rom_version = true, 187 .has_msft_ext = true, 188 .fw_name = "rtl_bt/rtl8852au_fw.bin", 189 .cfg_name = "rtl_bt/rtl8852au_config" }, 190 }; 191 192 static const struct id_table *btrtl_match_ic(u16 lmp_subver, u16 hci_rev, 193 u8 hci_ver, u8 hci_bus) 194 { 195 int i; 196 197 for (i = 0; i < ARRAY_SIZE(ic_id_table); i++) { 198 if ((ic_id_table[i].match_flags & IC_MATCH_FL_LMPSUBV) && 199 (ic_id_table[i].lmp_subver != lmp_subver)) 200 continue; 201 if ((ic_id_table[i].match_flags & IC_MATCH_FL_HCIREV) && 202 (ic_id_table[i].hci_rev != hci_rev)) 203 continue; 204 if ((ic_id_table[i].match_flags & IC_MATCH_FL_HCIVER) && 205 (ic_id_table[i].hci_ver != hci_ver)) 206 continue; 207 if ((ic_id_table[i].match_flags & IC_MATCH_FL_HCIBUS) && 208 (ic_id_table[i].hci_bus != hci_bus)) 209 continue; 210 211 break; 212 } 213 if (i >= ARRAY_SIZE(ic_id_table)) 214 return NULL; 215 216 return &ic_id_table[i]; 217 } 218 219 static struct sk_buff *btrtl_read_local_version(struct hci_dev *hdev) 220 { 221 struct sk_buff *skb; 222 223 skb = __hci_cmd_sync(hdev, HCI_OP_READ_LOCAL_VERSION, 0, NULL, 224 HCI_INIT_TIMEOUT); 225 if (IS_ERR(skb)) { 226 rtl_dev_err(hdev, "HCI_OP_READ_LOCAL_VERSION failed (%ld)", 227 PTR_ERR(skb)); 228 return skb; 229 } 230 231 if (skb->len != sizeof(struct hci_rp_read_local_version)) { 232 rtl_dev_err(hdev, "HCI_OP_READ_LOCAL_VERSION event length mismatch"); 233 kfree_skb(skb); 234 return ERR_PTR(-EIO); 235 } 236 237 return skb; 238 } 239 240 static int rtl_read_rom_version(struct hci_dev *hdev, u8 *version) 241 { 242 struct rtl_rom_version_evt *rom_version; 243 struct sk_buff *skb; 244 245 /* Read RTL ROM version command */ 246 skb = __hci_cmd_sync(hdev, 0xfc6d, 0, NULL, HCI_INIT_TIMEOUT); 247 if (IS_ERR(skb)) { 248 rtl_dev_err(hdev, "Read ROM version failed (%ld)", 249 PTR_ERR(skb)); 250 return PTR_ERR(skb); 251 } 252 253 if (skb->len != sizeof(*rom_version)) { 254 rtl_dev_err(hdev, "version event length mismatch"); 255 kfree_skb(skb); 256 return -EIO; 257 } 258 259 rom_version = (struct rtl_rom_version_evt *)skb->data; 260 rtl_dev_info(hdev, "rom_version status=%x version=%x", 261 rom_version->status, rom_version->version); 262 263 *version = rom_version->version; 264 265 kfree_skb(skb); 266 return 0; 267 } 268 269 static int rtlbt_parse_firmware(struct hci_dev *hdev, 270 struct btrtl_device_info *btrtl_dev, 271 unsigned char **_buf) 272 { 273 static const u8 extension_sig[] = { 0x51, 0x04, 0xfd, 0x77 }; 274 struct rtl_epatch_header *epatch_info; 275 unsigned char *buf; 276 int i, len; 277 size_t min_size; 278 u8 opcode, length, data; 279 int project_id = -1; 280 const unsigned char *fwptr, *chip_id_base; 281 const unsigned char *patch_length_base, *patch_offset_base; 282 u32 patch_offset = 0; 283 u16 patch_length, num_patches; 284 static const struct { 285 __u16 lmp_subver; 286 __u8 id; 287 } project_id_to_lmp_subver[] = { 288 { RTL_ROM_LMP_8723A, 0 }, 289 { RTL_ROM_LMP_8723B, 1 }, 290 { RTL_ROM_LMP_8821A, 2 }, 291 { RTL_ROM_LMP_8761A, 3 }, 292 { RTL_ROM_LMP_8822B, 8 }, 293 { RTL_ROM_LMP_8723B, 9 }, /* 8723D */ 294 { RTL_ROM_LMP_8821A, 10 }, /* 8821C */ 295 { RTL_ROM_LMP_8822B, 13 }, /* 8822C */ 296 { RTL_ROM_LMP_8761A, 14 }, /* 8761B */ 297 { RTL_ROM_LMP_8852A, 18 }, /* 8852A */ 298 }; 299 300 min_size = sizeof(struct rtl_epatch_header) + sizeof(extension_sig) + 3; 301 if (btrtl_dev->fw_len < min_size) 302 return -EINVAL; 303 304 fwptr = btrtl_dev->fw_data + btrtl_dev->fw_len - sizeof(extension_sig); 305 if (memcmp(fwptr, extension_sig, sizeof(extension_sig)) != 0) { 306 rtl_dev_err(hdev, "extension section signature mismatch"); 307 return -EINVAL; 308 } 309 310 /* Loop from the end of the firmware parsing instructions, until 311 * we find an instruction that identifies the "project ID" for the 312 * hardware supported by this firwmare file. 313 * Once we have that, we double-check that that project_id is suitable 314 * for the hardware we are working with. 315 */ 316 while (fwptr >= btrtl_dev->fw_data + (sizeof(*epatch_info) + 3)) { 317 opcode = *--fwptr; 318 length = *--fwptr; 319 data = *--fwptr; 320 321 BT_DBG("check op=%x len=%x data=%x", opcode, length, data); 322 323 if (opcode == 0xff) /* EOF */ 324 break; 325 326 if (length == 0) { 327 rtl_dev_err(hdev, "found instruction with length 0"); 328 return -EINVAL; 329 } 330 331 if (opcode == 0 && length == 1) { 332 project_id = data; 333 break; 334 } 335 336 fwptr -= length; 337 } 338 339 if (project_id < 0) { 340 rtl_dev_err(hdev, "failed to find version instruction"); 341 return -EINVAL; 342 } 343 344 /* Find project_id in table */ 345 for (i = 0; i < ARRAY_SIZE(project_id_to_lmp_subver); i++) { 346 if (project_id == project_id_to_lmp_subver[i].id) { 347 btrtl_dev->project_id = project_id; 348 break; 349 } 350 } 351 352 if (i >= ARRAY_SIZE(project_id_to_lmp_subver)) { 353 rtl_dev_err(hdev, "unknown project id %d", project_id); 354 return -EINVAL; 355 } 356 357 if (btrtl_dev->ic_info->lmp_subver != 358 project_id_to_lmp_subver[i].lmp_subver) { 359 rtl_dev_err(hdev, "firmware is for %x but this is a %x", 360 project_id_to_lmp_subver[i].lmp_subver, 361 btrtl_dev->ic_info->lmp_subver); 362 return -EINVAL; 363 } 364 365 epatch_info = (struct rtl_epatch_header *)btrtl_dev->fw_data; 366 if (memcmp(epatch_info->signature, RTL_EPATCH_SIGNATURE, 8) != 0) { 367 rtl_dev_err(hdev, "bad EPATCH signature"); 368 return -EINVAL; 369 } 370 371 num_patches = le16_to_cpu(epatch_info->num_patches); 372 BT_DBG("fw_version=%x, num_patches=%d", 373 le32_to_cpu(epatch_info->fw_version), num_patches); 374 375 /* After the rtl_epatch_header there is a funky patch metadata section. 376 * Assuming 2 patches, the layout is: 377 * ChipID1 ChipID2 PatchLength1 PatchLength2 PatchOffset1 PatchOffset2 378 * 379 * Find the right patch for this chip. 380 */ 381 min_size += 8 * num_patches; 382 if (btrtl_dev->fw_len < min_size) 383 return -EINVAL; 384 385 chip_id_base = btrtl_dev->fw_data + sizeof(struct rtl_epatch_header); 386 patch_length_base = chip_id_base + (sizeof(u16) * num_patches); 387 patch_offset_base = patch_length_base + (sizeof(u16) * num_patches); 388 for (i = 0; i < num_patches; i++) { 389 u16 chip_id = get_unaligned_le16(chip_id_base + 390 (i * sizeof(u16))); 391 if (chip_id == btrtl_dev->rom_version + 1) { 392 patch_length = get_unaligned_le16(patch_length_base + 393 (i * sizeof(u16))); 394 patch_offset = get_unaligned_le32(patch_offset_base + 395 (i * sizeof(u32))); 396 break; 397 } 398 } 399 400 if (!patch_offset) { 401 rtl_dev_err(hdev, "didn't find patch for chip id %d", 402 btrtl_dev->rom_version); 403 return -EINVAL; 404 } 405 406 BT_DBG("length=%x offset=%x index %d", patch_length, patch_offset, i); 407 min_size = patch_offset + patch_length; 408 if (btrtl_dev->fw_len < min_size) 409 return -EINVAL; 410 411 /* Copy the firmware into a new buffer and write the version at 412 * the end. 413 */ 414 len = patch_length; 415 buf = kvmalloc(patch_length, GFP_KERNEL); 416 if (!buf) 417 return -ENOMEM; 418 419 memcpy(buf, btrtl_dev->fw_data + patch_offset, patch_length - 4); 420 memcpy(buf + patch_length - 4, &epatch_info->fw_version, 4); 421 422 *_buf = buf; 423 return len; 424 } 425 426 static int rtl_download_firmware(struct hci_dev *hdev, 427 const unsigned char *data, int fw_len) 428 { 429 struct rtl_download_cmd *dl_cmd; 430 int frag_num = fw_len / RTL_FRAG_LEN + 1; 431 int frag_len = RTL_FRAG_LEN; 432 int ret = 0; 433 int i; 434 struct sk_buff *skb; 435 struct hci_rp_read_local_version *rp; 436 437 dl_cmd = kmalloc(sizeof(struct rtl_download_cmd), GFP_KERNEL); 438 if (!dl_cmd) 439 return -ENOMEM; 440 441 for (i = 0; i < frag_num; i++) { 442 struct sk_buff *skb; 443 444 BT_DBG("download fw (%d/%d)", i, frag_num); 445 446 if (i > 0x7f) 447 dl_cmd->index = (i & 0x7f) + 1; 448 else 449 dl_cmd->index = i; 450 451 if (i == (frag_num - 1)) { 452 dl_cmd->index |= 0x80; /* data end */ 453 frag_len = fw_len % RTL_FRAG_LEN; 454 } 455 memcpy(dl_cmd->data, data, frag_len); 456 457 /* Send download command */ 458 skb = __hci_cmd_sync(hdev, 0xfc20, frag_len + 1, dl_cmd, 459 HCI_INIT_TIMEOUT); 460 if (IS_ERR(skb)) { 461 rtl_dev_err(hdev, "download fw command failed (%ld)", 462 PTR_ERR(skb)); 463 ret = PTR_ERR(skb); 464 goto out; 465 } 466 467 if (skb->len != sizeof(struct rtl_download_response)) { 468 rtl_dev_err(hdev, "download fw event length mismatch"); 469 kfree_skb(skb); 470 ret = -EIO; 471 goto out; 472 } 473 474 kfree_skb(skb); 475 data += RTL_FRAG_LEN; 476 } 477 478 skb = btrtl_read_local_version(hdev); 479 if (IS_ERR(skb)) { 480 ret = PTR_ERR(skb); 481 rtl_dev_err(hdev, "read local version failed"); 482 goto out; 483 } 484 485 rp = (struct hci_rp_read_local_version *)skb->data; 486 rtl_dev_info(hdev, "fw version 0x%04x%04x", 487 __le16_to_cpu(rp->hci_rev), __le16_to_cpu(rp->lmp_subver)); 488 kfree_skb(skb); 489 490 out: 491 kfree(dl_cmd); 492 return ret; 493 } 494 495 static int rtl_load_file(struct hci_dev *hdev, const char *name, u8 **buff) 496 { 497 const struct firmware *fw; 498 int ret; 499 500 rtl_dev_info(hdev, "loading %s", name); 501 ret = request_firmware(&fw, name, &hdev->dev); 502 if (ret < 0) 503 return ret; 504 ret = fw->size; 505 *buff = kvmalloc(fw->size, GFP_KERNEL); 506 if (*buff) 507 memcpy(*buff, fw->data, ret); 508 else 509 ret = -ENOMEM; 510 511 release_firmware(fw); 512 513 return ret; 514 } 515 516 static int btrtl_setup_rtl8723a(struct hci_dev *hdev, 517 struct btrtl_device_info *btrtl_dev) 518 { 519 if (btrtl_dev->fw_len < 8) 520 return -EINVAL; 521 522 /* Check that the firmware doesn't have the epatch signature 523 * (which is only for RTL8723B and newer). 524 */ 525 if (!memcmp(btrtl_dev->fw_data, RTL_EPATCH_SIGNATURE, 8)) { 526 rtl_dev_err(hdev, "unexpected EPATCH signature!"); 527 return -EINVAL; 528 } 529 530 return rtl_download_firmware(hdev, btrtl_dev->fw_data, 531 btrtl_dev->fw_len); 532 } 533 534 static int btrtl_setup_rtl8723b(struct hci_dev *hdev, 535 struct btrtl_device_info *btrtl_dev) 536 { 537 unsigned char *fw_data = NULL; 538 int ret; 539 u8 *tbuff; 540 541 ret = rtlbt_parse_firmware(hdev, btrtl_dev, &fw_data); 542 if (ret < 0) 543 goto out; 544 545 if (btrtl_dev->cfg_len > 0) { 546 tbuff = kvzalloc(ret + btrtl_dev->cfg_len, GFP_KERNEL); 547 if (!tbuff) { 548 ret = -ENOMEM; 549 goto out; 550 } 551 552 memcpy(tbuff, fw_data, ret); 553 kvfree(fw_data); 554 555 memcpy(tbuff + ret, btrtl_dev->cfg_data, btrtl_dev->cfg_len); 556 ret += btrtl_dev->cfg_len; 557 558 fw_data = tbuff; 559 } 560 561 rtl_dev_info(hdev, "cfg_sz %d, total sz %d", btrtl_dev->cfg_len, ret); 562 563 ret = rtl_download_firmware(hdev, fw_data, ret); 564 565 out: 566 kvfree(fw_data); 567 return ret; 568 } 569 570 void btrtl_free(struct btrtl_device_info *btrtl_dev) 571 { 572 kvfree(btrtl_dev->fw_data); 573 kvfree(btrtl_dev->cfg_data); 574 kfree(btrtl_dev); 575 } 576 EXPORT_SYMBOL_GPL(btrtl_free); 577 578 struct btrtl_device_info *btrtl_initialize(struct hci_dev *hdev, 579 const char *postfix) 580 { 581 struct btrtl_device_info *btrtl_dev; 582 struct sk_buff *skb; 583 struct hci_rp_read_local_version *resp; 584 char cfg_name[40]; 585 u16 hci_rev, lmp_subver; 586 u8 hci_ver; 587 int ret; 588 u16 opcode; 589 u8 cmd[2]; 590 591 btrtl_dev = kzalloc(sizeof(*btrtl_dev), GFP_KERNEL); 592 if (!btrtl_dev) { 593 ret = -ENOMEM; 594 goto err_alloc; 595 } 596 597 skb = btrtl_read_local_version(hdev); 598 if (IS_ERR(skb)) { 599 ret = PTR_ERR(skb); 600 goto err_free; 601 } 602 603 resp = (struct hci_rp_read_local_version *)skb->data; 604 rtl_dev_info(hdev, "examining hci_ver=%02x hci_rev=%04x lmp_ver=%02x lmp_subver=%04x", 605 resp->hci_ver, resp->hci_rev, 606 resp->lmp_ver, resp->lmp_subver); 607 608 hci_ver = resp->hci_ver; 609 hci_rev = le16_to_cpu(resp->hci_rev); 610 lmp_subver = le16_to_cpu(resp->lmp_subver); 611 612 btrtl_dev->ic_info = btrtl_match_ic(lmp_subver, hci_rev, hci_ver, 613 hdev->bus); 614 615 if (!btrtl_dev->ic_info) 616 btrtl_dev->drop_fw = true; 617 618 if (btrtl_dev->drop_fw) { 619 opcode = hci_opcode_pack(0x3f, 0x66); 620 cmd[0] = opcode & 0xff; 621 cmd[1] = opcode >> 8; 622 623 skb = bt_skb_alloc(sizeof(cmd), GFP_KERNEL); 624 if (!skb) 625 goto out_free; 626 627 skb_put_data(skb, cmd, sizeof(cmd)); 628 hci_skb_pkt_type(skb) = HCI_COMMAND_PKT; 629 630 hdev->send(hdev, skb); 631 632 /* Ensure the above vendor command is sent to controller and 633 * process has done. 634 */ 635 msleep(200); 636 637 /* Read the local version again. Expect to have the vanilla 638 * version as cold boot. 639 */ 640 skb = btrtl_read_local_version(hdev); 641 if (IS_ERR(skb)) { 642 ret = PTR_ERR(skb); 643 goto err_free; 644 } 645 646 resp = (struct hci_rp_read_local_version *)skb->data; 647 rtl_dev_info(hdev, "examining hci_ver=%02x hci_rev=%04x lmp_ver=%02x lmp_subver=%04x", 648 resp->hci_ver, resp->hci_rev, 649 resp->lmp_ver, resp->lmp_subver); 650 651 hci_ver = resp->hci_ver; 652 hci_rev = le16_to_cpu(resp->hci_rev); 653 lmp_subver = le16_to_cpu(resp->lmp_subver); 654 655 btrtl_dev->ic_info = btrtl_match_ic(lmp_subver, hci_rev, hci_ver, 656 hdev->bus); 657 } 658 out_free: 659 kfree_skb(skb); 660 661 if (!btrtl_dev->ic_info) { 662 rtl_dev_info(hdev, "unknown IC info, lmp subver %04x, hci rev %04x, hci ver %04x", 663 lmp_subver, hci_rev, hci_ver); 664 return btrtl_dev; 665 } 666 667 if (btrtl_dev->ic_info->has_rom_version) { 668 ret = rtl_read_rom_version(hdev, &btrtl_dev->rom_version); 669 if (ret) 670 goto err_free; 671 } 672 673 btrtl_dev->fw_len = rtl_load_file(hdev, btrtl_dev->ic_info->fw_name, 674 &btrtl_dev->fw_data); 675 if (btrtl_dev->fw_len < 0) { 676 rtl_dev_err(hdev, "firmware file %s not found", 677 btrtl_dev->ic_info->fw_name); 678 ret = btrtl_dev->fw_len; 679 goto err_free; 680 } 681 682 if (btrtl_dev->ic_info->cfg_name) { 683 if (postfix) { 684 snprintf(cfg_name, sizeof(cfg_name), "%s-%s.bin", 685 btrtl_dev->ic_info->cfg_name, postfix); 686 } else { 687 snprintf(cfg_name, sizeof(cfg_name), "%s.bin", 688 btrtl_dev->ic_info->cfg_name); 689 } 690 btrtl_dev->cfg_len = rtl_load_file(hdev, cfg_name, 691 &btrtl_dev->cfg_data); 692 if (btrtl_dev->ic_info->config_needed && 693 btrtl_dev->cfg_len <= 0) { 694 rtl_dev_err(hdev, "mandatory config file %s not found", 695 btrtl_dev->ic_info->cfg_name); 696 ret = btrtl_dev->cfg_len; 697 goto err_free; 698 } 699 } 700 701 /* The following chips supports the Microsoft vendor extension, 702 * therefore set the corresponding VsMsftOpCode. 703 */ 704 if (btrtl_dev->ic_info->has_msft_ext) 705 hci_set_msft_opcode(hdev, 0xFCF0); 706 707 return btrtl_dev; 708 709 err_free: 710 btrtl_free(btrtl_dev); 711 err_alloc: 712 return ERR_PTR(ret); 713 } 714 EXPORT_SYMBOL_GPL(btrtl_initialize); 715 716 int btrtl_download_firmware(struct hci_dev *hdev, 717 struct btrtl_device_info *btrtl_dev) 718 { 719 /* Match a set of subver values that correspond to stock firmware, 720 * which is not compatible with standard btusb. 721 * If matched, upload an alternative firmware that does conform to 722 * standard btusb. Once that firmware is uploaded, the subver changes 723 * to a different value. 724 */ 725 if (!btrtl_dev->ic_info) { 726 rtl_dev_info(hdev, "assuming no firmware upload needed"); 727 return 0; 728 } 729 730 switch (btrtl_dev->ic_info->lmp_subver) { 731 case RTL_ROM_LMP_8723A: 732 return btrtl_setup_rtl8723a(hdev, btrtl_dev); 733 case RTL_ROM_LMP_8723B: 734 case RTL_ROM_LMP_8821A: 735 case RTL_ROM_LMP_8761A: 736 case RTL_ROM_LMP_8822B: 737 case RTL_ROM_LMP_8852A: 738 return btrtl_setup_rtl8723b(hdev, btrtl_dev); 739 default: 740 rtl_dev_info(hdev, "assuming no firmware upload needed"); 741 return 0; 742 } 743 } 744 EXPORT_SYMBOL_GPL(btrtl_download_firmware); 745 746 void btrtl_set_quirks(struct hci_dev *hdev, struct btrtl_device_info *btrtl_dev) 747 { 748 /* Enable controller to do both LE scan and BR/EDR inquiry 749 * simultaneously. 750 */ 751 set_bit(HCI_QUIRK_SIMULTANEOUS_DISCOVERY, &hdev->quirks); 752 753 /* Enable central-peripheral role (able to create new connections with 754 * an existing connection in slave role). 755 */ 756 /* Enable WBS supported for the specific Realtek devices. */ 757 switch (btrtl_dev->project_id) { 758 case CHIP_ID_8822C: 759 case CHIP_ID_8852A: 760 set_bit(HCI_QUIRK_VALID_LE_STATES, &hdev->quirks); 761 set_bit(HCI_QUIRK_WIDEBAND_SPEECH_SUPPORTED, &hdev->quirks); 762 hci_set_aosp_capable(hdev); 763 break; 764 default: 765 rtl_dev_dbg(hdev, "Central-peripheral role not enabled."); 766 rtl_dev_dbg(hdev, "WBS supported not enabled."); 767 break; 768 } 769 } 770 EXPORT_SYMBOL_GPL(btrtl_set_quirks); 771 772 int btrtl_setup_realtek(struct hci_dev *hdev) 773 { 774 struct btrtl_device_info *btrtl_dev; 775 int ret; 776 777 btrtl_dev = btrtl_initialize(hdev, NULL); 778 if (IS_ERR(btrtl_dev)) 779 return PTR_ERR(btrtl_dev); 780 781 ret = btrtl_download_firmware(hdev, btrtl_dev); 782 783 btrtl_set_quirks(hdev, btrtl_dev); 784 785 btrtl_free(btrtl_dev); 786 return ret; 787 } 788 EXPORT_SYMBOL_GPL(btrtl_setup_realtek); 789 790 int btrtl_shutdown_realtek(struct hci_dev *hdev) 791 { 792 struct sk_buff *skb; 793 int ret; 794 795 /* According to the vendor driver, BT must be reset on close to avoid 796 * firmware crash. 797 */ 798 skb = __hci_cmd_sync(hdev, HCI_OP_RESET, 0, NULL, HCI_INIT_TIMEOUT); 799 if (IS_ERR(skb)) { 800 ret = PTR_ERR(skb); 801 bt_dev_err(hdev, "HCI reset during shutdown failed"); 802 return ret; 803 } 804 kfree_skb(skb); 805 806 return 0; 807 } 808 EXPORT_SYMBOL_GPL(btrtl_shutdown_realtek); 809 810 static unsigned int btrtl_convert_baudrate(u32 device_baudrate) 811 { 812 switch (device_baudrate) { 813 case 0x0252a00a: 814 return 230400; 815 816 case 0x05f75004: 817 return 921600; 818 819 case 0x00005004: 820 return 1000000; 821 822 case 0x04928002: 823 case 0x01128002: 824 return 1500000; 825 826 case 0x00005002: 827 return 2000000; 828 829 case 0x0000b001: 830 return 2500000; 831 832 case 0x04928001: 833 return 3000000; 834 835 case 0x052a6001: 836 return 3500000; 837 838 case 0x00005001: 839 return 4000000; 840 841 case 0x0252c014: 842 default: 843 return 115200; 844 } 845 } 846 847 int btrtl_get_uart_settings(struct hci_dev *hdev, 848 struct btrtl_device_info *btrtl_dev, 849 unsigned int *controller_baudrate, 850 u32 *device_baudrate, bool *flow_control) 851 { 852 struct rtl_vendor_config *config; 853 struct rtl_vendor_config_entry *entry; 854 int i, total_data_len; 855 bool found = false; 856 857 total_data_len = btrtl_dev->cfg_len - sizeof(*config); 858 if (total_data_len <= 0) { 859 rtl_dev_warn(hdev, "no config loaded"); 860 return -EINVAL; 861 } 862 863 config = (struct rtl_vendor_config *)btrtl_dev->cfg_data; 864 if (le32_to_cpu(config->signature) != RTL_CONFIG_MAGIC) { 865 rtl_dev_err(hdev, "invalid config magic"); 866 return -EINVAL; 867 } 868 869 if (total_data_len < le16_to_cpu(config->total_len)) { 870 rtl_dev_err(hdev, "config is too short"); 871 return -EINVAL; 872 } 873 874 for (i = 0; i < total_data_len; ) { 875 entry = ((void *)config->entry) + i; 876 877 switch (le16_to_cpu(entry->offset)) { 878 case 0xc: 879 if (entry->len < sizeof(*device_baudrate)) { 880 rtl_dev_err(hdev, "invalid UART config entry"); 881 return -EINVAL; 882 } 883 884 *device_baudrate = get_unaligned_le32(entry->data); 885 *controller_baudrate = btrtl_convert_baudrate( 886 *device_baudrate); 887 888 if (entry->len >= 13) 889 *flow_control = !!(entry->data[12] & BIT(2)); 890 else 891 *flow_control = false; 892 893 found = true; 894 break; 895 896 default: 897 rtl_dev_dbg(hdev, "skipping config entry 0x%x (len %u)", 898 le16_to_cpu(entry->offset), entry->len); 899 break; 900 } 901 902 i += sizeof(*entry) + entry->len; 903 } 904 905 if (!found) { 906 rtl_dev_err(hdev, "no UART config entry found"); 907 return -ENOENT; 908 } 909 910 rtl_dev_dbg(hdev, "device baudrate = 0x%08x", *device_baudrate); 911 rtl_dev_dbg(hdev, "controller baudrate = %u", *controller_baudrate); 912 rtl_dev_dbg(hdev, "flow control %d", *flow_control); 913 914 return 0; 915 } 916 EXPORT_SYMBOL_GPL(btrtl_get_uart_settings); 917 918 MODULE_AUTHOR("Daniel Drake <drake@endlessm.com>"); 919 MODULE_DESCRIPTION("Bluetooth support for Realtek devices ver " VERSION); 920 MODULE_VERSION(VERSION); 921 MODULE_LICENSE("GPL"); 922 MODULE_FIRMWARE("rtl_bt/rtl8723a_fw.bin"); 923 MODULE_FIRMWARE("rtl_bt/rtl8723b_fw.bin"); 924 MODULE_FIRMWARE("rtl_bt/rtl8723b_config.bin"); 925 MODULE_FIRMWARE("rtl_bt/rtl8723bs_fw.bin"); 926 MODULE_FIRMWARE("rtl_bt/rtl8723bs_config.bin"); 927 MODULE_FIRMWARE("rtl_bt/rtl8723ds_fw.bin"); 928 MODULE_FIRMWARE("rtl_bt/rtl8723ds_config.bin"); 929 MODULE_FIRMWARE("rtl_bt/rtl8761a_fw.bin"); 930 MODULE_FIRMWARE("rtl_bt/rtl8761a_config.bin"); 931 MODULE_FIRMWARE("rtl_bt/rtl8821a_fw.bin"); 932 MODULE_FIRMWARE("rtl_bt/rtl8821a_config.bin"); 933 MODULE_FIRMWARE("rtl_bt/rtl8822b_fw.bin"); 934 MODULE_FIRMWARE("rtl_bt/rtl8822b_config.bin"); 935 MODULE_FIRMWARE("rtl_bt/rtl8852au_fw.bin"); 936 MODULE_FIRMWARE("rtl_bt/rtl8852au_config.bin"); 937