|
@@ -554,13 +554,16 @@ int hif_get_wake_ce_id(struct hif_softc *scn, uint8_t *ce_id);
|
|
|
|
|
|
/**
|
|
|
* struct hif_ce_desc_event - structure for detailing a ce event
|
|
|
+ * @index: location of the descriptor in the ce ring;
|
|
|
* @type: what the event was
|
|
|
* @time: when it happened
|
|
|
* @current_hp: holds the current ring hp value
|
|
|
* @current_tp: holds the current ring tp value
|
|
|
* @descriptor: descriptor enqueued or dequeued
|
|
|
* @memory: virtual address that was used
|
|
|
- * @index: location of the descriptor in the ce ring;
|
|
|
+ * @dma_addr: physical/iova address based on smmu status
|
|
|
+ * @dma_to_phy: physical address from iova address
|
|
|
+ * @virt_to_phy: physical address from virtual address
|
|
|
* @actual_data_len: length of the data
|
|
|
* @data: data pointed by descriptor
|
|
|
*/
|
|
@@ -576,19 +579,25 @@ struct hif_ce_desc_event {
|
|
|
union ce_srng_desc descriptor;
|
|
|
#endif
|
|
|
void *memory;
|
|
|
+
|
|
|
+#ifdef HIF_RECORD_PADDR
|
|
|
+ /* iova/pa based on smmu status */
|
|
|
+ qdf_dma_addr_t dma_addr;
|
|
|
+ /* store pa from iova address */
|
|
|
+ qdf_dma_addr_t dma_to_phy;
|
|
|
+ /* store pa */
|
|
|
+ qdf_dma_addr_t virt_to_phy;
|
|
|
+#endif /* HIF_RECORD_ADDR */
|
|
|
+
|
|
|
#ifdef HIF_CE_DEBUG_DATA_BUF
|
|
|
size_t actual_data_len;
|
|
|
uint8_t *data;
|
|
|
#endif /* HIF_CE_DEBUG_DATA_BUF */
|
|
|
-
|
|
|
-#ifdef HIF_CONFIG_SLUB_DEBUG_ON
|
|
|
- qdf_dma_addr_t dma_to_phy;
|
|
|
- qdf_dma_addr_t virt_to_phy;
|
|
|
-#endif
|
|
|
};
|
|
|
#else
|
|
|
struct hif_ce_desc_event;
|
|
|
#endif /*#if defined(HIF_CONFIG_SLUB_DEBUG_ON)||defined(HIF_CE_DEBUG_DATA_BUF)*/
|
|
|
+
|
|
|
/**
|
|
|
* get_next_record_index() - get the next record index
|
|
|
* @table_index: atomic index variable to increment
|
|
@@ -622,6 +631,16 @@ void hif_record_ce_srng_desc_event(struct hif_softc *scn, int ce_id,
|
|
|
union ce_srng_desc *descriptor,
|
|
|
void *memory, int index,
|
|
|
int len, void *hal_ring);
|
|
|
+
|
|
|
+/**
|
|
|
+ * hif_clear_ce_desc_debug_data() - Clear the contents of hif_ce_desc_event
|
|
|
+ * upto data field before reusing it.
|
|
|
+ *
|
|
|
+ * @event: record every CE event
|
|
|
+ *
|
|
|
+ * Return: None
|
|
|
+ */
|
|
|
+void hif_clear_ce_desc_debug_data(struct hif_ce_desc_event *event);
|
|
|
#else
|
|
|
static inline
|
|
|
void hif_record_ce_srng_desc_event(struct hif_softc *scn, int ce_id,
|
|
@@ -631,7 +650,12 @@ void hif_record_ce_srng_desc_event(struct hif_softc *scn, int ce_id,
|
|
|
int len, void *hal_ring)
|
|
|
{
|
|
|
}
|
|
|
-#endif
|
|
|
+
|
|
|
+static inline
|
|
|
+void hif_clear_ce_desc_debug_data(struct hif_ce_desc_event *event)
|
|
|
+{
|
|
|
+}
|
|
|
+#endif /* HIF_CONFIG_SLUB_DEBUG_ON || HIF_CE_DEBUG_DATA_BUF */
|
|
|
|
|
|
#ifdef HIF_CE_DEBUG_DATA_BUF
|
|
|
/**
|
|
@@ -642,15 +666,6 @@ void hif_record_ce_srng_desc_event(struct hif_softc *scn, int ce_id,
|
|
|
*/
|
|
|
void hif_ce_desc_data_record(struct hif_ce_desc_event *event, int len);
|
|
|
|
|
|
-/**
|
|
|
- * hif_clear_ce_desc_debug_data() - Clear the contents of hif_ce_desc_event
|
|
|
- * upto data field before reusing it.
|
|
|
- *
|
|
|
- * @event: record every CE event
|
|
|
- *
|
|
|
- * Return: None
|
|
|
- */
|
|
|
-void hif_clear_ce_desc_debug_data(struct hif_ce_desc_event *event);
|
|
|
QDF_STATUS alloc_mem_ce_debug_hist_data(struct hif_softc *scn, uint32_t ce_id);
|
|
|
void free_mem_ce_debug_hist_data(struct hif_softc *scn, uint32_t ce_id);
|
|
|
#else
|
|
@@ -667,8 +682,6 @@ static inline
|
|
|
void hif_ce_desc_data_record(struct hif_ce_desc_event *event, int len)
|
|
|
{
|
|
|
}
|
|
|
-
|
|
|
-void hif_clear_ce_desc_debug_data(struct hif_ce_desc_event *event);
|
|
|
#endif /*HIF_CE_DEBUG_DATA_BUF*/
|
|
|
|
|
|
#ifdef HIF_CONFIG_SLUB_DEBUG_ON
|
|
@@ -692,14 +705,14 @@ static inline void ce_validate_nbytes(uint32_t nbytes,
|
|
|
struct CE_state *ce_state)
|
|
|
{
|
|
|
}
|
|
|
-#endif
|
|
|
+#endif /* HIF_CONFIG_SLUB_DEBUG_ON */
|
|
|
|
|
|
-#if defined(HIF_CONFIG_SLUB_DEBUG_ON) && defined(HIF_RECORD_RX_PADDR)
|
|
|
+#if defined(HIF_RECORD_PADDR)
|
|
|
/**
|
|
|
* hif_ce_desc_record_rx_paddr() - record physical address for IOMMU
|
|
|
* IOVA addr and MMU virtual addr for Rx
|
|
|
* @scn: hif_softc
|
|
|
- * @event: structure detailing a ce event
|
|
|
+ * @nbuf: buffer posted to fw
|
|
|
*
|
|
|
* record physical address for ce_event_type HIF_RX_DESC_POST and
|
|
|
* HIF_RX_DESC_COMPLETION
|
|
@@ -707,12 +720,14 @@ static inline void ce_validate_nbytes(uint32_t nbytes,
|
|
|
* Return: none
|
|
|
*/
|
|
|
void hif_ce_desc_record_rx_paddr(struct hif_softc *scn,
|
|
|
- struct hif_ce_desc_event *event);
|
|
|
+ struct hif_ce_desc_event *event,
|
|
|
+ qdf_nbuf_t nbuf);
|
|
|
#else
|
|
|
static inline
|
|
|
void hif_ce_desc_record_rx_paddr(struct hif_softc *scn,
|
|
|
- struct hif_ce_desc_event *event)
|
|
|
+ struct hif_ce_desc_event *event,
|
|
|
+ qdf_nbuf_t nbuf)
|
|
|
{
|
|
|
}
|
|
|
-#endif
|
|
|
+#endif /* HIF_RECORD_PADDR */
|
|
|
#endif /* __COPY_ENGINE_INTERNAL_H__ */
|