FPGA Intellectual Property
PCI Express*, Networking and Connectivity, Memory Interfaces, DSP IP, and Video IP
6355 Discussions

Quartus ram block sharing bug on Cyclone V

foft
Novice
1,348 Views

I am using a Cyclone V 5CEBA2F23C8 in my design for an Atari XL recreation - the EclaireXL.

The Cyclone V has been excellent and I am very impressed with the technology. The fractional PLLs are really great, you should include them in the smaller FPGA families too! If there was a 5V tolerant version that would be even better.

Anyway to the point. I have now filled up the block memory and after some recent changes, when I compile my design I see that a block is inferred for the 6502 CPU and ALSO used explicitly for the zpu memory. Using the block twice is clearly a great efficiency if it can be done and still work. However the issue I have with this is: the block gives incorrect data where it is inferred for the CPU!

I was hoping this would be solved in the next Quartus versions but after a few iterations it has not been addressed. I'm not on Quartus Lite 20.1.1. So I thought it may be something that Intel is not aware of.

In order to workaround this bug, is there a way to tell Quartus not to use memory blocks twice when synthesizing the design?

0 Kudos
12 Replies
foft
Novice
1,338 Views

I have some signaltap captures here of the issue:

http://www.64kib.com/redmine/issues/85

0 Kudos
foft
Novice
1,315 Views

To restate the issue more simply to increase changes of a reply.

I have a design that used to work well for the Cyclone V 5CEBA2F23C8. As the FPGA filled up Quartus decided to share the same block ram between parts of the design.

For some reason, a bug in the design, or a bug in Quartus, the sharing of block ram does not work correctly.

Is there a way to disable sharing block ram between multiple parts of the design?

0 Kudos
sstrell
Honored Contributor III
1,301 Views

Without seeing the design, it's hard to understand what you mean.  Are you saying that you've inferred or instantiated a RAM and the same physical RAM block is being shared using multiple ports?  Can you show some code or what you're seeing in the RTL viewer or the Technology Map Viewer?

There are packing and merging options you could check in Assignments menu -> Settings -> Compiler Settings -> Advanced Analysis & Synthesis Settings, but they're mostly for registers.

foft
Novice
1,293 Views

I see the same port of an M10K ram block used in two places.  In my most recent build this is M10K_X38_Y11_N0 as seen here in the memory use summary - filtered to the duplicate:

foft_0-1611174795795.png

In the technology map viewer I see this in the 6502 cpu:

6502_using_ram_block1a0.png

 ... and the supporting zpu processor rom:

zpu_using_ram_block1a0.png

 When this occurs I get the wrong results from the op code decoder in the 6502 cpu.

The code is online:

http://www.64kib.com/atarixlfpga_svn/trunk/atari_800xl/common/a8core/cpu_65xx_a.vhd

http://www.64kib.com/atarixlfpga_svn/trunk/atari_800xl/eclaireXL_ITX/zpu_rom.qip

In the table in the 6502 code it says:

"0100" & "100010" & implied   & aluInX   & aluInc, -- E8 INX

Which is supposed to be:

0x002020000112   (i.e. 0100 is 2, then 1000, then 10... )

However because of this ram I end up with 

0x002020100112

But only when I add some unrelated video logic using other block ram and start getting this block memory shared. So the stack pointer is hanged on opcode E8 (increase X) when it shouldn't be.

The project is all open so I can share the whole build. Its attached, though needs compiling - load the project atari800core_eclaireXLv1.qpf from the attached. 

0 Kudos
foft
Novice
1,289 Views

Signal tap captures of this are here:

http://www.64kib.com/redmine/issues/85#note-32

See opcinfo bit 20 when opcode is E8, along with the block ram output.

0 Kudos
foft
Novice
1,288 Views
constant implied   : addrDef := "00000000000000000";

I should also note this constant, which seems to return '1' ...

0 Kudos
foft
Novice
1,267 Views

Any help/ideas will be greatly appreciated. I can provide more information/tests as needed.

 

0 Kudos
SyafieqS
Moderator
1,261 Views

Hi Mark,


Is it possible to attach the qar design here. Ill try to replicate and see what can I find at my end.


Thanks,

Regards


foft
Novice
1,250 Views

Here it is a .qar file. I didn't know about qar files, good to learn about them. Many thanks for offering to take a look.

0 Kudos
foft
Novice
1,203 Views

Hi Syafieq,

Just wanted to check that I created/attached the .qar file ok and you were able to pick it up?

Thanks,

Mark

0 Kudos
foft
Novice
1,185 Views

I just realized that this is in the wrong forum, should I re-post in the 'Quartus II' section?

0 Kudos
SyafieqS
Moderator
1,153 Views

Hi Mark,


Yes, you can repost it with qar file attached.


Thanks,

Regards


0 Kudos
Reply