rk3288 gpu : update GPU driver r4p0_eac version
[firefly-linux-kernel-4.4.55.git] / drivers / gpu / arm / midgard / mali_kbase_gpuprops.h
1 /*
2  *
3  * (C) COPYRIGHT ARM Limited. All rights reserved.
4  *
5  * This program is free software and is provided to you under the terms of the
6  * GNU General Public License version 2 as published by the Free Software
7  * Foundation, and any use by you of this program is subject to the terms
8  * of such GNU licence.
9  *
10  * A copy of the licence is included with the program, and can also be obtained
11  * from Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
12  * Boston, MA  02110-1301, USA.
13  *
14  */
15
16
17
18
19
20 /**
21  * @file mali_kbase_gpuprops.h
22  * Base kernel property query APIs
23  */
24
25 #ifndef _KBASE_GPUPROPS_H_
26 #define _KBASE_GPUPROPS_H_
27
28 #include "mali_kbase_gpuprops_types.h"
29
30 /* Forward definition - see mali_kbase.h */
31 struct kbase_device;
32
33 /**
34  * @brief Set up Kbase GPU properties.
35  *
36  * Set up Kbase GPU properties with information from the GPU registers
37  *
38  * @param kbdev         The kbase_device structure for the device
39  */
40 void kbase_gpuprops_set(struct kbase_device *kbdev);
41
42 /**
43  * @brief Provide GPU properties to userside through UKU call.
44  *
45  * Fill the kbase_uk_gpuprops with values from GPU configuration registers.
46  *
47  * @param kctx          The kbase_context structure
48  * @param kbase_props   A copy of the kbase_uk_gpuprops structure from userspace
49  *
50  * @return MALI_ERROR_NONE on success. Any other value indicates failure.
51  */
52 mali_error kbase_gpuprops_uk_get_props(kbase_context *kctx, kbase_uk_gpuprops * const kbase_props);
53
54 #endif                          /* _KBASE_GPUPROPS_H_ */