bench/test: Avoid use of ident_version (should fix CI).
This commit is contained in:
parent
e6758539d9
commit
5f722a1513
|
@ -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)
|
||||
|
|
|
@ -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)
|
||||
|
|
|
@ -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)
|
||||
|
|
|
@ -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)
|
||||
|
|
|
@ -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)
|
||||
|
|
|
@ -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)
|
||||
|
||||
|
|
|
@ -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 --------------------------------------------------------------------------------------
|
||||
|
|
|
@ -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 --------------------------------------------------------------------------------------
|
||||
|
|
Loading…
Reference in New Issue