mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2024-11-22 04:56:15 +00:00
8c405cdccc
The patches were generated from the RPi repo with the following command: git format-patch v6.6.34..rpi-6.1.y Some patches needed rebasing and, as usual, the applied and reverted, wireless drivers, Github workflows, READMEs and defconfigs patches were removed. Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
26 lines
844 B
Diff
26 lines
844 B
Diff
From 2985bc4d35a3987c452464df2b2c463d42972359 Mon Sep 17 00:00:00 2001
|
|
From: popcornmix <popcornmix@gmail.com>
|
|
Date: Mon, 9 Sep 2019 15:49:56 +0100
|
|
Subject: [PATCH 0189/1085] clk-raspberrypi: Allow cpufreq driver to also
|
|
adjust gpu clocks
|
|
|
|
For performance/power it is beneficial to adjust gpu clocks with arm clock.
|
|
This is how the downstream cpufreq driver works
|
|
|
|
Signed-off-by: popcornmix <popcornmix@gmail.com>
|
|
---
|
|
drivers/clk/bcm/clk-raspberrypi.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
--- a/drivers/clk/bcm/clk-raspberrypi.c
|
|
+++ b/drivers/clk/bcm/clk-raspberrypi.c
|
|
@@ -156,7 +156,7 @@ static int raspberrypi_clock_property(st
|
|
struct raspberrypi_firmware_prop msg = {
|
|
.id = cpu_to_le32(data->id),
|
|
.val = cpu_to_le32(*val),
|
|
- .disable_turbo = cpu_to_le32(1),
|
|
+ .disable_turbo = cpu_to_le32(0),
|
|
};
|
|
int ret;
|
|
|