tizen 2.4 release
[kernel/linux-3.0.git] / drivers / gpu / arm / mali400 / mali / common / mali_gp_scheduler.h
1 /*
2  * Copyright (C) 2011-2012 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_GP_SCHEDULER_H__
12 #define __MALI_GP_SCHEDULER_H__
13
14 #include "mali_osk.h"
15 #include "mali_gp_job.h"
16 #include "mali_group.h"
17
18 _mali_osk_errcode_t mali_gp_scheduler_initialize(void);
19 void mali_gp_scheduler_terminate(void);
20
21 void mali_gp_scheduler_job_done(struct mali_group *group, struct mali_gp_job *job, mali_bool success);
22 void mali_gp_scheduler_oom(struct mali_group *group, struct mali_gp_job *job);
23 void mali_gp_scheduler_abort_session(struct mali_session_data *session);
24 u32 mali_gp_scheduler_dump_state(char *buf, u32 size);
25
26 void mali_gp_scheduler_suspend(void);
27 void mali_gp_scheduler_resume(void);
28
29 /**
30  * @brief Reset all groups
31  *
32  * This function resets all groups known by the GP scheuduler. This must be
33  * called after the Mali HW has been powered on in order to reset the HW.
34  */
35 void mali_gp_scheduler_reset_all_groups(void);
36
37 /**
38  * @brief Zap TLB on all groups with \a session active
39  *
40  * The scheculer will zap the session on all groups it owns.
41  */
42 void mali_gp_scheduler_zap_all_active(struct mali_session_data *session);
43
44 #endif /* __MALI_GP_SCHEDULER_H__ */