f6392b006933a4a5a973b8587811d4a24bc2d7e1
[firefly-linux-kernel-4.4.55.git] / drivers / gpu / arm / t6xx / kbase / src / common / mali_kbase_pm_demand.c
1 /*
2  *
3  * (C) COPYRIGHT ARM Limited. All rights reserved.
4  *
5  * This program is free software and is provided to you under the terms of the
6  * GNU General Public License version 2 as published by the Free Software
7  * Foundation, and any use by you of this program is subject to the terms
8  * of such GNU licence.
9  *
10  * A copy of the licence is included with the program, and can also be obtained
11  * from Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
12  * Boston, MA  02110-1301, USA.
13  *
14  */
15
16
17
18
19
20 /**
21  * @file mali_kbase_pm_demand.c
22  * A simple demand based power management policy
23  */
24
25 #include <kbase/src/common/mali_kbase.h>
26 #include <kbase/src/common/mali_kbase_pm.h>
27
28 static u64 demand_get_core_mask(struct kbase_device *kbdev)
29 {
30         u64 desired = kbdev->shader_needed_bitmap | kbdev->shader_inuse_bitmap;
31
32         if (0 == kbdev->pm.active_count)
33                 return 0;
34
35         return desired;
36 }
37
38 static mali_bool demand_get_core_active (struct kbase_device *kbdev)
39 {
40         if (0 == kbdev->pm.active_count)
41                 return MALI_FALSE;
42
43         return MALI_TRUE;
44 }
45
46 static void demand_init(struct kbase_device *kbdev)
47 {
48         CSTD_UNUSED(kbdev);
49 }
50
51 static void demand_term(struct kbase_device *kbdev)
52 {
53         CSTD_UNUSED(kbdev);
54 }
55
56 /** The @ref kbase_pm_policy structure for the demand power policy.
57  *
58  * This is the static structure that defines the demand power policy's callback and name.
59  */
60 const kbase_pm_policy kbase_pm_demand_policy_ops = {
61         "demand",                       /* name */
62         demand_init,                    /* init */
63         demand_term,                    /* term */
64         demand_get_core_mask,           /* get_core_mask */
65         demand_get_core_active,         /* get_core_active */
66         0u,                             /* flags */
67         KBASE_PM_POLICY_ID_DEMAND,      /* id */
68 };
69
70 KBASE_EXPORT_TEST_API(kbase_pm_demand_policy_ops)