blob: ec37187e19c35c447aa8727806aa3dea12ca08f8 [file] [log] [blame]
// Copyright lowRISC contributors.
// Licensed under the Apache License, Version 2.0, see LICENSE for details.
// SPDX-License-Identifier: Apache-2.0
module keymgr_bind;
bind keymgr tlul_assert #(
.EndpointType("Device")
) tlul_assert_device (
.clk_i,
.rst_ni,
.h2d (tl_i),
.d2h (tl_o)
);
// TODO: fix shadow reg assertion errors and enable this check.
// bind keymgr keymgr_csr_assert_fpv keymgr_csr_assert (
// .clk_i,
// .rst_ni,
// .h2d (tl_i),
// .d2h (tl_o)
// );
endmodule