-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
1,722 additions
and
1 deletion.
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
TARGET = scu4slim | ||
DEVICE = 10AX027E3 | ||
FLASH = MT25QU512 | ||
SPI_LANES = ASx4 | ||
RAM_SIZE = 262144 | ||
ARRIA10_JIC = yes | ||
|
||
include ../../build.mk |
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,19 @@ | ||
target = "altera" | ||
action = "synthesis" | ||
|
||
fetchto = "../../../ip_cores" | ||
syn_tool = "quartus" | ||
syn_grade = "e2sg" | ||
syn_package = "29" | ||
syn_device = "10ax027e3f" | ||
syn_top = "scu4slim" | ||
syn_project = "scu4slim" | ||
syn_family = "Arria 10" | ||
|
||
quartus_preflow = "scu4slim.tcl" | ||
|
||
modules = { | ||
"local" : [ | ||
"../../../top/gsi_scu/slim4", | ||
] | ||
} |
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 @@ | ||
pgm_allow_mt25q=on |
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 @@ | ||
PROJECT_REVISION = "scu4slim" |
Large diffs are not rendered by default.
Oops, something went wrong.
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,11 @@ | ||
set platform "scu4slim" | ||
source ../../autogen.tcl | ||
source ../../../modules/build_id/build_id.tcl | ||
source ../../../ip_cores/general-cores/platform/altera/networks/arria10gx/arria10gx.tcl | ||
source ../../../ip_cores/general-cores/platform/altera/wb_pcie/arria10gx_scu4.tcl | ||
source ../../../modules/pll/arria10_scu4/arria10_scu4_pll.tcl | ||
source ../../../ip_cores/wr-cores/platform/altera/wr_arria10_phy/wr_arria10_scu4_phy/wr_arria10_scu4_phy.tcl | ||
source ../../../modules/lvds/arria10_scu4/arria10_scu4_lvds.tcl | ||
source ../../../modules/remote_update/asmi10.tcl | ||
source ../../../modules/wb_arria_reset/arria10_reset.tcl | ||
source ../../../modules/a10ts/src/hdl/a10ts_generate.tcl |
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,11 @@ | ||
files = [ | ||
"scu4slim.vhd", | ||
"ramsize_pkg.vhd", | ||
"../../common/arria10.sdc", | ||
] | ||
|
||
modules = { | ||
"local" : [ | ||
"../../..", | ||
] | ||
} |
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,8 @@ | ||
library ieee; | ||
use ieee.std_logic_1164.all; | ||
use ieee.numeric_std.all; | ||
|
||
library work; | ||
package ramsize_pkg is | ||
constant c_lm32_ramsizes : natural := 262144; | ||
end ramsize_pkg; |
Oops, something went wrong.