Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id C0579C433FE for ; Tue, 16 Nov 2021 02:52:35 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 9F1AD613D3 for ; Tue, 16 Nov 2021 02:52:35 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S241496AbhKPCza (ORCPT ); Mon, 15 Nov 2021 21:55:30 -0500 Received: from m43-7.mailgun.net ([69.72.43.7]:51138 "EHLO m43-7.mailgun.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1379183AbhKPCw7 (ORCPT ); Mon, 15 Nov 2021 21:52:59 -0500 DKIM-Signature: a=rsa-sha256; v=1; c=relaxed/relaxed; d=mg.codeaurora.org; q=dns/txt; s=smtp; t=1637031002; h=Message-ID: References: In-Reply-To: Subject: Cc: To: From: Date: Content-Transfer-Encoding: Content-Type: MIME-Version: Sender; bh=lvjB3OIOSBhCBlH7980q0leDPyQYRsjyuAGHlxg2r14=; b=puCfTUYomR7MKB6zME8yNt9JixP3AFhUHdo9oQK1C2DVE9Sk3Bn+oaYzlmAWD8Y1pS378lBG pTHul2soZWD6EilULQgBHB/1EbikjcTPY+M3y2gSnaoLXBFsD+1RuXO0BFsyTtbF1/c/eAhB WqglSST+xZf96KvdIiTMT07pGyk= X-Mailgun-Sending-Ip: 69.72.43.7 X-Mailgun-Sid: WyI3YTAwOSIsICJsaW51eC13aXJlbGVzc0B2Z2VyLmtlcm5lbC5vcmciLCAiYmU5ZTRhIl0= Received: from smtp.codeaurora.org (ec2-35-166-182-171.us-west-2.compute.amazonaws.com [35.166.182.171]) by smtp-out-n04.prod.us-east-1.postgun.com with SMTP id 61931c5a638a2f4d61947cce (version=TLS1.2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256); Tue, 16 Nov 2021 02:50:02 GMT Sender: bqiang=codeaurora.org@mg.codeaurora.org Received: by smtp.codeaurora.org (Postfix, from userid 1001) id 8B40BC00910; Tue, 16 Nov 2021 02:50:01 +0000 (UTC) Received: from mail.codeaurora.org (localhost.localdomain [127.0.0.1]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) (Authenticated sender: bqiang) by smtp.codeaurora.org (Postfix) with ESMTPSA id 7094FC43616; Tue, 16 Nov 2021 02:50:00 +0000 (UTC) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit Date: Tue, 16 Nov 2021 10:50:00 +0800 From: Baochen Qiang To: Kalle Valo Cc: ath11k@lists.infradead.org, linux-wireless@vger.kernel.org Subject: Re: [PATCH 0/7] ath11k: support one MSI vector In-Reply-To: <878rxpiudp.fsf@codeaurora.org> References: <20211026041616.4956-1-bqiang@codeaurora.org> <878rxpiudp.fsf@codeaurora.org> Message-ID: <72c4443df7de4f6fa4b87d2244766c85@codeaurora.org> X-Sender: bqiang@codeaurora.org User-Agent: Roundcube Webmail/1.3.9 Precedence: bulk List-ID: X-Mailing-List: linux-wireless@vger.kernel.org On 2021-11-15 18:30, Kalle Valo wrote: > Baochen Qiang writes: > >> This patch set is to support one MSI vector for QCA6390. >> >> Depends-On: >> 1. ath11k: Fix crash caused by uninitialized TX ring >> >> https://patchwork.kernel.org/project/linux-wireless/patch/20211026011605.58615-1-quic_bqiang@quicinc.com/ >> >> Baochen Qiang (1): >> ath11k: Set IRQ affinity to CPU0 in case of one MSI vector >> >> Carl Huang (6): >> ath11k: get msi_data again after request_irq is called >> ath11k: add CE and ext IRQ flag to indicate irq_handler >> ath11k: use ATH11K_PCI_IRQ_DP_OFFSET for DP IRQ >> ath11k: refactor multiple MSI vector implementation >> ath11k: supports one MSI vector >> ath11k: do not restore ASPM in case of single MSI vector > > I assume this is v2 of Carl's patchset: > > https://patchwork.kernel.org/project/linux-wireless/cover/20201223030225.2345-1-cjhuang@codeaurora.org/ > > Can you provide a changelog? No need to resend because of that, just a > reply to this thread enough. Hi Kalle, this is the changelog: 1. changes by Kalle based on Carl's v1: * add a log message for MSI vector count * add a log message when disabling ASPM * patch 1: fix error handling in ath11k_pci_probe() * patch 1: simplify ath11k_pci_config_msi_data() * patch 2: convert booleans to set_bit() & co for atomic access * patch 2:__ath11k_pci_ext_irq_disable(): fix compilation * patch 4: bool vectors_32_capability to set_bit() for atomic access * patch 4: ath11k_mhi_get_msi(): don't use ? operator * improve commits logs a bit 2. changes by Baochen based on Kalle's version: * add a new patch: "ath11k: Set IRQ affinity to CPU0 in case of one MSI vector" * address Jeff's comments on "ath11k: do not restore ASPM in case of single MSI vector": change debug info from "disabling PCI ASPM ..." to "leaving PCI ASPM disabled ..." * change error handling in patch "ath11k: get msi_data again after request_irq is called" * address Vasanth's comments on "ath11k: refactor multiple msi vector implementation"