hc
2024-05-16 8d2a02b24d66aa359e83eebc1ed3c0f85367a1cb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
/*
 * Copyright (C) 2010-2011, 2013-2014, 2016-2017 ARM Limited. All rights reserved.
 * 
 * This program is free software and is provided to you under the terms of the GNU General Public License version 2
 * as published by the Free Software Foundation, and any use by you of this program is subject to the terms of such GNU licence.
 * 
 * A copy of the licence is included with the program, and can also be obtained from Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
 */
 
/**
 * @file mali_osk_memory.c
 * Implementation of the OS abstraction layer for the kernel device driver
 */
 
#include "mali_osk.h"
#include <linux/slab.h>
#include <linux/vmalloc.h>
 
void inline *_mali_osk_calloc(u32 n, u32 size)
{
   return kcalloc(n, size, GFP_KERNEL);
}
 
void inline *_mali_osk_malloc(u32 size)
{
   return kmalloc(size, GFP_KERNEL);
}
 
void inline _mali_osk_free(void *ptr)
{
   kfree(ptr);
}
 
void inline *_mali_osk_valloc(u32 size)
{
   return vmalloc(size);
}
 
void inline _mali_osk_vfree(void *ptr)
{
   vfree(ptr);
}
 
void inline *_mali_osk_memcpy(void *dst, const void *src, u32  len)
{
   return memcpy(dst, src, len);
}
 
void inline *_mali_osk_memset(void *s, u32 c, u32 n)
{
   return memset(s, c, n);
}
 
mali_bool _mali_osk_mem_check_allocated(u32 max_allocated)
{
   /* No need to prevent an out-of-memory dialogue appearing on Linux,
    * so we always return MALI_TRUE.
    */
   return MALI_TRUE;
}