blob: 03eea52dc175ef5eb421df2f800c986d9aee0339 [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 clkmgr_bind;
bind clkmgr tlul_assert #(
.EndpointType("Device")
) tlul_assert_device (
.clk_i,
.rst_ni,
.h2d (tl_i),
.d2h (tl_o)
);
bind clkmgr clkmgr_csr_assert_fpv clkmgr_csr_assert (
.clk_i,
.rst_ni,
.h2d (tl_i),
.d2h (tl_o)
);
endmodule