| // Copyright lowRISC contributors. |
| // Licensed under the Apache License, Version 2.0, see LICENSE for details. |
| // SPDX-License-Identifier: Apache-2.0 |
| `include "prim_assert.sv" |
| * Tile-Link UL command integrity check |
| module tlul_cmd_intg_chk import tlul_pkg::*; ( |
| assign cmd = extract_h2d_cmd_intg(tl_i); |
| prim_secded_inv_64_57_dec u_chk ( |
| .data_i({tl_i.a_user.cmd_intg, H2DCmdMaxWidth'(cmd)}), |
| tlul_data_integ_dec u_tlul_data_integ_dec ( |
| .data_intg_i({tl_i.a_user.data_intg, DataMaxWidth'(tl_i.a_data)}), |
| // error output is transactional, it is up to the instantiating module |
| // to determine if a permanent latch is feasible |
| assign err_o = tl_i.a_valid & (|err | (|data_err)); |
| assign unused_tl = |tl_i; |
| `ASSERT_INIT(PayLoadWidthCheck, $bits(tl_h2d_cmd_intg_t) <= H2DCmdMaxWidth) |
| endmodule // tlul_payload_chk |