From: Kalle Valo <kvalo@kernel.org>
To: Wen Gong <quic_wgong@quicinc.com>
Cc: <ath11k@lists.infradead.org>, <linux-wireless@vger.kernel.org>
Subject: Re: [PATCH v5 2/2] ath11k: add read variant from SMBIOS for download board data
Date: Thu, 10 Mar 2022 10:12:40 +0200 [thread overview]
Message-ID: <87wnh2ql8n.fsf@kernel.org> (raw)
In-Reply-To: <20211220064829.17557-3-quic_wgong@quicinc.com> (Wen Gong's message of "Mon, 20 Dec 2021 01:48:29 -0500")
Wen Gong <quic_wgong@quicinc.com> writes:
> This is to read variant from SMBIOS such as read from DT, the variant
> string will be used to one part of string which used to search board
> data from board-2.bin.
>
> Tested-on: WCN6855 hw2.0 PCI WLAN.HSP.1.1-01720.1-QCAHSPSWPL_V1_V2_SILICONZ_LITE-1
>
> Signed-off-by: Wen Gong <quic_wgong@quicinc.com>
[...]
> +static void ath11k_core_check_bdfext(const struct dmi_header *hdr, void *data)
> +{
> + struct ath11k_base *ab = data;
> + const char *bdf_ext;
> + const char *magic = ATH11K_SMBIOS_BDF_EXT_MAGIC;
> + u8 bdf_enabled;
> + int i;
> + size_t len;
> +
> + if (ab->qmi.target.bdf_ext[0] != '\0')
> + return;
> +
> + if (hdr->type != ATH11K_SMBIOS_BDF_EXT_TYPE)
> + return;
> +
> + if (hdr->length != ATH11K_SMBIOS_BDF_EXT_LENGTH) {
> + ath11k_dbg(ab, ATH11K_DBG_BOOT,
> + "wrong smbios bdf ext type length (%d).\n",
> + hdr->length);
> + return;
> + }
> +
> + bdf_enabled = *((u8 *)hdr + ATH11K_SMBIOS_BDF_EXT_OFFSET);
> + if (!bdf_enabled) {
> + ath11k_dbg(ab, ATH11K_DBG_BOOT, "bdf variant name not found.\n");
> + return;
> + }
> +
> + /* Only one string exists (per spec) */
> + bdf_ext = (char *)hdr + hdr->length;
A proper struct is preferred over pointer arithmetic. For example
something like this:
struct ath11k_smbios_bdf {
struct dmi_header hdr;
u32 padding;
u8 bdf_enabled;
u8 bdf_ext[ATH11K_SMBIOS_BDF_EXT_MAX_LEN];
}
I'm not sure if I got the offsets right, but I hope you get the idea
anyway.
> +
> + if (memcmp(bdf_ext, magic, strlen(magic)) != 0) {
> + ath11k_dbg(ab, ATH11K_DBG_BOOT,
> + "bdf variant magic does not match.\n");
> + return;
> + }
> +
> + len = strlen(bdf_ext);
What if bdf_ext is not null terminated? Wouldn't strnlen() with
ATH11K_SMBIOS_BDF_EXT_MAX_LEN would be safer?
> --- a/drivers/net/wireless/ath/ath11k/core.h
> +++ b/drivers/net/wireless/ath/ath11k/core.h
> @@ -971,7 +971,18 @@ int ath11k_core_fetch_bdf(struct ath11k_base *ath11k,
> struct ath11k_board_data *bd);
> void ath11k_core_free_bdf(struct ath11k_base *ab, struct ath11k_board_data *bd);
> int ath11k_core_check_dt(struct ath11k_base *ath11k);
> +/* SMBIOS type containing Board Data File Name Extension */
> +#define ATH11K_SMBIOS_BDF_EXT_TYPE 0xF8
>
> +/* SMBIOS type structure length (excluding strings-set) */
> +#define ATH11K_SMBIOS_BDF_EXT_LENGTH 0x9
> +
> +/* Offset pointing to Board Data File Name Extension */
> +#define ATH11K_SMBIOS_BDF_EXT_OFFSET 0x8
> +
> +/* The magic used by QCA spec */
> +#define ATH11K_SMBIOS_BDF_EXT_MAGIC "BDF_"
> +int ath11k_core_check_smbios(struct ath11k_base *ab);
> void ath11k_core_halt(struct ath11k *ar);
> int ath11k_core_resume(struct ath11k_base *ab);
> int ath11k_core_suspend(struct ath11k_base *ab);
Please don't mix defines and function declarations, so move defines up
in the file.
--
https://patchwork.kernel.org/project/linux-wireless/list/
https://wireless.wiki.kernel.org/en/developers/documentation/submittingpatches
--
ath11k mailing list
ath11k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath11k
next prev parent reply other threads:[~2022-03-10 8:12 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-12-20 6:48 [PATCH v5 0/2] ath11k: add handler for board-2.bin without variant and read SMBIOS Wen Gong
2021-12-20 6:48 ` [PATCH v5 1/2] ath11k: add fallback board name without variant while searching board-2.bin Wen Gong
2022-03-10 8:00 ` Kalle Valo
2022-03-14 10:35 ` Wen Gong
2021-12-20 6:48 ` [PATCH v5 2/2] ath11k: add read variant from SMBIOS for download board data Wen Gong
2022-03-10 8:12 ` Kalle Valo [this message]
2022-03-14 10:35 ` Wen Gong
2022-02-07 6:12 ` [PATCH v5 0/2] ath11k: add handler for board-2.bin without variant and read SMBIOS Wen Gong
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=87wnh2ql8n.fsf@kernel.org \
--to=kvalo@kernel.org \
--cc=ath11k@lists.infradead.org \
--cc=linux-wireless@vger.kernel.org \
--cc=quic_wgong@quicinc.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox