From f1200d6388ec80003408bc8e3582f877c2ecdb47 Mon Sep 17 00:00:00 2001 From: Florent Kermarrec Date: Fri, 27 Feb 2015 19:40:56 +0100 Subject: [PATCH] gensoc: move I/O for rom initialization to make.py --- make.py | 12 ++++++++++-- misoclib/gensoc/__init__.py | 21 +++------------------ 2 files changed, 13 insertions(+), 20 deletions(-) diff --git a/make.py b/make.py index 0f806cfb..fa5b5536 100755 --- a/make.py +++ b/make.py @@ -124,7 +124,7 @@ CPU type: {} actions["flash-bitstream"] = True if not soc.with_rom: actions["flash-bios"] = True - if actions["build-bitstream"] and hasattr(soc, "init_bios_memory"): + if actions["build-bitstream"] and soc.with_rom: actions["build-bios"] = True if actions["build-bios"]: actions["build-headers"] = True @@ -178,7 +178,15 @@ CPU type: {} if actions["build-bitstream"]: if soc.with_rom: - soc.init_rom() + with open(soc.cpu_boot_file, "rb") as boot_file: + boot_data = [] + while True: + w = boot_file.read(4) + if not w: + break + boot_data.append(struct.unpack(">I", w)[0]) + soc.init_rom(boot_data) + for decorator in args.decorate: soc = getattr(simplify, decorator)(soc) build_kwargs = dict((k, autotype(v)) for k, v in args.build_option) diff --git a/misoclib/gensoc/__init__.py b/misoclib/gensoc/__init__.py index 28911bd1..fe1235c0 100644 --- a/misoclib/gensoc/__init__.py +++ b/misoclib/gensoc/__init__.py @@ -39,7 +39,7 @@ class GenSoC(Module): def __init__(self, platform, clk_freq, cpu_or_bridge=None, with_cpu=True, cpu_type="lm32", cpu_reset_address=0x00000000, cpu_boot_file="software/bios/bios.bin", - with_rom=False, rom_size=0x8000, rom_init_now=False, + with_rom=False, rom_size=0x8000, with_sram=True, sram_size=4096, with_sdram=False, sdram_size=64*1024, with_csr=True, csr_data_width=8, csr_address_width=14, @@ -57,7 +57,6 @@ class GenSoC(Module): self.with_rom = with_rom self.rom_size = rom_size - self.rom_init_now = rom_init_now self.with_sram = with_sram self.sram_size = sram_size @@ -93,8 +92,6 @@ class GenSoC(Module): if with_rom: self.submodules.rom = wishbone.SRAM(rom_size, read_only=True) self.register_mem("rom", self.mem_map["rom"], self.rom.bus, rom_size) - if rom_init_now: - self.init_rom() if with_sram: self.submodules.sram = wishbone.SRAM(sram_size) @@ -118,20 +115,8 @@ class GenSoC(Module): if with_timer: self.submodules.timer0 = timer.Timer() - def init_rom(self, filename=None): - if filename is None: - filename = self.cpu_boot_file - filename_ext = os.path.splitext(filename)[1] - if filename_ext != ".bin": - raise ValueError("rom_init only supports .bin files") - with open(filename, "rb") as boot_file: - boot_data = [] - while True: - w = boot_file.read(4) - if not w: - break - boot_data.append(struct.unpack(">I", w)[0]) - self.rom.mem.init = boot_data + def init_rom(self, data): + self.rom.mem.init = data def add_wb_master(self, wbm): if self.finalized: -- 2.30.2