From 4297b224729d400468ac11cc19da2a20bd8a7dca Mon Sep 17 00:00:00 2001 From: "Wesley W. Terpstra" Date: Thu, 2 Nov 2017 15:32:31 -0700 Subject: [PATCH] unleashed: build quad-core instead Because there are boot loaders out there that disable core 0, let's make sure the open source design has >1 core to prevent these images from hanging. We should also change freedom-u-sdk to check using DTS to determine which cores to disable to properly fix this problem. --- src/main/scala/unleashed/u500vc707devkit/Config.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/scala/unleashed/u500vc707devkit/Config.scala b/src/main/scala/unleashed/u500vc707devkit/Config.scala index f15c14e..4598f2f 100644 --- a/src/main/scala/unleashed/u500vc707devkit/Config.scala +++ b/src/main/scala/unleashed/u500vc707devkit/Config.scala @@ -19,7 +19,7 @@ import sifive.fpgashells.devices.xilinx.xilinxvc707mig.{MemoryXilinxDDRKey,Xilin class FreedomUVC707Config extends Config( new WithJtagDTM ++ new WithNMemoryChannels(1) ++ - new WithNBigCores(1) ++ + new WithNBigCores(4) ++ new BaseConfig )