qcacld-3.0: Instrument fastpath for runtime_pm

Fastpath needs gets and puts to work with runtime_pm enabled.

Change-Id: I2248d1e77c842ab12fcc10e3f29fa3ef4dd76052
CRs-Fixed: 935300
此提交包含在:
Houston Hoffman
2015-12-17 17:14:40 -08:00
提交者 Akash Patel
父節點 a0e71066f3
當前提交 ac31d34d80
共有 5 個檔案被更改,包括 73 行新增6 行删除

查看文件

@@ -646,6 +646,7 @@ void hif_enable_power_gating(void *hif_ctx);
#ifdef FEATURE_RUNTIME_PM #ifdef FEATURE_RUNTIME_PM
struct hif_pm_runtime_lock; struct hif_pm_runtime_lock;
int hif_pm_runtime_get(void *hif_ctx); int hif_pm_runtime_get(void *hif_ctx);
void hif_pm_runtime_get_noresume(void *hif_ctx);
int hif_pm_runtime_put(void *hif_ctx); int hif_pm_runtime_put(void *hif_ctx);
struct hif_pm_runtime_lock *hif_runtime_lock_init(const char *name); struct hif_pm_runtime_lock *hif_runtime_lock_init(const char *name);
void hif_runtime_lock_deinit(struct hif_pm_runtime_lock *lock); void hif_runtime_lock_deinit(struct hif_pm_runtime_lock *lock);
@@ -659,6 +660,10 @@ int hif_pm_runtime_prevent_suspend_timeout(void *ol_sc,
struct hif_pm_runtime_lock { struct hif_pm_runtime_lock {
const char *name; const char *name;
}; };
static inline void hif_pm_runtime_get_noresume(void *hif_ctx)
{}
static inline int hif_pm_runtime_get(void *hif_ctx) static inline int hif_pm_runtime_get(void *hif_ctx)
{ return 0; } { return 0; }
static inline int hif_pm_runtime_put(void *hif_ctx) static inline int hif_pm_runtime_put(void *hif_ctx)

查看文件

@@ -779,6 +779,7 @@ hif_pci_ce_recv_data(struct CE_handle *copyeng, void *ce_context,
} while (ce_completed_recv_next(copyeng, &ce_context, &transfer_context, } while (ce_completed_recv_next(copyeng, &ce_context, &transfer_context,
&CE_data, &nbytes, &transfer_id, &CE_data, &nbytes, &transfer_id,
&flags) == CDF_STATUS_SUCCESS); &flags) == CDF_STATUS_SUCCESS);
} }
/* TBDXXX: Set CE High Watermark; invoke txResourceAvailHandler in response */ /* TBDXXX: Set CE High Watermark; invoke txResourceAvailHandler in response */

查看文件

@@ -548,6 +548,7 @@ int ce_send_fast(struct CE_handle *copyeng, cdf_nbuf_t *msdus,
struct CE_src_desc *shadow_src_desc = struct CE_src_desc *shadow_src_desc =
CE_SRC_RING_TO_DESC(shadow_base, write_index); CE_SRC_RING_TO_DESC(shadow_base, write_index);
hif_pm_runtime_get_noresume(scn);
msdu = msdus[i]; msdu = msdus[i];
/* /*
@@ -619,10 +620,15 @@ int ce_send_fast(struct CE_handle *copyeng, cdf_nbuf_t *msdus,
/* Write the final index to h/w one-shot */ /* Write the final index to h/w one-shot */
if (i) { if (i) {
src_ring->write_index = write_index; src_ring->write_index = write_index;
/* Don't call WAR_XXX from here
* Just call XXX instead, that has the reqd. intel if (hif_pm_runtime_get(scn) == 0) {
*/ /* Don't call WAR_XXX from here
war_ce_src_ring_write_idx_set(scn, ctrl_addr, write_index); * Just call XXX instead, that has the reqd. intel
*/
war_ce_src_ring_write_idx_set(scn, ctrl_addr,
write_index);
hif_pm_runtime_put(scn);
}
} }
cdf_spin_unlock_bh(&ce_state->ce_index_lock); cdf_spin_unlock_bh(&ce_state->ce_index_lock);

查看文件

@@ -2004,6 +2004,41 @@ int hif_runtime_suspend(void)
return hif_bus_suspend(); return hif_bus_suspend();
} }
#ifdef WLAN_FEATURE_FASTPATH
/**
* hif_fastpath_resume() - resume fastpath for runtimepm
*
* ensure that the fastpath write index register is up to date
* since runtime pm may cause ce_send_fast to skip the register
* write.
*/
static void hif_fastpath_resume(void)
{
struct ol_softc *scn =
(struct ol_softc *)cds_get_context(CDF_MODULE_ID_HIF);
struct CE_state *ce_state;
if (!scn)
return;
if (scn->fastpath_mode_on) {
if (Q_TARGET_ACCESS_BEGIN(scn)) {
ce_state = scn->ce_id_to_state[CE_HTT_H2T_MSG];
cdf_spin_lock_bh(&ce_state->ce_index_lock);
/*war_ce_src_ring_write_idx_set */
CE_SRC_RING_WRITE_IDX_SET(scn, ce_state->ctrl_addr,
ce_state->src_ring->write_index);
cdf_spin_unlock_bh(&ce_state->ce_index_lock);
Q_TARGET_ACCESS_END(scn);
}
}
}
#else
static void hif_fastpath_resume(void) {}
#endif
/** /**
* hif_runtime_resume() - do the bus resume part of a runtime resume * hif_runtime_resume() - do the bus resume part of a runtime resume
* *
@@ -2011,7 +2046,11 @@ int hif_runtime_suspend(void)
*/ */
int hif_runtime_resume(void) int hif_runtime_resume(void)
{ {
return hif_bus_resume(); int status = hif_bus_resume();
hif_fastpath_resume();
return status;
} }
void hif_disable_isr(void *ol_sc) void hif_disable_isr(void *ol_sc)
@@ -2690,6 +2729,23 @@ int hif_get_target_type(struct ol_softc *ol_sc, struct device *dev,
} }
#ifdef FEATURE_RUNTIME_PM #ifdef FEATURE_RUNTIME_PM
void hif_pm_runtime_get_noresume(void *hif_ctx)
{
struct ol_softc *scn = hif_ctx;
struct hif_pci_softc *sc;
if (NULL == scn)
return;
sc = scn->hif_sc;
if (NULL == sc)
return;
sc->pm_stats.runtime_get++;
pm_runtime_get_noresume(sc->dev);
}
/** /**
* hif_pm_runtime_get() - do a get opperation on the device * hif_pm_runtime_get() - do a get opperation on the device
* *

查看文件

@@ -186,7 +186,6 @@ static int hif_runtime_resume(void)
return hif_bus_resume(); return hif_bus_resume();
} }
/** /**
* hif_enable_power_gating(): enable HW power gating * hif_enable_power_gating(): enable HW power gating
* *