tizen 2.4 release
[kernel/linux-3.0.git] / drivers / gpu / arm / mali400 / r4p0_rel0 / common / mali_broadcast.h
1 /*
2  * Copyright (C) 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 /*
12  *  Interface for the broadcast unit on Mali-450.
13  *
14  * - Represents up to 8 × (MMU + PP) pairs.
15  * - Supports dynamically changing which (MMU + PP) pairs receive the broadcast by
16  *   setting a mask.
17  */
18
19 #include "mali_hw_core.h"
20 #include "mali_group.h"
21
22 struct mali_bcast_unit;
23
24 struct mali_bcast_unit *mali_bcast_unit_create(const _mali_osk_resource_t *resource);
25 void mali_bcast_unit_delete(struct mali_bcast_unit *bcast_unit);
26
27 /* Add a group to the list of (MMU + PP) pairs broadcasts go out to. */
28 void mali_bcast_add_group(struct mali_bcast_unit *bcast_unit, struct mali_group *group);
29
30 /* Remove a group to the list of (MMU + PP) pairs broadcasts go out to. */
31 void mali_bcast_remove_group(struct mali_bcast_unit *bcast_unit, struct mali_group *group);
32
33 /* Re-set cached mask. This needs to be called after having been suspended. */
34 void mali_bcast_reset(struct mali_bcast_unit *bcast_unit);
35
36 /**
37  * Disable broadcast unit
38  *
39  * mali_bcast_enable must be called to re-enable the unit. Cores may not be
40  * added or removed when the unit is disabled.
41  */
42 void mali_bcast_disable(struct mali_bcast_unit *bcast_unit);
43
44 /**
45  * Re-enable broadcast unit
46  *
47  * This resets the masks to include the cores present when mali_bcast_disable was called.
48  */
49 MALI_STATIC_INLINE void mali_bcast_enable(struct mali_bcast_unit *bcast_unit)
50 {
51         mali_bcast_reset(bcast_unit);
52 }