TT-System-Firmware APIs 19.15.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
13int StartDVFSTimer(void);
14void AdjustDVFSTimer(void);
15void DVFSChange(void);
16
17struct response;
18union request;
20
21#endif
bool dvfs_enabled
Definition dvfs.c:26
void AdjustDVFSTimer(void)
Definition dvfs.c:165
void DVFSChange(void)
Definition dvfs.c:54
int StartDVFSTimer(void)
Definition dvfs.c:137
uint8_t dvfs_counter_handler(const union request *request, struct response *response)
Definition dvfs.c:189
__UINT8_TYPE__ uint8_t
Definition msgqueue.h:1154
A tenstorrent host request.
Definition msgqueue.h:1021