提交 22ac1916 编写于 作者: H Hans de Goede 提交者: Marcel Holtmann

Bluetooth: btbcm: Allow using btbcm_initialize() for reinit

btbcm_finalize() does a re-init of the controller, which is almost the
same as the initial init. Modify btbcm_initialize() so that it can be
used for this re-init and modify btbcm_finalize() to use it.

As an added bonus this also makes the dev_info from btbcm_finalize()
use the proper hw_name instead of always printing "BCM".
Signed-off-by: NHans de Goede <hdegoede@redhat.com>
Signed-off-by: NMarcel Holtmann <marcel@holtmann.org>
上级 fec0de23
...@@ -346,7 +346,8 @@ static const struct bcm_subver_table bcm_usb_subver_table[] = { ...@@ -346,7 +346,8 @@ static const struct bcm_subver_table bcm_usb_subver_table[] = {
{ } { }
}; };
int btbcm_initialize(struct hci_dev *hdev, char *fw_name, size_t len) int btbcm_initialize(struct hci_dev *hdev, char *fw_name, size_t len,
bool reinit)
{ {
u16 subver, rev, pid, vid; u16 subver, rev, pid, vid;
const char *hw_name = NULL; const char *hw_name = NULL;
...@@ -371,9 +372,11 @@ int btbcm_initialize(struct hci_dev *hdev, char *fw_name, size_t len) ...@@ -371,9 +372,11 @@ int btbcm_initialize(struct hci_dev *hdev, char *fw_name, size_t len)
kfree_skb(skb); kfree_skb(skb);
/* Read controller information */ /* Read controller information */
err = btbcm_read_info(hdev); if (!reinit) {
if (err) err = btbcm_read_info(hdev);
return err; if (err)
return err;
}
/* Upper nibble of rev should be between 0 and 3? */ /* Upper nibble of rev should be between 0 and 3? */
if (((rev & 0xf000) >> 12) > 3) if (((rev & 0xf000) >> 12) > 3)
...@@ -416,30 +419,14 @@ EXPORT_SYMBOL_GPL(btbcm_initialize); ...@@ -416,30 +419,14 @@ EXPORT_SYMBOL_GPL(btbcm_initialize);
int btbcm_finalize(struct hci_dev *hdev) int btbcm_finalize(struct hci_dev *hdev)
{ {
struct sk_buff *skb; char fw_name[64];
struct hci_rp_read_local_version *ver;
u16 subver, rev;
int err; int err;
/* Reset */ /* Re-initialize */
err = btbcm_reset(hdev); err = btbcm_initialize(hdev, fw_name, sizeof(fw_name), true);
if (err) if (err)
return err; return err;
/* Read Local Version Info */
skb = btbcm_read_local_version(hdev);
if (IS_ERR(skb))
return PTR_ERR(skb);
ver = (struct hci_rp_read_local_version *)skb->data;
rev = le16_to_cpu(ver->hci_rev);
subver = le16_to_cpu(ver->lmp_subver);
kfree_skb(skb);
bt_dev_info(hdev, "BCM (%3.3u.%3.3u.%3.3u) build %4.4u",
(subver & 0xe000) >> 13, (subver & 0x1f00) >> 8,
(subver & 0x00ff), rev & 0x0fff);
btbcm_check_bdaddr(hdev); btbcm_check_bdaddr(hdev);
set_bit(HCI_QUIRK_STRICT_DUPLICATE_FILTER, &hdev->quirks); set_bit(HCI_QUIRK_STRICT_DUPLICATE_FILTER, &hdev->quirks);
......
...@@ -73,7 +73,8 @@ int btbcm_patchram(struct hci_dev *hdev, const struct firmware *fw); ...@@ -73,7 +73,8 @@ int btbcm_patchram(struct hci_dev *hdev, const struct firmware *fw);
int btbcm_setup_patchram(struct hci_dev *hdev); int btbcm_setup_patchram(struct hci_dev *hdev);
int btbcm_setup_apple(struct hci_dev *hdev); int btbcm_setup_apple(struct hci_dev *hdev);
int btbcm_initialize(struct hci_dev *hdev, char *fw_name, size_t len); int btbcm_initialize(struct hci_dev *hdev, char *fw_name, size_t len,
bool reinit);
int btbcm_finalize(struct hci_dev *hdev); int btbcm_finalize(struct hci_dev *hdev);
#else #else
...@@ -104,7 +105,7 @@ static inline int btbcm_setup_apple(struct hci_dev *hdev) ...@@ -104,7 +105,7 @@ static inline int btbcm_setup_apple(struct hci_dev *hdev)
} }
static inline int btbcm_initialize(struct hci_dev *hdev, char *fw_name, static inline int btbcm_initialize(struct hci_dev *hdev, char *fw_name,
size_t len) size_t len, bool reinit)
{ {
return 0; return 0;
} }
......
...@@ -501,7 +501,7 @@ static int bcm_setup(struct hci_uart *hu) ...@@ -501,7 +501,7 @@ static int bcm_setup(struct hci_uart *hu)
hu->hdev->set_diag = bcm_set_diag; hu->hdev->set_diag = bcm_set_diag;
hu->hdev->set_bdaddr = btbcm_set_bdaddr; hu->hdev->set_bdaddr = btbcm_set_bdaddr;
err = btbcm_initialize(hu->hdev, fw_name, sizeof(fw_name)); err = btbcm_initialize(hu->hdev, fw_name, sizeof(fw_name), false);
if (err) if (err)
return err; return err;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册