-
Notifications
You must be signed in to change notification settings - Fork 132
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[fpga] 👌 Add Alveo U280 board and change config
- Loading branch information
Elisabeth Humblet
committed
Mar 27, 2023
1 parent
0b1e3fd
commit f2351e6
Showing
5 changed files
with
49 additions
and
7 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
create_clock -period 10.000 -name clk_i [get_ports clk_i] | ||
create_clock -period 13.334 -name clk_i [get_ports clk_i] |
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 |
---|---|---|
@@ -1,4 +1,5 @@ | ||
# read_verilog -sv {../src/ara_0/fpga/src/xcvu9p.svh } | ||
# set file "../src/ara_0/fpga/src/xcvu9p.svh" | ||
|
||
set_property is_global_include true [get_files xcvu9p.svh] | ||
set_property is_global_include true [get_files xcvu9p.svh] | ||
set_property is_global_include true [get_files xcu280.svh] |
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,23 @@ | ||
// Description: Set global FPGA degines | ||
// Author: Elisabeth Humblet [email protected] | ||
|
||
`define xcu280 | ||
|
||
//============================================================================= | ||
// CVA6 Configurations | ||
//============================================================================= | ||
`define ARIANE_DATA_WIDTH 64 | ||
// Instantiate protocl checker | ||
// `define PROTOCOL_CHECKER | ||
// write-back cache | ||
// `define WB_DCACHE | ||
// write-through cache | ||
`define WT_DCACHE 1 | ||
|
||
`define RVV_ARIANE 1 | ||
|
||
//============================================================================= | ||
// Ara Configurations | ||
//============================================================================= | ||
`define NrLanes 4 | ||
`define VLEN 4096 |
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