mirror of
https://github.com/riscv-software-src/opensbi.git
synced 2026-05-23 22:31:32 +01:00
6767861c48
Add the Tenstorrent Atlantis as a generic-platform. This initial support enables the single_fw_region option, and verifies and prints HART PMA CSR configuration. Signed-off-by: Nicholas Piggin <npiggin@gmail.com> Reviewed-by: Anup Patel <anup@brainfault.org> Link: https://lore.kernel.org/r/20260424062520.238403-1-npiggin@gmail.com Signed-off-by: Anup Patel <anup@brainfault.org>
13 lines
435 B
Makefile
13 lines
435 B
Makefile
#
|
|
# SPDX-FileCopyrightText: (c) 2025-2026 Tenstorrent USA, Inc.
|
|
# SPDX-License-Identifier: BSD-2-Clause
|
|
#
|
|
|
|
ifeq ($(PLATFORM_RISCV_XLEN), 64)
|
|
platform-objs-y += tenstorrent/pma.o
|
|
platform-objs-$(CONFIG_CPU_TENSTORRENT_ASCALON) += tenstorrent/ascalon.o
|
|
|
|
carray-platform_override_modules-$(CONFIG_PLATFORM_TENSTORRENT_ATLANTIS) += tenstorrent_atlantis
|
|
platform-objs-$(CONFIG_PLATFORM_TENSTORRENT_ATLANTIS) += tenstorrent/atlantis.o
|
|
endif
|