All of lore.kernel.org
 help / color / mirror / Atom feed
From: Johannes Berg <johannes@sipsolutions.net>
To: Aloka Dixit <quic_alokad@quicinc.com>, linux-wireless@vger.kernel.org
Subject: Re: [PATCH 2/3] cfg80211: validate RU puncturing bitmap
Date: Wed, 18 Oct 2023 14:58:37 +0200	[thread overview]
Message-ID: <28b099e7a37824f0b59ab824e67b3437485e45d5.camel@sipsolutions.net> (raw)
In-Reply-To: <460cb443-868c-ec05-7aec-5b1eee381ae2@quicinc.com>

Hi,

> > > > Regarding if different puncturing pattern should be considered as a new
> > > > context - yes, depending on if it is HE or non-HE mode, the new bitmap
> > > > may be invalid and the operation should fail.
> > 
> > Which I'm not sure I understood then, and certainly not sure I
> > understand now, but I said:
> > 
> 
> 802.11be allows only few patterns when AP is operating in non-OFDMA mode 
> but if OFDMA is used then each 80 MHz sub-block can have a different 
> puncturing pattern when BW > 80MHz.

Right, but that's not the same, it's per PPDU more or less, no? I mean,
you say in the trigger frame for example that some RU is not allocated.

So is that relevant here?

> I know *_HE was not the best terminology, originally it was *_OFDMA but 
> later changed because we decided to base the puncturing bitmap 
> validation based on HE vs older modes.
> Function "cfg80211_ru_punct_bitmap_valid" added in this version first 
> checks for non-OFDMA patterns, and only if "ru_punct_bitmap_supp_he" 
> attribute is set by the userspace then it goes further to also check 
> against patterns allowed for OFDMA.
> I could not find any other way to decide OFDMA vs non-OFDMA than letting 
> userspace explicitly indicate latter.
> It would be great if you can provide your inputs on this.

This ... doesn't exist upstream?

OK actually it did exist in this patch though.

Not sure I understand. Let's go back to what we have in the tree now.
The only thing we check there is
cfg80211_valid_disable_subchannel_bitmap(), which on the client at least
is just for the "disabled subchannel bitmap" in the EHT operation.

Are you thinking about (separately?) configuring the OFDMA puncturing?
Which spec-wise you do per PPDU, controlled by the AP (trigger frame), I
think?


> > Which, actually, I've learned since that I was completely wrong about!
> > It should, and likely must, in fact be two separate channel contexts,
> > with all the limitations that implies.
> > 
> > The thing is - back then I was making not just one, but in fact *two*
> > wrong assumptions:
> > 
> >     1. The DSP/radio can receive punctured PPDUs if listening on the non
> >        punctured channel.
> >        
> >        At least for our device that's not true, not sure about ath12k? It
> >        seems you have a per-peer puncturing configuration even, but that
> >        seems odd, and it's always just set to the vif puncturing
> >        configuration.
> >        
> 
> Yes, same vif puncturing pattern is assigned for all the peers 
> associated on that vif, but firmware requires it to be sent separately 
> for each peer.

OK, thanks.

What if it differs for different vifs?

> >     2. You can simply transmit punctured PPDUs when on a non-punctured
> >        channel, i.e. it's just a rate control decision.
> >        
> >        This is perhaps less important, but it's also not really true.
> >        While you can clearly _transmit_ this way, that's not the only
> >        thing - you also need to do the CCA before transmitting, and if
> >        there's noise/interference on the punctured channel, you'd much
> >        more rarely find the channel to be clear and be able to transmit
> >        if this doesn't consider the puncturing, but that's something to
> >        do sort of generally in the background for the transmit.
> > 
> > It might be possible to work around #2, but I'm not sure it's possible
> > to work around #1?
> > 
> > 
> > So I think I have two questions:
> >     A. Would you object if I moved the puncturing into the chandef after
> >        all?
> >        
> 
> This is where I'm getting confused.

:)

> The main reason to put in chandef was that I thought of the bitmap as a 
> radio characteristic (not vif). 

Right.

> But after you brought up that AP+STA 
> mode can have different bitmaps, even though all other channel 
> characteristics (width, cf etc) are same, I realized my original 
> assumption wrong incorrect.

So I convinced you, I guess, but what I'm saying is that - at least as
far as our hardware is concerned - I was wrong!

Thing is: you're not just transmitting with this bitmap, you're also
listening - for both CCA and RX - in a specific way. And at least the
way our hardware works, we apparently can't do puncturing just based on
the preamble, and can't do CCA depending on the next frame.

So that means the (non-OFDMA) puncturing bitmap *does* in fact become a
radio characteristic.

I don't know though is if that's really true for all hardware in
general, or just a side effect of our design. I could see that it might
be possible to receive punctured/non-punctured without changing hardware
configuration, and certainly that it might be doable to do CCA depending
on which frame you're going to transmit.

But in any case, as far as I'm told the hardware design we have doesn't
allow that, so I think I'd like to move this to the chandef/chanctx, and
then perhaps define a driver callback to determine compatibility, if
needed?

> Moving the bitmap to cfg80211_ap_settings() meant that each AP vif can 
> have different bitmap, and I'm guessing you similarly added for each STA 
> vif context.

Yes.

> Now if you move it back into chandef, how exactly will this work if you 
> need different bitmaps?

You'd get two chanctx since it's not compatible, unless we define some
extra callback or hw flags to determine what's treated as compatible and
what isn't. But see above - I actually want that, now that I know how
the HW works :)

> >     B. How does ath12k cope #1/#2 above? Would we need to have a callback
> >        to the driver to compare if two channel contexts are compatible or
> >        not (e.g. if they have different puncturing), or does ath12k also
> >        have limitations on RX/TX that mean it would actually prefer two
> >        channel contexts for the cases I had outlined in the quoted text
> >        above (STA+STA/AP+STA)?
> > 
> 
> If we do end up moving the bitmap back to chandef, we may need some 
> changes, because as I said above, when I originally added it I hadn't 
> thought of different bitmaps for each vif.
> But can you give an example of what you would consider as compatible 
> channel contexts and what would be incompatible? I'm not clear on that part.

Easy example:

 * control channel 36, 80 MHz, puncturing bitmap 0x2
 * control channel 36, 80 MHz, puncturing bitmap 0

Contrary to what I thought and said before, I want to treat these as
*not* compatible now, and allocate two channel contexts if I end up
having to do this.

johannes

  reply	other threads:[~2023-10-18 12:58 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-02-14 22:30 [PATCH 0/3] RU puncturing support Aloka Dixit
2022-02-14 22:30 ` [PATCH 1/3] nl80211: advertise RU puncturing support to userspace Aloka Dixit
2022-02-15  8:20   ` Johannes Berg
2022-02-14 22:30 ` [PATCH 2/3] cfg80211: validate RU puncturing bitmap Aloka Dixit
2022-02-15  8:19   ` Johannes Berg
2022-02-16  0:37     ` Aloka Dixit
2022-02-22 18:31       ` Aloka Dixit
2022-05-04 12:08       ` Johannes Berg
2023-10-12 11:53         ` Johannes Berg
2023-10-12 12:13           ` Johannes Berg
2023-10-17 17:51           ` Aloka Dixit
2023-10-18 12:58             ` Johannes Berg [this message]
2023-10-19  0:09               ` Aloka Dixit
2023-11-08 12:58                 ` Johannes Berg
2023-11-08 14:31                   ` Johannes Berg
2022-02-14 22:30 ` [PATCH 3/3] nl80211: " Aloka Dixit

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=28b099e7a37824f0b59ab824e67b3437485e45d5.camel@sipsolutions.net \
    --to=johannes@sipsolutions.net \
    --cc=linux-wireless@vger.kernel.org \
    --cc=quic_alokad@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 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.