Merge remote-tracking branch 'origin/develop-3.10' into develop-3.10-next
[firefly-linux-kernel-4.4.55.git] / drivers / gpu / arm / mali400 / mali / linux / mali_osk_memory.c
1 /*
2  * This confidential and proprietary software may be used only as
3  * authorised by a licensing agreement from ARM Limited
4  * (C) COPYRIGHT 2008-2011, 2013 ARM Limited
5  * ALL RIGHTS RESERVED
6  * The entire notice above must be reproduced on all authorised
7  * copies and copies may only be made to the extent permitted
8  * by a licensing agreement from ARM Limited.
9  */
10
11 /**
12  * @file mali_osk_memory.c
13  * Implementation of the OS abstraction layer for the kernel device driver
14  */
15
16 #include "mali_osk.h"
17 #include <linux/slab.h>
18 #include <linux/vmalloc.h>
19
20 void inline *_mali_osk_calloc( u32 n, u32 size )
21 {
22         return kcalloc(n, size, GFP_KERNEL);
23 }
24
25 void inline *_mali_osk_malloc( u32 size )
26 {
27         return kmalloc(size, GFP_KERNEL);
28 }
29
30 void inline _mali_osk_free( void *ptr )
31 {
32         kfree(ptr);
33 }
34
35 void inline *_mali_osk_valloc( u32 size )
36 {
37         return vmalloc(size);
38 }
39
40 void inline _mali_osk_vfree( void *ptr )
41 {
42         vfree(ptr);
43 }
44
45 void inline *_mali_osk_memcpy( void *dst, const void *src, u32  len )
46 {
47         return memcpy(dst, src, len);
48 }
49
50 void inline *_mali_osk_memset( void *s, u32 c, u32 n )
51 {
52         return memset(s, c, n);
53 }
54
55 mali_bool _mali_osk_mem_check_allocated( u32 max_allocated )
56 {
57         /* No need to prevent an out-of-memory dialogue appearing on Linux,
58          * so we always return MALI_TRUE.
59          */
60         return MALI_TRUE;
61 }