mirror of
https://github.com/followmsi/android_kernel_google_msm.git
synced 2024-11-06 23:17:41 +00:00
gpu: ion: enable the kmalloc heap
There are some Ion clients who would like to use the kmalloc heap. Enable it. Change-Id: Ie818be9e1211d52d489ad2cb63d94e2fddfc0f01 Signed-off-by: Mitchel Humpherys <mitchelh@codeaurora.org>
This commit is contained in:
parent
b09506ba9f
commit
fe14bcb98f
2 changed files with 7 additions and 0 deletions
|
@ -50,6 +50,11 @@ static struct ion_heap_desc ion_heap_meta[] = {
|
|||
.type = ION_HEAP_TYPE_SYSTEM,
|
||||
.name = ION_VMALLOC_HEAP_NAME,
|
||||
},
|
||||
{
|
||||
.id = ION_SYSTEM_CONTIG_HEAP_ID,
|
||||
.type = ION_HEAP_TYPE_SYSTEM_CONTIG,
|
||||
.name = ION_KMALLOC_HEAP_NAME,
|
||||
},
|
||||
{
|
||||
.id = ION_CP_MM_HEAP_ID,
|
||||
.type = ION_HEAP_TYPE_CP,
|
||||
|
|
|
@ -37,6 +37,7 @@ enum ion_heap_ids {
|
|||
ION_CP_MFC_HEAP_ID = 12,
|
||||
ION_CP_WB_HEAP_ID = 16, /* 8660 only */
|
||||
ION_CAMERA_HEAP_ID = 20, /* 8660 only */
|
||||
ION_SYSTEM_CONTIG_HEAP_ID = 21,
|
||||
ION_ADSP_HEAP_ID = 22,
|
||||
ION_SF_HEAP_ID = 24,
|
||||
ION_IOMMU_HEAP_ID = 25,
|
||||
|
@ -85,6 +86,7 @@ enum cp_mem_usage {
|
|||
|
||||
#define ION_ADSP_HEAP_NAME "adsp"
|
||||
#define ION_VMALLOC_HEAP_NAME "vmalloc"
|
||||
#define ION_KMALLOC_HEAP_NAME "kmalloc"
|
||||
#define ION_AUDIO_HEAP_NAME "audio"
|
||||
#define ION_SF_HEAP_NAME "sf"
|
||||
#define ION_MM_HEAP_NAME "mm"
|
||||
|
|
Loading…
Reference in a new issue