Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

clk: jz4740: Add TCU clock

Add the missing TCU clock to the list of clocks supplied by the CGU for
the JZ4740 SoC.

Signed-off-by: Paul Cercueil <paul@crapouillou.net>
Tested-by: Mathieu Malaterre <malat@debian.org>
Tested-by: Artur Rojek <contact@artur-rojek.eu>
Acked-by: Stephen Boyd <sboyd@kernel.org>
Acked-by: Rob Herring <robh@kernel.org>
Signed-off-by: Paul Burton <paul.burton@mips.com>
Cc: Ralf Baechle <ralf@linux-mips.org>
Cc: James Hogan <jhogan@kernel.org>
Cc: Jonathan Corbet <corbet@lwn.net>
Cc: Lee Jones <lee.jones@linaro.org>
Cc: Arnd Bergmann <arnd@arndb.de>
Cc: Daniel Lezcano <daniel.lezcano@linaro.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Michael Turquette <mturquette@baylibre.com>
Cc: Jason Cooper <jason@lakedaemon.net>
Cc: Marc Zyngier <marc.zyngier@arm.com>
Cc: Rob Herring <robh+dt@kernel.org>
Cc: Mark Rutland <mark.rutland@arm.com>
Cc: devicetree@vger.kernel.org
Cc: linux-kernel@vger.kernel.org
Cc: linux-doc@vger.kernel.org
Cc: linux-mips@vger.kernel.org
Cc: linux-clk@vger.kernel.org
Cc: od@zcrc.me

authored by

Paul Cercueil and committed by
Paul Burton
73dd11dc 34e93683

+7
+6
drivers/clk/ingenic/jz4740-cgu.c
··· 222 222 .parents = { JZ4740_CLK_EXT, -1, -1, -1 }, 223 223 .gate = { CGU_REG_CLKGR, 5 }, 224 224 }, 225 + 226 + [JZ4740_CLK_TCU] = { 227 + "tcu", CGU_CLK_GATE, 228 + .parents = { JZ4740_CLK_EXT, -1, -1, -1 }, 229 + .gate = { CGU_REG_CLKGR, 1 }, 230 + }, 225 231 }; 226 232 227 233 static void __init jz4740_cgu_init(struct device_node *np)
+1
include/dt-bindings/clock/jz4740-cgu.h
··· 34 34 #define JZ4740_CLK_ADC 19 35 35 #define JZ4740_CLK_I2C 20 36 36 #define JZ4740_CLK_AIC 21 37 + #define JZ4740_CLK_TCU 22 37 38 38 39 #endif /* __DT_BINDINGS_CLOCK_JZ4740_CGU_H__ */