1 /*
2 * Copyright (C) 2010-2017 ARM Limited. All rights reserved.
3 *
4 * This program is free software and is provided to you under the terms of the GNU General Public License version 2
5 * as published by the Free Software Foundation, and any use by you of this program is subject to the terms of such GNU licence.
6 *
7 * A copy of the licence is included with the program, and can also be obtained from Free Software
8 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
9 */
10
11 #ifndef __MALI_KERNEL_CORE_H__
12 #define __MALI_KERNEL_CORE_H__
13
14 #include "mali_osk.h"
15
16 typedef enum {
17 _MALI_PRODUCT_ID_UNKNOWN,
18 _MALI_PRODUCT_ID_MALI200,
19 _MALI_PRODUCT_ID_MALI300,
20 _MALI_PRODUCT_ID_MALI400,
21 _MALI_PRODUCT_ID_MALI450,
22 _MALI_PRODUCT_ID_MALI470,
23 } _mali_product_id_t;
24
25 extern mali_bool mali_gpu_class_is_mali450;
26 extern mali_bool mali_gpu_class_is_mali470;
27
28 _mali_osk_errcode_t mali_initialize_subsystems(void);
29
30 void mali_terminate_subsystems(void);
31
32 _mali_product_id_t mali_kernel_core_get_product_id(void);
33
34 u32 mali_kernel_core_get_gpu_major_version(void);
35
36 u32 mali_kernel_core_get_gpu_minor_version(void);
37
38 u32 _mali_kernel_core_dump_state(char *buf, u32 size);
39
mali_is_mali470(void)40 MALI_STATIC_INLINE mali_bool mali_is_mali470(void)
41 {
42 return mali_gpu_class_is_mali470;
43 }
44
mali_is_mali450(void)45 MALI_STATIC_INLINE mali_bool mali_is_mali450(void)
46 {
47 return mali_gpu_class_is_mali450;
48 }
49
mali_is_mali400(void)50 MALI_STATIC_INLINE mali_bool mali_is_mali400(void)
51 {
52 if (mali_gpu_class_is_mali450 || mali_gpu_class_is_mali470)
53 return MALI_FALSE;
54
55 return MALI_TRUE;
56 }
57 #endif /* __MALI_KERNEL_CORE_H__ */
58