tizen 2.4 release
[kernel/linux-3.0.git] / drivers / gpu / arm / mali400 / ump / linux / ump_memory_backend.c
1 /*
2  * Copyright (C) 2011-2012 ARM Limited. All rights reserved.
3  *
4  * This program is free software and is provided to you under the terms of the GNU General Public License version 2
5  * as published by the Free Software Foundation, and any use by you of this program is subject to the terms of such GNU licence.
6  *
7  * A copy of the licence is included with the program, and can also be obtained from Free Software
8  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
9  */
10
11 #include <linux/module.h>            /* kernel module definitions */
12 #include <linux/ioport.h>            /* request_mem_region */
13
14 #include "arch/config.h"             /* Configuration for current platform. The symlink for arch is set by Makefile */
15
16 #include "ump_osk.h"
17 #include "ump_kernel_common.h"
18 #include "ump_kernel_memory_backend_os.h"
19 #include "ump_kernel_memory_backend_dedicated.h"
20
21 /* Configure which dynamic memory allocator to use */
22 int ump_backend = ARCH_UMP_BACKEND_DEFAULT;
23 module_param(ump_backend, int, S_IRUGO); /* r--r--r-- */
24 MODULE_PARM_DESC(ump_backend, "0 = dedicated memory backend (default), 1 = OS memory backend");
25
26 /* The base address of the memory block for the dedicated memory backend */
27 unsigned int ump_memory_address = ARCH_UMP_MEMORY_ADDRESS_DEFAULT;
28 module_param(ump_memory_address, uint, S_IRUGO); /* r--r--r-- */
29 MODULE_PARM_DESC(ump_memory_address, "The physical address to map for the dedicated memory backend");
30
31 /* The size of the memory block for the dedicated memory backend */
32 unsigned int ump_memory_size = ARCH_UMP_MEMORY_SIZE_DEFAULT;
33 module_param(ump_memory_size, uint, S_IRUGO); /* r--r--r-- */
34 MODULE_PARM_DESC(ump_memory_size, "The size of fixed memory to map in the dedicated memory backend");
35
36 ump_memory_backend* ump_memory_backend_create ( void )
37 {
38         ump_memory_backend * backend = NULL;
39
40         /* Create the dynamic memory allocator backend */
41         if (0 == ump_backend)
42         {
43                 DBG_MSG(2, ("Using dedicated memory backend\n"));
44
45                 DBG_MSG(2, ("Requesting dedicated memory: 0x%08x, size: %u\n", ump_memory_address, ump_memory_size));
46                 /* Ask the OS if we can use the specified physical memory */
47                 if (NULL == request_mem_region(ump_memory_address, ump_memory_size, "UMP Memory"))
48                 {
49                         MSG_ERR(("Failed to request memory region (0x%08X - 0x%08X). Is Mali DD already loaded?\n", ump_memory_address, ump_memory_address + ump_memory_size - 1));
50                         return NULL;
51                 }
52                 backend = ump_block_allocator_create(ump_memory_address, ump_memory_size);
53         }
54         else if (1 == ump_backend)
55         {
56                 DBG_MSG(2, ("Using OS memory backend, allocation limit: %d\n", ump_memory_size));
57                 backend = ump_os_memory_backend_create(ump_memory_size);
58         }
59 /* MALI_SEC */
60 #ifdef CONFIG_UMP_VCM_ALLOC
61         else if (2 == ump_backend)
62         {
63                 DBG_MSG(2, ("Using VCM memory backend, allocation limit: %d\n", ump_memory_size));
64                 backend = ump_vcm_memory_backend_create(ump_memory_size);
65         }
66 #endif
67
68         return backend;
69 }
70
71 void ump_memory_backend_destroy( void )
72 {
73         if (0 == ump_backend)
74         {
75                 DBG_MSG(2, ("Releasing dedicated memory: 0x%08x\n", ump_memory_address));
76                 release_mem_region(ump_memory_address, ump_memory_size);
77         }
78 }