| // 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" | |
| package rom_ctrl_pkg; | |
| parameter int AlertFatal = 0; | |
| typedef struct packed { | |
| logic done; | |
| logic good; | |
| } pwrmgr_data_t; | |
| parameter pwrmgr_data_t PWRMGR_DATA_DEFAULT = '{ | |
| done: 1'b1, | |
| good: 1'b1 | |
| }; | |
| typedef struct packed { | |
| logic [255:0] data; | |
| logic valid; | |
| } keymgr_data_t; | |
| endpackage |