2023-04-18 00:16:30

by Luiz Augusto von Dentz

[permalink] [raw]
Subject: [PATCH] Bluetooth: btnxpuart: Fix sparse warnings

From: Luiz Augusto von Dentz <[email protected]>

This fixes the following sparse warnings:

drivers/bluetooth/btnxpuart.c:681:23: sparse: sparse:
restricted __le16 degrades to integer
drivers/bluetooth/btnxpuart.c:690:82: sparse:
sparse: incorrect type in argument 2 (different base types)
@@ expected unsigned short [usertype] req_len
@@ got restricted __le16 [usertype] len @@
drivers/bluetooth/btnxpuart.c:690:82: sparse:
expected unsigned short [usertype] req_len
drivers/bluetooth/btnxpuart.c:690:82: sparse:
got restricted __le16 [usertype] len
drivers/bluetooth/btnxpuart.c:694:84: sparse:
sparse: incorrect type in argument 2 (different base types)
@@ expected unsigned short [usertype] req_len
@@ got restricted __le16 [usertype] len @@
drivers/bluetooth/btnxpuart.c:694:84: sparse:
expected unsigned short [usertype] req_len
drivers/bluetooth/btnxpuart.c:694:84: sparse:
got restricted __le16 [usertype] len
drivers/bluetooth/btnxpuart.c:708:23: sparse:
sparse: incorrect type in assignment (different base types)
@@ expected unsigned int [usertype] requested_len
@@ got restricted __le16 [usertype] len @@
drivers/bluetooth/btnxpuart.c:708:23: sparse:
expected unsigned int [usertype] requested_len
drivers/bluetooth/btnxpuart.c:708:23: sparse:
got restricted __le16 [usertype] len
drivers/bluetooth/btnxpuart.c:787:78: sparse:
sparse: incorrect type in argument 2 (different base types)
@@ expected unsigned short [usertype] chipid
@@ got restricted __le16 [usertype] chip_id @@
drivers/bluetooth/btnxpuart.c:787:78: sparse:
expected unsigned short [usertype] chipid
drivers/bluetooth/btnxpuart.c:787:78: sparse:
got restricted __le16 [usertype] chip_id
drivers/bluetooth/btnxpuart.c:810:74: sparse:
sparse: incorrect type in argument 2 (different base types)
@@ expected unsigned short [usertype] req_len
@@ got restricted __le16 [usertype] len @@
drivers/bluetooth/btnxpuart.c:810:74: sparse:
expected unsigned short [usertype] req_len
drivers/bluetooth/btnxpuart.c:810:74: sparse:
got restricted __le16 [usertype] len
drivers/bluetooth/btnxpuart.c:815:76: sparse:
sparse: incorrect type in argument 2 (different base types)
@@ expected unsigned short [usertype] req_len
@@ got restricted __le16 [usertype] len @@
drivers/bluetooth/btnxpuart.c:815:76: sparse:
expected unsigned short [usertype] req_len
drivers/bluetooth/btnxpuart.c:815:76: sparse:
got restricted __le16 [usertype] len
drivers/bluetooth/btnxpuart.c:834:16: sparse:
sparse: restricted __le32 degrades to integer
drivers/bluetooth/btnxpuart.c:843:55: sparse:
sparse: restricted __le32 degrades to integer
drivers/bluetooth/btnxpuart.c:844:36: sparse:
sparse: incorrect type in argument 3 (different base types)
@@ expected unsigned long [usertype]
@@ got restricted __le16 [usertype] len @@
drivers/bluetooth/btnxpuart.c:844:36: sparse:
expected unsigned long [usertype]
drivers/bluetooth/btnxpuart.c:844:36: sparse:
got restricted __le16 [usertype] len

Reported-by: kernel test robot <[email protected]>
Link: https://lore.kernel.org/oe-kbuild-all/[email protected]/
Signed-off-by: Luiz Augusto von Dentz <[email protected]>
---
drivers/bluetooth/Kconfig | 2 +-
drivers/bluetooth/btnxpuart.c | 85 +++++++++++++++++++++--------------
2 files changed, 52 insertions(+), 35 deletions(-)

diff --git a/drivers/bluetooth/Kconfig b/drivers/bluetooth/Kconfig
index bc211c324206..fcb4f5e5f30f 100644
--- a/drivers/bluetooth/Kconfig
+++ b/drivers/bluetooth/Kconfig
@@ -469,7 +469,7 @@ config BT_VIRTIO
config BT_NXPUART
tristate "NXP protocol support"
depends on SERIAL_DEV_BUS
- select CRC32
+ select CRC32
select CRC8
help
NXP is serial driver required for NXP Bluetooth
diff --git a/drivers/bluetooth/btnxpuart.c b/drivers/bluetooth/btnxpuart.c
index 93f3afc0c0c8..31046f26e712 100644
--- a/drivers/bluetooth/btnxpuart.c
+++ b/drivers/bluetooth/btnxpuart.c
@@ -683,12 +683,14 @@ static int nxp_recv_chip_ver_v1(struct hci_dev *hdev, struct sk_buff *skb)
{
struct btnxpuart_dev *nxpdev = hci_get_drvdata(hdev);
struct v1_start_ind *req;
+ __u16 chip_id;

- req = (struct v1_start_ind *)skb_pull_data(skb, sizeof(struct v1_start_ind));
+ req = skb_pull_data(skb, sizeof(*req));
if (!req)
goto free_skb;

- if ((req->chip_id ^ req->chip_id_comp) == 0xffff) {
+ chip_id = le16_to_cpu(req->chip_id ^ req->chip_id_comp);
+ if (chip_id == 0xffff) {
nxpdev->fw_dnld_v1_offset = 0;
nxpdev->fw_v1_sent_bytes = 0;
nxpdev->fw_v1_expected_len = HDR_LEN;
@@ -707,29 +709,34 @@ static int nxp_recv_fw_req_v1(struct hci_dev *hdev, struct sk_buff *skb)
struct btnxpuart_dev *nxpdev = hci_get_drvdata(hdev);
struct btnxpuart_data *nxp_data = nxpdev->nxp_data;
struct v1_data_req *req;
- u32 requested_len;
+ __u16 len;

if (!process_boot_signature(nxpdev))
goto free_skb;

- req = (struct v1_data_req *)skb_pull_data(skb, sizeof(struct v1_data_req));
+ req = skb_pull_data(skb, sizeof(*req));
if (!req)
goto free_skb;

- if ((req->len ^ req->len_comp) != 0xffff) {
+ len = __le16_to_cpu(req->len ^ req->len_comp);
+ if (len != 0xffff) {
bt_dev_dbg(hdev, "ERR: Send NAK");
nxp_send_ack(NXP_NAK_V1, hdev);
goto free_skb;
}
nxp_send_ack(NXP_ACK_V1, hdev);

+ len = __le16_to_cpu(req->len);
+
if (!nxp_data->helper_fw_name) {
if (!nxpdev->timeout_changed) {
- nxpdev->timeout_changed = nxp_fw_change_timeout(hdev, req->len);
+ nxpdev->timeout_changed = nxp_fw_change_timeout(hdev,
+ len);
goto free_skb;
}
if (!nxpdev->baudrate_changed) {
- nxpdev->baudrate_changed = nxp_fw_change_baudrate(hdev, req->len);
+ nxpdev->baudrate_changed = nxp_fw_change_baudrate(hdev,
+ len);
if (nxpdev->baudrate_changed) {
serdev_device_set_baudrate(nxpdev->serdev,
HCI_NXP_SEC_BAUDRATE);
@@ -748,13 +755,14 @@ static int nxp_recv_fw_req_v1(struct hci_dev *hdev, struct sk_buff *skb)
goto free_skb;
}

- requested_len = req->len;
- if (requested_len == 0) {
- bt_dev_dbg(hdev, "FW Downloaded Successfully: %zu bytes", nxpdev->fw->size);
+ if (!len) {
+ bt_dev_dbg(hdev, "FW Downloaded Successfully: %zu bytes",
+ nxpdev->fw->size);
if (nxp_data->helper_fw_name && !nxpdev->helper_downloaded) {
nxpdev->helper_downloaded = true;
serdev_device_wait_until_sent(nxpdev->serdev, 0);
- serdev_device_set_baudrate(nxpdev->serdev, HCI_NXP_SEC_BAUDRATE);
+ serdev_device_set_baudrate(nxpdev->serdev,
+ HCI_NXP_SEC_BAUDRATE);
serdev_device_set_flow_control(nxpdev->serdev, 1);
} else {
clear_bit(BTNXPUART_FW_DOWNLOADING, &nxpdev->tx_state);
@@ -762,12 +770,12 @@ static int nxp_recv_fw_req_v1(struct hci_dev *hdev, struct sk_buff *skb)
}
goto free_skb;
}
- if (requested_len & 0x01) {
+ if (len & 0x01) {
/* The CRC did not match at the other end.
* Simply send the same bytes again.
*/
- requested_len = nxpdev->fw_v1_sent_bytes;
- bt_dev_dbg(hdev, "CRC error. Resend %d bytes of FW.", requested_len);
+ len = nxpdev->fw_v1_sent_bytes;
+ bt_dev_dbg(hdev, "CRC error. Resend %d bytes of FW.", len);
} else {
nxpdev->fw_dnld_v1_offset += nxpdev->fw_v1_sent_bytes;

@@ -781,24 +789,23 @@ static int nxp_recv_fw_req_v1(struct hci_dev *hdev, struct sk_buff *skb)
* mismatch, clearly the driver and FW are out of sync,
* and we need to re-send the previous header again.
*/
- if (requested_len == nxpdev->fw_v1_expected_len) {
- if (requested_len == HDR_LEN)
+ if (len == nxpdev->fw_v1_expected_len) {
+ if (len == HDR_LEN)
nxpdev->fw_v1_expected_len = nxp_get_data_len(nxpdev->fw->data +
nxpdev->fw_dnld_v1_offset);
else
nxpdev->fw_v1_expected_len = HDR_LEN;
- } else if (requested_len == HDR_LEN) {
+ } else if (len == HDR_LEN) {
/* FW download out of sync. Send previous chunk again */
nxpdev->fw_dnld_v1_offset -= nxpdev->fw_v1_sent_bytes;
nxpdev->fw_v1_expected_len = HDR_LEN;
}
}

- if (nxpdev->fw_dnld_v1_offset + requested_len <= nxpdev->fw->size)
- serdev_device_write_buf(nxpdev->serdev,
- nxpdev->fw->data + nxpdev->fw_dnld_v1_offset,
- requested_len);
- nxpdev->fw_v1_sent_bytes = requested_len;
+ if (nxpdev->fw_dnld_v1_offset + len <= nxpdev->fw->size)
+ serdev_device_write_buf(nxpdev->serdev, nxpdev->fw->data +
+ nxpdev->fw_dnld_v1_offset, len);
+ nxpdev->fw_v1_sent_bytes = len;

free_skb:
kfree_skb(skb);
@@ -828,13 +835,16 @@ static char *nxp_get_fw_name_from_chipid(struct hci_dev *hdev, u16 chipid)

static int nxp_recv_chip_ver_v3(struct hci_dev *hdev, struct sk_buff *skb)
{
- struct v3_start_ind *req = skb_pull_data(skb, sizeof(struct v3_start_ind));
+ struct v3_start_ind *req = skb_pull_data(skb, sizeof(*req));
struct btnxpuart_dev *nxpdev = hci_get_drvdata(hdev);
+ u16 chip_id;

if (!process_boot_signature(nxpdev))
goto free_skb;

- if (!nxp_request_firmware(hdev, nxp_get_fw_name_from_chipid(hdev, req->chip_id)))
+ chip_id = le16_to_cpu(req->chip_id);
+ if (!nxp_request_firmware(hdev, nxp_get_fw_name_from_chipid(hdev,
+ chip_id)))
nxp_send_ack(NXP_ACK_V3, hdev);

free_skb:
@@ -846,23 +856,27 @@ static int nxp_recv_fw_req_v3(struct hci_dev *hdev, struct sk_buff *skb)
{
struct btnxpuart_dev *nxpdev = hci_get_drvdata(hdev);
struct v3_data_req *req;
+ __u16 len;
+ __u32 offset;

if (!process_boot_signature(nxpdev))
goto free_skb;

- req = (struct v3_data_req *)skb_pull_data(skb, sizeof(struct v3_data_req));
+ req = skb_pull_data(skb, sizeof(*req));
if (!req || !nxpdev->fw)
goto free_skb;

nxp_send_ack(NXP_ACK_V3, hdev);

+ len = __le16_to_cpu(req->len);
+
if (!nxpdev->timeout_changed) {
- nxpdev->timeout_changed = nxp_fw_change_timeout(hdev, req->len);
+ nxpdev->timeout_changed = nxp_fw_change_timeout(hdev, len);
goto free_skb;
}

if (!nxpdev->baudrate_changed) {
- nxpdev->baudrate_changed = nxp_fw_change_baudrate(hdev, req->len);
+ nxpdev->baudrate_changed = nxp_fw_change_baudrate(hdev, len);
if (nxpdev->baudrate_changed) {
serdev_device_set_baudrate(nxpdev->serdev,
HCI_NXP_SEC_BAUDRATE);
@@ -873,25 +887,28 @@ static int nxp_recv_fw_req_v3(struct hci_dev *hdev, struct sk_buff *skb)
}

if (req->len == 0) {
- bt_dev_dbg(hdev, "FW Downloaded Successfully: %zu bytes", nxpdev->fw->size);
+ bt_dev_dbg(hdev, "FW Downloaded Successfully: %zu bytes",
+ nxpdev->fw->size);
clear_bit(BTNXPUART_FW_DOWNLOADING, &nxpdev->tx_state);
wake_up_interruptible(&nxpdev->fw_dnld_done_wait_q);
goto free_skb;
}
if (req->error)
- bt_dev_dbg(hdev, "FW Download received err 0x%02x from chip", req->error);
+ bt_dev_dbg(hdev, "FW Download received err 0x%02x from chip",
+ req->error);

- if (req->offset < nxpdev->fw_v3_offset_correction) {
+ offset = __le32_to_cpu(req->offset);
+ if (offset < nxpdev->fw_v3_offset_correction) {
/* This scenario should ideally never occur. But if it ever does,
* FW is out of sync and needs a power cycle.
*/
- bt_dev_err(hdev, "Something went wrong during FW download. Please power cycle and try again");
+ bt_dev_err(hdev, "Something went wrong during FW download");
+ bt_dev_err(hdev, "Please power cycle and try again");
goto free_skb;
}

- serdev_device_write_buf(nxpdev->serdev,
- nxpdev->fw->data + req->offset - nxpdev->fw_v3_offset_correction,
- req->len);
+ serdev_device_write_buf(nxpdev->serdev, nxpdev->fw->data + offset -
+ nxpdev->fw_v3_offset_correction, len);

free_skb:
kfree_skb(skb);
--
2.39.2


2023-04-18 01:14:22

by bluez.test.bot

[permalink] [raw]
Subject: RE: Bluetooth: btnxpuart: Fix sparse warnings

This is automated email and please do not reply to this email!

Dear submitter,

Thank you for submitting the patches to the linux bluetooth mailing list.
This is a CI test results with your patch series:
PW Link:https://patchwork.kernel.org/project/bluetooth/list/?series=740725

---Test result---

Test Summary:
CheckPatch FAIL 1.12 seconds
GitLint PASS 0.28 seconds
SubjectPrefix PASS 0.10 seconds
BuildKernel PASS 32.00 seconds
CheckAllWarning PASS 35.35 seconds
CheckSparse PASS 40.40 seconds
CheckSmatch PASS 111.75 seconds
BuildKernel32 PASS 30.89 seconds
TestRunnerSetup PASS 439.97 seconds
TestRunner_l2cap-tester PASS 16.21 seconds
TestRunner_iso-tester PASS 19.55 seconds
TestRunner_bnep-tester PASS 5.28 seconds
TestRunner_mgmt-tester PASS 109.98 seconds
TestRunner_rfcomm-tester PASS 8.46 seconds
TestRunner_sco-tester PASS 7.80 seconds
TestRunner_ioctl-tester PASS 8.93 seconds
TestRunner_mesh-tester PASS 6.68 seconds
TestRunner_smp-tester PASS 7.61 seconds
TestRunner_userchan-tester PASS 5.48 seconds
IncrementalBuild PASS 28.95 seconds

Details
##############################
Test: CheckPatch - FAIL
Desc: Run checkpatch.pl script
Output:
Bluetooth: btnxpuart: Fix sparse warnings
WARNING: A patch subject line should describe the change not the tool that found it
#69:
Subject: [PATCH] Bluetooth: btnxpuart: Fix sparse warnings

total: 0 errors, 1 warnings, 210 lines checked

NOTE: For some of the reported defects, checkpatch may be able to
mechanically convert to the typical style using --fix or --fix-inplace.

/github/workspace/src/src/13214874.patch has style problems, please review.

NOTE: Ignored message types: UNKNOWN_COMMIT_ID

NOTE: If any of the errors are false positives, please report
them to the maintainer, see CHECKPATCH in MAINTAINERS.




---
Regards,
Linux Bluetooth

2023-04-18 20:24:42

by patchwork-bot+bluetooth

[permalink] [raw]
Subject: Re: [PATCH] Bluetooth: btnxpuart: Fix sparse warnings

Hello:

This patch was applied to bluetooth/bluetooth-next.git (master)
by Luiz Augusto von Dentz <[email protected]>:

On Mon, 17 Apr 2023 17:07:04 -0700 you wrote:
> From: Luiz Augusto von Dentz <[email protected]>
>
> This fixes the following sparse warnings:
>
> drivers/bluetooth/btnxpuart.c:681:23: sparse: sparse:
> restricted __le16 degrades to integer
> drivers/bluetooth/btnxpuart.c:690:82: sparse:
> sparse: incorrect type in argument 2 (different base types)
> @@ expected unsigned short [usertype] req_len
> @@ got restricted __le16 [usertype] len @@
> drivers/bluetooth/btnxpuart.c:690:82: sparse:
> expected unsigned short [usertype] req_len
> drivers/bluetooth/btnxpuart.c:690:82: sparse:
> got restricted __le16 [usertype] len
> drivers/bluetooth/btnxpuart.c:694:84: sparse:
> sparse: incorrect type in argument 2 (different base types)
> @@ expected unsigned short [usertype] req_len
> @@ got restricted __le16 [usertype] len @@
> drivers/bluetooth/btnxpuart.c:694:84: sparse:
> expected unsigned short [usertype] req_len
> drivers/bluetooth/btnxpuart.c:694:84: sparse:
> got restricted __le16 [usertype] len
> drivers/bluetooth/btnxpuart.c:708:23: sparse:
> sparse: incorrect type in assignment (different base types)
> @@ expected unsigned int [usertype] requested_len
> @@ got restricted __le16 [usertype] len @@
> drivers/bluetooth/btnxpuart.c:708:23: sparse:
> expected unsigned int [usertype] requested_len
> drivers/bluetooth/btnxpuart.c:708:23: sparse:
> got restricted __le16 [usertype] len
> drivers/bluetooth/btnxpuart.c:787:78: sparse:
> sparse: incorrect type in argument 2 (different base types)
> @@ expected unsigned short [usertype] chipid
> @@ got restricted __le16 [usertype] chip_id @@
> drivers/bluetooth/btnxpuart.c:787:78: sparse:
> expected unsigned short [usertype] chipid
> drivers/bluetooth/btnxpuart.c:787:78: sparse:
> got restricted __le16 [usertype] chip_id
> drivers/bluetooth/btnxpuart.c:810:74: sparse:
> sparse: incorrect type in argument 2 (different base types)
> @@ expected unsigned short [usertype] req_len
> @@ got restricted __le16 [usertype] len @@
> drivers/bluetooth/btnxpuart.c:810:74: sparse:
> expected unsigned short [usertype] req_len
> drivers/bluetooth/btnxpuart.c:810:74: sparse:
> got restricted __le16 [usertype] len
> drivers/bluetooth/btnxpuart.c:815:76: sparse:
> sparse: incorrect type in argument 2 (different base types)
> @@ expected unsigned short [usertype] req_len
> @@ got restricted __le16 [usertype] len @@
> drivers/bluetooth/btnxpuart.c:815:76: sparse:
> expected unsigned short [usertype] req_len
> drivers/bluetooth/btnxpuart.c:815:76: sparse:
> got restricted __le16 [usertype] len
> drivers/bluetooth/btnxpuart.c:834:16: sparse:
> sparse: restricted __le32 degrades to integer
> drivers/bluetooth/btnxpuart.c:843:55: sparse:
> sparse: restricted __le32 degrades to integer
> drivers/bluetooth/btnxpuart.c:844:36: sparse:
> sparse: incorrect type in argument 3 (different base types)
> @@ expected unsigned long [usertype]
> @@ got restricted __le16 [usertype] len @@
> drivers/bluetooth/btnxpuart.c:844:36: sparse:
> expected unsigned long [usertype]
> drivers/bluetooth/btnxpuart.c:844:36: sparse:
> got restricted __le16 [usertype] len
>
> [...]

Here is the summary with links:
- Bluetooth: btnxpuart: Fix sparse warnings
https://git.kernel.org/bluetooth/bluetooth-next/c/183d1a0466eb

You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html