Skip to content

Commit

Permalink
#4176: uplift umd to include create-eth-map fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
aliuTT committed Dec 5, 2023
1 parent 0944027 commit cc321ed
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
6 changes: 3 additions & 3 deletions tt_metal/llrt/tt_cluster.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,7 @@ void Cluster::reset_debug_print_server_buffers() const {
}
}

void Cluster::assert_risc_reset(const chip_id_t &chip) const { this->get_driver(chip).assert_risc_reset(chip); }
void Cluster::assert_risc_reset(const chip_id_t &chip) const { this->get_driver(chip).assert_risc_reset(); }

void Cluster::deassert_risc_reset_at_core(const tt_cxy_pair &physical_chip_coord) const {
const metal_SocDescriptor &soc_desc = this->get_soc_desc(physical_chip_coord.chip);
Expand All @@ -378,11 +378,11 @@ void Cluster::deassert_risc_reset(const chip_id_t &target_device_id, bool start_
if (this->target_type_ == TargetDevice::Versim) {
// Not running silicon multichip test
TT_FATAL(target_device_id == 0, "Device ID must be 0 for Versim");
this->get_driver(target_device_id).deassert_risc_reset(target_device_id);
this->get_driver(target_device_id).deassert_risc_reset();
} else if (this->target_type_ == TargetDevice::Silicon) {
log_debug(tt::LogLLRuntime, "Stagger start : {}", start_stagger);
TT_ASSERT(not start_stagger, "UMD currently does not support staggered deassert of RISC reset");
this->get_driver(target_device_id).deassert_risc_reset(target_device_id);
this->get_driver(target_device_id).deassert_risc_reset();
}
}

Expand Down
3 changes: 2 additions & 1 deletion tt_metal/llrt/tt_cluster.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,8 @@ class Cluster {
(uint32_t)MEM_TRISC2_SIZE,
(uint32_t)MEM_TRISC0_BASE,
(uint32_t)GET_MAILBOX_ADDRESS_HOST(l1_barrier),
(uint32_t)eth_l1_mem::address_map::ERISC_BARRIER_BASE
(uint32_t)eth_l1_mem::address_map::ERISC_BARRIER_BASE,
(uint32_t)eth_l1_mem::address_map::FW_VERSION_ADDR,
};

tt_driver_host_address_params host_address_params = {
Expand Down

0 comments on commit cc321ed

Please sign in to comment.