Skip to content

Commit

Permalink
ath11k: Add register access logic for WCN6750
Browse files Browse the repository at this point in the history
WCN6750 uses static window mapping to access the HW registers.
Unlike QCN9074 which uses 2nd window for CE and 3rd window
for UMAC register accesses, WCN6750 uses 1st window for UMAC
and 2nd window for CE registers.

Code is refactored so that WCN6750 can use the existing
ath11k_pci_read/write() APIs for accessing the registers.

Tested-on: WCN6750 hw1.0 AHB WLAN.MSL.1.0.1-00573-QCAMSLSWPLZ-1
Tested-on: WCN6855 hw2.0 PCI WLAN.HSP.1.1-01720.1-QCAHSPSWPL_V1_V2_SILICONZ_LITE-1
Tested-on: QCN9074 hw1.0 PCI WLAN.HK.2.5.0.1-01100-QCAHKSWPL_SILICONZ-1
Tested-on: IPQ8074 hw2.0 AHB WLAN.HK.2.4.0.1-00192-QCAHKSWPL_SILICONZ-1

Signed-off-by: Manikanta Pubbisetty <quic_mpubbise@quicinc.com>
Patchwork-Id: 12714569
Signed-off-by: Kalle Valo <quic_kvalo@quicinc.com>
  • Loading branch information
Manikanta Pubbisetty authored and kvalo committed Jan 17, 2022
1 parent 42cfb17 commit f38b44f
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 24 deletions.
3 changes: 3 additions & 0 deletions drivers/net/wireless/ath/ath11k/ahb.c
Expand Up @@ -42,6 +42,9 @@ const struct ath11k_bus_params ath11k_hybrid_bus_params = {
.fixed_bdf_addr = false,
.fixed_mem_region = false,
.hybrid_bus_type = true,
.static_window_map = true,
.dp_window_idx = 1,
.ce_window_idx = 2,
};

#define ATH11K_IRQ_CE0_OFFSET 4
Expand Down
2 changes: 2 additions & 0 deletions drivers/net/wireless/ath/ath11k/core.h
Expand Up @@ -659,6 +659,8 @@ struct ath11k_bus_params {
bool fixed_mem_region;
bool static_window_map;
bool hybrid_bus_type;
u8 dp_window_idx;
u8 ce_window_idx;
struct {
void (*wakeup)(struct ath11k_base *ab);
void (*release)(struct ath11k_base *ab);
Expand Down
4 changes: 4 additions & 0 deletions drivers/net/wireless/ath/ath11k/pci.c
Expand Up @@ -765,6 +765,10 @@ static int ath11k_pci_probe(struct pci_dev *pdev,
ab->bus_params.ops.wakeup = NULL;
ab->bus_params.ops.release = NULL;
ab->hw_rev = ATH11K_HW_QCN9074_HW10;

/* For QCN9074, CE: 2nd window, UMAC: 3rd window */
ab->bus_params.ce_window_idx = 2;
ab->bus_params.dp_window_idx = 3;
break;
case WCN6855_DEVICE_ID:
ab->id.bdf_search = ATH11K_BDF_SEARCH_BUS_AND_BOARD;
Expand Down
35 changes: 11 additions & 24 deletions drivers/net/wireless/ath/ath11k/pci_cmn.c
Expand Up @@ -122,16 +122,13 @@ int ath11k_pci_get_msi_config(struct ath11k_base *ab)
static inline u32 ath11k_pci_get_window_start(struct ath11k_base *ab,
u32 offset)
{
u32 window_start;
u32 window_start = 0;

/* 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_CE_WFSS_CE_REG_BASE) < ATH11K_PCI_WINDOW_RANGE_MASK)
window_start = 2 * ATH11K_PCI_WINDOW_START;
else
window_start = ATH11K_PCI_WINDOW_START;
window_start = ab->bus_params.dp_window_idx * ATH11K_PCI_WINDOW_START;
else if ((offset ^ HAL_SEQ_WCSS_UMAC_CE0_SRC_REG(ab)) <
ATH11K_PCI_WINDOW_RANGE_MASK)
window_start = ab->bus_params.ce_window_idx * ATH11K_PCI_WINDOW_START;

return window_start;
}
Expand All @@ -151,17 +148,12 @@ void ath11k_pci_write32(struct ath11k_base *ab, u32 offset, u32 value)
if (offset < ATH11K_PCI_WINDOW_START) {
iowrite32(value, ab->mem + offset);
} else {
if (ab->bus_params.static_window_map)
if (ab->bus_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 &&
ab->bus_params.ops.window_write32) {
ab->bus_params.ops.window_write32(ab, offset, value);
} else {
iowrite32(value, ab->mem + window_start +
(offset & ATH11K_PCI_WINDOW_RANGE_MASK));
} else if (ab->bus_params.ops.window_write32) {
ab->bus_params.ops.window_write32(ab, offset, value);
}
}

Expand All @@ -186,17 +178,12 @@ u32 ath11k_pci_read32(struct ath11k_base *ab, u32 offset)
if (offset < ATH11K_PCI_WINDOW_START) {
val = ioread32(ab->mem + offset);
} else {
if (ab->bus_params.static_window_map)
if (ab->bus_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 &&
ab->bus_params.ops.window_read32) {
val = ab->bus_params.ops.window_read32(ab, offset);
} else {
val = ioread32(ab->mem + window_start +
(offset & ATH11K_PCI_WINDOW_RANGE_MASK));
} else if (ab->bus_params.ops.window_read32) {
val = ab->bus_params.ops.window_read32(ab, offset);
}
}

Expand Down

0 comments on commit f38b44f

Please sign in to comment.