TT Zephyr Platforms 18.11.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#ifndef TENSTORRENT_JTAG_BOOTROM_AXI_H_
7#define TENSTORRENT_JTAG_BOOTROM_AXI_H_
8
9#include <zephyr/sys/util.h>
10
11#define AXI_CNTL_CLEAR 0
12#define AXI_CNTL_READ BIT(31)
13#define AXI_CNTL_WRITE (BIT(31) | BIT(8) | BIT_MASK(4))
14
15#define ARC_AXI_ADDR_TDR (2)
16#define ARC_AXI_DATA_TDR (3)
17#define ARC_AXI_CONTROL_STATUS_TDR (4)
18
19#endif