From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 189FE31D36D; Mon, 27 Oct 2025 19:17:36 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1761592656; cv=none; b=Z3Lq6OPX0TkMBBmAJg2KvCIUq+2H3sypG6SkN1WzQwow1Pb5ZAZo1+Fw6iIVgwLDT3LzgKX6VjQvQUYwZOrEzJQr5AIGTz0G439x8LpYL2t/qixx7gfgaRjKvVwYEQfwIysLBwq9dZfL1OzyTiN6atmOxE46gvpH5/GlJjkKSEE= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1761592656; c=relaxed/simple; bh=Sq15tN5HQC/dLTqps06opOMhWbVeLu772auvMli6nOc=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version:Content-Type; b=bXdEw+BhiNqezyrdWy3rkE0pIfqLbDdk3o0yJflWLY24fth5YQMGf2iDBRh0WmzwHgXZvwQ/Zoa08Rtd3XcxlE1c1T41s+HtT6b2AfxyYovm0+nYYSZn/WxrLuefDk+rs2kf018NtPLdwZmQaWS/mA/3AP7ITPlR6iAQKP5byBo= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=l5ZrbLQR; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="l5ZrbLQR" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 99CD2C4CEF1; Mon, 27 Oct 2025 19:17:35 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1761592656; bh=Sq15tN5HQC/dLTqps06opOMhWbVeLu772auvMli6nOc=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=l5ZrbLQRQn8d807nBQ0arHhpyvytOoq3QbpML8imexjshy27mcZ+EiRdyCILTbuOE T11jra7fnoV+yRX/OUI5ujvfNB4ij4xGQjGswNeubu/5ijc3B1ldbqnwQJGv/ZNbKB F73+sQ3dfpQgLhyb0bmeyDBgJiJIgpxlT/rh7yi4= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Fabrizio Castro , Lad Prabhakar , =?UTF-8?q?Niklas=20S=C3=B6derlund?= , Jakub Kicinski Subject: [PATCH 6.6 46/84] net: ravb: Ensure memory write completes before ringing TX doorbell Date: Mon, 27 Oct 2025 19:36:35 +0100 Message-ID: <20251027183440.046111764@linuxfoundation.org> X-Mailer: git-send-email 2.51.1 In-Reply-To: <20251027183438.817309828@linuxfoundation.org> References: <20251027183438.817309828@linuxfoundation.org> User-Agent: quilt/0.69 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 6.6-stable review patch. If anyone has any objections, please let me know. ------------------ From: Lad Prabhakar commit 706136c5723626fcde8dd8f598a4dcd251e24927 upstream. Add a final dma_wmb() barrier before triggering the transmit request (TCCR_TSRQ) to ensure all descriptor and buffer writes are visible to the DMA engine. According to the hardware manual, a read-back operation is required before writing to the doorbell register to guarantee completion of previous writes. Instead of performing a dummy read, a dma_wmb() is used to both enforce the same ordering semantics on the CPU side and also to ensure completion of writes. Fixes: c156633f1353 ("Renesas Ethernet AVB driver proper") Cc: stable@vger.kernel.org Co-developed-by: Fabrizio Castro Signed-off-by: Fabrizio Castro Signed-off-by: Lad Prabhakar Reviewed-by: Niklas Söderlund Link: https://patch.msgid.link/20251017151830.171062-5-prabhakar.mahadev-lad.rj@bp.renesas.com Signed-off-by: Jakub Kicinski Signed-off-by: Greg Kroah-Hartman --- drivers/net/ethernet/renesas/ravb_main.c | 8 ++++++++ 1 file changed, 8 insertions(+) --- a/drivers/net/ethernet/renesas/ravb_main.c +++ b/drivers/net/ethernet/renesas/ravb_main.c @@ -2059,6 +2059,14 @@ static netdev_tx_t ravb_start_xmit(struc dma_wmb(); desc->die_dt = DT_FSINGLE; } + + /* Before ringing the doorbell we need to make sure that the latest + * writes have been committed to memory, otherwise it could delay + * things until the doorbell is rang again. + * This is in replacement of the read operation mentioned in the HW + * manuals. + */ + dma_wmb(); ravb_modify(ndev, TCCR, TCCR_TSRQ0 << q, TCCR_TSRQ0 << q); priv->cur_tx[q] += num_tx_desc;