blob: f05a60dc1a032ab10c7d5b94aba73b49d04a899a [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
26config COMMON_CLK_DISABLE_UNUSED
27 bool "Disabled unused clocks at boot"
28 depends on COMMON_CLK
29 ---help---
30 Traverses the entire clock tree and disables any clocks that are
31 enabled in hardware but have not been enabled by any device drivers.
32 This saves power and keeps the software model of the clock in line
33 with reality.
34
35 If in doubt, say "N".
36
37config COMMON_CLK_DEBUG
38 bool "DebugFS representation of clock tree"
39 depends on COMMON_CLK
40 select DEBUG_FS
41 ---help---
42 Creates a directory hierchy in debugfs for visualizing the clk
43 tree structure. Each directory contains read-only members
44 that export information specific to that clk node: clk_rate,
45 clk_flags, clk_prepare_count, clk_enable_count &
46 clk_notifier_count.
47
Arnd Bergmann8fb61e32012-03-17 21:10:51 +000048endmenu