soc: mediatek: knows_txdone needs to be set in Mediatek CMDQ helper
authorBibby Hsieh <bibby.hsieh@mediatek.com>
Fri, 14 Feb 2020 04:35:45 +0000 (12:35 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 8 Apr 2020 07:08:44 +0000 (09:08 +0200)
commit ce35e21d82bcac8b3fd5128888f9e233f8444293 upstream.

Mediatek CMDQ driver have a mechanism to do TXDONE_BY_ACK,
so we should set knows_txdone.

Fixes:576f1b4bc802 ("soc: mediatek: Add Mediatek CMDQ helper")

Cc: stable@vger.kernel.org # v5.0+
Signed-off-by: Bibby Hsieh <bibby.hsieh@mediatek.com>
Reviewed-by: CK Hu <ck.hu@mediatek.com>
Signed-off-by: Matthias Brugger <matthias.bgg@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/soc/mediatek/mtk-cmdq-helper.c

index 3c82de5..73a852b 100644 (file)
@@ -38,6 +38,7 @@ struct cmdq_client *cmdq_mbox_create(struct device *dev, int index, u32 timeout)
        client->pkt_cnt = 0;
        client->client.dev = dev;
        client->client.tx_block = false;
+       client->client.knows_txdone = true;
        client->chan = mbox_request_channel(&client->client, index);
 
        if (IS_ERR(client->chan)) {