[PATCH] ath11k: Fix register write failure on QCN9074
Manikanta Pubbisetty
quic_mpubbise at quicinc.com
Fri Jul 15 03:10:41 PDT 2022
On 7/15/2022 3:33 PM, Kalle Valo wrote:
> Manikanta Pubbisetty <quic_mpubbise at quicinc.com> writes:
>
>> Commit 56c8ccf331bd ("ath11k: Add register access logic for WCN6750")
>> regressed QCN9074. With the above mentioned commit, writes are failing
>> for some registers on QCN9074 although the device seems to work
>> normally.
>>
>> ath11k_pci 0000:03:00.0: failed to set pcie link register0x01e0e0a8: 0xffffffff != 0x00000010
>> ath11k_pci 0000:03:00.0: failed to set sysclk: -110
>>
>> PCIe devices in ath11k (QCA6390, WCN6855, QCN9074, WCN6750) use window
>> concept for register accesses. There are two schemes, dynamic & static
>> window.
>>
>> In dynamic window scheme, a single window(region in the BAR) is mapped
>> either to CE or DP register windows at any give time. QCA6390 & WCN6855
>> follow this scheme for register accesses.
>>
>> In static window scheme, CE & DP register windows are statically mapped
>> to separate regions with in the BAR so that there is no switching of
>> register windows between CE & DP register accesses. QCN9074 & WCN6750
>> follow this scheme although the window start offsets are different for
>> QCN9074 & WCN6750.
>>
>> QCN9074 uses 3rd & 2nd window for DP & CE register accesses respectively
>> whereas WCN6750 uses 1st & 2nd window for DP & CE. In QCN9074, along with
>> 2nd & 3rd windows, 1st window is also used for certain configurations
>> which commit 56c8ccf331bd ("ath11k: Add register access logic for WCN6750")
>> did not account for and hence the regression.
>>
>> Fix this by going back to the original way of accessing the registers on
>> QCN9074. Since this diverges from WCN6750 way of accessing registers, it
>> is required to register window_read32/window_write32() pci_ops for WCN6750.
>> We can also get rid of dp_window_idx & ce_window_idx members in hw_params,
>> so remove them.
>>
>> Also add a new API ath11k_pcic_register_pci_ops() for registering pci_ops
>> to the ath11k core. This API checks for mandatory pci_ops() and reports
>> error if those are missing. Also initialize unused pci_ops to NULL.
>>
>> Tested-on: WCN6750 hw1.0 AHB WLAN.MSL.1.0.1-00887-QCAMSLSWPLZ-1
>> Tested-on: QCN9074 hw1.0 PCI WLAN.HK.2.6.0.1-00861-QCAHKSWPL_SILICONZ-1
>>
>> Fixes: 56c8ccf331bd ("ath11k: Add register access logic for WCN6750")
>> Reported-by: Maxime Bizon <mbizon at freebox.fr>
>> Tested-by: Maxime Bizon <mbizon at freebox.fr>
>> Signed-off-by: Manikanta Pubbisetty <quic_mpubbise at quicinc.com>
>
> [...]
>
>> --- a/drivers/net/wireless/ath/ath11k/pci.c
>> +++ b/drivers/net/wireless/ath/ath11k/pci.c
>> @@ -50,6 +50,23 @@ static void ath11k_pci_bus_release(struct ath11k_base *ab)
>> mhi_device_put(ab_pci->mhi_ctrl->mhi_dev);
>> }
>>
>> +static inline u32 ath11k_pci_get_window_start(struct ath11k_base *ab, u32 offset)
>> +{
>> + u32 window_start;
>> +
>> + /* If offset lies within DP register range, use 3rd window */
>> + if ((offset ^ HAL_SEQ_WCSS_UMAC_OFFSET) < ATH11K_PCI_WINDOW_RANGE_MASK)
>> + window_start = 3 * ATH11K_PCI_WINDOW_START;
>> + /* If offset lies within CE register range, use 2nd window */
>> + else if ((offset ^ HAL_SEQ_WCSS_UMAC_CE0_SRC_REG(ab)) <
>> + ATH11K_PCI_WINDOW_RANGE_MASK)
>> + window_start = 2 * ATH11K_PCI_WINDOW_START;
>> + else
>> + window_start = ATH11K_PCI_WINDOW_START;
>> +
>> + return window_start;
>> +}
>> +
>> static inline void ath11k_pci_select_window(struct ath11k_pci *ab_pci, u32 offset)
>> {
>> struct ath11k_base *ab = ab_pci->ab;
>> @@ -70,13 +87,23 @@ static void
>> ath11k_pci_window_write32(struct ath11k_base *ab, u32 offset, u32 value)
>> {
>> struct ath11k_pci *ab_pci = ath11k_pci_priv(ab);
>> - u32 window_start = ATH11K_PCI_WINDOW_START;
>> + u32 window_start;
>>
>> - spin_lock_bh(&ab_pci->window_lock);
>> - ath11k_pci_select_window(ab_pci, offset);
>> - iowrite32(value, ab->mem + window_start +
>> - (offset & ATH11K_PCI_WINDOW_RANGE_MASK));
>> - spin_unlock_bh(&ab_pci->window_lock);
>> + if (ab->hw_params.static_window_map)
>> + window_start = ath11k_pci_get_window_start(ab, offset);
>> + else
>> + window_start = ATH11K_PCI_WINDOW_START;
>> +
>> + if (window_start == ATH11K_PCI_WINDOW_START) {
>> + spin_lock_bh(&ab_pci->window_lock);
>> + ath11k_pci_select_window(ab_pci, offset);
>> + iowrite32(value, ab->mem + window_start +
>> + (offset & ATH11K_PCI_WINDOW_RANGE_MASK));
>> + spin_unlock_bh(&ab_pci->window_lock);
>> + } else {
>> + iowrite32(value, ab->mem + window_start +
>> + (offset & ATH11K_PCI_WINDOW_RANGE_MASK));
>> + }
>> }
>
> I refactored ath11k_pci_get_window_start() a bit, please check my
> changes here:
>
> https://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git/commit/?h=pending&id=95094045d7f467aa8928307ea538d1fd9d15a239
>
Refactored code looks okay to me. Just one comment though, you may
probably remove initialization of "u32 window_start =
ATH11K_PCI_WINDOW_START;" in ath11k_pci_window_read32? It is removed in
ath11k_pci_window_write32.
Thanks,
Manikanta
More information about the ath11k
mailing list