12fc65e28STom Warren /*
22fc65e28STom Warren  * Copyright (c) 2010-2013, NVIDIA CORPORATION.  All rights reserved.
32fc65e28STom Warren  *
42fc65e28STom Warren  * This program is free software; you can redistribute it and/or modify it
52fc65e28STom Warren  * under the terms and conditions of the GNU General Public License,
62fc65e28STom Warren  * version 2, as published by the Free Software Foundation.
72fc65e28STom Warren  *
82fc65e28STom Warren  * This program is distributed in the hope it will be useful, but WITHOUT
92fc65e28STom Warren  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
102fc65e28STom Warren  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
112fc65e28STom Warren  * more details.
122fc65e28STom Warren  *
132fc65e28STom Warren  * You should have received a copy of the GNU General Public License
142fc65e28STom Warren  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
152fc65e28STom Warren  */
162fc65e28STom Warren 
172fc65e28STom Warren /* Tegra114 clock control functions */
182fc65e28STom Warren 
192fc65e28STom Warren #ifndef _TEGRA114_CLOCK_H_
202fc65e28STom Warren #define _TEGRA114_CLOCK_H_
212fc65e28STom Warren 
222fc65e28STom Warren #include <asm/arch-tegra/clock.h>
232fc65e28STom Warren 
242fc65e28STom Warren /* CLK_RST_CONTROLLER_OSC_CTRL_0 */
252fc65e28STom Warren #define OSC_FREQ_SHIFT          28
262fc65e28STom Warren #define OSC_FREQ_MASK           (0xF << OSC_FREQ_SHIFT)
272fc65e28STom Warren 
28*8e1601d9SThierry Reding /* CLK_RST_CONTROLLER_PLLC_MISC_0 */
29*8e1601d9SThierry Reding #define PLLC_IDDQ		(1 << 26)
30*8e1601d9SThierry Reding 
312fc65e28STom Warren #endif	/* _TEGRA114_CLOCK_H_ */
32