diff options
author | Luden <luden@ghostmail.com> | 2016-01-30 01:07:26 +0100 |
---|---|---|
committer | Ziyan <jaraidaniel@gmail.com> | 2016-05-01 23:35:54 +0200 |
commit | 0ff6b8dd50f90858213cca674a1865b2b6c7391f (patch) | |
tree | 530eb344e15c1102e9750d91f6d6f4d69d27d85c /arch/arm/mach-omap2/omap4_ion.c | |
parent | 980a74e2c46a5f8b8ae8ef4e73dbcc4bf26443b9 (diff) | |
download | kernel_samsung_tuna-0ff6b8dd50f90858213cca674a1865b2b6c7391f.tar.gz kernel_samsung_tuna-0ff6b8dd50f90858213cca674a1865b2b6c7391f.tar.bz2 kernel_samsung_tuna-0ff6b8dd50f90858213cca674a1865b2b6c7391f.zip |
OMAP: switch Ducati allocations to CMA
Diffstat (limited to 'arch/arm/mach-omap2/omap4_ion.c')
-rwxr-xr-x | arch/arm/mach-omap2/omap4_ion.c | 136 |
1 files changed, 134 insertions, 2 deletions
diff --git a/arch/arm/mach-omap2/omap4_ion.c b/arch/arm/mach-omap2/omap4_ion.c index e5910204e53..2840c427310 100755 --- a/arch/arm/mach-omap2/omap4_ion.c +++ b/arch/arm/mach-omap2/omap4_ion.c @@ -14,6 +14,9 @@ #include <linux/memblock.h> #include <linux/omap_ion.h> #include <linux/platform_device.h> +#ifdef CONFIG_CMA +#include <linux/dma-contiguous.h> +#endif #include <plat/common.h> #include <mach/omap4_ion.h> @@ -46,6 +49,20 @@ static size_t omap4_ducati_heap_size; static size_t omap4_ion_heap_tiler_mem_size; static size_t omap4_ion_heap_nonsec_tiler_mem_size; +#ifdef CONFIG_CMA +static phys_addr_t omap4_ion_ipu_cma_addr; +static size_t omap4_ion_ipu_cma_pages_count; +static struct page* omap4_ion_ipu_cma_pages; + +/* See RPMSG_IPC_MEM calculation in arch/arm/plat-omap/omap_rpmsg.c */ +#define CMA_RPMSG_ADDR ((phys_addr_t)0xb3a00000) +#define CMA_RPMSG_SIZE ((size_t)0x8c000) + +static phys_addr_t omap4_ion_rpmsg_cma_addr; +static size_t omap4_ion_rpmsg_cma_pages_count; +static struct page* omap4_ion_rpmsg_cma_pages; +#endif + static struct ion_platform_data omap4_ion_data = { .nr = 6, .heaps = { @@ -105,11 +122,16 @@ void __init omap4_register_ion(void) void __init omap_ion_init(void) { - int i; - int ret; + int i, ret = 0; #ifndef CONFIG_ION_OMAP_TILER_DYNAMIC_ALLOC u32 nonsecure = omap4_ion_pdata.nonsecure_tiler2d_size; #endif +#ifdef CONFIG_CMA + size_t ipu_cma_pages_count; + phys_addr_t cma_area_addr; + size_t cma_area_size; + const size_t cma_alignment = PAGE_SIZE << max(MAX_ORDER, pageblock_order); +#endif system_512m = (omap_total_ram_size() == SZ_512M); @@ -192,6 +214,37 @@ void __init omap_ion_init(void) omap4_ion_heap_tiler_mem_addr, omap4_ion_heap_nonsec_tiler_mem_addr); +#ifdef CONFIG_CMA + ipu_cma_pages_count = (omap4_ion_heap_secure_input_size + + omap4_ion_heap_secure_output_wfdhdcp_size + + omap4_ducati_heap_size + + omap4_ion_heap_nonsec_tiler_mem_size + + omap4_ion_heap_tiler_mem_size) / PAGE_SIZE; + + cma_area_addr = round_down(omap4_ion_heap_nonsec_tiler_mem_addr, cma_alignment); + cma_area_size = round_up(ipu_cma_pages_count * PAGE_SIZE, cma_alignment); + + pr_info("Reserving CMA IPU + RPMSG region at address = 0x%x with size = 0x%x\n", + cma_area_addr, cma_area_size); + dma_declare_contiguous(&omap4_ion_device.dev, cma_area_size, cma_area_addr, 0); + + /* We need to separate RPMSG memory region from the overall Ducati range + * as it has to remain allocated even when the rest of Ducati is unloaded. + * Therefore, IPU carveout area is split into two pieces - below and above + * RPMSG region. */ + omap4_ion_ipu_cma_addr = CMA_RPMSG_ADDR + CMA_RPMSG_SIZE; + omap4_ion_ipu_cma_pages_count = ipu_cma_pages_count - CMA_RPMSG_SIZE / PAGE_SIZE; + + omap4_ion_rpmsg_cma_addr = CMA_RPMSG_ADDR; + omap4_ion_rpmsg_cma_pages_count = CMA_RPMSG_SIZE / PAGE_SIZE; + + pr_info("CMA RPMSG region: address = 0x%x, size = 0x%lx\n", omap4_ion_rpmsg_cma_addr, omap4_ion_rpmsg_cma_pages_count * PAGE_SIZE); + pr_info("CMA IPU region: address = 0x%x, size = 0x%lx\n", omap4_ion_ipu_cma_addr, omap4_ion_ipu_cma_pages_count * PAGE_SIZE); + + omap4_ion_ipu_cma_pages = NULL; + omap4_ion_rpmsg_cma_pages = NULL; +#endif + for (i = 0; i < omap4_ion_data.nr; i++) { struct ion_platform_heap *h = &omap4_ion_data.heaps[i]; @@ -223,8 +276,10 @@ void __init omap_ion_init(void) for (i = 0; i < omap4_ion_data.nr; i++) if (omap4_ion_data.heaps[i].type == ION_HEAP_TYPE_CARVEOUT || omap4_ion_data.heaps[i].type == OMAP_ION_HEAP_TYPE_TILER) { +#ifndef CONFIG_CMA ret = memblock_remove(omap4_ion_data.heaps[i].base, omap4_ion_data.heaps[i].size); +#endif if (!omap4_ion_data.heaps[i].size) continue; if (omap4_ion_data.heaps[i].id == @@ -300,3 +355,80 @@ size_t omap_ion_heap_nonsec_tiler_mem_size(void) { return omap4_ion_heap_nonsec_tiler_mem_size; } + +#ifdef CONFIG_CMA +bool omap_ion_ipu_allocate_memory(void) +{ + if (omap4_ion_ipu_cma_pages) { + pr_err("%s: CMA IPU pages are already allocated\n", __func__); + return false; + } + + omap4_ion_ipu_cma_pages = dma_alloc_from_contiguous_fixed_addr(&omap4_ion_device.dev, + omap4_ion_ipu_cma_addr, omap4_ion_ipu_cma_pages_count); + + if (!omap4_ion_ipu_cma_pages) { + pr_err("CMA IPU region pages allocation failed\n"); + return false; + } + + return true; +} +EXPORT_SYMBOL(omap_ion_ipu_allocate_memory); + +bool omap_ion_ipu_free_memory(void) +{ + if (!omap4_ion_ipu_cma_pages) { + pr_err("%s: CMA IPU pages are not allocated\n", __func__); + return false; + } + + if (!dma_release_from_contiguous(&omap4_ion_device.dev, omap4_ion_ipu_cma_pages, + omap4_ion_ipu_cma_pages_count)) { + pr_err("CMA IPU region pages release failed\n"); + return false; + } + + omap4_ion_ipu_cma_pages = NULL; + + return true; +} +EXPORT_SYMBOL(omap_ion_ipu_free_memory); + +bool omap_ion_rpmsg_allocate_memory(void) +{ + if (omap4_ion_rpmsg_cma_pages) { + pr_err("CMA RPMSG pages are already allocated\n"); + return false; + } + + omap4_ion_rpmsg_cma_pages = dma_alloc_from_contiguous_fixed_addr(&omap4_ion_device.dev, + omap4_ion_rpmsg_cma_addr, omap4_ion_rpmsg_cma_pages_count); + if (!omap4_ion_rpmsg_cma_pages) { + pr_err("CMA RPMSG region pages allocation failed\n"); + return false; + } + + return true; +} +EXPORT_SYMBOL(omap_ion_rpmsg_allocate_memory); + +bool omap_ion_rpmsg_free_memory(void) +{ + if (!omap4_ion_rpmsg_cma_pages) { + pr_err("CMA RPMSG pages are not allocated\n"); + return false; + } + + if (!dma_release_from_contiguous(&omap4_ion_device.dev, omap4_ion_rpmsg_cma_pages, + omap4_ion_rpmsg_cma_pages_count)) { + pr_err("CMA RPMSG region pages release failed\n"); + return false; + } + + omap4_ion_rpmsg_cma_pages = NULL; + + return true; +} +EXPORT_SYMBOL(omap_ion_rpmsg_free_memory); +#endif |