mali mess
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / drivers / misc / mediatek / gpu / mt8127 / mali / ump / common / ump_ukk.h
CommitLineData
6fa3eb70
S
1/*
2 * This confidential and proprietary software may be used only as
3 * authorised by a licensing agreement from ARM Limited
02af6beb 4 * (C) COPYRIGHT 2008-2015 ARM Limited
6fa3eb70
S
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 ump_ukk.h
13 * Defines the kernel-side interface of the user-kernel interface
14 */
15
16#ifndef __UMP_UKK_H__
17#define __UMP_UKK_H__
18
19#include "mali_osk.h"
20#include "ump_uk_types.h"
21
22
23#ifdef __cplusplus
24extern "C" {
25#endif
26
27
02af6beb 28_mali_osk_errcode_t _ump_ukk_open(void **context);
6fa3eb70 29
02af6beb 30_mali_osk_errcode_t _ump_ukk_close(void **context);
6fa3eb70 31
02af6beb 32_mali_osk_errcode_t _ump_ukk_allocate(_ump_uk_allocate_s *user_interaction);
6fa3eb70 33
02af6beb 34_mali_osk_errcode_t _ump_ukk_release(_ump_uk_release_s *release_info);
6fa3eb70 35
02af6beb 36_mali_osk_errcode_t _ump_ukk_size_get(_ump_uk_size_get_s *user_interaction);
6fa3eb70 37
02af6beb 38_mali_osk_errcode_t _ump_ukk_map_mem(_ump_uk_map_mem_s *args);
6fa3eb70 39
02af6beb 40_mali_osk_errcode_t _ump_uku_get_api_version(_ump_uk_api_version_s *args);
6fa3eb70 41
02af6beb 42void _ump_ukk_unmap_mem(_ump_uk_unmap_mem_s *args);
6fa3eb70 43
02af6beb 44void _ump_ukk_msync(_ump_uk_msync_s *args);
6fa3eb70 45
02af6beb 46void _ump_ukk_cache_operations_control(_ump_uk_cache_operations_control_s *args);
6fa3eb70 47
02af6beb 48void _ump_ukk_switch_hw_usage(_ump_uk_switch_hw_usage_s *args);
6fa3eb70 49
02af6beb 50void _ump_ukk_lock(_ump_uk_lock_s *args);
6fa3eb70 51
02af6beb 52void _ump_ukk_unlock(_ump_uk_unlock_s *args);
6fa3eb70 53
02af6beb 54u32 _ump_ukk_report_memory_usage(void);
6fa3eb70
S
55
56#ifdef __cplusplus
57}
58#endif
59
60#endif /* __UMP_UKK_H__ */