6e05ffdc927a2fe0cb6bc74275c3486420b4f8c8
[firefly-linux-kernel-4.4.55.git] / drivers / gpu / arm / mali400 / mali / linux / mali_profiling_internal.h
1 /*
2  * Copyright (C) 2012-2014, 2016 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_PROFILING_INTERNAL_H__
12 #define __MALI_PROFILING_INTERNAL_H__
13
14 #ifdef __cplusplus
15 extern "C" {
16 #endif
17
18 #include "mali_osk.h"
19
20 int _mali_internal_profiling_init(mali_bool auto_start);
21 void _mali_internal_profiling_term(void);
22
23 mali_bool _mali_internal_profiling_is_recording(void);
24 mali_bool _mali_internal_profiling_have_recording(void);
25 _mali_osk_errcode_t _mali_internal_profiling_clear(void);
26 _mali_osk_errcode_t _mali_internal_profiling_get_event(u32 index, u64 *timestamp, u32 *event_id, u32 data[5]);
27 u32 _mali_internal_profiling_get_count(void);
28 int _mali_internal_profiling_stop(u32 *count);
29 int _mali_internal_profiling_start(u32 *limit);
30
31 #ifdef __cplusplus
32 }
33 #endif
34
35 #endif /* __MALI_PROFILING_INTERNAL_H__ */