TT-System-Firmware APIs 19.10.99
Tenstorrent Firmware
Loading...
Searching...
No Matches
gddr_params.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 GDDR_PARAMS_H
7#define GDDR_PARAMS_H
8
9/* ***************************************
10 * THIS FILE IS AUTO GENERATED
11 * ***************************************
12 * *** DO NOT EDIT THIS FILE MANUALLY ****
13 * To edit, modify
14 * gddr_params.yaml and run make.
15 * ***************************************
16 */
17#include <stdint.h>
18
19#define GDDR_PARAMS_TABLE_T_VERSION (0x00000006)
20
21typedef struct {
23 /* To be incremented if the fields change functionality, size or order. */
25 /* 12000, 14000, or 16000 */
27 /* 1 = Clamshell mode, 0 = Non-clamshell mode */
29 /* See feature_bit_u for possible values. */
31 /* See board_type_e for possible values. */
33 /* To be incremented if FW major version changes */
35 /* To be incremented if FW minor version changes */
37 /* ID to uniquely identify each controller (0-7) */
39
40#endif
__UINT32_TYPE__ uint32_t
Definition gddr_params.h:21
uint32_t clamshell_mode
Definition gddr_params.h:26
uint32_t params_table_version
Definition gddr_params.h:22
uint32_t dram_speed
Definition gddr_params.h:24
uint32_t feature_bits
Definition gddr_params.h:28
uint32_t mrisc_fw_version_major
Definition gddr_params.h:32
uint32_t mrisc_fw_version_minor
Definition gddr_params.h:34
uint32_t controller_id
Definition gddr_params.h:36
uint32_t board_type
Definition gddr_params.h:30