From: Ben Greear <greearb@candelatech.com>
To: Bartosz Markowski <bartosz.markowski@tieto.com>,
ath10k@lists.infradead.org
Cc: linux-wireless@vger.kernel.org
Subject: Re: [PATCH] ath10k: fix vdev map size for 10.x firmware
Date: Thu, 29 May 2014 06:47:04 -0700 [thread overview]
Message-ID: <53873A58.1070209@candelatech.com> (raw)
In-Reply-To: <1401370567-13543-1-git-send-email-bartosz.markowski@tieto.com>
On 05/29/2014 06:36 AM, Bartosz Markowski wrote:
> Firmware 10.x supports up to 8 virtual AP interfaces
> (comparing to 7 for main firmware). Previous vdev map
> initialization was missing enough space for 8 + 1 vdevs
> (we may spent one for mac monitor), due to wrong define used.
>
> Use correct one - TARGET_10X_NUM_VDEVS - for 10.x firmware.
You are bumping total vdevs up to 16 with that patch...have you
actually tested that many? The stock firmware has quite a bit of
deficiencies in the concurrency handling, at least for stations.
For what it's worth, my firmware will only work on stock kernels
because I ignore the request for 16 vdevs in the firmware and knock
it down to 8 to match the kernel driver (before your change below).
Thanks,
Ben
>
> Signed-off-by: Bartosz Markowski <bartosz.markowski@tieto.com>
> ---
> drivers/net/wireless/ath/ath10k/core.c | 6 +++++-
> 1 file changed, 5 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/net/wireless/ath/ath10k/core.c b/drivers/net/wireless/ath/ath10k/core.c
> index 82017f5..e6c56c5 100644
> --- a/drivers/net/wireless/ath/ath10k/core.c
> +++ b/drivers/net/wireless/ath/ath10k/core.c
> @@ -795,7 +795,11 @@ int ath10k_core_start(struct ath10k *ar)
> if (status)
> goto err_htc_stop;
>
> - ar->free_vdev_map = (1 << TARGET_NUM_VDEVS) - 1;
> + if (test_bit(ATH10K_FW_FEATURE_WMI_10X, ar->fw_features))
> + ar->free_vdev_map = (1 << TARGET_10X_NUM_VDEVS) - 1;
> + else
> + ar->free_vdev_map = (1 << TARGET_NUM_VDEVS) - 1;
> +
> INIT_LIST_HEAD(&ar->arvifs);
>
> if (!test_bit(ATH10K_FLAG_FIRST_BOOT_DONE, &ar->dev_flags))
>
--
Ben Greear <greearb@candelatech.com>
Candela Technologies Inc http://www.candelatech.com
_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k
WARNING: multiple messages have this Message-ID (diff)
From: Ben Greear <greearb@candelatech.com>
To: Bartosz Markowski <bartosz.markowski@tieto.com>,
ath10k@lists.infradead.org
Cc: linux-wireless@vger.kernel.org
Subject: Re: [PATCH] ath10k: fix vdev map size for 10.x firmware
Date: Thu, 29 May 2014 06:47:04 -0700 [thread overview]
Message-ID: <53873A58.1070209@candelatech.com> (raw)
In-Reply-To: <1401370567-13543-1-git-send-email-bartosz.markowski@tieto.com>
On 05/29/2014 06:36 AM, Bartosz Markowski wrote:
> Firmware 10.x supports up to 8 virtual AP interfaces
> (comparing to 7 for main firmware). Previous vdev map
> initialization was missing enough space for 8 + 1 vdevs
> (we may spent one for mac monitor), due to wrong define used.
>
> Use correct one - TARGET_10X_NUM_VDEVS - for 10.x firmware.
You are bumping total vdevs up to 16 with that patch...have you
actually tested that many? The stock firmware has quite a bit of
deficiencies in the concurrency handling, at least for stations.
For what it's worth, my firmware will only work on stock kernels
because I ignore the request for 16 vdevs in the firmware and knock
it down to 8 to match the kernel driver (before your change below).
Thanks,
Ben
>
> Signed-off-by: Bartosz Markowski <bartosz.markowski@tieto.com>
> ---
> drivers/net/wireless/ath/ath10k/core.c | 6 +++++-
> 1 file changed, 5 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/net/wireless/ath/ath10k/core.c b/drivers/net/wireless/ath/ath10k/core.c
> index 82017f5..e6c56c5 100644
> --- a/drivers/net/wireless/ath/ath10k/core.c
> +++ b/drivers/net/wireless/ath/ath10k/core.c
> @@ -795,7 +795,11 @@ int ath10k_core_start(struct ath10k *ar)
> if (status)
> goto err_htc_stop;
>
> - ar->free_vdev_map = (1 << TARGET_NUM_VDEVS) - 1;
> + if (test_bit(ATH10K_FW_FEATURE_WMI_10X, ar->fw_features))
> + ar->free_vdev_map = (1 << TARGET_10X_NUM_VDEVS) - 1;
> + else
> + ar->free_vdev_map = (1 << TARGET_NUM_VDEVS) - 1;
> +
> INIT_LIST_HEAD(&ar->arvifs);
>
> if (!test_bit(ATH10K_FLAG_FIRST_BOOT_DONE, &ar->dev_flags))
>
--
Ben Greear <greearb@candelatech.com>
Candela Technologies Inc http://www.candelatech.com
next prev parent reply other threads:[~2014-05-29 13:47 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-05-29 13:36 [PATCH] ath10k: fix vdev map size for 10.x firmware Bartosz Markowski
2014-05-29 13:36 ` Bartosz Markowski
2014-05-29 13:47 ` Ben Greear [this message]
2014-05-29 13:47 ` Ben Greear
2014-05-29 14:10 ` Bartosz Markowski
2014-05-29 14:10 ` Bartosz Markowski
2014-05-29 14:42 ` Bartosz Markowski
2014-05-29 14:42 ` Bartosz Markowski
2014-05-29 15:57 ` Ben Greear
2014-05-29 15:57 ` Ben Greear
2014-06-02 16:42 ` Kalle Valo
2014-06-02 16:42 ` Kalle Valo
2014-06-02 17:11 ` Bartosz Markowski
2014-06-02 17:11 ` Bartosz Markowski
2014-06-02 17:28 ` Kalle Valo
2014-06-02 17:28 ` Kalle Valo
2014-06-02 18:24 ` Bartosz Markowski
2014-06-02 18:24 ` Bartosz Markowski
2014-06-02 18:47 ` Kalle Valo
2014-06-02 18:47 ` Kalle Valo
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=53873A58.1070209@candelatech.com \
--to=greearb@candelatech.com \
--cc=ath10k@lists.infradead.org \
--cc=bartosz.markowski@tieto.com \
--cc=linux-wireless@vger.kernel.org \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.