Prashant Gaikwad | 86edb87 | 2012-08-06 11:57:40 +0530 | [diff] [blame] | 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_TEGRA20_CLOCK_H |
| 18 | #define __MACH_TEGRA20_CLOCK_H |
| 19 | |
Prashant Gaikwad | 92fe58f | 2012-08-06 11:57:43 +0530 | [diff] [blame] | 20 | extern struct clk_ops tegra_clk_32k_ops; |
Prashant Gaikwad | 86edb87 | 2012-08-06 11:57:40 +0530 | [diff] [blame] | 21 | extern struct clk_ops tegra_pll_ops; |
| 22 | extern struct clk_ops tegra_clk_m_ops; |
| 23 | extern struct clk_ops tegra_pll_div_ops; |
| 24 | extern struct clk_ops tegra_pllx_ops; |
| 25 | extern struct clk_ops tegra_plle_ops; |
| 26 | extern struct clk_ops tegra_clk_double_ops; |
| 27 | extern struct clk_ops tegra_cdev_clk_ops; |
| 28 | extern struct clk_ops tegra_audio_sync_clk_ops; |
| 29 | extern struct clk_ops tegra_super_ops; |
| 30 | extern struct clk_ops tegra_cpu_ops; |
Prashant Gaikwad | b4350f4 | 2012-09-13 15:04:33 +0530 | [diff] [blame] | 31 | extern struct clk_ops tegra_twd_ops; |
Prashant Gaikwad | 86edb87 | 2012-08-06 11:57:40 +0530 | [diff] [blame] | 32 | extern struct clk_ops tegra_cop_ops; |
| 33 | extern struct clk_ops tegra_bus_ops; |
| 34 | extern struct clk_ops tegra_blink_clk_ops; |
| 35 | extern struct clk_ops tegra_emc_clk_ops; |
| 36 | extern struct clk_ops tegra_periph_clk_ops; |
| 37 | extern struct clk_ops tegra_clk_shared_bus_ops; |
| 38 | |
Prashant Gaikwad | 92fe58f | 2012-08-06 11:57:43 +0530 | [diff] [blame] | 39 | void tegra2_periph_clk_reset(struct clk_hw *hw, bool assert); |
| 40 | void tegra2_cop_clk_reset(struct clk_hw *hw, bool assert); |
| 41 | |
Prashant Gaikwad | 86edb87 | 2012-08-06 11:57:40 +0530 | [diff] [blame] | 42 | #endif |