All of lore.kernel.org
 help / color / mirror / Atom feed
* HOW TO enable UAPSD and WMM  on ath9k
@ 2011-02-02  9:44 Prigent Xavier MAPS LIS LANNION
  2011-02-02 10:56 ` Mohammed Shafi
  0 siblings, 1 reply; 4+ messages in thread
From: Prigent Xavier MAPS LIS LANNION @ 2011-02-02  9:44 UTC (permalink / raw)
  To: linux-wireless


Hello ALL,

I have an AR9280 on debian version 2.6.32. I tried to enable UAPSD and WMM on all queue but I can not. I install compat-
wirelless and load ath9k. 
I saw with iw you can 't enable wmm or UAPSD. I remenbered with iwpriv you could do this but it does not work with this 
driver. 
I saw on" http://wireless.kernel.org/en/developers/Documentation/kerneldoc/include/net/mac80211.h" you could change WMM 
and UAPSD value.So I decide to make change in source and header code 
but it seems to be difficult and I does not understand all.
* @IEEE80211_HW_SUPPORTS_UAPSD:
* Hardware supports Unscheduled Automatic Power Save Delivery
* (U-APSD) in managed mode. The mode is configured with
* conf_tx() operation.

where is conf_tx() operation?

Where I have to make change in order to enable WMM and UAPSD on all queue? 
Is there a CLI command? 

Thanks for your help,

PX

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: HOW TO enable UAPSD and WMM on ath9k
  2011-02-02  9:44 HOW TO enable UAPSD and WMM on ath9k Prigent Xavier MAPS LIS LANNION
@ 2011-02-02 10:56 ` Mohammed Shafi
  2011-02-04  7:39   ` Luis R. Rodriguez
  0 siblings, 1 reply; 4+ messages in thread
From: Mohammed Shafi @ 2011-02-02 10:56 UTC (permalink / raw)
  To: Prigent Xavier MAPS LIS LANNION; +Cc: linux-wireless

On Wed, Feb 2, 2011 at 3:14 PM, Prigent Xavier MAPS LIS LANNION
<labolis2@orange.fr> wrote:
>
> Hello ALL,
>
> I have an AR9280 on debian version 2.6.32. I tried to enable UAPSD and WMM on all queue but I can not. I install compat-
> wirelless and load ath9k.
> I saw with iw you can 't enable wmm or UAPSD. I remenbered with iwpriv you could do this but it does not work with this
> driver.
> I saw on" http://wireless.kernel.org/en/developers/Documentation/kerneldoc/include/net/mac80211.h" you could change WMM
> and UAPSD value.So I decide to make change in source and header code
> but it seems to be difficult and I does not understand all.
> * @IEEE80211_HW_SUPPORTS_UAPSD:
> * Hardware supports Unscheduled Automatic Power Save Delivery
> * (U-APSD) in managed mode. The mode is configured with
> * conf_tx() operation.

UAPSD is not supported in ath9k.I am saying this based on looking at
init.c of ath9k

>
> where is conf_tx() operation?
>
> Where I have to make change in order to enable WMM and UAPSD on all queue?
> Is there a CLI command?
>
> Thanks for your help,
>
> PX
> --
> To unsubscribe from this list: send the line "unsubscribe linux-wireless" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
>

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: HOW TO enable UAPSD and WMM on ath9k
  2011-02-02 10:56 ` Mohammed Shafi
@ 2011-02-04  7:39   ` Luis R. Rodriguez
  2011-12-30 14:08     ` Jean
  0 siblings, 1 reply; 4+ messages in thread
From: Luis R. Rodriguez @ 2011-02-04  7:39 UTC (permalink / raw)
  To: Mohammed Shafi; +Cc: Prigent Xavier MAPS LIS LANNION, linux-wireless

On Wed, Feb 2, 2011 at 2:56 AM, Mohammed Shafi <shafi.wireless@gmail.com> wrote:
> On Wed, Feb 2, 2011 at 3:14 PM, Prigent Xavier MAPS LIS LANNION
> <labolis2@orange.fr> wrote:
>>
>> Hello ALL,
>>
>> I have an AR9280 on debian version 2.6.32. I tried to enable UAPSD and WMM on all queue but I can not. I install compat-
>> wirelless and load ath9k.
>> I saw with iw you can 't enable wmm or UAPSD. I remenbered with iwpriv you could do this but it does not work with this
>> driver.
>> I saw on" http://wireless.kernel.org/en/developers/Documentation/kerneldoc/include/net/mac80211.h" you could change WMM
>> and UAPSD value.So I decide to make change in source and header code
>> but it seems to be difficult and I does not understand all.
>> * @IEEE80211_HW_SUPPORTS_UAPSD:
>> * Hardware supports Unscheduled Automatic Power Save Delivery
>> * (U-APSD) in managed mode. The mode is configured with
>> * conf_tx() operation.
>
> UAPSD is not supported in ath9k.I am saying this based on looking at
> init.c of ath9k

You first need to add support for uAPSD to mac80211 for drivers which
need this completely in software, and then add it to ath9k.

  Luis

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: HOW TO enable UAPSD and WMM on ath9k
  2011-02-04  7:39   ` Luis R. Rodriguez
@ 2011-12-30 14:08     ` Jean
  0 siblings, 0 replies; 4+ messages in thread
From: Jean @ 2011-12-30 14:08 UTC (permalink / raw)
  To: linux-wireless

Hello,

You said:

You first need to add support for uAPSD to mac80211 for drivers which
need this completely in software, and then add it to ath9k.

Sorry, but I don't understand. What do you add  to mac80211.h?
What do you add to ath9k?

Can you explain step by step how to enable UAPSD on ATH9k or other one driver
please?

I use iw like userspace. It is not possible to define uapsd parameter in  order
to set or get value like iwpriv.

This case will help many people who want to add parameter because it very
difficult fo find something.



Thanks a lot,

Jean







^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2011-12-30 14:15 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-02-02  9:44 HOW TO enable UAPSD and WMM on ath9k Prigent Xavier MAPS LIS LANNION
2011-02-02 10:56 ` Mohammed Shafi
2011-02-04  7:39   ` Luis R. Rodriguez
2011-12-30 14:08     ` Jean

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.