bench/test: Avoid use of ident_version (should fix CI).

This commit is contained in:
Florent Kermarrec 2022-02-15 17:33:31 +01:00
parent e6758539d9
commit 5f722a1513
8 changed files with 5 additions and 13 deletions

View File

@ -74,7 +74,6 @@ class BenchSoC(SoCCore):
# SoCCore ----------------------------------------------------------------------------------
SoCCore.__init__(self, platform, clk_freq=sys_clk_freq,
ident = "LiteDRAM bench on Arty",
ident_version = True,
integrated_rom_size = 0x10000,
integrated_rom_mode = "rw",
uart_name = uart)

View File

@ -66,7 +66,6 @@ class BenchSoC(SoCCore):
# SoCCore ----------------------------------------------------------------------------------
SoCCore.__init__(self, platform, clk_freq=sys_clk_freq,
ident = "LiteDRAM bench on Genesys2",
ident_version = True,
integrated_rom_size = 0x10000,
integrated_rom_mode = "rw",
uart_name = uart)

View File

@ -67,7 +67,6 @@ class BenchSoC(SoCCore):
# SoCCore ----------------------------------------------------------------------------------
SoCCore.__init__(self, platform, clk_freq=sys_clk_freq,
ident = "LiteDRAM bench on KC705",
ident_version = True,
integrated_rom_size = 0x10000,
integrated_rom_mode = "rw",
uart_name = uart)

View File

@ -83,7 +83,6 @@ class BenchSoC(SoCCore):
# SoCCore ----------------------------------------------------------------------------------
SoCCore.__init__(self, platform, clk_freq=sys_clk_freq,
ident = "LiteDRAM bench on KCU105",
ident_version = True,
integrated_rom_size = 0x10000,
integrated_rom_mode = "rw",
uart_name = uart)

View File

@ -79,7 +79,6 @@ class BenchSoC(SoCCore):
# SoCCore ----------------------------------------------------------------------------------
SoCCore.__init__(self, platform, clk_freq=sys_clk_freq,
ident = "LiteDRAM bench on XCU1525",
ident_version = True,
integrated_rom_size = 0x10000,
integrated_rom_mode = "rw",
uart_name = uart)

View File

@ -76,7 +76,6 @@ class SimSoC(SoCCore):
super().__init__(platform,
clk_freq = sys_clk_freq,
ident = "LiteX Simulation",
ident_version = True,
cpu_variant = "lite",
**kwargs)

View File

@ -94,10 +94,9 @@ class SimSoC(SoCCore):
# SoCCore ----------------------------------------------------------------------------------
super().__init__(platform,
clk_freq = sys_clk_freq,
ident = "LiteX Simulation",
ident_version = True,
cpu_variant = "lite",
clk_freq = sys_clk_freq,
ident = "LiteX Simulation",
cpu_variant = "lite",
**kwargs)
# CRG --------------------------------------------------------------------------------------

View File

@ -149,9 +149,8 @@ class SimSoC(SoCCore):
# SoCCore ----------------------------------------------------------------------------------
SoCCore.__init__(self, platform, clk_freq=sys_clk_freq,
ident = "LiteX Simulation",
ident_version = True,
cpu_variant = "lite",
ident = "LiteX Simulation",
cpu_variant = "lite",
**kwargs)
# CRG --------------------------------------------------------------------------------------