From 6b35c7b8eaaa39e7ce008d40fedcd0f0fa49c991 Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Fri, 22 Aug 2014 15:24:14 +0800 Subject: [PATCH] targets/ppro: reduce SPI flash clock frequency --- targets/ppro.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/targets/ppro.py b/targets/ppro.py index 3bd29ef2b..970342317 100644 --- a/targets/ppro.py +++ b/targets/ppro.py @@ -88,7 +88,7 @@ class BaseSoC(SDRAMSoC): # BIOS is in SPI flash self.submodules.spiflash = spiflash.SpiFlash(platform.request("spiflash2x"), - cmd=0xefef, cmd_width=16, addr_width=24, dummy=4, div=4) + cmd=0xefef, cmd_width=16, addr_width=24, dummy=4, div=6) self.flash_boot_address = 0x70000 self.register_rom(self.spiflash.bus)