TT Zephyr Platforms 18.11.99
Tenstorrent Firmware
Loading...
Searching...
No Matches
dvfs.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 2024 Tenstorrent AI ULC
3 * SPDX-License-Identifier: Apache-2.0
4 */
5
6#ifndef DVFS_H
7#define DVFS_H
8
9#include <stdbool.h>
10
11extern bool dvfs_enabled;
12
13void InitDVFS(void);
14void StartDVFSTimer(void);
15void DVFSChange(void);
16
17#endif
bool dvfs_enabled
Definition dvfs.c:13
void StartDVFSTimer(void)
Definition dvfs.c:53
void DVFSChange(void)
Definition dvfs.c:15
void InitDVFS(void)
Definition dvfs.c:44