Files
Jibo-Platform-Tools-OLD/u-boot/arch/arm/include/asm/arch-tegra20/clock.h
Kevin 68d74d3181 avionic design with actual uboot and tooling
submodule of avionic design uboot bootloader and with included tools to
get you started , read readme.md and readme-tk1-loader.md
2026-03-03 21:46:32 +02:00

21 lines
407 B
C

/*
* Copyright (c) 2011 The Chromium OS Authors.
*
* SPDX-License-Identifier: GPL-2.0+
*/
/* Tegra20 clock control functions */
#ifndef _TEGRA20_CLOCK_H
#define _TEGRA20_CLOCK_H
#include <asm/arch-tegra/clock.h>
/* CLK_RST_CONTROLLER_OSC_CTRL_0 */
#define OSC_FREQ_SHIFT 30
#define OSC_FREQ_MASK (3U << OSC_FREQ_SHIFT)
int tegra_plle_enable(void);
#endif /* _TEGRA20_CLOCK_H */