diff options
author | Colin Cross <ccross@android.com> | 2010-01-28 19:40:29 -0500 |
---|---|---|
committer | Erik Gilling <konkers@android.com> | 2010-08-05 17:51:42 -0400 |
commit | d861196163e30c07add471562b45dce38517c9b2 (patch) | |
tree | 33c3577854f2e600e0f4dc25620f4932a31d3138 /arch/arm/Kconfig | |
parent | 5ad36c5f0ece31552a195f2f9e29357a2747536e (diff) |
[ARM] tegra: Add clock support
v2: fixes from Russell King:
- include linux/io.h instead of asm/io.h
- fix whitespace in Kconfig
- Use spin_lock_init to initialize lock
- Return -ENOSYS instead of BUG for unimplemented clock ops
- Use proper return values in tegra2 clock ops
additional changes:
- Rename some clocks to match dev_ids
- add rate propagation
- add debugfs entries
- add support for clock listed in clk_lookup under multiple dev_ids
v3:
- Replace per-clock locking with global clock lock
- Autodetect clock state on init
- Let clock dividers pick next lower possible frequency
- Add support for clock init tables
- Minor bug fixes
- Fix checkpatch issues
Signed-off-by: Colin Cross <ccross@android.com>
Diffstat (limited to 'arch/arm/Kconfig')
-rw-r--r-- | arch/arm/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig index 56d2c4291e43..43aad7a0207a 100644 --- a/arch/arm/Kconfig +++ b/arch/arm/Kconfig | |||
@@ -568,6 +568,7 @@ config ARCH_TEGRA | |||
568 | select GENERIC_CLOCKEVENTS | 568 | select GENERIC_CLOCKEVENTS |
569 | select GENERIC_GPIO | 569 | select GENERIC_GPIO |
570 | select HAVE_CLK | 570 | select HAVE_CLK |
571 | select COMMON_CLKDEV | ||
571 | select ARCH_HAS_BARRIERS if CACHE_L2X0 | 572 | select ARCH_HAS_BARRIERS if CACHE_L2X0 |
572 | help | 573 | help |
573 | This enables support for NVIDIA Tegra based systems (Tegra APX, | 574 | This enables support for NVIDIA Tegra based systems (Tegra APX, |