blob: 4d58bf184218cca5a4cec06036a724e191fcb6b6 [file] [log] [blame]
Tom Warrenc47e7172013-01-28 13:32:07 +00001/*
2 * Copyright (c) 2010-2013, NVIDIA CORPORATION. All rights reserved.
3 *
Tom Rinie2378802016-01-14 22:05:13 -05004 * SPDX-License-Identifier: GPL-2.0
Tom Warrenc47e7172013-01-28 13:32:07 +00005 */
6
7/* Tegra114 clock control functions */
8
9#ifndef _TEGRA114_CLOCK_H_
10#define _TEGRA114_CLOCK_H_
11
12#include <asm/arch-tegra/clock.h>
13
14/* CLK_RST_CONTROLLER_OSC_CTRL_0 */
15#define OSC_FREQ_SHIFT 28
16#define OSC_FREQ_MASK (0xF << OSC_FREQ_SHIFT)
17
Thierry Reding0fca3292015-09-08 11:38:04 +020018/* CLK_RST_CONTROLLER_PLLC_MISC_0 */
19#define PLLC_IDDQ (1 << 26)
20
Tom Warrenc47e7172013-01-28 13:32:07 +000021#endif /* _TEGRA114_CLOCK_H_ */