* [PATCH] wl12xx: use 2 spare TX blocks for GEM cipher
@ 2011-04-03 12:37 Guy Eilam
2011-04-08 17:38 ` Luciano Coelho
0 siblings, 1 reply; 4+ messages in thread
From: Guy Eilam @ 2011-04-03 12:37 UTC (permalink / raw)
To: linux-wireless; +Cc: coelho
Add tx_spare_blocks member to the wl1271 struct
for more generic configuration of the amount
of spare TX blocks that should be used.
The default value is 1.
in case GEM cipher is used by the STA, we need
2 spare TX blocks instead of just 1.
Signed-off-by: Guy Eilam <guy@wizery.com>
---
drivers/net/wireless/wl12xx/main.c | 15 +++++++++++++++
drivers/net/wireless/wl12xx/tx.c | 4 +---
drivers/net/wireless/wl12xx/tx.h | 1 +
drivers/net/wireless/wl12xx/wl12xx.h | 3 +++
4 files changed, 20 insertions(+), 3 deletions(-)
diff --git a/drivers/net/wireless/wl12xx/main.c b/drivers/net/wireless/wl12xx/main.c
index 85cb4da..f962e43 100644
--- a/drivers/net/wireless/wl12xx/main.c
+++ b/drivers/net/wireless/wl12xx/main.c
@@ -1097,6 +1097,8 @@ int wl1271_plt_start(struct wl1271 *wl)
wl1271_notice("firmware booted in PLT mode (%s)",
wl->chip.fw_ver_str);
+ wl->tx_spare_blocks = TX_HW_BLOCK_SPARE_DEFAULT;
+
/* Check if any quirks are needed with older fw versions */
wl->quirks |= wl1271_get_fw_ver_quirks(wl);
goto out;
@@ -1379,6 +1381,8 @@ power_off:
strncpy(wiphy->fw_version, wl->chip.fw_ver_str,
sizeof(wiphy->fw_version));
+ wl->tx_spare_blocks = TX_HW_BLOCK_SPARE_DEFAULT;
+
/* Check if any quirks are needed with older fw versions */
wl->quirks |= wl1271_get_fw_ver_quirks(wl);
@@ -2039,6 +2043,17 @@ static int wl1271_set_key(struct wl1271 *wl, u16 action, u8 id, u8 key_type,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff
};
+ /*
+ * A STA set to GEM cipher requires 2 tx spare blocks.
+ * Return to default value when GEM cipher key is removed
+ */
+ if (key_type == KEY_GEM) {
+ if (action == KEY_ADD_OR_REPLACE)
+ wl->tx_spare_blocks = 2;
+ else
+ wl->tx_spare_blocks = TX_HW_BLOCK_SPARE_DEFAULT;
+ }
+
addr = sta ? sta->addr : bcast_addr;
if (is_zero_ether_addr(addr)) {
diff --git a/drivers/net/wireless/wl12xx/tx.c b/drivers/net/wireless/wl12xx/tx.c
index db9e47e..2c79b6e 100644
--- a/drivers/net/wireless/wl12xx/tx.c
+++ b/drivers/net/wireless/wl12xx/tx.c
@@ -135,12 +135,10 @@ static int wl1271_tx_allocate(struct wl1271 *wl, struct sk_buff *skb, u32 extra,
u32 len;
u32 total_blocks;
int id, ret = -EBUSY;
- u32 spare_blocks;
+ u32 spare_blocks = wl->tx_spare_blocks;
if (unlikely(wl->quirks & WL12XX_QUIRK_USE_2_SPARE_BLOCKS))
spare_blocks = 2;
- else
- spare_blocks = 1;
if (buf_offset + total_len > WL1271_AGGR_BUFFER_SIZE)
return -EAGAIN;
diff --git a/drivers/net/wireless/wl12xx/tx.h b/drivers/net/wireless/wl12xx/tx.h
index a3877ba..be3d940 100644
--- a/drivers/net/wireless/wl12xx/tx.h
+++ b/drivers/net/wireless/wl12xx/tx.h
@@ -25,6 +25,7 @@
#ifndef __TX_H__
#define __TX_H__
+#define TX_HW_BLOCK_SPARE_DEFAULT 1
#define TX_HW_BLOCK_SIZE 252
#define TX_HW_MGMT_PKT_LIFETIME_TU 2000
diff --git a/drivers/net/wireless/wl12xx/wl12xx.h b/drivers/net/wireless/wl12xx/wl12xx.h
index b04481a..1a160a7 100644
--- a/drivers/net/wireless/wl12xx/wl12xx.h
+++ b/drivers/net/wireless/wl12xx/wl12xx.h
@@ -433,6 +433,9 @@ struct wl1271 {
struct sk_buff_head tx_queue[NUM_TX_QUEUES];
int tx_queue_count;
+ /* amount of spare TX blocks to use */
+ int tx_spare_blocks;
+
/* Frames received, not handled yet by mac80211 */
struct sk_buff_head deferred_rx_queue;
--
1.7.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] wl12xx: use 2 spare TX blocks for GEM cipher
2011-04-03 12:37 [PATCH] wl12xx: use 2 spare TX blocks for GEM cipher Guy Eilam
@ 2011-04-08 17:38 ` Luciano Coelho
2011-04-12 5:03 ` Guy Eilam
0 siblings, 1 reply; 4+ messages in thread
From: Luciano Coelho @ 2011-04-08 17:38 UTC (permalink / raw)
To: Guy Eilam; +Cc: linux-wireless
On Sun, 2011-04-03 at 15:37 +0300, Guy Eilam wrote:
> Add tx_spare_blocks member to the wl1271 struct
> for more generic configuration of the amount
> of spare TX blocks that should be used.
> The default value is 1.
> in case GEM cipher is used by the STA, we need
> 2 spare TX blocks instead of just 1.
>
> Signed-off-by: Guy Eilam <guy@wizery.com>
> ---
Looks good, but I have a couple of comments.
> diff --git a/drivers/net/wireless/wl12xx/main.c b/drivers/net/wireless/wl12xx/main.c
> index 85cb4da..f962e43 100644
> --- a/drivers/net/wireless/wl12xx/main.c
> +++ b/drivers/net/wireless/wl12xx/main.c
[..]
> @@ -2039,6 +2043,17 @@ static int wl1271_set_key(struct wl1271 *wl, u16 action, u8 id, u8 key_type,
> 0xff, 0xff, 0xff, 0xff, 0xff, 0xff
> };
>
> + /*
> + * A STA set to GEM cipher requires 2 tx spare blocks.
> + * Return to default value when GEM cipher key is removed
> + */
> + if (key_type == KEY_GEM) {
> + if (action == KEY_ADD_OR_REPLACE)
> + wl->tx_spare_blocks = 2;
> + else
> + wl->tx_spare_blocks = TX_HW_BLOCK_SPARE_DEFAULT;
> + }
> +
This won't make a real difference in the code flow, but wouldn't it be
better to make it explicit that the "else" case is KEY_REMOVE? There is
also KEY_SET_ID, which is only used with WEP, so it doesn't matter now.
But I think it's more consistent to be clear about it.
> diff --git a/drivers/net/wireless/wl12xx/tx.c b/drivers/net/wireless/wl12xx/tx.c
> index db9e47e..2c79b6e 100644
> --- a/drivers/net/wireless/wl12xx/tx.c
> +++ b/drivers/net/wireless/wl12xx/tx.c
> @@ -135,12 +135,10 @@ static int wl1271_tx_allocate(struct wl1271 *wl, struct sk_buff *skb, u32 extra,
> u32 len;
> u32 total_blocks;
> int id, ret = -EBUSY;
> - u32 spare_blocks;
> + u32 spare_blocks = wl->tx_spare_blocks;
>
> if (unlikely(wl->quirks & WL12XX_QUIRK_USE_2_SPARE_BLOCKS))
> spare_blocks = 2;
> - else
> - spare_blocks = 1;
Do we still need the quirk now? Wouldn't it be nicer to change the
wl->tx_spare_blocks value directly instead?
--
Cheers,
Luca.
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] wl12xx: use 2 spare TX blocks for GEM cipher
2011-04-08 17:38 ` Luciano Coelho
@ 2011-04-12 5:03 ` Guy Eilam
2011-04-19 11:55 ` Luciano Coelho
0 siblings, 1 reply; 4+ messages in thread
From: Guy Eilam @ 2011-04-12 5:03 UTC (permalink / raw)
To: Luciano Coelho; +Cc: linux-wireless
On Fri, Apr 8, 2011 at 8:38 PM, Luciano Coelho <coelho@ti.com> wrote:
> On Sun, 2011-04-03 at 15:37 +0300, Guy Eilam wrote:
>> Add tx_spare_blocks member to the wl1271 struct
>> for more generic configuration of the amount
>> of spare TX blocks that should be used.
>> The default value is 1.
>> in case GEM cipher is used by the STA, we need
>> 2 spare TX blocks instead of just 1.
>>
>> Signed-off-by: Guy Eilam <guy@wizery.com>
>> ---
>
> Looks good, but I have a couple of comments.
>
>
>> diff --git a/drivers/net/wireless/wl12xx/main.c b/drivers/net/wireless/wl12xx/main.c
>> index 85cb4da..f962e43 100644
>> --- a/drivers/net/wireless/wl12xx/main.c
>> +++ b/drivers/net/wireless/wl12xx/main.c
>
> [..]
>
>> @@ -2039,6 +2043,17 @@ static int wl1271_set_key(struct wl1271 *wl, u16 action, u8 id, u8 key_type,
>> 0xff, 0xff, 0xff, 0xff, 0xff, 0xff
>> };
>>
>> + /*
>> + * A STA set to GEM cipher requires 2 tx spare blocks.
>> + * Return to default value when GEM cipher key is removed
>> + */
>> + if (key_type == KEY_GEM) {
>> + if (action == KEY_ADD_OR_REPLACE)
>> + wl->tx_spare_blocks = 2;
>> + else
>> + wl->tx_spare_blocks = TX_HW_BLOCK_SPARE_DEFAULT;
>> + }
>> +
>
> This won't make a real difference in the code flow, but wouldn't it be
> better to make it explicit that the "else" case is KEY_REMOVE? There is
> also KEY_SET_ID, which is only used with WEP, so it doesn't matter now.
> But I think it's more consistent to be clear about it.
>
I can add a more explicit "else if" case for KEY_REMOVE.
>
>
>> diff --git a/drivers/net/wireless/wl12xx/tx.c b/drivers/net/wireless/wl12xx/tx.c
>> index db9e47e..2c79b6e 100644
>> --- a/drivers/net/wireless/wl12xx/tx.c
>> +++ b/drivers/net/wireless/wl12xx/tx.c
>> @@ -135,12 +135,10 @@ static int wl1271_tx_allocate(struct wl1271 *wl, struct sk_buff *skb, u32 extra,
>> u32 len;
>> u32 total_blocks;
>> int id, ret = -EBUSY;
>> - u32 spare_blocks;
>> + u32 spare_blocks = wl->tx_spare_blocks;
>>
>> if (unlikely(wl->quirks & WL12XX_QUIRK_USE_2_SPARE_BLOCKS))
>> spare_blocks = 2;
>> - else
>> - spare_blocks = 1;
>
> Do we still need the quirk now? Wouldn't it be nicer to change the
> wl->tx_spare_blocks value directly instead?
>
We still need the quirk because if we change the tx_spare_blocks
directly, then the
we also need to have a tx_spare_blocks_previously member so that the KEY_GEM
code will know the value to set in KEY_REMOVAL.
Do you really think that it is better?
>
> --
> Cheers,
> Luca.
>
>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] wl12xx: use 2 spare TX blocks for GEM cipher
2011-04-12 5:03 ` Guy Eilam
@ 2011-04-19 11:55 ` Luciano Coelho
0 siblings, 0 replies; 4+ messages in thread
From: Luciano Coelho @ 2011-04-19 11:55 UTC (permalink / raw)
To: Guy Eilam; +Cc: linux-wireless
On Tue, 2011-04-12 at 08:03 +0300, Guy Eilam wrote:
> On Fri, Apr 8, 2011 at 8:38 PM, Luciano Coelho <coelho@ti.com> wrote:
> > On Sun, 2011-04-03 at 15:37 +0300, Guy Eilam wrote:
> >> diff --git a/drivers/net/wireless/wl12xx/tx.c b/drivers/net/wireless/wl12xx/tx.c
> >> index db9e47e..2c79b6e 100644
> >> --- a/drivers/net/wireless/wl12xx/tx.c
> >> +++ b/drivers/net/wireless/wl12xx/tx.c
> >> @@ -135,12 +135,10 @@ static int wl1271_tx_allocate(struct wl1271 *wl, struct sk_buff *skb, u32 extra,
> >> u32 len;
> >> u32 total_blocks;
> >> int id, ret = -EBUSY;
> >> - u32 spare_blocks;
> >> + u32 spare_blocks = wl->tx_spare_blocks;
> >>
> >> if (unlikely(wl->quirks & WL12XX_QUIRK_USE_2_SPARE_BLOCKS))
> >> spare_blocks = 2;
> >> - else
> >> - spare_blocks = 1;
> >
> > Do we still need the quirk now? Wouldn't it be nicer to change the
> > wl->tx_spare_blocks value directly instead?
> >
>
> We still need the quirk because if we change the tx_spare_blocks
> directly, then the
> we also need to have a tx_spare_blocks_previously member so that the KEY_GEM
> code will know the value to set in KEY_REMOVAL.
> Do you really think that it is better?
No, indeed this sounds more complicated, so you can keep it as it is.
--
Cheers,
Luca.
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2011-04-19 11:52 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-04-03 12:37 [PATCH] wl12xx: use 2 spare TX blocks for GEM cipher Guy Eilam
2011-04-08 17:38 ` Luciano Coelho
2011-04-12 5:03 ` Guy Eilam
2011-04-19 11:55 ` Luciano Coelho
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).