From 5398c48244ced950171282c3c11159145fd6b547 Mon Sep 17 00:00:00 2001 From: Paul Walmsley Date: Tue, 4 Dec 2007 02:26:08 -0700 Subject: [PATCH] 3430 clock: Add missing ICR clock Add the 3430 clock for the ICR. Signed-off-by: Paul Walmsley Signed-off-by: Tony Lindgren --- arch/arm/mach-omap2/clock34xx.h | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/arch/arm/mach-omap2/clock34xx.h b/arch/arm/mach-omap2/clock34xx.h index 075a2fad367..6d236b8c370 100644 --- a/arch/arm/mach-omap2/clock34xx.h +++ b/arch/arm/mach-omap2/clock34xx.h @@ -1125,6 +1125,16 @@ static struct clk core_l4_ick = { .recalc = &followparent_recalc, }; +/* Intersystem Communication Registers - chassis mode only */ +static struct clk icr_ick = { + .name = "icr_ick", + .parent = &core_l4_ick, + .enable_reg = OMAP_CM_REGADDR(CORE_MOD, CM_ICLKEN1), + .enable_bit = OMAP3430_EN_ICR_SHIFT, + .flags = CLOCK_IN_OMAP343X, + .recalc = &followparent_recalc, +}; + static struct clk aes2_ick = { .name = "aes2_ick", .parent = &core_l4_ick, @@ -2265,6 +2275,7 @@ static struct clk *onchip_34xx_clks[] __initdata = { &security_l3_ick, &pka_ick, &core_l4_ick, + &icr_ick, &aes2_ick, &sha12_ick, &des2_ick, -- 2.41.1