aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu/mali400/r3p2/ump/common/ump_kernel_memory_backend.h
blob: 8b114529d07ec4b9a933ba4544fc825a84884cda (plain)
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
/*
 * Copyright (C) 2010-2011 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 ump_kernel_memory_mapping.h
 */

#ifndef __UMP_KERNEL_MEMORY_BACKEND_H__
#define __UMP_KERNEL_MEMORY_BACKEND_H__

#include "ump_kernel_interface.h"
#include "ump_kernel_types.h"


typedef struct ump_memory_allocation
{
	void                    * phys_addr;
	void                    * mapping;
	unsigned long             size;
	ump_dd_handle             handle;
	void                    * process_mapping_info;
	u32                       cookie;               /**< necessary on some U/K interface implementations */
	struct ump_session_data * ump_session;          /**< Session that this allocation belongs to */
	_mali_osk_list_t          list;                 /**< List for linking together memory allocations into the session's memory head */
	u32 is_cached;
} ump_memory_allocation;

typedef struct ump_memory_backend
{
	int  (*allocate)(void* ctx, ump_dd_mem * descriptor);
	void (*release)(void* ctx, ump_dd_mem * descriptor);
	void (*shutdown)(struct ump_memory_backend * backend);
	u32  (*stat)(struct ump_memory_backend *backend);
	int  (*pre_allocate_physical_check)(void *ctx, u32 size);
	u32  (*adjust_to_mali_phys)(void *ctx, u32 cpu_phys);
	/* MALI_SEC */
	void *(*get)(ump_dd_mem *mem, void *args);
	void (*set)(ump_dd_mem *mem, void *args);
	void * ctx;
} ump_memory_backend;

ump_memory_backend * ump_memory_backend_create ( void );
void ump_memory_backend_destroy( void );

#endif /*__UMP_KERNEL_MEMORY_BACKEND_H__ */