forked from Openwrt/openwrt
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>
41 lines
971 B
Diff
41 lines
971 B
Diff
From d36e9420632072be885a453722e3ea112e6d7815 Mon Sep 17 00:00:00 2001
|
|
From: Dom Cobley <popcornmix@gmail.com>
|
|
Date: Wed, 20 Apr 2022 17:40:47 +0100
|
|
Subject: [PATCH 0377/1085] clk-raspberrypi: Enable minimize for all firmware
|
|
clocks
|
|
|
|
Signed-off-by: Dom Cobley <popcornmix@gmail.com>
|
|
---
|
|
drivers/clk/bcm/clk-raspberrypi.c | 5 +++++
|
|
1 file changed, 5 insertions(+)
|
|
|
|
--- a/drivers/clk/bcm/clk-raspberrypi.c
|
|
+++ b/drivers/clk/bcm/clk-raspberrypi.c
|
|
@@ -111,21 +111,26 @@ raspberrypi_clk_variants[RPI_FIRMWARE_NU
|
|
},
|
|
[RPI_FIRMWARE_V3D_CLK_ID] = {
|
|
.export = true,
|
|
+ .minimize = true,
|
|
},
|
|
[RPI_FIRMWARE_PIXEL_CLK_ID] = {
|
|
.export = true,
|
|
},
|
|
[RPI_FIRMWARE_HEVC_CLK_ID] = {
|
|
.export = true,
|
|
+ .minimize = true,
|
|
},
|
|
[RPI_FIRMWARE_ISP_CLK_ID] = {
|
|
.export = true,
|
|
+ .minimize = true,
|
|
},
|
|
[RPI_FIRMWARE_PIXEL_BVB_CLK_ID] = {
|
|
.export = true,
|
|
+ .minimize = true,
|
|
},
|
|
[RPI_FIRMWARE_VEC_CLK_ID] = {
|
|
.export = true,
|
|
+ .minimize = true,
|
|
},
|
|
};
|
|
|