summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Liu <r66033@freescale.com>2012-08-21 13:20:20 +0800
committerRichard Liu <r66033@freescale.com>2012-08-22 14:09:02 +0800
commit282dfc8849e19908051fbf00fbce85302fab44d1 (patch)
tree892a37ff140b9cc150ebf45adce096ed77ba1fc7
parent96ea801b4ac0cff72fdae3ca9451a631b4c18531 (diff)
ENGR00220834 Disable GPU IRQ trigger for CPU governor to save power
Disable GPU IRQ trigger for CPU governor to save power Current GPU trigger will let CPU work at 1G no matter any 3D draw that make much power waste, to balance power and performance we desire to disable GPU trigger for CPU governor, this change will impact some benchmark performance but the drop is acceptable, android will add performance mode, for any demo or customer who care performance more than power please select performance mode. Signed-off-by: Richard Liu <r66033@freescale.com> Acked-by: Lily Zhang
-rw-r--r--arch/arm/mach-mx6/irq.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/arm/mach-mx6/irq.c b/arch/arm/mach-mx6/irq.c
index 197c451d5fb4..5131eae3a040 100644
--- a/arch/arm/mach-mx6/irq.c
+++ b/arch/arm/mach-mx6/irq.c
@@ -55,15 +55,15 @@ static struct irq_tuner mxc_irq_tuner[] = {
{
.irq_number = 41, /* GPU 3D */
.up_threshold = 0,
- .enable = 1,},
+ .enable = 0,},
{
.irq_number = 42, /* GPU 2D */
.up_threshold = 40,
- .enable = 1,},
+ .enable = 0,},
{
.irq_number = 43, /* GPU VG */
.up_threshold = 0,
- .enable = 1,},
+ .enable = 0,},
{
.irq_number = 54, /* uSDHC1 */
.up_threshold = 4,