android_kernel_xiaomi_sm8450/include/linux/qcom_dma_heap.h
Chris Goldsworthy 898db71bec dma-heap: qcom: Implement prefetch and drain
Bring over the prefetch and drain implementation from
drivers/staging/android/ion/heaps/ion_system_secure_heap.c from
msm-5.4, as of commit 48a845e5f683 ("ion: Use a freezable unbound
workqueue for the memory prefetch work items"), which is used for
asynchronously pre-loading the pools for clients who want the pools
filled with a certain amount of memory in advance of their use case
starting.

Change-Id: I5a2df4b75d86eb917cd0848107e7f920fb735434
Signed-off-by: Chris Goldsworthy <cgoldswo@codeaurora.org>
2021-04-02 14:14:05 -07:00

105 lines
3.7 KiB
C

/* SPDX-License-Identifier: GPL-2.0-only */
/*
* Copyright (c) 2020-2021, The Linux Foundation. All rights reserved.
*/
#ifndef _QCOM_DMA_HEAP_H
#define _QCOM_DMA_HEAP_H
#include <linux/bits.h>
#include <linux/bitfield.h>
#include <linux/dma-buf.h>
#include <linux/qcom_dma_heap_dt_constants.h>
#include <linux/err.h>
/* Heap flags */
#define QCOM_DMA_HEAP_FLAG_CACHED BIT(1)
#define QCOM_DMA_HEAP_FLAG_CP_TRUSTED_VM BIT(15)
#define QCOM_DMA_HEAP_FLAG_CP_TZ BIT(16)
#define QCOM_DMA_HEAP_FLAG_CP_TOUCH BIT(17)
#define QCOM_DMA_HEAP_FLAG_CP_BITSTREAM BIT(18)
#define QCOM_DMA_HEAP_FLAG_CP_PIXEL BIT(19)
#define QCOM_DMA_HEAP_FLAG_CP_NON_PIXEL BIT(20)
#define QCOM_DMA_HEAP_FLAG_CP_CAMERA BIT(21)
#define QCOM_DMA_HEAP_FLAG_CP_HLOS BIT(22)
#define QCOM_DMA_HEAP_FLAG_CP_SPSS_SP BIT(23)
#define QCOM_DMA_HEAP_FLAG_CP_SPSS_SP_SHARED BIT(24)
#define QCOM_DMA_HEAP_FLAG_CP_SEC_DISPLAY BIT(25)
#define QCOM_DMA_HEAP_FLAG_CP_APP BIT(26)
#define QCOM_DMA_HEAP_FLAG_CP_CAMERA_PREVIEW BIT(27)
#define QCOM_DMA_HEAP_FLAG_CP_MSS_MSA BIT(28)
#define QCOM_DMA_HEAP_FLAG_CP_CDSP BIT(29)
#define QCOM_DMA_HEAP_FLAG_CP_SPSS_HLOS_SHARED BIT(30)
#define QCOM_DMA_HEAP_FLAGS_CP_MASK GENMASK(30, 15)
#define QCOM_DMA_HEAP_FLAG_SECURE BIT(31)
/**
* carveout_heap_add_memory - Dynamically add reserved heap memory
* @heap_name: The name of the DMA-BUF Heap we're giving memory to
* @sgt: An SGT corresponding to the memory adding to the heap
*
* Return: 0 on success, a negative error value otherwise.
*/
int carveout_heap_add_memory(char *heap_name, struct sg_table *sgt);
/**
* carveout_heap_remove_memory - Dynamically remove reserved heap memory
* @heap_name: The name of the DMA-BUF Heap we're taking memory away from
* @sgt: An SGT corresponding to the memory we're removing from the heap
*
* Return: 0 on success, a negative error value otherwise.
*/
int carveout_heap_remove_memory(char *heap_name, struct sg_table *sgt);
struct dma_buf_heap_prefetch_region {
u64 size;
struct dma_heap *heap;
};
int qcom_secure_system_heap_prefetch(struct dma_buf_heap_prefetch_region *regions,
size_t nr_regions);
int qcom_secure_system_heap_drain(struct dma_buf_heap_prefetch_region *regions,
size_t nr_regions);
/**
* dma_buf_heap_hyp_assign - wrapper function for hyp-assigning a dma_buf
* @buf: dma_buf to hyp-assign away from HLOS
* @dest_vmids: array of QCOM_DMA_HEAP_FLAG VMIDs (as defined above)
* @dest_perms: array of PERM_READ/PERM_WRITE/PERM_EXEC permission bits (as
* defined in include/soc/qcom/secure_buffer.h), such that
* dest_perms[i] specifies the permissions for VMID dest_vmids[i]
* @dest_nelems: number of elements in dest_vmids and dest_perms
*
* Return: Temporarily return -EINVAL whilst the functon isn't present. Otherwise, return
* 0 on success, or a negative value returned by hyp_assign_table() on failure.
*/
static inline int dma_buf_heap_hyp_assign(struct dma_buf *buf, int *dest_vmids, int *dest_perms,
int dest_nelems)
{
return -EINVAL;
}
/**
* dma_buf_heap_hyp_unassign - wrapper function that hyp-assigns a dma_buf back to HLOS
* @buf: dma_buf to hyp-assign back to HLOS
*
* This function takes a dma_buf, and re-assigns it to HLOS with RWX permissions (at the
* S2 level). The end-points to which the buffer was assigned to are tracked by the flags
* kept in the msm_heap_helper_buffer->flags field (the helper_buffer is accesed through
* dma_buf->priv), so the corresponding VMIDs don't need to be supplied as arguments.
*
* Return: Temporarily return -EINVAL whilst the functon isn't present. Otherwise, return
* 0 on success, or a negative value returned by hyp_assign_table() on failure.
*/
static inline int dma_buf_heap_hyp_unassign(struct dma_buf *buf)
{
return -EINVAL;
}
#endif /* _QCOM_DMA_HEAP_H */