Skip to content

Commit

Permalink
mt76: dma: introduce skb field in mt76_txwi_cache
Browse files Browse the repository at this point in the history
Introduce skb field in mt76_txwi_cache. Moreover add txwi_flags
to mt76_driver_ops since new chipsets will release mt76_txwi_cache/skbs
at tx completion instead of dma one.
This is a preliminary patch to add mt7615 support

Signed-off-by: Lorenzo Bianconi <[email protected]>
  • Loading branch information
LorenzoBianconi authored and nbd168 committed Apr 25, 2019
1 parent 5007326 commit c47a568
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
3 changes: 2 additions & 1 deletion dma.c
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,8 @@ mt76_dma_tx_cleanup(struct mt76_dev *dev, enum mt76_txq_id qid, bool flush)
dev->drv->tx_complete_skb(dev, qid, &entry);

if (entry.txwi) {
mt76_put_txwi(dev, entry.txwi);
if (!(dev->drv->txwi_flags & MT_TXWI_NO_FREE))
mt76_put_txwi(dev, entry.txwi);
wake = !flush;
}

Expand Down
5 changes: 5 additions & 0 deletions mt76.h
Original file line number Diff line number Diff line change
Expand Up @@ -233,6 +233,8 @@ struct mt76_txq {
struct mt76_txwi_cache {
struct list_head list;
dma_addr_t dma_addr;

struct sk_buff *skb;
};

struct mt76_rx_tid {
Expand Down Expand Up @@ -286,7 +288,10 @@ struct mt76_hw_cap {
bool has_5ghz;
};

#define MT_TXWI_NO_FREE BIT(0)

struct mt76_driver_ops {
u32 txwi_flags;
u16 txwi_size;

void (*update_survey)(struct mt76_dev *dev);
Expand Down
1 change: 1 addition & 0 deletions tx.c
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ mt76_put_txwi(struct mt76_dev *dev, struct mt76_txwi_cache *t)
list_add(&t->list, &dev->txwi_cache);
spin_unlock_bh(&dev->lock);
}
EXPORT_SYMBOL_GPL(mt76_put_txwi);

void mt76_tx_free(struct mt76_dev *dev)
{
Expand Down

0 comments on commit c47a568

Please sign in to comment.