From patchwork Thu Apr 12 12:16:50 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Manikanta Pubbisetty X-Patchwork-Id: 10338443 X-Patchwork-Delegate: kvalo@adurom.com Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id 0D8BE603B5 for ; Thu, 12 Apr 2018 12:17:45 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id F3AE326E76 for ; Thu, 12 Apr 2018 12:17:44 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id E85D028112; Thu, 12 Apr 2018 12:17:44 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-7.8 required=2.0 tests=BAYES_00,DKIM_SIGNED, MAILING_LIST_MULTI, RCVD_IN_DNSWL_HI, T_DKIM_INVALID autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 8AB2026E76 for ; Thu, 12 Apr 2018 12:17:44 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752320AbeDLMRn (ORCPT ); Thu, 12 Apr 2018 08:17:43 -0400 Received: from smtp.codeaurora.org ([198.145.29.96]:41154 "EHLO smtp.codeaurora.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751818AbeDLMRm (ORCPT ); Thu, 12 Apr 2018 08:17:42 -0400 Received: by smtp.codeaurora.org (Postfix, from userid 1000) id 1DF8860F91; Thu, 12 Apr 2018 12:17:42 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=codeaurora.org; s=default; t=1523535462; bh=rPFiqBUI2kzMz5KqGiF8Nu4lYBt8ok0miDa/k1ky0ZU=; h=From:To:Cc:Subject:Date:From; b=GQqtBq8hXzBEilP7Hl0hc7nuD9/lCdw5XoJo359A6zqJtIfq1ccULnMWG7sp1ecn5 01gKbgPyoPAmfi3orxsz2TKJ/PUnhXKxyeeIf9JKoXg5hEWzcgbDTnUkdYlhwUG61F AC3pl3E1hM3iRUMYAJDyDv15/aR0k5un1jdmBHbc= Received: from localhost (blr-c-bdr-fw-01_globalnat_allzones-outside.qualcomm.com [103.229.19.19]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) (Authenticated sender: mpubbise@smtp.codeaurora.org) by smtp.codeaurora.org (Postfix) with ESMTPSA id 0AFAD6030D; Thu, 12 Apr 2018 12:17:40 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=codeaurora.org; s=default; t=1523535461; bh=rPFiqBUI2kzMz5KqGiF8Nu4lYBt8ok0miDa/k1ky0ZU=; h=From:To:Cc:Subject:Date:From; b=k1JTPAgme2zmRm2aLimt4Pg+eOaajKdcNOKnf+iyKbBhnYezpLfVQJYnPMh25/0aK G5p29Jy7XLUWKj7rfk1o0pZZqoJkoUzMW2CwjntWRieC3EQT3XE9ASgfI3cO50HjHv YeOpXQERRpw0fpz45bJP+XN/lwTueBF/Zkn4Mn1c= DMARC-Filter: OpenDMARC Filter v1.3.2 smtp.codeaurora.org 0AFAD6030D Authentication-Results: pdx-caf-mail.web.codeaurora.org; dmarc=none (p=none dis=none) header.from=codeaurora.org Authentication-Results: pdx-caf-mail.web.codeaurora.org; spf=none smtp.mailfrom=mpubbise@codeaurora.org From: mpubbise@codeaurora.org To: ath10k@lists.infradead.org Cc: linux-wireless@vger.kernel.org, Manikanta Pubbisetty Subject: [PATCH] ath10k: correct target assert problem due to CE5 stuck Date: Thu, 12 Apr 2018 17:46:50 +0530 Message-Id: <1523535410-29333-1-git-send-email-mpubbise@codeaurora.org> X-Mailer: git-send-email 2.7.4 Sender: linux-wireless-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-wireless@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP From: Manikanta Pubbisetty Correct a minor bug in the commit 0628467f97b5 ("ath10k: fix copy engine 5 destination ring stuck") which introduced a change to fix firmware assert that happens when ring indices of copy engine 5 are stuck for a specific duration, problem with this fix is that it did not use ring arithmatic. As a result,firmware asserts did not go away entirely athough the frequency of occurrence has reduced. Using ring arithmatic to fix the issue. Tested on QCA9984(fw version-10.4-3.4-00082). Fixes: 0628467f97b5 ("ath10k: fix copy engine 5 destination ring stuck) Signed-off-by: Manikanta Pubbisetty --- drivers/net/wireless/ath/ath10k/ce.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/net/wireless/ath/ath10k/ce.c b/drivers/net/wireless/ath/ath10k/ce.c index b9def7b..6efa69e 100644 --- a/drivers/net/wireless/ath/ath10k/ce.c +++ b/drivers/net/wireless/ath/ath10k/ce.c @@ -615,7 +615,7 @@ void ath10k_ce_rx_update_write_idx(struct ath10k_ce_pipe *pipe, u32 nentries) /* Prevent CE ring stuck issue that will occur when ring is full. * Make sure that write index is 1 less than read index. */ - if ((cur_write_idx + nentries) == dest_ring->sw_index) + if (((cur_write_idx + nentries) & nentries_mask) == dest_ring->sw_index) nentries -= 1; write_index = CE_RING_IDX_ADD(nentries_mask, write_index, nentries);