/* * Copyright (c) 2025-2026 Texas Instruments Incorporated - https://www.ti.com * * SPDX-License-Identifier: BSD-3-Clause */ /* * TI Fixed Clock API Header * * This header defines the interface for fixed-frequency clock drivers. * Fixed clocks provide unchangeable frequencies, are always enabled, and * are typically used for board-level reference clocks. */ #ifndef TI_CLK_FIXED_H #define TI_CLK_FIXED_H #include /* * Fixed-frequency clock driver * * Provides clock operations for fixed, unchangeable frequency clocks such as * crystal oscillators and board-level reference clocks. These clocks are * always enabled and report a constant frequency. */ extern const struct ti_clk_drv ti_clk_drv_fixed; #endif /* TI_CLK_FIXED_H */