blob: 3d0b78438521e8f6112a5419788defdb3103d54c [file] [log] [blame]
Jean-Christop PLAGNIOL-VILLARD6d803ba2010-11-17 10:04:33 +01001
2config CLKDEV_LOOKUP
3 bool
4 select HAVE_CLK
Kyungmin Parkaa3831c2011-07-18 16:34:54 +09005
Shawn Guo5c77f562011-12-20 14:46:38 +08006config HAVE_CLK_PREPARE
7 bool
8
Kyungmin Parkaa3831c2011-07-18 16:34:54 +09009config HAVE_MACH_CLKDEV
10 bool
Mike Turquetteb24764902012-03-15 23:11:19 -070011
Arnd Bergmann8fb61e32012-03-17 21:10:51 +000012config COMMON_CLK
13 bool
Mike Turquetteb24764902012-03-15 23:11:19 -070014 select HAVE_CLK_PREPARE
Rob Herring01033be2012-04-09 15:24:58 -050015 select CLKDEV_LOOKUP
Mike Turquetteb24764902012-03-15 23:11:19 -070016 ---help---
17 The common clock framework is a single definition of struct
18 clk, useful across many platforms, as well as an
19 implementation of the clock API in include/linux/clk.h.
20 Architectures utilizing the common struct clk should select
Arnd Bergmann8fb61e32012-03-17 21:10:51 +000021 this option.
Mike Turquetteb24764902012-03-15 23:11:19 -070022
Arnd Bergmann8fb61e32012-03-17 21:10:51 +000023menu "Common Clock Framework"
24 depends on COMMON_CLK
Mike Turquetteb24764902012-03-15 23:11:19 -070025
Mike Turquetteb24764902012-03-15 23:11:19 -070026config COMMON_CLK_DEBUG
27 bool "DebugFS representation of clock tree"
Mike Turquetteb24764902012-03-15 23:11:19 -070028 select DEBUG_FS
29 ---help---
30 Creates a directory hierchy in debugfs for visualizing the clk
31 tree structure. Each directory contains read-only members
32 that export information specific to that clk node: clk_rate,
33 clk_flags, clk_prepare_count, clk_enable_count &
34 clk_notifier_count.
35
Mark Brownf05259a2012-05-17 10:04:57 +010036config COMMON_CLK_WM831X
37 tristate "Clock driver for WM831x/2x PMICs"
38 depends on MFD_WM831X
39 ---help---
40 Supports the clocking subsystem of the WM831x/2x series of
41 PMICs from Wolfson Microlectronics.
42
Linus Walleijf9a6aa42012-08-06 18:32:08 +020043config COMMON_CLK_VERSATILE
Linus Walleij672575e2012-08-30 19:39:00 +020044 bool "Clock driver for ARM Reference designs"
Linus Walleijf9a6aa42012-08-06 18:32:08 +020045 depends on ARCH_INTEGRATOR || ARCH_REALVIEW
46 ---help---
47 Supports clocking on ARM Reference designs Integrator/AP,
48 Integrator/CP, RealView PB1176, EB, PB11MP and PBX.
49
Jonghwa Lee73118e62012-08-28 17:54:28 +090050config COMMON_CLK_MAX77686
51 tristate "Clock driver for Maxim 77686 MFD"
52 depends on MFD_MAX77686
53 ---help---
54 This driver supports Maxim 77686 crystal oscillator clock.
55
Peter Ujfalusif9f8c042012-09-14 17:30:27 +030056config CLK_TWL6040
57 tristate "External McPDM functional clock from twl6040"
58 depends on TWL6040_CORE
59 ---help---
60 Enable the external functional clock support on OMAP4+ platforms for
61 McPDM. McPDM module is using the external bit clock on the McPDM bus
62 as functional clock.
63
Arnd Bergmann8fb61e32012-03-17 21:10:51 +000064endmenu