mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-19 05:38:00 +00:00
f71ce1c34e
Add a bunch of fixes for HDMI output and Mali-450 GPU rendering on MT7623N, ie. the BananaPi R2. Signed-off-by: Daniel Golle <daniel@makrotopia.org>
56 lines
2.4 KiB
Diff
56 lines
2.4 KiB
Diff
From patchwork Sun Dec 15 22:14:48 2024
|
|
Content-Type: text/plain; charset="utf-8"
|
|
MIME-Version: 1.0
|
|
Content-Transfer-Encoding: 7bit
|
|
X-Patchwork-Submitter: Daniel Golle <daniel@makrotopia.org>
|
|
X-Patchwork-Id: 13909009
|
|
Date: Sun, 15 Dec 2024 22:14:48 +0000
|
|
From: Daniel Golle <daniel@makrotopia.org>
|
|
To: Michael Turquette <mturquette@baylibre.com>,
|
|
Stephen Boyd <sboyd@kernel.org>, Matthias Brugger <matthias.bgg@gmail.com>,
|
|
AngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com>,
|
|
Alexandre Mergnat <amergnat@baylibre.com>,
|
|
Geert Uytterhoeven <geert+renesas@glider.be>,
|
|
Daniel Golle <daniel@makrotopia.org>,
|
|
Uwe =?iso-8859-1?q?Kleine-K=F6nig?= <u.kleine-koenig@baylibre.com>,
|
|
Miles Chen <miles.chen@mediatek.com>, Chen-Yu Tsai <wenst@chromium.org>,
|
|
Frank Wunderlich <frank-w@public-files.de>, John Crispin <john@phrozen.org>,
|
|
linux-clk@vger.kernel.org, linux-kernel@vger.kernel.org,
|
|
linux-arm-kernel@lists.infradead.org, linux-mediatek@lists.infradead.org,
|
|
stable@vger.kernel.org
|
|
Subject: [PATCH 5/5] clk: mediatek: mt2701-img: add missing dummy clk
|
|
Message-ID:
|
|
<d677486a5c563fe5c47aa995841adc2aaa183b8a.1734300668.git.daniel@makrotopia.org>
|
|
References:
|
|
<b126a5577f3667ef19b1b5feea5e70174084fb03.1734300668.git.daniel@makrotopia.org>
|
|
Precedence: bulk
|
|
X-Mailing-List: linux-clk@vger.kernel.org
|
|
List-Id: <linux-clk.vger.kernel.org>
|
|
List-Subscribe: <mailto:linux-clk+subscribe@vger.kernel.org>
|
|
List-Unsubscribe: <mailto:linux-clk+unsubscribe@vger.kernel.org>
|
|
MIME-Version: 1.0
|
|
Content-Disposition: inline
|
|
In-Reply-To:
|
|
<b126a5577f3667ef19b1b5feea5e70174084fb03.1734300668.git.daniel@makrotopia.org>
|
|
|
|
Add dummy clk for index 0 which was missed during the conversion to
|
|
mtk_clk_simple_probe().
|
|
|
|
Fixes: 973d1607d936 ("clk: mediatek: mt2701: use mtk_clk_simple_probe to simplify driver")
|
|
Cc: stable@vger.kernel.org
|
|
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
|
|
---
|
|
drivers/clk/mediatek/clk-mt2701-img.c | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
--- a/drivers/clk/mediatek/clk-mt2701-img.c
|
|
+++ b/drivers/clk/mediatek/clk-mt2701-img.c
|
|
@@ -22,6 +22,7 @@ static const struct mtk_gate_regs img_cg
|
|
GATE_MTK(_id, _name, _parent, &img_cg_regs, _shift, &mtk_clk_gate_ops_setclr)
|
|
|
|
static const struct mtk_gate img_clks[] = {
|
|
+ GATE_DUMMY(CLK_DUMMY, "img_dummy"),
|
|
GATE_IMG(CLK_IMG_SMI_COMM, "img_smi_comm", "mm_sel", 0),
|
|
GATE_IMG(CLK_IMG_RESZ, "img_resz", "mm_sel", 1),
|
|
GATE_IMG(CLK_IMG_JPGDEC_SMI, "img_jpgdec_smi", "mm_sel", 5),
|