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 <lorenzo@kernel.org>
Signed-off-by: Felix Fietkau <nbd@nbd.name>
                        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;
                }
 
 
 struct mt76_txwi_cache {
        struct list_head list;
        dma_addr_t dma_addr;
+
+       struct sk_buff *skb;
 };
 
 struct mt76_rx_tid {
        bool has_5ghz;
 };
 
+#define MT_TXWI_NO_FREE                        BIT(0)
+
 struct mt76_driver_ops {
        bool tx_aligned4_skbs;
+       u32 txwi_flags;
        u16 txwi_size;
 
        void (*update_survey)(struct mt76_dev *dev);
 
        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)
 {