11
11
12
12
from migen import *
13
13
14
+ from litex .gen import *
15
+
14
16
from litex .build .generic_platform import *
15
- from litex .build .sim import SimPlatform
16
- from litex .build .sim .config import SimConfig
17
- from litex .build .sim .verilator import verilator_build_args , verilator_build_argdict
18
-
19
- from litex .soc .interconnect .csr import *
20
- from litex .soc .integration .soc_core import *
21
- from litex .soc .integration .builder import *
22
- from litex .soc .interconnect import wishbone
17
+ from litex .build .sim import SimPlatform
18
+ from litex .build .sim .config import SimConfig
19
+ from litex .build .sim .verilator import verilator_build_args , verilator_build_argdict
20
+
21
+ from litex .soc .interconnect .csr import *
22
+ from litex .soc .integration .soc_core import *
23
+ from litex .soc .integration .builder import *
24
+ from litex .soc .interconnect import wishbone
23
25
from litex .soc .cores .cpu .vexriscv_smp import VexRiscvSMP
24
26
25
27
from litedram import modules as litedram_modules
26
- from litedram .phy .model import SDRAMPHYModel
27
- from litex .tools .litex_sim import sdram_module_nphases , get_sdram_phy_settings
28
+ from litedram .phy .model import SDRAMPHYModel
29
+ from litex .tools .litex_sim import sdram_module_nphases , get_sdram_phy_settings
28
30
from litedram .core .controller import ControllerSettings
29
31
30
32
from liteeth .phy .model import LiteEthPHYModel
31
- from liteeth .mac import LiteEthMAC
33
+ from liteeth .mac import LiteEthMAC
32
34
33
35
from litex .tools .litex_json2dts_linux import generate_dts
34
36
@@ -59,7 +61,7 @@ def __init__(self):
59
61
60
62
# Supervisor ---------------------------------------------------------------------------------------
61
63
62
- class Supervisor (Module , AutoCSR ):
64
+ class Supervisor (LiteXModule ):
63
65
def __init__ (self ):
64
66
self ._finish = CSR () # Controlled from CPU.
65
67
self .finish = Signal () # Controlled from logic.
@@ -68,40 +70,38 @@ def __init__(self):
68
70
# SoCLinux -----------------------------------------------------------------------------------------
69
71
70
72
class SoCLinux (SoCCore ):
71
- def __init__ (self ,
73
+ def __init__ (self , sys_clk_freq = int ( 100e6 ),
72
74
init_memories = False ,
73
75
sdram_module = "MT48LC16M16" ,
74
76
sdram_data_width = 32 ,
75
- sdram_verbosity = 0 ):
76
-
77
- # Parameters.
78
- sys_clk_freq = int (100e6 )
79
-
80
- # Platform.
77
+ sdram_verbosity = 0
78
+ ):
79
+ # Platform ---------------------------------------------------------------------------------
81
80
platform = Platform ()
82
81
self .comb += platform .trace .eq (1 )
83
82
84
- # RAM Initialization.
83
+ # RAM Init ---------------------------------------------------------------------------------
85
84
ram_init = []
86
85
if init_memories :
87
86
ram_init = get_mem_data ("images/boot.json" , endianness = "little" , offset = 0x40000000 )
88
87
89
88
# CRG --------------------------------------------------------------------------------------
90
- self .submodules . crg = CRG (platform .request ("sys_clk" ))
89
+ self .crg = CRG (platform .request ("sys_clk" ))
91
90
92
91
# SoCCore ----------------------------------------------------------------------------------
93
92
SoCCore .__init__ (self , platform , clk_freq = sys_clk_freq ,
94
- cpu_type = "vexriscv_smp" ,
95
- cpu_variant = "linux" ,
96
- integrated_rom_size = 0x10000 ,
97
- uart_name = "sim" )
93
+ cpu_type = "vexriscv_smp" ,
94
+ cpu_variant = "linux" ,
95
+ integrated_rom_size = 0x10000 ,
96
+ uart_name = "sim" ,
97
+ )
98
98
self .add_config ("DISABLE_DELAYS" )
99
99
100
100
# Boot from OpenSBI.
101
101
self .add_constant ("ROM_BOOT_ADDRESS" , self .bus .regions ["opensbi" ].origin )
102
102
103
103
# Supervisor -------------------------------------------------------------------------------
104
- self .submodules . supervisor = Supervisor ()
104
+ self .supervisor = Supervisor ()
105
105
106
106
# SDRAM ------------------------------------------------------------------------------------
107
107
sdram_clk_freq = int (100e6 ) # FIXME: use 100MHz timings
@@ -111,17 +111,20 @@ def __init__(self,
111
111
phy_settings = get_sdram_phy_settings (
112
112
memtype = sdram_module .memtype ,
113
113
data_width = sdram_data_width ,
114
- clk_freq = sdram_clk_freq )
115
- self .submodules .sdrphy = SDRAMPHYModel (
114
+ clk_freq = sdram_clk_freq ,
115
+ )
116
+ self .sdrphy = SDRAMPHYModel (
116
117
module = sdram_module ,
117
118
settings = phy_settings ,
118
119
clk_freq = sdram_clk_freq ,
119
120
verbosity = sdram_verbosity ,
120
- init = ram_init )
121
+ init = ram_init ,
122
+ )
121
123
self .add_sdram ("sdram" ,
122
124
phy = self .sdrphy ,
123
125
module = sdram_module ,
124
- l2_cache_size = 0 )
126
+ l2_cache_size = 0 ,
127
+ )
125
128
self .add_constant ("SDRAM_TEST_DISABLE" ) # Skip SDRAM test to avoid corrupting pre-initialized contents.
126
129
127
130
def generate_dts (self , board_name ):
@@ -139,11 +142,11 @@ def compile_dts(self, board_name):
139
142
# Build --------------------------------------------------------------------------------------------
140
143
141
144
def main ():
142
- parser = argparse .ArgumentParser (description = "Linux on LiteX-VexRiscv Simulation" )
143
- parser .add_argument ("--with-sdram" , action = "store_true" , help = "Enable SDRAM support." )
144
- parser .add_argument ("--sdram-module" , default = "MT48LC16M16" , help = "Select SDRAM chip." )
145
- parser .add_argument ("--sdram-data-width" , default = 32 , help = "Set SDRAM chip data width." )
146
- parser .add_argument ("--sdram-verbosity" , default = 0 , help = "Set SDRAM checker verbosity." )
145
+ parser = argparse .ArgumentParser (description = "Linux on LiteX-VexRiscv Simulation. " )
146
+ parser .add_argument ("--with-sdram" , action = "store_true" , help = "Enable SDRAM support." )
147
+ parser .add_argument ("--sdram-module" , default = "MT48LC16M16" , help = "Select SDRAM chip." )
148
+ parser .add_argument ("--sdram-data-width" , default = 32 , help = "Set SDRAM chip data width." )
149
+ parser .add_argument ("--sdram-verbosity" , default = 0 , help = "Set SDRAM checker verbosity." )
147
150
VexRiscvSMP .args_fill (parser )
148
151
verilator_build_args (parser )
149
152
args = parser .parse_args ()
@@ -154,22 +157,21 @@ def main():
154
157
sim_config .add_module ("serial2console" , "serial" )
155
158
156
159
for i in range (2 ):
160
+ prepare = (i == 0 )
161
+ run = (i == 1 )
157
162
soc = SoCLinux (
158
- init_memories = i != 0 ,
163
+ init_memories = run ,
159
164
sdram_module = args .sdram_module ,
160
165
sdram_data_width = int (args .sdram_data_width ),
161
166
sdram_verbosity = int (args .sdram_verbosity )
162
167
)
163
168
board_name = "sim"
164
169
build_dir = os .path .join ("build" , board_name )
165
170
builder = Builder (soc , output_dir = build_dir ,
166
- compile_gateware = i != 0 ,
171
+ compile_gateware = run ,
167
172
csr_json = os .path .join (build_dir , "csr.json" ))
168
- builder .build (sim_config = sim_config ,
169
- run = i != 0 ,
170
- ** verilator_build_kwargs
171
- )
172
- if i == 0 :
173
+ builder .build (sim_config = sim_config , run = run , ** verilator_build_kwargs )
174
+ if prepare :
173
175
soc .generate_dts (board_name )
174
176
soc .compile_dts (board_name )
175
177
0 commit comments