-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update lowrisc_ibex to lowRISC/cheriot-ibex@8474cf81
Update code from upstream repository https://github.com/lowrisc/cheriot-ibex.git to revision 8474cf81d0f06fd727d8e66bc356fa18822bbf8d Signed-off-by: Marno van der Maas <[email protected]>
- Loading branch information
1 parent
219a61c
commit f8b2547
Showing
29 changed files
with
1,456 additions
and
185 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
// Copyright Microsoft Corporation | ||
// Licensed under the Apache License, Version 2.0, see LICENSE for details. | ||
// SPDX-License-Identifier: Apache-2.0 | ||
|
||
package cheriot_dv_pkg; | ||
import cheri_pkg::*; | ||
|
||
parameter logic [31:0] DRAMStartAddr = 32'h8000_0000; | ||
parameter logic [31:0] TsMapStartAddr = 32'h8300_0000; | ||
|
||
typedef struct packed { | ||
logic [7:0] flag; | ||
logic is_cap; | ||
logic we; | ||
logic [3:0] be; | ||
logic [29:0] addr32; | ||
logic [32:0] wdata; | ||
logic [32:0] rdata; | ||
logic err; | ||
} mem_cmd_t; | ||
|
||
typedef struct packed { | ||
logic is_cap; | ||
logic we; | ||
logic [1:0] rv32_type; | ||
logic [31:0] addr; | ||
reg_cap_t wcap; | ||
logic [31:0] wdata; | ||
reg_cap_t rcap; | ||
logic [31:0] rdata; | ||
logic err; | ||
} lsu_cmd_t; | ||
|
||
endpackage |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.