diff options
Diffstat (limited to 'arch/arm/mach-omap1/clock.h')
-rw-r--r-- | arch/arm/mach-omap1/clock.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/arch/arm/mach-omap1/clock.h b/arch/arm/mach-omap1/clock.h index 17f874271255..fac921c00bfe 100644 --- a/arch/arm/mach-omap1/clock.h +++ b/arch/arm/mach-omap1/clock.h | |||
@@ -637,6 +637,18 @@ static struct clk mmc2_ck = { | |||
637 | .enable_bit = 20, | 637 | .enable_bit = 20, |
638 | }; | 638 | }; |
639 | 639 | ||
640 | static struct clk mmc3_ck = { | ||
641 | .name = "mmc_ck", | ||
642 | .id = 2, | ||
643 | .ops = &clkops_generic, | ||
644 | /* Functional clock is direct from ULPD, interface clock is ARMPER */ | ||
645 | .parent = &armper_ck.clk, | ||
646 | .rate = 48000000, | ||
647 | .flags = RATE_FIXED | ENABLE_REG_32BIT | CLOCK_NO_IDLE_PARENT, | ||
648 | .enable_reg = OMAP1_IO_ADDRESS(SOFT_REQ_REG), | ||
649 | .enable_bit = 12, | ||
650 | }; | ||
651 | |||
640 | static struct clk virtual_ck_mpu = { | 652 | static struct clk virtual_ck_mpu = { |
641 | .name = "mpu", | 653 | .name = "mpu", |
642 | .ops = &clkops_null, | 654 | .ops = &clkops_null, |