blob: 0ca90bac4e619d8629bd77cdd046eefbc142b323 [file] [log] [blame]
Benjamin Gaignard349c9e12013-12-13 14:24:44 -08001/*
2 * drivers/staging/android/ion/ion_cma_heap.c
3 *
4 * Copyright (C) Linaro 2012
5 * Author: <benjamin.gaignard@linaro.org> for ST-Ericsson.
6 *
7 * This software is licensed under the terms of the GNU General Public
8 * License version 2, as published by the Free Software Foundation, and
9 * may be copied, distributed, and modified under those terms.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 */
17
18#include <linux/device.h>
19#include <linux/slab.h>
20#include <linux/errno.h>
21#include <linux/err.h>
22#include <linux/dma-mapping.h>
23
24#include "ion.h"
25#include "ion_priv.h"
26
27#define ION_CMA_ALLOCATE_FAILED -1
28
29struct ion_cma_heap {
30 struct ion_heap heap;
31 struct device *dev;
32};
33
34#define to_cma_heap(x) container_of(x, struct ion_cma_heap, heap)
35
36struct ion_cma_buffer_info {
37 void *cpu_addr;
38 dma_addr_t handle;
39 struct sg_table *table;
40};
41
Benjamin Gaignard349c9e12013-12-13 14:24:44 -080042
Benjamin Gaignard349c9e12013-12-13 14:24:44 -080043/* ION CMA heap operations functions */
44static int ion_cma_allocate(struct ion_heap *heap, struct ion_buffer *buffer,
45 unsigned long len, unsigned long align,
46 unsigned long flags)
47{
48 struct ion_cma_heap *cma_heap = to_cma_heap(heap);
49 struct device *dev = cma_heap->dev;
50 struct ion_cma_buffer_info *info;
51
Colin Cross661f82f2013-12-13 19:26:32 -080052 if (buffer->flags & ION_FLAG_CACHED)
53 return -EINVAL;
54
55 if (align > PAGE_SIZE)
56 return -EINVAL;
57
Benjamin Gaignard349c9e12013-12-13 14:24:44 -080058 info = kzalloc(sizeof(struct ion_cma_buffer_info), GFP_KERNEL);
Phong Tranf0ca3e82014-07-20 11:10:55 +070059 if (!info)
Benjamin Gaignard349c9e12013-12-13 14:24:44 -080060 return ION_CMA_ALLOCATE_FAILED;
Benjamin Gaignard349c9e12013-12-13 14:24:44 -080061
Colin Cross661f82f2013-12-13 19:26:32 -080062 info->cpu_addr = dma_alloc_coherent(dev, len, &(info->handle),
63 GFP_HIGHUSER | __GFP_ZERO);
Benjamin Gaignard349c9e12013-12-13 14:24:44 -080064
65 if (!info->cpu_addr) {
66 dev_err(dev, "Fail to allocate buffer\n");
67 goto err;
68 }
69
70 info->table = kmalloc(sizeof(struct sg_table), GFP_KERNEL);
Phong Tranf0ca3e82014-07-20 11:10:55 +070071 if (!info->table)
Benjamin Gaignard349c9e12013-12-13 14:24:44 -080072 goto free_mem;
Benjamin Gaignard349c9e12013-12-13 14:24:44 -080073
Jignesh R Patel936d61e2015-07-28 16:19:36 +053074 if (dma_get_sgtable(dev, info->table, info->cpu_addr, info->handle,
75 len))
Rebecca Schultz Zavinc13bd1c2013-12-13 14:24:45 -080076 goto free_table;
Benjamin Gaignard349c9e12013-12-13 14:24:44 -080077 /* keep this for memory release */
78 buffer->priv_virt = info;
Laura Abbottf82ad602016-08-08 09:52:56 -070079 buffer->sg_table = info->table;
Benjamin Gaignard349c9e12013-12-13 14:24:44 -080080 return 0;
81
82free_table:
83 kfree(info->table);
84free_mem:
85 dma_free_coherent(dev, len, info->cpu_addr, info->handle);
86err:
87 kfree(info);
88 return ION_CMA_ALLOCATE_FAILED;
89}
90
91static void ion_cma_free(struct ion_buffer *buffer)
92{
93 struct ion_cma_heap *cma_heap = to_cma_heap(buffer->heap);
94 struct device *dev = cma_heap->dev;
95 struct ion_cma_buffer_info *info = buffer->priv_virt;
96
Benjamin Gaignard349c9e12013-12-13 14:24:44 -080097 /* release memory */
98 dma_free_coherent(dev, buffer->size, info->cpu_addr, info->handle);
99 /* release sg table */
100 sg_free_table(info->table);
101 kfree(info->table);
102 kfree(info);
103}
104
Benjamin Gaignard349c9e12013-12-13 14:24:44 -0800105static int ion_cma_mmap(struct ion_heap *mapper, struct ion_buffer *buffer,
106 struct vm_area_struct *vma)
107{
108 struct ion_cma_heap *cma_heap = to_cma_heap(buffer->heap);
109 struct device *dev = cma_heap->dev;
110 struct ion_cma_buffer_info *info = buffer->priv_virt;
111
112 return dma_mmap_coherent(dev, vma, info->cpu_addr, info->handle,
113 buffer->size);
114}
115
Colin Crossf63958d2013-12-13 19:26:28 -0800116static void *ion_cma_map_kernel(struct ion_heap *heap,
117 struct ion_buffer *buffer)
Benjamin Gaignard349c9e12013-12-13 14:24:44 -0800118{
119 struct ion_cma_buffer_info *info = buffer->priv_virt;
120 /* kernel memory mapping has been done at allocation time */
121 return info->cpu_addr;
122}
123
Colin Cross661f82f2013-12-13 19:26:32 -0800124static void ion_cma_unmap_kernel(struct ion_heap *heap,
Ben LeMasurier679011b2016-08-22 07:45:53 -0600125 struct ion_buffer *buffer)
Colin Cross661f82f2013-12-13 19:26:32 -0800126{
127}
128
Benjamin Gaignard349c9e12013-12-13 14:24:44 -0800129static struct ion_heap_ops ion_cma_ops = {
130 .allocate = ion_cma_allocate,
131 .free = ion_cma_free,
Benjamin Gaignard349c9e12013-12-13 14:24:44 -0800132 .map_user = ion_cma_mmap,
133 .map_kernel = ion_cma_map_kernel,
Colin Cross661f82f2013-12-13 19:26:32 -0800134 .unmap_kernel = ion_cma_unmap_kernel,
Benjamin Gaignard349c9e12013-12-13 14:24:44 -0800135};
136
137struct ion_heap *ion_cma_heap_create(struct ion_platform_heap *data)
138{
139 struct ion_cma_heap *cma_heap;
140
141 cma_heap = kzalloc(sizeof(struct ion_cma_heap), GFP_KERNEL);
142
143 if (!cma_heap)
144 return ERR_PTR(-ENOMEM);
145
146 cma_heap->heap.ops = &ion_cma_ops;
Sriram Raghunathan7e416172015-09-22 22:35:51 +0530147 /*
148 * get device from private heaps data, later it will be
149 * used to make the link with reserved CMA memory
150 */
Benjamin Gaignard349c9e12013-12-13 14:24:44 -0800151 cma_heap->dev = data->priv;
152 cma_heap->heap.type = ION_HEAP_TYPE_DMA;
153 return &cma_heap->heap;
154}
155
156void ion_cma_heap_destroy(struct ion_heap *heap)
157{
158 struct ion_cma_heap *cma_heap = to_cma_heap(heap);
159
160 kfree(cma_heap);
161}