linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] Bluetooth: btusb: Handle download_firmware failure cases.
@ 2021-12-06  9:25 mark-yw.chen
  2021-12-06  9:50 ` Paul Menzel
  0 siblings, 1 reply; 3+ messages in thread
From: mark-yw.chen @ 2021-12-06  9:25 UTC (permalink / raw)
  To: marcel, johan.hedberg
  Cc: mark-yw.chen, aaron.hou, kaichuan.hsieh, linux-bluetooth,
	linux-mediatek, linux-kernel

From: mark-yw.chen <mark-yw.chen@mediatek.com>

For Mediatek chipset, if there are no firmware bin or command_timeout,
the process should be terminated in btusb_mtk_setup().

Signed-off-by: mark-yw.chen <mark-yw.chen@mediatek.com>
Change-Id: I99f1d7b72fa70643d9123e7e6cdc8d0b4369ce52
---
 drivers/bluetooth/btmtk.c | 1 +
 drivers/bluetooth/btusb.c | 4 ++++
 2 files changed, 5 insertions(+)

diff --git a/drivers/bluetooth/btmtk.c b/drivers/bluetooth/btmtk.c
index c2ee5c4b975a..526dfdf1fe01 100644
--- a/drivers/bluetooth/btmtk.c
+++ b/drivers/bluetooth/btmtk.c
@@ -121,6 +121,7 @@ int btmtk_setup_firmware_79xx(struct hci_dev *hdev, const char *fwname,
 				} else {
 					bt_dev_err(hdev, "Failed wmt patch dwnld status (%d)",
 						   status);
+					err = -EIO;
 					goto err_release_fw;
 				}
 			}
diff --git a/drivers/bluetooth/btusb.c b/drivers/bluetooth/btusb.c
index ab169fc673ea..3ea04b1d0750 100644
--- a/drivers/bluetooth/btusb.c
+++ b/drivers/bluetooth/btusb.c
@@ -2554,6 +2554,10 @@ static int btusb_mtk_setup(struct hci_dev *hdev)
 			 dev_id & 0xffff, (fw_version & 0xff) + 1);
 		err = btmtk_setup_firmware_79xx(hdev, fw_bin_name,
 						btusb_mtk_hci_wmt_sync);
+		if (err < 0) {
+			bt_dev_err(hdev, "Failed to setup firmware (%d)", err);
+			return err;
+		}
 
 		/* It's Device EndPoint Reset Option Register */
 		btusb_mtk_uhw_reg_write(data, MTK_EP_RST_OPT, MTK_EP_RST_IN_OUT_OPT);
-- 
2.18.0


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] Bluetooth: btusb: Handle download_firmware failure cases.
  2021-12-06  9:25 [PATCH] Bluetooth: btusb: Handle download_firmware failure cases mark-yw.chen
@ 2021-12-06  9:50 ` Paul Menzel
  2021-12-06 14:47   ` Mark-YW Chen (陳揚文)
  0 siblings, 1 reply; 3+ messages in thread
From: Paul Menzel @ 2021-12-06  9:50 UTC (permalink / raw)
  To: mark-yw.chen
  Cc: aaron.hou, kaichuan.hsieh, linux-bluetooth, linux-mediatek,
	linux-kernel, marcel, johan.hedberg, Luiz Augusto von Dentz,
	Sean Wang

Dear Mark,


Some small nitpicks:

Am 06.12.21 um 10:25 schrieb mark-yw.chen@mediatek.com:
> From: mark-yw.chen <mark-yw.chen@mediatek.com>

Instead of the user name, maybe you can use Mark Chen (or the whole name)?

     $ git config --global user.name "Mark Chen"
     $ git commit --amend --reset-author="Mark Chen 
<mark-yw.chen@mediatek.com>"

Also could you please remove the trailing dot/period at the end of the 
git commit message summary?

> For Mediatek chipset, if there are no firmware bin or command_timeout,
> the process should be terminated in btusb_mtk_setup().

Otherwise what happens?

> Signed-off-by: mark-yw.chen <mark-yw.chen@mediatek.com>
> Change-Id: I99f1d7b72fa70643d9123e7e6cdc8d0b4369ce52

To what Gerrit instance does the Change-Id belong? Without that 
information (Reviewed-on tag?), it should be removed?

> ---
>   drivers/bluetooth/btmtk.c | 1 +
>   drivers/bluetooth/btusb.c | 4 ++++
>   2 files changed, 5 insertions(+)
> 
> diff --git a/drivers/bluetooth/btmtk.c b/drivers/bluetooth/btmtk.c
> index c2ee5c4b975a..526dfdf1fe01 100644
> --- a/drivers/bluetooth/btmtk.c
> +++ b/drivers/bluetooth/btmtk.c
> @@ -121,6 +121,7 @@ int btmtk_setup_firmware_79xx(struct hci_dev *hdev, const char *fwname,
>   				} else {
>   					bt_dev_err(hdev, "Failed wmt patch dwnld status (%d)",
>   						   status);
> +					err = -EIO;
>   					goto err_release_fw;
>   				}
>   			}
> diff --git a/drivers/bluetooth/btusb.c b/drivers/bluetooth/btusb.c
> index ab169fc673ea..3ea04b1d0750 100644
> --- a/drivers/bluetooth/btusb.c
> +++ b/drivers/bluetooth/btusb.c
> @@ -2554,6 +2554,10 @@ static int btusb_mtk_setup(struct hci_dev *hdev)
>   			 dev_id & 0xffff, (fw_version & 0xff) + 1);
>   		err = btmtk_setup_firmware_79xx(hdev, fw_bin_name,
>   						btusb_mtk_hci_wmt_sync);
> +		if (err < 0) {
> +			bt_dev_err(hdev, "Failed to setup firmware (%d)", err);

The verb is spelled with a space: set up.

Also, this error message seems unrelated to the patch in question. Maybe 
add it in a separate commit?

> +			return err;
> +		}
>   
>   		/* It's Device EndPoint Reset Option Register */
>   		btusb_mtk_uhw_reg_write(data, MTK_EP_RST_OPT, MTK_EP_RST_IN_OUT_OPT);
> 


Kind regards,

Paul

^ permalink raw reply	[flat|nested] 3+ messages in thread

* RE: [PATCH] Bluetooth: btusb: Handle download_firmware failure cases.
  2021-12-06  9:50 ` Paul Menzel
@ 2021-12-06 14:47   ` Mark-YW Chen (陳揚文)
  0 siblings, 0 replies; 3+ messages in thread
From: Mark-YW Chen (陳揚文) @ 2021-12-06 14:47 UTC (permalink / raw)
  To: Paul Menzel
  Cc: Aaron Hou (侯俊仰),
	kaichuan.hsieh, linux-bluetooth, linux-mediatek, linux-kernel,
	marcel, johan.hedberg, Luiz Augusto von Dentz, Sean Wang

Hi Paul,

Thanks for your comment.

> -----Original Message-----
> From: Paul Menzel <pmenzel@molgen.mpg.de>
> Sent: Monday, December 6, 2021 5:51 PM
> To: Mark-YW Chen (陳揚文) <Mark-YW.Chen@mediatek.com>
> Cc: Aaron Hou (侯俊仰) <Aaron.Hou@mediatek.com>;
> kaichuan.hsieh@canonical.com; linux-bluetooth@vger.kernel.org;
> linux-mediatek@lists.infradead.org; linux-kernel@vger.kernel.org;
> marcel@holtmann.org; johan.hedberg@gmail.com; Luiz Augusto von Dentz
> <luiz.dentz@gmail.com>; Sean Wang <Sean.Wang@mediatek.com>
> Subject: Re: [PATCH] Bluetooth: btusb: Handle download_firmware failure
> cases.
> 
> Dear Mark,
> 
> 
> Some small nitpicks:
> 
> Am 06.12.21 um 10:25 schrieb mark-yw.chen@mediatek.com:
> > From: mark-yw.chen <mark-yw.chen@mediatek.com>
> 
> Instead of the user name, maybe you can use Mark Chen (or the whole
> name)?
> 
>      $ git config --global user.name "Mark Chen"
>      $ git commit --amend --reset-author="Mark Chen
> <mark-yw.chen@mediatek.com>"
> 
> Also could you please remove the trailing dot/period at the end of the git
> commit message summary?
> 
> > For Mediatek chipset, if there are no firmware bin or command_timeout,
> > the process should be terminated in btusb_mtk_setup().
> 
> Otherwise what happens?

For Mediatek Chipset, it cannot be enabled if there are something wrong in btmtk_setup_firmware_79xx().

err = btmtk_setup_firmware_79xx(hdev, fw_bin_name,
                             btusb_mtk_hci_wmt_sync);

/* Enable Bluetooth protocol */
param = 1;
wmt_params.op = BTMTK_WMT_FUNC_CTRL;
wmt_params.flag = 0;
wmt_params.dlen = sizeof(param);
wmt_params.data = &param;
wmt_params.status = NULL;

err = btusb_mtk_hci_wmt_sync(hdev, &wmt_params);
if (err < 0) {
|       bt_dev_err(hdev, "Failed to send wmt func ctrl (%d)", err);
|       return err;
}

The process should be terminated and returned the error code.

> 
> > Signed-off-by: mark-yw.chen <mark-yw.chen@mediatek.com>
> > Change-Id: I99f1d7b72fa70643d9123e7e6cdc8d0b4369ce52
> 
> To what Gerrit instance does the Change-Id belong? Without that
> information (Reviewed-on tag?), it should be removed?
> 
> > ---
> >   drivers/bluetooth/btmtk.c | 1 +
> >   drivers/bluetooth/btusb.c | 4 ++++
> >   2 files changed, 5 insertions(+)
> >
> > diff --git a/drivers/bluetooth/btmtk.c b/drivers/bluetooth/btmtk.c
> > index c2ee5c4b975a..526dfdf1fe01 100644
> > --- a/drivers/bluetooth/btmtk.c
> > +++ b/drivers/bluetooth/btmtk.c
> > @@ -121,6 +121,7 @@ int btmtk_setup_firmware_79xx(struct hci_dev
> *hdev, const char *fwname,
> >   				} else {
> >   					bt_dev_err(hdev, "Failed wmt patch dwnld
> status (%d)",
> >   						   status);
> > +					err = -EIO;
> >   					goto err_release_fw;
> >   				}
> >   			}
> > diff --git a/drivers/bluetooth/btusb.c b/drivers/bluetooth/btusb.c
> > index ab169fc673ea..3ea04b1d0750 100644
> > --- a/drivers/bluetooth/btusb.c
> > +++ b/drivers/bluetooth/btusb.c
> > @@ -2554,6 +2554,10 @@ static int btusb_mtk_setup(struct hci_dev
> *hdev)
> >   			 dev_id & 0xffff, (fw_version & 0xff) + 1);
> >   		err = btmtk_setup_firmware_79xx(hdev, fw_bin_name,
> >   						btusb_mtk_hci_wmt_sync);
> > +		if (err < 0) {
> > +			bt_dev_err(hdev, "Failed to setup firmware (%d)", err);
> 
> The verb is spelled with a space: set up.
> 
> Also, this error message seems unrelated to the patch in question. Maybe
> add it in a separate commit?
> 
> > +			return err;
> > +		}
> >
> >   		/* It's Device EndPoint Reset Option Register */
> >   		btusb_mtk_uhw_reg_write(data, MTK_EP_RST_OPT,
> > MTK_EP_RST_IN_OUT_OPT);
> >
> 
> 
> Kind regards,
> 
> Paul

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2021-12-06 14:47 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-12-06  9:25 [PATCH] Bluetooth: btusb: Handle download_firmware failure cases mark-yw.chen
2021-12-06  9:50 ` Paul Menzel
2021-12-06 14:47   ` Mark-YW Chen (陳揚文)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).