linux-wireless.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Felix Fietkau <nbd@openwrt.org>
To: Jan Kaisrlik <kaisrja1@fel.cvut.cz>
Cc: sojkam1@fel.cvut.cz, linux-wireless@vger.kernel.org,
	bernd.lehmann@volkswagen.de, jan-niklas.meier@volkswagen.de,
	s.sander@nordsys.de
Subject: Re: [PATCH] ath9k: Add support for OCB mode
Date: Wed, 9 Sep 2015 15:28:14 +0200	[thread overview]
Message-ID: <55F033EE.7030605@openwrt.org> (raw)
In-Reply-To: <1441803324-4503-1-git-send-email-kaisrja1@fel.cvut.cz>

On 2015-09-09 14:55, Jan Kaisrlik wrote:
> The patch adds support for "outside the context of a BSS"(OCB) mode
> to ath9k driver and extends debugfs files by OCB ralated information.
> 
> This patch was tested on AR9380-AL1A cards.
> 
> Signed-off-by: Jan Kaisrlik <kaisrja1@fel.cvut.cz>
> Cc: Michal Sojka <sojkam1@fel.cvut.cz>
> ---
>  drivers/net/wireless/ath/ath9k/ani.c          |  1 +
>  drivers/net/wireless/ath/ath9k/ath9k.h        |  1 +
>  drivers/net/wireless/ath/ath9k/debug.c        |  4 ++--
>  drivers/net/wireless/ath/ath9k/htc_drv_init.c |  3 ++-
>  drivers/net/wireless/ath/ath9k/hw.c           |  1 +
>  drivers/net/wireless/ath/ath9k/init.c         |  3 ++-
>  drivers/net/wireless/ath/ath9k/main.c         | 11 +++++++++--
>  drivers/net/wireless/ath/ath9k/recv.c         |  2 +-
>  drivers/net/wireless/ath/debug.c              |  2 ++
>  9 files changed, 21 insertions(+), 7 deletions(-)
> 
> diff --git a/drivers/net/wireless/ath/ath9k/ani.c b/drivers/net/wireless/ath/ath9k/ani.c
> index 25e45e4..0ec2c0b 100644
> --- a/drivers/net/wireless/ath/ath9k/ani.c
> +++ b/drivers/net/wireless/ath/ath9k/ani.c
> @@ -342,6 +342,7 @@ void ath9k_ani_reset(struct ath_hw *ah, bool is_scanning)
>  
>  	if (is_scanning ||
>  	    (ah->opmode != NL80211_IFTYPE_STATION &&
> +	     ah->opmode != NL80211_IFTYPE_OCB &&
>  	     ah->opmode != NL80211_IFTYPE_ADHOC)) {
>  		/*
>  		 * If we're scanning or in AP mode, the defaults (ini)
I don't think OCB should be treated like STA/Ad-Hoc for ANI purposes.
In fact, I think most places inside ath9k_hw should treat OCB the same
as AP - maybe even by leaving ah->opmode at NL80211_IFTYPE_AP for OCB.

> diff --git a/drivers/net/wireless/ath/ath9k/hw.c b/drivers/net/wireless/ath/ath9k/hw.c
> index 1dd0339..2144362 100644
> --- a/drivers/net/wireless/ath/ath9k/hw.c
> +++ b/drivers/net/wireless/ath/ath9k/hw.c
> @@ -1234,6 +1234,7 @@ static void ath9k_hw_set_operating_mode(struct ath_hw *ah, int opmode)
>  
>  	ENABLE_REG_RMW_BUFFER(ah);
>  	switch (opmode) {
> +	case NL80211_IFTYPE_OCB:
>  	case NL80211_IFTYPE_ADHOC:
>  		if (!AR_SREV_9340_13(ah)) {
>  			set |= AR_STA_ID1_ADHOC;
Why treat OCB like Ad-hoc for STA_ID1?

> diff --git a/drivers/net/wireless/ath/ath9k/main.c b/drivers/net/wireless/ath/ath9k/main.c
> index c27143b..f121ec0 100644
> --- a/drivers/net/wireless/ath/ath9k/main.c
> +++ b/drivers/net/wireless/ath/ath9k/main.c

> @@ -1122,7 +1127,8 @@ void ath9k_calculate_summary_state(struct ath_softc *sc,
>  	ath9k_hw_setopmode(ah);
>  
>  	ctx->switch_after_beacon = false;
> -	if ((iter_data.nstations + iter_data.nadhocs + iter_data.nmeshes) > 0)
> +	if ((iter_data.nstations + iter_data.nadhocs +
> +	     iter_data.nmeshes + iter_data.nocbs) > 0)
>  		ah->imask |= ATH9K_INT_TSFOOR;
>  	else {
>  		ah->imask &= ~ATH9K_INT_TSFOOR;
Enabling the TSFOOR interrupt for OCB seems completely wrong to me. If I
understand this mode correctly, there are no beacons, hence no TSF
synchronization.

- Felix

  reply	other threads:[~2015-09-09 13:28 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-09-09 12:55 [PATCH] ath9k: Add support for OCB mode Jan Kaisrlik
2015-09-09 13:28 ` Felix Fietkau [this message]
2015-09-12 16:22   ` Jan Kaisrlik

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=55F033EE.7030605@openwrt.org \
    --to=nbd@openwrt.org \
    --cc=bernd.lehmann@volkswagen.de \
    --cc=jan-niklas.meier@volkswagen.de \
    --cc=kaisrja1@fel.cvut.cz \
    --cc=linux-wireless@vger.kernel.org \
    --cc=s.sander@nordsys.de \
    --cc=sojkam1@fel.cvut.cz \
    /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;
as well as URLs for NNTP newsgroup(s).