blob: b23f2c76c753e3fb95b191d98e9639a3294f5209 [file] [log] [blame]
John Stultz1184ead2014-01-09 21:08:37 -08001/*
2 * drivers/gpu/ion/ion_dummy_driver.c
3 *
4 * Copyright (C) 2013 Linaro, Inc
5 *
6 * This software is licensed under the terms of the GNU General Public
7 * License version 2, as published by the Free Software Foundation, and
8 * may be copied, distributed, and modified under those terms.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 */
16
17#include <linux/err.h>
18#include <linux/platform_device.h>
19#include <linux/slab.h>
Paul Gortmaker102f1a22014-01-21 16:22:12 -050020#include <linux/init.h>
John Stultz1184ead2014-01-09 21:08:37 -080021#include <linux/bootmem.h>
22#include <linux/memblock.h>
23#include <linux/sizes.h>
Chen Gang10f6f9c2014-01-18 17:04:06 +080024#include <linux/io.h>
John Stultz1184ead2014-01-09 21:08:37 -080025#include "ion.h"
26#include "ion_priv.h"
27
Wei Yongjun3a915dd2014-01-14 10:04:49 +080028static struct ion_device *idev;
29static struct ion_heap **heaps;
John Stultz1184ead2014-01-09 21:08:37 -080030
Wei Yongjun3a915dd2014-01-14 10:04:49 +080031static void *carveout_ptr;
32static void *chunk_ptr;
John Stultz4c45b1a2014-01-09 21:08:38 -080033
Wei Yongjun3a915dd2014-01-14 10:04:49 +080034static struct ion_platform_heap dummy_heaps[] = {
John Stultz1184ead2014-01-09 21:08:37 -080035 {
36 .id = ION_HEAP_TYPE_SYSTEM,
37 .type = ION_HEAP_TYPE_SYSTEM,
38 .name = "system",
39 },
40 {
41 .id = ION_HEAP_TYPE_SYSTEM_CONTIG,
42 .type = ION_HEAP_TYPE_SYSTEM_CONTIG,
43 .name = "system contig",
44 },
John Stultz4c45b1a2014-01-09 21:08:38 -080045 {
46 .id = ION_HEAP_TYPE_CARVEOUT,
47 .type = ION_HEAP_TYPE_CARVEOUT,
48 .name = "carveout",
49 .size = SZ_4M,
50 },
51 {
52 .id = ION_HEAP_TYPE_CHUNK,
53 .type = ION_HEAP_TYPE_CHUNK,
54 .name = "chunk",
55 .size = SZ_4M,
56 .align = SZ_16K,
57 .priv = (void *)(SZ_16K),
58 },
John Stultz1184ead2014-01-09 21:08:37 -080059};
60
Wei Yongjun3a915dd2014-01-14 10:04:49 +080061static struct ion_platform_data dummy_ion_pdata = {
Tomas Winkler18691f52014-01-22 19:15:55 +020062 .nr = ARRAY_SIZE(dummy_heaps),
John Stultz1184ead2014-01-09 21:08:37 -080063 .heaps = dummy_heaps,
64};
65
66static int __init ion_dummy_init(void)
67{
68 int i, err;
69
70 idev = ion_device_create(NULL);
Sudip Mukherjee9f563f12016-04-07 22:02:25 +053071 if (IS_ERR(idev))
72 return PTR_ERR(idev);
Phong Trand320c452014-08-13 20:37:04 +070073 heaps = kcalloc(dummy_ion_pdata.nr, sizeof(struct ion_heap *),
John Stultz1184ead2014-01-09 21:08:37 -080074 GFP_KERNEL);
75 if (!heaps)
Dan Carpenter630127f2014-01-20 13:30:01 +030076 return -ENOMEM;
John Stultz1184ead2014-01-09 21:08:37 -080077
John Stultz4c45b1a2014-01-09 21:08:38 -080078
79 /* Allocate a dummy carveout heap */
80 carveout_ptr = alloc_pages_exact(
81 dummy_heaps[ION_HEAP_TYPE_CARVEOUT].size,
82 GFP_KERNEL);
83 if (carveout_ptr)
84 dummy_heaps[ION_HEAP_TYPE_CARVEOUT].base =
85 virt_to_phys(carveout_ptr);
86 else
87 pr_err("ion_dummy: Could not allocate carveout\n");
88
89 /* Allocate a dummy chunk heap */
90 chunk_ptr = alloc_pages_exact(
91 dummy_heaps[ION_HEAP_TYPE_CHUNK].size,
92 GFP_KERNEL);
93 if (chunk_ptr)
94 dummy_heaps[ION_HEAP_TYPE_CHUNK].base = virt_to_phys(chunk_ptr);
95 else
96 pr_err("ion_dummy: Could not allocate chunk\n");
97
John Stultz1184ead2014-01-09 21:08:37 -080098 for (i = 0; i < dummy_ion_pdata.nr; i++) {
99 struct ion_platform_heap *heap_data = &dummy_ion_pdata.heaps[i];
100
John Stultz4c45b1a2014-01-09 21:08:38 -0800101 if (heap_data->type == ION_HEAP_TYPE_CARVEOUT &&
Ben LeMasurier679011b2016-08-22 07:45:53 -0600102 !heap_data->base)
John Stultz4c45b1a2014-01-09 21:08:38 -0800103 continue;
104
105 if (heap_data->type == ION_HEAP_TYPE_CHUNK && !heap_data->base)
106 continue;
107
John Stultz1184ead2014-01-09 21:08:37 -0800108 heaps[i] = ion_heap_create(heap_data);
109 if (IS_ERR_OR_NULL(heaps[i])) {
110 err = PTR_ERR(heaps[i]);
111 goto err;
112 }
113 ion_device_add_heap(idev, heaps[i]);
114 }
115 return 0;
116err:
Markus Elfring698f1402014-11-23 18:48:15 +0100117 for (i = 0; i < dummy_ion_pdata.nr; ++i)
118 ion_heap_destroy(heaps[i]);
John Stultz1184ead2014-01-09 21:08:37 -0800119 kfree(heaps);
120
John Stultz4c45b1a2014-01-09 21:08:38 -0800121 if (carveout_ptr) {
122 free_pages_exact(carveout_ptr,
Ben LeMasurier679011b2016-08-22 07:45:53 -0600123 dummy_heaps[ION_HEAP_TYPE_CARVEOUT].size);
John Stultz4c45b1a2014-01-09 21:08:38 -0800124 carveout_ptr = NULL;
125 }
126 if (chunk_ptr) {
127 free_pages_exact(chunk_ptr,
Ben LeMasurier679011b2016-08-22 07:45:53 -0600128 dummy_heaps[ION_HEAP_TYPE_CHUNK].size);
John Stultz4c45b1a2014-01-09 21:08:38 -0800129 chunk_ptr = NULL;
130 }
John Stultz1184ead2014-01-09 21:08:37 -0800131 return err;
132}
Paul Gortmaker102f1a22014-01-21 16:22:12 -0500133device_initcall(ion_dummy_init);
John Stultz1184ead2014-01-09 21:08:37 -0800134
135static void __exit ion_dummy_exit(void)
136{
137 int i;
138
139 ion_device_destroy(idev);
140
141 for (i = 0; i < dummy_ion_pdata.nr; i++)
142 ion_heap_destroy(heaps[i]);
143 kfree(heaps);
144
John Stultz4c45b1a2014-01-09 21:08:38 -0800145 if (carveout_ptr) {
146 free_pages_exact(carveout_ptr,
Ben LeMasurier679011b2016-08-22 07:45:53 -0600147 dummy_heaps[ION_HEAP_TYPE_CARVEOUT].size);
John Stultz4c45b1a2014-01-09 21:08:38 -0800148 carveout_ptr = NULL;
149 }
150 if (chunk_ptr) {
151 free_pages_exact(chunk_ptr,
Ben LeMasurier679011b2016-08-22 07:45:53 -0600152 dummy_heaps[ION_HEAP_TYPE_CHUNK].size);
John Stultz4c45b1a2014-01-09 21:08:38 -0800153 chunk_ptr = NULL;
154 }
John Stultz1184ead2014-01-09 21:08:37 -0800155}
Paul Gortmaker102f1a22014-01-21 16:22:12 -0500156__exitcall(ion_dummy_exit);