aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-tegra/tegra30_clocks.h
diff options
context:
space:
mode:
authorPrashant Gaikwad <pgaikwad@nvidia.com>2012-08-06 02:27:39 -0400
committerStephen Warren <swarren@nvidia.com>2012-09-06 13:47:19 -0400
commit88e790a445b35cf137a62e590ced5315defad060 (patch)
treec24784a714c678794081c3785ad09616f1448b77 /arch/arm/mach-tegra/tegra30_clocks.h
parenteb70e1bdd8a633e058cfb6186d45d4c8bdbdf534 (diff)
ARM: tegra30: Separate out clk ops and clk data
Move clock initialization data to separate file. This is required for migrating to generic clock framework if static initialization is used. Signed-off-by: Prashant Gaikwad <pgaikwad@nvidia.com> Signed-off-by: Stephen Warren <swarren@nvidia.com>
Diffstat (limited to 'arch/arm/mach-tegra/tegra30_clocks.h')
-rw-r--r--arch/arm/mach-tegra/tegra30_clocks.h43
1 files changed, 43 insertions, 0 deletions
diff --git a/arch/arm/mach-tegra/tegra30_clocks.h b/arch/arm/mach-tegra/tegra30_clocks.h
new file mode 100644
index 000000000000..f8c4df5f53f7
--- /dev/null
+++ b/arch/arm/mach-tegra/tegra30_clocks.h
@@ -0,0 +1,43 @@
1/*
2 * Copyright (c) 2012, NVIDIA CORPORATION. All rights reserved.
3 *
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms and conditions of the GNU General Public License,
6 * version 2, as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope it will be useful, but WITHOUT
9 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
11 * more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 */
16
17#ifndef __MACH_TEGRA30_CLOCK_H
18#define __MACH_TEGRA30_CLOCK_H
19
20extern struct clk_ops tegra30_clk_m_ops;
21extern struct clk_ops tegra_clk_m_div_ops;
22extern struct clk_ops tegra_pll_ref_ops;
23extern struct clk_ops tegra30_pll_ops;
24extern struct clk_ops tegra30_pll_div_ops;
25extern struct clk_ops tegra_plld_ops;
26extern struct clk_ops tegra30_plle_ops;
27extern struct clk_ops tegra_cml_clk_ops;
28extern struct clk_ops tegra_pciex_clk_ops;
29extern struct clk_ops tegra_sync_source_ops;
30extern struct clk_ops tegra30_audio_sync_clk_ops;
31extern struct clk_ops tegra30_clk_double_ops;
32extern struct clk_ops tegra_clk_out_ops;
33extern struct clk_ops tegra30_super_ops;
34extern struct clk_ops tegra30_blink_clk_ops;
35extern struct clk_ops tegra30_twd_ops;
36extern struct clk_ops tegra30_periph_clk_ops;
37extern struct clk_ops tegra_dsib_clk_ops;
38extern struct clk_ops tegra_nand_clk_ops;
39extern struct clk_ops tegra_vi_clk_ops;
40extern struct clk_ops tegra_dtv_clk_ops;
41extern struct clk_ops tegra_clk_shared_bus_ops;
42
43#endif