]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/commitdiff
mt76: dma: do not write cpu_idx on rx queue reset until after refill
authorFelix Fietkau <nbd@nbd.name>
Mon, 20 Jan 2020 11:11:07 +0000 (12:11 +0100)
committerFelix Fietkau <nbd@nbd.name>
Fri, 14 Feb 2020 09:06:06 +0000 (10:06 +0100)
The hardware should only start processing the ring after at least one
buffer has been added

Signed-off-by: Felix Fietkau <nbd@nbd.name>
drivers/net/wireless/mediatek/mt76/dma.c

index bcb11bb9aeebbd2493fe76f37b665811990e5bd5..e5dd7080e88e9e833070afa5d4123abe39955d78 100644 (file)
@@ -132,6 +132,11 @@ mt76_dma_sync_idx(struct mt76_dev *dev, struct mt76_queue *q)
        writel(q->ndesc, &q->regs->ring_size);
        q->head = readl(&q->regs->dma_idx);
        q->tail = q->head;
+}
+
+static void
+mt76_dma_kick_queue(struct mt76_dev *dev, struct mt76_queue *q)
+{
        writel(q->head, &q->regs->cpu_idx);
 }
 
@@ -193,8 +198,10 @@ mt76_dma_tx_cleanup(struct mt76_dev *dev, enum mt76_txq_id qid, bool flush)
                dev->q_tx[__MT_TXQ_MAX + i].swq_queued -= n_swq_queued[4 + i];
        }
 
-       if (flush)
+       if (flush) {
                mt76_dma_sync_idx(dev, q);
+               mt76_dma_kick_queue(dev, q);
+       }
 
        wake = wake && q->stopped &&
               qid < IEEE80211_NUM_ACS && q->queued < q->ndesc - 8;
@@ -257,12 +264,6 @@ mt76_dma_dequeue(struct mt76_dev *dev, struct mt76_queue *q, bool flush,
        return mt76_dma_get_buf(dev, q, idx, len, info, more);
 }
 
-static void
-mt76_dma_kick_queue(struct mt76_dev *dev, struct mt76_queue *q)
-{
-       writel(q->head, &q->regs->cpu_idx);
-}
-
 static int
 mt76_dma_tx_queue_skb_raw(struct mt76_dev *dev, enum mt76_txq_id qid,
                          struct sk_buff *skb, u32 tx_info)