|
@@ -137,6 +137,39 @@ void hdd_put_consistent_mem_unaligned(void *vaddr)
|
|
|
ucfg_dp_prealloc_put_consistent_mem_unaligned(vaddr);
|
|
|
}
|
|
|
|
|
|
+/**
|
|
|
+ * hdd_dp_prealloc_get_multi_pages() - gets pre-alloc DP multi-pages memory
|
|
|
+ * @desc_type: descriptor type
|
|
|
+ * @elem_size: single element size
|
|
|
+ * @elem_num: total number of elements should be allocated
|
|
|
+ * @pages: multi page information storage
|
|
|
+ * @cacheable: coherent memory or cacheable memory
|
|
|
+ *
|
|
|
+ * Return: None
|
|
|
+ */
|
|
|
+static
|
|
|
+void hdd_dp_prealloc_get_multi_pages(uint32_t desc_type, qdf_size_t elem_size,
|
|
|
+ uint16_t elem_num,
|
|
|
+ struct qdf_mem_multi_page_t *pages,
|
|
|
+ bool cacheable)
|
|
|
+{
|
|
|
+ ucfg_dp_prealloc_get_multi_pages(desc_type, elem_size, elem_num, pages,
|
|
|
+ cacheable);
|
|
|
+}
|
|
|
+
|
|
|
+/**
|
|
|
+ * hdd_dp_prealloc_put_multi_pages() - puts back pre-alloc DP multi-pages memory
|
|
|
+ * @desc_type: descriptor type
|
|
|
+ * @pages: multi page information storage
|
|
|
+ *
|
|
|
+ * Return: None
|
|
|
+ */
|
|
|
+static
|
|
|
+void hdd_dp_prealloc_put_multi_pages(uint32_t desc_type,
|
|
|
+ struct qdf_mem_multi_page_t *pages)
|
|
|
+{
|
|
|
+ ucfg_dp_prealloc_put_multi_pages(desc_type, pages);
|
|
|
+}
|
|
|
#else
|
|
|
static
|
|
|
void *hdd_get_consistent_mem_unaligned(size_t size,
|
|
@@ -153,6 +186,20 @@ void hdd_put_consistent_mem_unaligned(void *vaddr)
|
|
|
{
|
|
|
hdd_err_rl("prealloc not support!");
|
|
|
}
|
|
|
+
|
|
|
+static inline
|
|
|
+void hdd_dp_prealloc_get_multi_pages(uint32_t desc_type, qdf_size_t elem_size,
|
|
|
+ uint16_t elem_num,
|
|
|
+ struct qdf_mem_multi_page_t *pages,
|
|
|
+ bool cacheable)
|
|
|
+{
|
|
|
+}
|
|
|
+
|
|
|
+static inline
|
|
|
+void hdd_dp_prealloc_put_multi_pages(uint32_t desc_type,
|
|
|
+ struct qdf_mem_multi_page_t *pages)
|
|
|
+{
|
|
|
+}
|
|
|
#endif
|
|
|
|
|
|
/**
|
|
@@ -266,6 +313,10 @@ static void hdd_hif_init_driver_state_callbacks(void *data,
|
|
|
hdd_get_consistent_mem_unaligned;
|
|
|
cbk->prealloc_put_consistent_mem_unaligned =
|
|
|
hdd_put_consistent_mem_unaligned;
|
|
|
+ cbk->prealloc_get_multi_pages =
|
|
|
+ hdd_dp_prealloc_get_multi_pages;
|
|
|
+ cbk->prealloc_put_multi_pages =
|
|
|
+ hdd_dp_prealloc_put_multi_pages;
|
|
|
}
|
|
|
|
|
|
#ifdef HIF_DETECTION_LATENCY_ENABLE
|