qcacmn: Add support to affine individual grp irqs
Add support to affine individual grp irqs to either perf or non-perf cluster. Change-Id: I90006645acb82b71c63d2255722e2c67bb7a2f46 CRs-Fixed: 3059676
This commit is contained in:

committato da
Madan Koyyalamudi

parent
6c7d7a2b2e
commit
d9eb751658
@@ -1,5 +1,6 @@
|
||||
/*
|
||||
* Copyright (c) 2016-2021 The Linux Foundation. All rights reserved.
|
||||
* Copyright (c) 2021 Qualcomm Innovation Center, Inc. All rights reserved.
|
||||
*
|
||||
* Permission to use, copy, modify, and/or distribute this software for
|
||||
* any purpose with or without fee is hereby granted, provided that the
|
||||
@@ -456,3 +457,8 @@ int hif_dummy_disable_grp_irqs(struct hif_softc *scn)
|
||||
{
|
||||
return -EOPNOTSUPP;
|
||||
}
|
||||
|
||||
void hif_dummy_set_grp_intr_affinity(struct hif_softc *scn,
|
||||
uint32_t grp_intr_bitmap, bool perf)
|
||||
{
|
||||
}
|
||||
|
@@ -1,5 +1,6 @@
|
||||
/*
|
||||
* Copyright (c) 2016-2021 The Linux Foundation. All rights reserved.
|
||||
* Copyright (c) 2021 Qualcomm Innovation Center, Inc. All rights reserved.
|
||||
*
|
||||
* Permission to use, copy, modify, and/or distribute this software for
|
||||
* any purpose with or without fee is hereby granted, provided that the
|
||||
@@ -95,3 +96,5 @@ int hif_dummy_enable_grp_irqs(struct hif_softc *scn);
|
||||
int hif_dummy_disable_grp_irqs(struct hif_softc *scn);
|
||||
void hif_dummy_config_irq_clear_cpu_affinity(struct hif_softc *scn,
|
||||
int intr_ctxt_id, int cpu);
|
||||
void hif_dummy_set_grp_intr_affinity(struct hif_softc *scn,
|
||||
uint32_t grp_intr_bitmask, bool perf);
|
||||
|
@@ -1,5 +1,6 @@
|
||||
/*
|
||||
* Copyright (c) 2016-2018, 2020-2021 The Linux Foundation. All rights reserved.
|
||||
* Copyright (c) 2021 Qualcomm Innovation Center, Inc. All rights reserved.
|
||||
*
|
||||
* Permission to use, copy, modify, and/or distribute this software for
|
||||
* any purpose with or without fee is hereby granted, provided that the
|
||||
@@ -66,6 +67,7 @@ static void hif_initialize_default_ops(struct hif_softc *hif_sc)
|
||||
bus_ops->hif_disable_grp_irqs = &hif_dummy_enable_grp_irqs;
|
||||
bus_ops->hif_config_irq_clear_cpu_affinity =
|
||||
&hif_dummy_config_irq_clear_cpu_affinity;
|
||||
bus_ops->hif_set_grp_intr_affinity = &hif_dummy_set_grp_intr_affinity;
|
||||
}
|
||||
|
||||
#define NUM_OPS (sizeof(struct hif_bus_ops) / sizeof(void *))
|
||||
@@ -708,3 +710,15 @@ int hif_enable_grp_irqs(struct hif_opaque_softc *scn)
|
||||
|
||||
return hif_sc->bus_ops.hif_enable_grp_irqs(hif_sc);
|
||||
}
|
||||
|
||||
void hif_set_grp_intr_affinity(struct hif_opaque_softc *scn,
|
||||
uint32_t grp_intr_bitmask, bool perf)
|
||||
{
|
||||
struct hif_softc *hif_sc = HIF_GET_SOFTC(scn);
|
||||
|
||||
if (!hif_sc)
|
||||
return;
|
||||
|
||||
hif_sc->bus_ops.hif_set_grp_intr_affinity(hif_sc, grp_intr_bitmask,
|
||||
perf);
|
||||
}
|
||||
|
@@ -1,5 +1,6 @@
|
||||
/*
|
||||
* Copyright (c) 2016-2018, 2020-2021 The Linux Foundation. All rights reserved.
|
||||
* Copyright (c) 2021 Qualcomm Innovation Center, Inc. All rights reserved.
|
||||
*
|
||||
* Permission to use, copy, modify, and/or distribute this software for
|
||||
* any purpose with or without fee is hereby granted, provided that the
|
||||
@@ -99,6 +100,8 @@ struct hif_bus_ops {
|
||||
unsigned int *offset);
|
||||
int (*hif_enable_grp_irqs)(struct hif_softc *scn);
|
||||
int (*hif_disable_grp_irqs)(struct hif_softc *scn);
|
||||
void (*hif_set_grp_intr_affinity)(struct hif_softc *scn,
|
||||
uint32_t grp_intr_bitmask, bool perf);
|
||||
};
|
||||
|
||||
#ifdef HIF_SNOC
|
||||
|
@@ -1,5 +1,6 @@
|
||||
/*
|
||||
* Copyright (c) 2016-2018,2020-2021 The Linux Foundation. All rights reserved.
|
||||
* Copyright (c) 2021 Qualcomm Innovation Center, Inc. All rights reserved.
|
||||
*
|
||||
* Permission to use, copy, modify, and/or distribute this software for
|
||||
* any purpose with or without fee is hereby granted, provided that the
|
||||
@@ -78,6 +79,7 @@ QDF_STATUS hif_initialize_ahb_ops(struct hif_bus_ops *bus_ops)
|
||||
&hif_dummy_config_irq_affinity;
|
||||
bus_ops->hif_config_irq_by_ceid = &hif_ahb_configure_irq_by_ceid;
|
||||
bus_ops->hif_log_bus_info = &hif_dummy_log_bus_info;
|
||||
bus_ops->hif_set_grp_intr_affinity = &hif_dummy_set_grp_intr_affinity;
|
||||
|
||||
return QDF_STATUS_SUCCESS;
|
||||
}
|
||||
|
@@ -1,5 +1,6 @@
|
||||
/*
|
||||
* Copyright (c) 2020-2021 The Linux Foundation. All rights reserved.
|
||||
* Copyright (c) 2021 Qualcomm Innovation Center, Inc. All rights reserved.
|
||||
*
|
||||
* Permission to use, copy, modify, and/or distribute this software for any
|
||||
* purpose with or without fee is hereby granted, provided that the above
|
||||
@@ -91,6 +92,7 @@ QDF_STATUS hif_initialize_ipci_ops(struct hif_softc *hif_sc)
|
||||
bus_ops->hif_log_bus_info = &hif_dummy_log_bus_info;
|
||||
bus_ops->hif_enable_grp_irqs = hif_ipci_enable_grp_irqs;
|
||||
bus_ops->hif_disable_grp_irqs = hif_ipci_disable_grp_irqs;
|
||||
bus_ops->hif_set_grp_intr_affinity = &hif_dummy_set_grp_intr_affinity;
|
||||
|
||||
return QDF_STATUS_SUCCESS;
|
||||
}
|
||||
|
@@ -1,5 +1,6 @@
|
||||
/*
|
||||
* Copyright (c) 2016-2021 The Linux Foundation. All rights reserved.
|
||||
* Copyright (c) 2021 Qualcomm Innovation Center, Inc. All rights reserved.
|
||||
*
|
||||
* Permission to use, copy, modify, and/or distribute this software for
|
||||
* any purpose with or without fee is hereby granted, provided that the
|
||||
@@ -98,6 +99,7 @@ QDF_STATUS hif_initialize_pci_ops(struct hif_softc *hif_sc)
|
||||
bus_ops->hif_config_irq_clear_cpu_affinity =
|
||||
&hif_pci_config_irq_clear_cpu_affinity;
|
||||
bus_ops->hif_log_bus_info = &hif_log_pcie_info;
|
||||
bus_ops->hif_set_grp_intr_affinity = &hif_pci_set_grp_intr_affinity;
|
||||
|
||||
return QDF_STATUS_SUCCESS;
|
||||
}
|
||||
|
@@ -1,5 +1,6 @@
|
||||
/*
|
||||
* Copyright (c) 2016-2018, 2020 The Linux Foundation. All rights reserved.
|
||||
* Copyright (c) 2016-2018, 2020-2021 The Linux Foundation. All rights reserved.
|
||||
* Copyright (c) 2021 Qualcomm Innovation Center, Inc. All rights reserved.
|
||||
*
|
||||
* Permission to use, copy, modify, and/or distribute this software for
|
||||
* any purpose with or without fee is hereby granted, provided that the
|
||||
@@ -80,6 +81,7 @@ QDF_STATUS hif_initialize_snoc_ops(struct hif_bus_ops *bus_ops)
|
||||
bus_ops->hif_config_irq_affinity = &hif_dummy_config_irq_affinity;
|
||||
bus_ops->hif_config_irq_by_ceid = &hif_dummy_config_irq_by_ceid;
|
||||
bus_ops->hif_log_bus_info = &hif_dummy_log_bus_info;
|
||||
bus_ops->hif_set_grp_intr_affinity = &hif_dummy_set_grp_intr_affinity;
|
||||
|
||||
return QDF_STATUS_SUCCESS;
|
||||
}
|
||||
|
@@ -1,5 +1,6 @@
|
||||
/*
|
||||
* Copyright (c) 2016-2021 The Linux Foundation. All rights reserved.
|
||||
* Copyright (c) 2021 Qualcomm Innovation Center, Inc. All rights reserved.
|
||||
*
|
||||
* Permission to use, copy, modify, and/or distribute this software for
|
||||
* any purpose with or without fee is hereby granted, provided that the
|
||||
@@ -96,4 +97,16 @@ const char *hif_pci_get_irq_name(int irq_no);
|
||||
*/
|
||||
void hif_pci_config_irq_affinity(struct hif_softc *scn);
|
||||
int hif_ce_msi_configure_irq_by_ceid(struct hif_softc *scn, int ce_id);
|
||||
|
||||
/*
|
||||
* hif_pci_set_grp_intr_affinity() - Set irq affinity hint for grp
|
||||
* intrs based on bitmask
|
||||
* @scn: hif context
|
||||
* @grp_intr_bitmask:
|
||||
* @perf: affine to perf or non-perf cluster
|
||||
*
|
||||
* Return: None
|
||||
*/
|
||||
void hif_pci_set_grp_intr_affinity(struct hif_softc *scn,
|
||||
uint32_t grp_intr_bitmask, bool perf);
|
||||
#endif /* _PCI_API_H_ */
|
||||
|
@@ -1,5 +1,6 @@
|
||||
/*
|
||||
* Copyright (c) 2017-2021 The Linux Foundation. All rights reserved.
|
||||
* Copyright (c) 2021 Qualcomm Innovation Center, Inc. All rights reserved.
|
||||
*
|
||||
* Permission to use, copy, modify, and/or distribute this software for
|
||||
* any purpose with or without fee is hereby granted, provided that the
|
||||
@@ -627,7 +628,8 @@ static int hif_exec_poll(struct napi_struct *napi, int budget)
|
||||
|
||||
actual_dones = work_done;
|
||||
|
||||
if (!hif_ext_group->force_break && work_done < normalized_budget) {
|
||||
if (qdf_atomic_inc_not_zero(&hif_ext_group->force_napi_complete) ||
|
||||
(!hif_ext_group->force_break && work_done < normalized_budget)) {
|
||||
hif_record_event(hif_ext_group->hif, hif_ext_group->grp_id,
|
||||
0, 0, 0, HIF_EVENT_BH_COMPLETE);
|
||||
napi_complete(napi);
|
||||
@@ -1018,6 +1020,7 @@ QDF_STATUS hif_register_ext_group(struct hif_opaque_softc *hif_ctx,
|
||||
hif_ext_group->hif = hif_ctx;
|
||||
hif_ext_group->context_name = context_name;
|
||||
hif_ext_group->type = type;
|
||||
qdf_atomic_init(&hif_ext_group->force_napi_complete);
|
||||
|
||||
hif_state->hif_num_extgroup++;
|
||||
return QDF_STATUS_SUCCESS;
|
||||
|
@@ -1,5 +1,6 @@
|
||||
/*
|
||||
* Copyright (c) 2017-2021 The Linux Foundation. All rights reserved.
|
||||
* Copyright (c) 2021 Qualcomm Innovation Center, Inc. All rights reserved.
|
||||
*
|
||||
* Permission to use, copy, modify, and/or distribute this software for
|
||||
* any purpose with or without fee is hereby granted, provided that the
|
||||
@@ -106,10 +107,9 @@ struct hif_exec_context {
|
||||
enum hif_exec_type type;
|
||||
unsigned long long poll_start_time;
|
||||
bool force_break;
|
||||
#if defined(HIF_CPU_PERF_AFFINE_MASK) || defined(HIF_CPU_CLEAR_AFFINITY)
|
||||
/* Stores the affinity hint mask for each WLAN IRQ */
|
||||
qdf_cpu_mask new_cpu_mask[HIF_MAX_GRP_IRQ];
|
||||
#endif
|
||||
qdf_atomic_t force_napi_complete;
|
||||
};
|
||||
|
||||
/**
|
||||
@@ -160,18 +160,20 @@ struct hif_exec_context *hif_exec_get_ctx(struct hif_opaque_softc *hif,
|
||||
uint8_t id);
|
||||
void hif_exec_kill(struct hif_opaque_softc *scn);
|
||||
|
||||
#ifdef HIF_CPU_PERF_AFFINE_MASK
|
||||
/**
|
||||
* hif_pci_irq_set_affinity_hint() - API to set IRQ affinity
|
||||
* @hif_ext_group: hif_ext_group to extract the irq info
|
||||
* @perf: affine to perf cluster or non-perf cluster
|
||||
*
|
||||
* This function will set the IRQ affinity to the gold cores
|
||||
* only for defconfig builds
|
||||
* This function will set the IRQ affinity to gold cores
|
||||
* or silver cores based on perf flag
|
||||
*
|
||||
* Return: none
|
||||
*/
|
||||
void hif_pci_irq_set_affinity_hint(
|
||||
struct hif_exec_context *hif_ext_group);
|
||||
void hif_pci_irq_set_affinity_hint(struct hif_exec_context *hif_ext_group,
|
||||
bool perf);
|
||||
|
||||
#ifdef HIF_CPU_PERF_AFFINE_MASK
|
||||
|
||||
/**
|
||||
* hif_pci_ce_irq_set_affinity_hint() - API to set IRQ affinity
|
||||
@@ -194,10 +196,6 @@ static inline void hif_ce_irq_remove_affinity_hint(int irq)
|
||||
hif_irq_affinity_remove(irq);
|
||||
}
|
||||
#else
|
||||
static inline void hif_pci_irq_set_affinity_hint(
|
||||
struct hif_exec_context *hif_ext_group)
|
||||
{
|
||||
}
|
||||
|
||||
static inline void hif_pci_ce_irq_set_affinity_hint(
|
||||
struct hif_softc *scn)
|
||||
|
@@ -1,5 +1,6 @@
|
||||
/*
|
||||
* Copyright (c) 2013-2021 The Linux Foundation. All rights reserved.
|
||||
* Copyright (c) 2021 Qualcomm Innovation Center, Inc. All rights reserved.
|
||||
*
|
||||
* Permission to use, copy, modify, and/or distribute this software for
|
||||
* any purpose with or without fee is hereby granted, provided that the
|
||||
@@ -3019,13 +3020,14 @@ const char *hif_pci_get_irq_name(int irq_no)
|
||||
return "pci-dummy";
|
||||
}
|
||||
|
||||
#ifdef HIF_CPU_PERF_AFFINE_MASK
|
||||
void hif_pci_irq_set_affinity_hint(
|
||||
struct hif_exec_context *hif_ext_group)
|
||||
void hif_pci_irq_set_affinity_hint(struct hif_exec_context *hif_ext_group,
|
||||
bool perf)
|
||||
{
|
||||
int i, ret;
|
||||
unsigned int cpus;
|
||||
bool mask_set = false;
|
||||
int cpu_cluster = perf ? CPU_CLUSTER_TYPE_PERF :
|
||||
CPU_CLUSTER_TYPE_LITTLE;
|
||||
|
||||
for (i = 0; i < hif_ext_group->numirq; i++)
|
||||
qdf_cpumask_clear(&hif_ext_group->new_cpu_mask[i]);
|
||||
@@ -3033,7 +3035,7 @@ void hif_pci_irq_set_affinity_hint(
|
||||
for (i = 0; i < hif_ext_group->numirq; i++) {
|
||||
qdf_for_each_online_cpu(cpus) {
|
||||
if (qdf_topology_physical_package_id(cpus) ==
|
||||
CPU_CLUSTER_TYPE_PERF) {
|
||||
cpu_cluster) {
|
||||
qdf_cpumask_set_cpu(cpus,
|
||||
&hif_ext_group->
|
||||
new_cpu_mask[i]);
|
||||
@@ -3052,12 +3054,7 @@ void hif_pci_irq_set_affinity_hint(
|
||||
qdf_dev_modify_irq_status(hif_ext_group->os_irq[i],
|
||||
0, IRQ_NO_BALANCING);
|
||||
if (ret)
|
||||
qdf_err("Set affinity %*pbl fails for IRQ %d ",
|
||||
qdf_cpumask_pr_args(&hif_ext_group->
|
||||
new_cpu_mask[i]),
|
||||
hif_ext_group->os_irq[i]);
|
||||
else
|
||||
qdf_debug("Set affinity %*pbl for IRQ: %d",
|
||||
qdf_debug("Set affinity %*pbl fails for IRQ %d ",
|
||||
qdf_cpumask_pr_args(&hif_ext_group->
|
||||
new_cpu_mask[i]),
|
||||
hif_ext_group->os_irq[i]);
|
||||
@@ -3068,6 +3065,7 @@ void hif_pci_irq_set_affinity_hint(
|
||||
}
|
||||
}
|
||||
|
||||
#ifdef HIF_CPU_PERF_AFFINE_MASK
|
||||
void hif_pci_ce_irq_set_affinity_hint(
|
||||
struct hif_softc *scn)
|
||||
{
|
||||
@@ -3171,7 +3169,7 @@ void hif_pci_config_irq_affinity(struct hif_softc *scn)
|
||||
/* Set IRQ affinity for WLAN DP interrupts*/
|
||||
for (i = 0; i < hif_state->hif_num_extgroup; i++) {
|
||||
hif_ext_group = hif_state->hif_ext_group[i];
|
||||
hif_pci_irq_set_affinity_hint(hif_ext_group);
|
||||
hif_pci_irq_set_affinity_hint(hif_ext_group, true);
|
||||
}
|
||||
/* Set IRQ affinity for CE interrupts*/
|
||||
hif_pci_ce_irq_set_affinity_hint(scn);
|
||||
@@ -3219,6 +3217,23 @@ int hif_pci_configure_grp_irq(struct hif_softc *scn,
|
||||
return 0;
|
||||
}
|
||||
|
||||
void hif_pci_set_grp_intr_affinity(struct hif_softc *scn,
|
||||
uint32_t grp_intr_bitmask, bool perf)
|
||||
{
|
||||
int i;
|
||||
struct HIF_CE_state *hif_state = HIF_GET_CE_STATE(scn);
|
||||
struct hif_exec_context *hif_ext_group;
|
||||
|
||||
for (i = 0; i < hif_state->hif_num_extgroup; i++) {
|
||||
if (!(grp_intr_bitmask & BIT(i)))
|
||||
continue;
|
||||
|
||||
hif_ext_group = hif_state->hif_ext_group[i];
|
||||
hif_pci_irq_set_affinity_hint(hif_ext_group, perf);
|
||||
qdf_atomic_set(&hif_ext_group->force_napi_complete, -1);
|
||||
}
|
||||
}
|
||||
|
||||
#if (defined(QCA_WIFI_QCA6390) || defined(QCA_WIFI_QCA6490) || \
|
||||
defined(QCA_WIFI_WCN7850))
|
||||
uint32_t hif_pci_reg_read32(struct hif_softc *hif_sc,
|
||||
|
Fai riferimento in un nuovo problema
Block a user