tizen 2.4 release
[kernel/linux-3.0.git] / drivers / gpu / arm / mali400 / r4p0_rel0 / common / mali_gp.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_H__
12 #define __MALI_GP_H__
13
14 #include "mali_osk.h"
15 #include "mali_gp_job.h"
16 #include "mali_hw_core.h"
17 #include "regs/mali_gp_regs.h"
18
19 struct mali_group;
20
21 /**
22  * Definition of the GP core struct
23  * Used to track a GP core in the system.
24  */
25 struct mali_gp_core {
26         struct mali_hw_core  hw_core;           /**< Common for all HW cores */
27         _mali_osk_irq_t     *irq;               /**< IRQ handler */
28 };
29
30 _mali_osk_errcode_t mali_gp_initialize(void);
31 void mali_gp_terminate(void);
32
33 struct mali_gp_core *mali_gp_create(const _mali_osk_resource_t * resource, struct mali_group *group);
34 void mali_gp_delete(struct mali_gp_core *core);
35
36 void mali_gp_stop_bus(struct mali_gp_core *core);
37 _mali_osk_errcode_t mali_gp_stop_bus_wait(struct mali_gp_core *core);
38 void mali_gp_reset_async(struct mali_gp_core *core);
39 _mali_osk_errcode_t mali_gp_reset_wait(struct mali_gp_core *core);
40 void mali_gp_hard_reset(struct mali_gp_core *core);
41 _mali_osk_errcode_t mali_gp_reset(struct mali_gp_core *core);
42
43 void mali_gp_job_start(struct mali_gp_core *core, struct mali_gp_job *job);
44 void mali_gp_resume_with_new_heap(struct mali_gp_core *core, u32 start_addr, u32 end_addr);
45
46 u32 mali_gp_core_get_version(struct mali_gp_core *core);
47
48 struct mali_gp_core *mali_gp_get_global_gp_core(void);
49
50 u32 mali_gp_dump_state(struct mali_gp_core *core, char *buf, u32 size);
51
52 void mali_gp_update_performance_counters(struct mali_gp_core *core, struct mali_gp_job *job, mali_bool suspend);
53
54 /*** Accessor functions ***/
55 MALI_STATIC_INLINE const char *mali_gp_get_hw_core_desc(struct mali_gp_core *core)
56 {
57         return core->hw_core.description;
58 }
59
60 /*** Register reading/writing functions ***/
61 MALI_STATIC_INLINE u32 mali_gp_get_int_stat(struct mali_gp_core *core)
62 {
63         return mali_hw_core_register_read(&core->hw_core, MALIGP2_REG_ADDR_MGMT_INT_STAT);
64 }
65
66 MALI_STATIC_INLINE void mali_gp_mask_all_interrupts(struct mali_gp_core *core)
67 {
68         mali_hw_core_register_write(&core->hw_core, MALIGP2_REG_ADDR_MGMT_INT_MASK, MALIGP2_REG_VAL_IRQ_MASK_NONE);
69 }
70
71 MALI_STATIC_INLINE u32 mali_gp_read_rawstat(struct mali_gp_core *core)
72 {
73         return mali_hw_core_register_read(&core->hw_core, MALIGP2_REG_ADDR_MGMT_INT_RAWSTAT) & MALIGP2_REG_VAL_IRQ_MASK_USED;
74 }
75
76 MALI_STATIC_INLINE u32 mali_gp_read_core_status(struct mali_gp_core *core)
77 {
78         return mali_hw_core_register_read(&core->hw_core, MALIGP2_REG_ADDR_MGMT_STATUS);
79 }
80
81 MALI_STATIC_INLINE void mali_gp_enable_interrupts(struct mali_gp_core *core, u32 irq_exceptions)
82 {
83         /* Enable all interrupts, except those specified in irq_exceptions */
84         mali_hw_core_register_write(&core->hw_core, MALIGP2_REG_ADDR_MGMT_INT_MASK,
85                                     MALIGP2_REG_VAL_IRQ_MASK_USED & ~irq_exceptions);
86 }
87
88 MALI_STATIC_INLINE u32 mali_gp_read_plbu_alloc_start_addr(struct mali_gp_core *core)
89 {
90         return mali_hw_core_register_read(&core->hw_core, MALIGP2_REG_ADDR_MGMT_PLBU_ALLOC_START_ADDR);
91 }
92
93 #endif /* __MALI_GP_H__ */