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 1164C335BA1; Mon, 18 Aug 2025 13:33:00 +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=1755523980; cv=none; b=jU2u1aEXjLU9rcGKfpKwTJJYwAEjdVTZwWua3U7U5xXSLGEmYHFve44PwygFjyUztHgCSKbv1TwjUvafu9BTTyWLO3rbQ0cvU8vnrsopxH2YrMY9OdYR/BVwutHJLxKKY9eyLa2q4wS1E/QtOjTcyTpZcAnCTJlI1wbyBHWJwB4= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1755523980; c=relaxed/simple; bh=ZXtMayDGtzxU2wtDl391l/ZnqiEw6qUumHAK0rwDGvo=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=i0Qdxqq8zUTrzbLiPjZWDvW0z60JhXzBP9JV/6d0Z4dVAqadcLnCi+90zF1WZ989XM6UIEYlKmx5iZFOQTGN/RVKA00yzm/0Jss0q7jdilJwn/GXtqvLd0q9CoRlGTor5/51bYjiLgYh8JbsYduGMoeRr9Gdx5IdUhwpJzoXGzE= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=OckEcrXb; 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="OckEcrXb" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 732B1C4CEEB; Mon, 18 Aug 2025 13:32:59 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1755523979; bh=ZXtMayDGtzxU2wtDl391l/ZnqiEw6qUumHAK0rwDGvo=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=OckEcrXb6qYjn6XMuGrcZiOKAwpGfc+zGpG+fwOJtKXdLDNY+mdFNc6zYkTOIaETl HAKMQ3wk76PeesOnGiUY/y2aa9oaNGIAJELTLq6X/rYETfhpZwsiCF8ZtS5y3KlzsY GioEQmKc6HG+wLObPGTfmWX6jrGyfzzQznjcOXUk= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Raj Kumar Bhagat , Vasanthakumar Thiagarajan , Jeff Johnson , Sasha Levin Subject: [PATCH 6.15 289/515] wifi: ath12k: Enable REO queue lookup table feature on QCN9274 hw2.0 Date: Mon, 18 Aug 2025 14:44:35 +0200 Message-ID: <20250818124509.537565841@linuxfoundation.org> X-Mailer: git-send-email 2.50.1 In-Reply-To: <20250818124458.334548733@linuxfoundation.org> References: <20250818124458.334548733@linuxfoundation.org> User-Agent: quilt/0.68 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-Transfer-Encoding: 8bit 6.15-stable review patch. If anyone has any objections, please let me know. ------------------ From: Raj Kumar Bhagat [ Upstream commit b79742b84e16e41c4a09f3126436f39f36e75c06 ] The commit 89ac53e96217 ("wifi: ath12k: Enable REO queue lookup table feature on QCN9274") originally intended to enable the reoq_lut_support hardware parameter flag for both QCN9274 hw1.0 and hw2.0. However, it enabled it only for QCN9274 hw1.0. Hence, enable REO queue lookup table feature on QCN9274 hw2.0. Tested-on: QCN9274 hw2.0 PCI WLAN.WBE.1.4.1-00199-QCAHKSWPL_SILICONZ-1 Signed-off-by: Raj Kumar Bhagat Reviewed-by: Vasanthakumar Thiagarajan Link: https://patch.msgid.link/20250609-qcn9274-reoq-v1-1-a92c91abc9b9@quicinc.com Signed-off-by: Jeff Johnson Signed-off-by: Sasha Levin --- drivers/net/wireless/ath/ath12k/hw.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/net/wireless/ath/ath12k/hw.c b/drivers/net/wireless/ath/ath12k/hw.c index a5fa3b6a831a..e0e766a0b6d6 100644 --- a/drivers/net/wireless/ath/ath12k/hw.c +++ b/drivers/net/wireless/ath/ath12k/hw.c @@ -1090,7 +1090,7 @@ static const struct ath12k_hw_params ath12k_hw_params[] = { .download_calib = true, .supports_suspend = false, .tcl_ring_retry = true, - .reoq_lut_support = false, + .reoq_lut_support = true, .supports_shadow_regs = false, .num_tcl_banks = 48, -- 2.39.5