TT-System-Firmware APIs 19.10.99
Tenstorrent Firmware
Loading...
Searching...
No Matches
axi.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#pragma once
7
8#include <zephyr/sys/util.h>
9
10#define AXI_CNTL_CLEAR 0
11#define AXI_CNTL_READ BIT(31)
12#define AXI_CNTL_WRITE (BIT(31) | BIT(8) | BIT_MASK(4))
13
14#define ARC_AXI_ADDR_TDR (2)
15#define ARC_AXI_DATA_TDR (3)
16#define ARC_AXI_CONTROL_STATUS_TDR (4)